-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.12 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
49
50
{
"name": "@gpujs/benchmark",
"version": "3.2.1",
"private": false,
"description": "A benchmarking tool for gpu.js",
"main": "src/index.js",
"scripts": {
"start": "node ./index.js",
"test": "tape test/util/*.js test/stats/*.js test/benches/*.js test/index.js test/run.js | tap-arc",
"build": "node ./build.js",
"test:cli": "TEST=true tape test/cli/*.js | tap-arc",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpujs/benchmark.git"
},
"author": "gpujs",
"license": "MIT",
"dependencies": {
"performance-now": "^2.1.0",
"readline-sync": "^1.4.10"
},
"bugs": {
"url": "https://github.com/gpujs/benchmark/issues"
},
"homepage": "https://github.com/gpujs/benchmark#readme",
"devDependencies": {
"gpu.js": "^2.19.9",
"rolldown": "^1.2.0",
"tap-arc": "^1.3.2",
"tape": "^5.10.2",
"terser": "^5.49.0"
},
"keywords": [
"gpujs",
"gpu",
"gpu.js",
"benchmark"
],
"overrides": {
"node-gyp": "^11.5.0"
},
"files": [
"src",
"cli",
"dist",
"index.js"
]
}