-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
{
"name": "ensiie-test-back",
"version": "1.0.0",
"description": "",
"main": "app.js",
"devDependencies": {
"@stryker-mutator/core": "^1.1.1",
"@stryker-mutator/html-reporter": "^1.1.1",
"@stryker-mutator/javascript-mutator": "^1.1.1",
"@stryker-mutator/jest-runner": "^1.1.1",
"jest": "^24.1.0",
"stryker-cli": "^1.0.0",
"cors": "^2.8.5"
},
"scripts": {
"start": "pm2 start process.json --attach",
"start.ci": "pm2 start process.json",
"stop": "pm2 stop process.json",
"kill": "pm2 kill",
"unit.test": "jest",
"unit.test.coverage": "jest --coverage",
"unit.test.mutation": "stryker run",
"api.test": "newman run tests/api/collection.json"
},
"jest": {
"verbose": true,
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"install": "^0.12.2",
"lowdb": "^1.0.0",
"newman": "^4.4.1",
"npm": "^6.9.0",
"pm2": "^3.4.1",
"uuid": "^3.3.2"
}
}