-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.04 KB
/
package.json
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
{
"name": "@gpujs/benchmark",
"version": "3.1.0",
"private": false,
"description": "A benchmarking tool for gpu.js",
"main": "src/index.js",
"scripts": {
"start": "node ./index.js",
"setup": "yarn install && npm rebuild",
"test": "TEST=true tape test/util/*.js test/stats/*.js test/benches/*.js test/cli/*.js test/index.js test/run.js | tap-spec",
"build": "node ./build.js",
"npm-publish": "yarn test && yarn publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpujs/benchmark.git"
},
"author": "gpujs",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.15",
"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": {
"browserify": "16.5.0",
"gpu.js": "^2.9.4",
"minify": "^5.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"keywords": [
"gpujs",
"gpu",
"gpu.js",
"benchmark"
]
}