-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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
{
"name": "nodejsexpressapp",
"version": "1.0.0",
"description": "Start building your next Node.js Express app on IBM Cloud.",
"private": true,
"engines": {
"node": "^12.0.0"
},
"scripts": {
"dev": "nodemon server/server.js",
"start": "node server/server.js",
"check-coverage": "nyc report --check-coverage --lines 100",
"lint": "eslint --ignore-path .gitignore .",
"fix": "eslint --ignore-path .gitignore . --fix",
"test": "nyc mocha test --recursive --exit"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run check-coverage"
}
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
"test"
],
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"geoip-lite": "^1.4.2",
"ibm-cloud-env": "^0",
"querystring": "^0.2.0",
"request": "^2.88.2",
"swagger-ui-express": "^4.1.4",
"system-sleep": "^1.3.6"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-strongloop": "^2.1.0",
"husky": "^4.2.5",
"mocha": "^7.1.2",
"nodemon": "^2.0.4",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"supertest": "^4.0.2"
}
}