-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "gpu-mock.js",
"version": "1.4.1",
"description": "A simple mocker for testing threaded development",
"files": [
"index.js",
"index.d.ts"
],
"main": "index.js",
"scripts": {
"test": "mocha",
"typecheck": "tsc --noEmit",
"coverage": "c8 --check-coverage --lines 100 --functions 100 --branches 100 --statements 100 mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpujs/gpu-mock.js.git"
},
"keywords": [
"gpu",
"test"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpujs/gpu-mock.js/issues"
},
"homepage": "https://github.com/gpujs/gpu-mock.js#readme",
"devDependencies": {
"c8": "^12.0.0",
"gpu.js": "^2.19.9",
"mocha": "^11.7.5",
"typescript": "^5.9.3"
},
"overrides": {
"node-gyp": "^11.5.0",
"serialize-javascript": "^7.0.5"
},
"peerDependencies": {
"gpu.js": "^2.10.3"
},
"peerDependenciesMeta": {
"gpu.js": {
"optional": true
}
},
"typings": "./index.d.ts"
}