-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.37 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
{
"author": "Iván Corrales Solera <[email protected]>",
"name": "nodejs_ci",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon -q -r dotenv/config index.js",
"lint": "eslint --ignore-path .gitignore .",
"test": "jest --detectOpenHandles"
},
"license": "ISC",
"jest": {
"preset": "@shelf/jest-mongodb",
"moduleFileExtensions": [
"js",
"json"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts}",
"!**/node_modules/**",
"!**/build/**",
"!**/coverage/**"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coverageReporters": [
"text",
"text-summary"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)x?$",
"testPathIgnorePatterns": [
"/node_modules/",
"/build/",
"/coverage/"
]
},
"dependencies": {
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"mongoose": "^5.6.7"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.0",
"dotenv": "^7.0.0",
"eslint": "^6.1.0",
"eslint-config-strongloop": "^2.1.0",
"jest": "^24.8.0",
"js-beautify": "^1.10.1",
"nodemon": "^1.18.10",
"supertest": "^4.0.2"
}
}