-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 933 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "stanley-squeaks",
"version": "0.0.0",
"description": "LD30 game",
"main": "index.js",
"private": true,
"dependencies": {
"splatjs": "~3.1.0"
},
"devDependencies": {
"browserify": "^4.1.8",
"jshint": "^2.5.1"
},
"scripts": {
"lint-js": "bash -c \"jshint game.js\"",
"build-js": "browserify game.js -o index.js",
"build": "npm run lint-js && npm run build-js"
},
"author": "Eric Lathrop <[email protected]> (http://ericlathrop.com)",
"license": "MIT",
"jshintConfig": {
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 4,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"quotmark": "double",
"unused": "strict",
"trailing": true,
"browser": true,
"devel": true,
"globalstrict": true,
"globals": {
"module": false,
"require": false
}
}
}