-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "bluecompute-web",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "jest --coverage",
"sonar": "node sonar-project.js -X",
"postinstall": "HOME=$PWD ./node_modules/.bin/bower install --allow-root"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testResultsProcessor": "jest-sonar-reporter"
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "test-reporter.xml",
"indent": 4
},
"directories": {
"test": "test"
},
"engines": {
"node": "8.11.1",
"npm": "5.6.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"bower": "1.8.8",
"cfenv": "^1.2.2",
"chai": "3.4.1",
"client-oauth2": "2.0.0",
"config": "1.19.0",
"cookie-parser": "1.3.5",
"debug": "2.6.9",
"express": "^4.17.1",
"express-session": "^1.17.1",
"handlebars": "^4.7.6",
"jest": "^25.1.0",
"morgan": "^1.10.0",
"ms": "0.7.2",
"open": "6.0.0",
"pretty-hrtime": "1.0.3",
"promise": "7.1.1",
"request": "2.88.2",
"request-promise-json": "1.0.4",
"serve-favicon": "^2.5.0",
"url-pattern": "1.0.1"
},
"devDependencies": {
"jest-sonar-reporter": "^2.0.0",
"mocha": "7.1.2",
"sonarqube-scanner": "^2.6.0",
"supertest": "^4.0.2"
}
}