-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.66 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.66 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
{
"name": "nodews",
"version": "1.0.0",
"description": "Sample web service in node",
"main": "app.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha --timeout 120000 test/*/*.js",
"start": "node --harmony --max_old_space_size=400 app.js",
"lint": "mkdir -p artifacts/lint/ && ./node_modules/.bin/jshint . --verbose",
"lint-jenkins": "mkdir -p artifacts/lint/ && ./node_modules/.bin/jshint . --verbose --reporter=checkstyle > artifacts/lint/jshint.xml || exit 0",
"devtest": "./node_modules/.bin/jenkins-mocha --cobertura test/*",
"coverage": "./node_modules/.bin/istanbul cover --report html ./node_modules/mocha/bin/_mocha -- --timeout 120000 test/*/*.js"
},
"author": "Gorav Singal",
"license": "ISC",
"dependencies": {
"body-parser": "1.18.3",
"cache-manager": "2.9.0",
"celebrate": "8.0.2",
"compression": "1.7.3",
"convict": "4.3.2",
"cookie-parser": "1.4.3",
"debug": "4.0.1",
"express": "4.16.3",
"express-session": "1.15.6",
"express-winston": "2.4.0",
"flavored-path": "0.0.8",
"helmet": "3.13.0",
"passport": "0.4.0",
"passport-dummy": "0.0.1",
"passport-saml": "0.35.0",
"passport-strategy": "1.0.0",
"promise-events": "0.1.4",
"randomstring": "1.1.5",
"request": "2.88.0",
"sharp": "0.20.8",
"underscore": "1.9.1",
"urijs": "1.19.1",
"winston": "2.4.0",
"winston-daily-rotate-file": "3.3.2",
"zlib": "1.0.5"
},
"devDependencies": {
"chai": "4.1.2",
"istanbul": "0.4.5",
"jenkins-mocha": "6.0.0",
"jshint": "2.9.6",
"mocha": "5.2.0",
"proxyquire": "2.1.0",
"sinon": "6.3.4",
"sinon-chai": "3.2.0"
}
}