-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1007 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1007 Bytes
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
{
"name": "shippable.reqKick",
"license": "MIT",
"description": "Shippable build request kick-starter",
"repository": {
"type": "git",
"url": "https://github.com/Shippable/reqKick.git"
},
"scripts": {
"lint": "jshint --exclude ./node_modules ."
},
"dependencies": {
"async": "2.5.0",
"dotenv": "4.0.0",
"node-uuid": "1.4.8",
"request": "2.83.0",
"underscore": "1.8.3",
"winston": "2.4.0"
},
"devDependencies": {
"jshint": "2.9.7"
},
"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,
"maxparams": 20,
"globalstrict": true,
"maxcomplexity": 20,
"maxstatements": 50,
"predef": ["logger"]
}
}