forked from spacejack/terra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 965 Bytes
/
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
{
"name": "terrain",
"version": "1.0.0",
"private": true,
"description": "Terrain",
"licence": "CREATIVE COMMONS ATTRIBUTION-NONCOMMERCIAL 4.0 INTERNATIONAL LICENSE",
"author": "Mike Linkovich",
"scripts": {
"serve": "http-server -p 3000 public",
"compile": "browserify --debug src/main.ts -p [ tsify --project src/tsconfig.json ] -o public/js/terra.js",
"watch": "watchify -v --debug src/main.ts -p [ tsify --project src/tsconfig.json ] -o public/js/terra.js",
"build": "browserify src/main.ts -p [ tsify --project src/tsconfig.json ] | uglifyjs -cm -o public/js/terra.js",
"clean": "rm -f public/js/terra.js",
"start": "npm-run-all -p watch serve"
},
"devDependencies": {
"@types/three": "0.83.5",
"browserify": "^14.1.0",
"http-server": "^0.9.0",
"npm-run-all": "^4.0.2",
"tsify": "^3.0.1",
"tslint": "^4.5.1",
"typescript": "2.2.1",
"uglify-js": "^2.8.8",
"watchify": "^3.9.0"
}
}