-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "earthbound-js",
"version": "0.0.1",
"description": "An Earthbound Demo in Javascipt",
"main": "build/js/app.min.js",
"scripts": {
"lint": "eslint --quiet --cache . --ext .js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Cary Stanley",
"browser": {
"Stats": "./js/lib/stats.min.js",
"slopes": "./js/lib/phaser-arcade-slopes.min.js",
"ninepatch": "./js/lib/nine-patch-phaser-plugin.min.js"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"eslint": "^3.0.0",
"grunt": "^0.4.5",
"grunt-browserify": "^5.0.0",
"grunt-cache-bust": "^1.1.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.1.1",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jade": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-stylus": "^1.2.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-open": "^0.2.3",
"phaser": "2.4.8",
"pre-commit": "^1.1.0"
},
"eslintConfig": {
"es6": true
},
"pre-commit": [
"lint"
]
}