-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "bookstore",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon app/app.js",
"lint": "./node_modules/.bin/eslint 'app.js' 'route.js' 'config.js' 'externalServerUrl.js' 'app/**/*.js' -f table --fix",
"test:coverage": "NODE_ENV=test nyc npm run test:unit",
"test:unit": "node specs/_run.js",
"test:integration": "node specs/integrationTest/_run-integration.js",
"test:integration:coverage": "NODE_ENV=test nyc npm run test:integration",
"test": "npm run test:unit",
"test:lint": "eslint -c specs/.eslintrc.js 'specs/**/*.spec.js' -f table table --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.16.1",
"bootstrap": "^3.3.7",
"compression": "^1.7.0",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"jasmine": "^2.7.0",
"jasmine-console-reporter": "^1.2.7",
"jasmine-supertest": "^1.0.0",
"moment": "^2.18.1",
"nyc": "^11.1.0",
"really-need": "^1.9.2",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"supertest": "^3.0.0",
"url-template": "^2.0.8",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"events": "^1.1.1",
"nock": "^9.0.14",
"node-mocks-http": "^1.6.4",
"should": "^11.2.1"
},
"nyc": {
"include": [
"app/server/**/*.js"
],
"exclude": [
"spec/**/*.spec.js",
"app/server/services/common/globalErrorHandler.js"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"cache": false,
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 90
}
}