forked from jawaid/micro-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1021 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
47
48
49
50
51
52
53
{
"name": "micro-www",
"version": "0.0.1",
"main": "www.app.js",
"author": "Kai",
"scripts": {
"start": "node www.app.js"
},
"dependencies": {
"body-parser": "~1.12.0",
"debug": "~2.1.1",
"express": "~4.12.2",
"method-override": "^2.3.3",
"winston": "^1.0.1"
},
"jshintConfig": {
"node": true,
"undef": true,
"noarg": true,
"white": true,
"esnext": true,
"strict": true,
"newcap": true,
"nonbsp": true,
"eqeqeq": true,
"unused": true,
"maxlen": 80,
"indent": 2,
"bitwise": true,
"noempty": true,
"latedef": "nofunc",
"maxdepth": 5,
"quotmark": "single",
"trailing": true,
"camelcase": true,
"maxparams": 8,
"globalstrict": true,
"maxcomplexity": 10,
"maxstatements": 40,
"predef": [
"ApiError",
"ActErr",
"logger",
"util",
"sendErrorAndLog",
"shipError",
"sendJSONResponse",
"config",
"MessageTypes",
"safeGet"
]
}
}