-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.03 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
65
66
67
68
69
70
71
{
"name": "sage-node",
"version": "0.0.1",
"private": true,
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"debug": "node --inspect-brk=8081 ./bin/www",
"start:test": "node ./bin/test",
"test": "node --experimental-modules node_modules/mocha/bin/_mocha --opts mocha.opts \"./{,!(node_modules)/**/}__tests__/*.js\"",
"test:coverage": "nyc --reporter=text --reporter=cobertura npm test",
"test:unit": "mocha --recursive test/middleware test/models test/routes",
"test:integration": "mocha --opts mocha.opts --recursive --bail integration-tests",
"lint": "node node_modules/semistandard/bin/cmd.js",
"gulp": "gulp",
"mocks": "node $NODE_DEBUG_OPTION mocks/mocks.js"
},
"dependencies": {
"acorn": "^6.0.0",
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"cookie-parser": "^1.3.3",
"cors": "^2.8.1",
"express": "^4.13.3",
"glob": "^6.0.4",
"gridfs-stream": "^1.1.1",
"jade": "^1.11.0",
"java": "^0.12.0",
"lodash": "^4.16.6",
"method-override": "^2.3.0",
"mongoose": "^4.1.2",
"mongoose-id-validator": "^0.4.0",
"morgan": "^1.6.1",
"multer": "^1.3.0",
"multer-gridfs-storage": "^3.2.3",
"request": "^2.78.0",
"request-promise-native": "^1.0.3",
"serve-favicon": "^2.3.0",
"sillyname": "^0.1.0",
"tmp": "0.0.31",
"xml2js": "0.4.19"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-things": "^0.2.0",
"debug": "^2.2.0",
"eslint": "^5.4.0",
"fs": "0.0.1-security",
"gulp": "^4.0.0",
"gulp-livereload": "^3.8.0",
"gulp-nodemon": "^2.0.2",
"gulp-plumber": "^1.0.0",
"gulp-ruby-sass": "^2.0.1",
"gulp-sass": "^3.1.0",
"gulp-zip": "^4.1.0",
"minimist": "^1.2.0",
"mocha": "^3.0.2",
"moment": "^2.21.0",
"needle": "^1.3.0",
"nyc": "^8.1.0",
"path": "^0.12.7",
"semistandard": "^13.0.1",
"sinon": "^1.17.6",
"sinon-mocha": "0.0.3",
"supertest": "^2.0.0"
},
"resolutions": {
"natives": "^1.1.6"
}
}