forked from drone-wars/drone-wars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.39 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
56
57
58
59
60
61
62
63
64
{
"name": "drone-wars",
"version": "0.0.0",
"description": "A drone battleground with done brains encased in web workers.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "cd frontend; bower install; cd .."
},
"repository": {
"type": "git",
"url": "git://github.com/qubyte/drone-wars.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/qubyte/drone-wars/issues"
},
"homepage": "https://github.com/qubyte/drone-wars",
"dependencies": {
"async": "0.9.0",
"connect-busboy": "0.0.1",
"express": "4.8.7",
"hogan.js": "^2.0.0",
"lodash.difference": "2.4.1",
"lodash.find": "2.4.1",
"string": "^2.0.1",
"yargs": "1.3.1"
},
"devDependencies": {
"bower": "1.3.9"
},
"jshintConfig": {
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": false,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"plusplus": false,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": false,
"trailing": true,
"maxparams": 5,
"maxdepth": 3,
"maxcomplexity": 11,
"maxlen": 100,
"smarttabs": true,
"node": true,
"browser": true,
"esnext": true,
"predef": [
"define"
]
}
}