-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (45 loc) · 1.21 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
{
"name": "discrepancyServer",
"version": "0.0.0",
"private": true,
"engines": {
"node": "6.x.x"
},
"scripts": {
"start" : "cross-env NODE_ENV=dev-local node lib/index.js",
"test:e2e": "cross-env NODE_ENV=test mocha test/*.js",
"test:unit": "cross-env NODE_ENV=test mocha unit/*.js",
"test": "cross-env NODE_ENV=test npm run test:unit && npm run test:e2e",
"test-cov": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec"
},
"dependencies": {
"body-parser": "~1.17.1",
"debug": "~2.6.3",
"express": "~4.15.2",
"jade": "~1.11.0",
"morgan": "~1.8.1",
"serve-favicon": "~2.4.2",
"bunyan": "^1.8.1",
"cookie-parser": "1.4.3",
"ejs": "2.5.x",
"nconf": "0.8.4",
"bunyan-prettystream": "latest",
"mongoose": "latest",
"bluebird": "latest",
"lodash": "latest",
"supertest": "3.0.x",
"supertest-as-promised": "^4.0.2",
"q": "latest",
"multer": "1.3.0",
"deep-diff": "0.3.4",
"bignumber.js": "4.0.2",
"log": "1.4.0"
},
"devDependencies": {
"supertest": "^3.0.0",
"mocha": "^3.2.0",
"mochawesome": "^2.0.3",
"should": "11.2.0",
"cross-env": "5.0.1"
}
}