-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 940 Bytes
/
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
{
"name": "ceos-patient-service",
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageThreshold": {
"./db/index.js": {
"branches": 0,
"statements": 0
}
}
},
"version": "1.0.0",
"description": "patient service for Ceos application",
"main": "index.js",
"scripts": {
"test": "jest",
"test:ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manfioLP/ceos-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/manfioLP/ceos-server/issues"
},
"homepage": "https://github.com/manfioLP/ceos-server#readme",
"devDependencies": {
"jest": "^26.0.1",
"serverless-offline": "^6.4.0"
},
"dependencies": {
"dotenv": "^8.2.0",
"mongoose": "^5.9.19",
"path": "^0.12.7",
"promisify": "0.0.3"
}
}