-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 988 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
41
{
"name": "sample",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "SERVER=http://localhost:8082 node server.js",
"test": "SERVER=http://localhost:8082 nyc mocha --exit",
"sonar": "sonar-scanner"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testResultsProcessor": "jest-sonar-reporter"
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "test-reporter.xml"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"jest-sonar-reporter": "^2.0.0",
"mocha": "^6.2.3",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"jest": "^26.1.0",
"request": "^2.88.2",
"sonarqube-scanner": "^2.0.2"
}
}