-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "nodejsexpressapp",
"version": "1.0.0",
"description": "Start building your next Node.js Express app on IBM Cloud.",
"private": true,
"engines": {
"node": "^14.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": {
"@ibm-cloud/cloudant": "0.0.20",
"body-parser": "^1.19.0",
"chart.js": "^3.6.0",
"chart.js-image": "^5.6.0",
"chartjs-chart-wordcloud": "^3.6.0",
"express": "^4.17.1",
"ibm-cloud-env": "^0",
"ibm-watson": "^6.2.1",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-strongloop": "^2.1.0",
"husky": "^7.0.2",
"mocha": "^9.1.0",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"supertest": "^6.1.6"
}
}