-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "@medic/cht-upgrade-service",
"version": "1.0.0",
"description": "Docker bridge to upgrade cht service containers",
"main": "src/index.js",
"scripts": {
"eslint": "eslint --color --cache ./src ./test",
"eslint:fix": "eslint --color --cache ./src ./test --fix",
"unit": "mocha ./test/unit/*.js --config ./test/unit/mocharc.js",
"coverage": "nyc npm run unit",
"test": "npm run eslint && npm run coverage",
"e2e": "mocha ./test/e2e/*.js --config ./test/e2e/mocharc.js",
"publish": "node ./test/publish/index.js"
},
"engines": {
"node": ">=16.12.0",
"npm": ">=8.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medic/cht-upgrade-service.git"
},
"author": "Diana Barsan",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/medic/cht-upgrade-service/issues"
},
"homepage": "https://github.com/medic/cht-upgrade-service#readme",
"dependencies": {
"body-parser": "^1.19.2",
"express": "^4.17.3"
},
"devDependencies": {
"@medic/eslint-config": "^1.1.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.9.0",
"mocha": "^9.2.1",
"node-fetch": "^2.6.7",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"sinon": "^13.0.1"
}
}