-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.02 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.02 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "admiral",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git@github.com:Shippable/admiral.git"
},
"dependencies": {
"amqp": "0.2.6",
"angular-ui-bootstrap": "2.5.0",
"async": "2.0.0",
"aws-sdk": "2.82.0",
"body-parser": "1.18.3",
"bower": "^1.7.7",
"compression": "1.7.3",
"cookie-parser": "1.4.3",
"@cgross/angular-notify": "2.5.1",
"ejs": "^2.5.6",
"express": "4.16.4",
"fs-extra": "^0.30.0",
"glob": "7.0.5",
"grunt": "1.0.3",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-watch": "1.1.0",
"js-yaml": "3.6.1",
"method-override": "2.3.10",
"moment": "2.24.0",
"mongoose": "5.4.8",
"node-uuid": "1.4.7",
"oauth": "0.9.14",
"pg": "6.0.5",
"pg-hstore": "2.3.2",
"proxy-agent": "3.0.3",
"redis": "2.6.2",
"remove-markdown": "0.1.0",
"request": "2.88.0",
"serve-favicon": "^2.4.1",
"ssh-keygen": "0.2.1",
"tmp": "0.0.28",
"underscore": "1.8.3",
"ursa": "0.9.4",
"validator": "6.1.0",
"winston": "2.2.0"
},
"scripts": {
"postinstall": "./node_modules/bower/bin/bower --allow-root install",
"update-deps": "npm update",
"postupdate-deps": "bower update"
},
"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": [
"ActErr",
"logger",
"util",
"sendJSONResponse",
"respondWithError",
"config",
"$",
"window",
"angular",
"async",
"document",
"admiral",
"Clipboard"
]
}
}