-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
43
44
45
46
47
48
49
50
{
"name": "gl-stats",
"version": "1.0.1",
"description": "Visualizing and monitor your performance.",
"main": "dist/gl-stats",
"module" : "index.js",
"jsnext:main" : "index.js",
"scripts": {
"prepare": "npm run build",
"pretest": "npm run build:dev",
"build": "npm run build:dev && npm run build:min",
"build:dev": "rollup -c ./script/rollup.config.js",
"build:min": "uglifyjs ./dist/gl-stats.dev.js --mangle --source-map url=gl-stats.min.js.map -o ./dist/gl-stats.min.js",
"start": "electron ./examples",
"server": "preview -p 8002 -e examples",
"dev": "rollup -w -c ./script/rollup.config.js",
"test": "tap test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gamedev-js/gl-stats.git"
},
"keywords": [
"stats"
],
"author": "jwu",
"license": "MIT",
"bugs": {
"url": "https://github.com/gamedev-js/gl-stats/issues"
},
"homepage": "https://github.com/gamedev-js/gl-stats/issues",
"dependencies": {},
"devDependencies": {
"debug-draw": "^1.1.0",
"electron": "^1.7.3",
"fs-jetpack": "^0.13.0",
"preview-server": "^1.0.7",
"regl": "^1.3.0",
"rollup": "^0.54.1",
"rollup-plugin-buble": "^0.18.0",
"scene-graph": "^1.0.4",
"uglify-js": "^3.3.7",
"vmath": "^1.3.1"
},
"files": [
"dist",
"lib",
"index.js"
]
}