-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.49 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
{
"name": "metropoljs",
"version": "0.0.1",
"description": "MetropolJS: Visualizing and Debugging Large-Scale JavaScript Program Structure with Treemaps",
"scripts": {
"start:dev": "parcel --no-hmr -p 8080 --https src/index.html",
"publish:web": "DEMO=y parcel build -d docs --public-url /MetropolJS/ src/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"start:node_test": "node --inspect --inspect-port=9230 example.js",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"author": "Joshua Scarsbrook",
"license": "Apache-2.0",
"devDependencies": {
"@types/acorn": "^4.0.3",
"@types/esprima": "^4.0.1",
"@types/estree": "^0.0.38",
"@types/node": "^9.4.6",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.89.10",
"@types/ws": "^4.0.1",
"gts": "^0.5.3",
"parcel-bundler": "^1.10.0",
"typescript": "~2.6.1"
},
"dependencies": {
"acorn": "^5.7.4",
"chrome-remote-debug-protocol": "^1.2.20170721",
"esprima": "^4.0.0",
"isomorphic-ws": "^4.0.0",
"noice-json-rpc": "^1.1.1",
"stats.js": "^0.17.0",
"three": "^0.137.0",
"ws": "^5.2.3",
"babel-preset-env": "^1.6.1",
"babel-polyfill": "^6.26.0"
}
}