-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "node-service-starter",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./src/Main.js",
"unit-tests": "jest ./__tests__/unit --coverage --detectOpenHandles",
"integration-tests": "jest ./__tests__/integration",
"analyze": "node ./scripts/runPlato.js"
},
"author": "Ian Reid",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"arc-lib": "^6.0.1",
"aws-sdk": "^2.1066.0",
"cross-fetch": "^3.1.5",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"pg": "^8.7.1",
"redis": "^4.0.3",
"serialize-javascript": "^6.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"es6-plato": "^1.2.3",
"jest": "^27.4.7"
},
"jest": {
"coverageDirectory": "./__tests__/reports/coverage",
"testPathIgnorePatterns": [
"/__mocks__/",
"/reports/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coveragePathIgnorePatterns": [
"/src/Config"
]
},
"plato": {
"reportDirectory": "./__tests__/reports/quality",
"thresholds": {
"maintainability": 60
}
}
}