-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
51
52
53
54
55
{
"name": "hotair-prototypes",
"version": "0.0.9",
"description": "Prototyping for Hot Air game.",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "budo index.js -H 0.0.0.0 --live --open --css styles.css -- -t browserify-shim",
"setup": "npm install; cp ./node_modules/craftyjs/dist/crafty.js ./assets/crafty.js",
"build": "budo-demo index.js -i assets -c styles.css -m -- -t browserify-shim",
"deploy": "npm run build; gh-pages -d dist; npm run clean",
"clean": "rm -r dist"
},
"contributors": [
{
"name": "Andy Dayton",
"email": "[email protected]",
"url": "http://andydayton.com/"
},
{
"name": "Jonathan Wohl",
"email": "[email protected]",
"url": "http://jonathanwohl.com/"
}
],
"browser": {
"craftyjs": "./node_modules/craftyjs/src/crafty.js"
},
"browserify-shim": {
"craftyjs": "global:Crafty"
},
"dependencies": {
"browser-size": "^0.1.0",
"craftyjs": "^0.7.1",
"es6-promise": "^3.2.1",
"exdat": "^0.6.2",
"hammerjs": "^2.0.8",
"keydown": "0.0.3",
"solve-quadratic-equation": "^0.1.0",
"swipe-event": "^0.4.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify-shim": "^3.8.12",
"budo": "~7.1.0",
"budo-demo": "^0.1.1",
"gh-pages": "^0.11.0"
},
"repository": {
"type": "git",
"url": "git://github.com/notioncollective/hotair-prototypes.git"
},
"homepage": "https://github.com/notioncollective/hotair-prototypes"
}