-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "hacked_ghost",
"description": "Futuristic 3D hacking game",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"private": true,
"author": "David Konsumer <konsumer@jetboystudio.com>",
"dependencies": {
"canvas-fit": "^1.4.0",
"emitonoff": "0.0.8",
"es6-promise": "^2.1.0",
"load-json-xhr": "^3.0.1",
"raf-loop": "^1.0.1",
"three": "^0.70.0",
"three-effectcomposer": "0.0.1"
},
"devDependencies": {
"babelify": "^6.0.2",
"browserify": "^9.0.8",
"budo": "^3.0.4",
"errorify": "^0.2.4",
"garnish": "^2.1.3",
"gh-pages-deploy": "^0.3.0",
"uglify-js": "^2.4.20",
"watchify": "^3.6.1"
},
"scripts": {
"build": "browserify src/index.js -t babelify | uglifyjs -cm > webroot/bundle.js",
"start": "budo src/index.js:bundle.js --live -v -t babelify -p errorify --dir webroot | garnish",
"deploy": "gh-pages-deploy"
},
"gh-pages-deploy": {
"staticpath": "webroot",
"prep": [
"build"
],
"noprompt": true
},
"repository": {
"type": "git",
"url": "git://github.com/notnullgames/hacked_ghost.git"
},
"homepage": "https://github.com/notnullgames/hacked_ghost",
"bugs": {
"url": "https://github.com/notnullgames/hacked_ghost/issues"
}
}