-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.75 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
62
63
64
65
66
67
68
{
"private": true,
"name": "central-saml-logout",
"version": "1.1.1",
"description": "A dedicated service to perform a SAML 2.0 Single Logout (SLO)",
"license": "Apache License, Version 2.0",
"homepage": "https://github.com/aservo/central-saml-logout#readme",
"bugs": {
"url": "https://github.com/aservo/central-saml-logout/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aservo/central-saml-logout.git"
},
"main": "./src/index.js",
"scripts": {
"start": "node .",
"build": "ncc build ./src/index.js -o ./dist --license licenses.txt",
"test-pre-it": "test/services/it-setup.sh",
"test-post-it": "test/services/it-shutdown.sh",
"test": "jest --runInBand",
"scan": "sonar-scanner"
},
"dependencies": {
"kind-of": "^6.0.x",
"xml2js": "^0.4.x",
"is-xml": "^0.1.x",
"dotenv": "^16.0.0",
"commander": "^9.1.x",
"express": "^4.17.x",
"body-parser": "^1.20.x",
"cookie-session": "^2.0.x",
"passport": "^0.5.x",
"passport-saml": "^3.2.x"
},
"devDependencies": {
"@vercel/ncc": "^0.33.x",
"jest": "^27.5.x",
"jest-puppeteer": "^6.1.x",
"jest-sonar-reporter": "^2.0.x",
"sonarqube-scanner": "^2.8.x"
},
"jest": {
"verbose": true,
"testMatch": [
"**/test/src/**/*.test.js"
],
"testTimeout": 60000,
"preset": "jest-puppeteer",
"testResultsProcessor": "jest-sonar-reporter",
"collectCoverage": true,
"coverageDirectory": "./tmp/coverage",
"coverageReporters": [
"json",
"lcov",
"text"
],
"collectCoverageFrom": [
"**/src/**/*.js",
"!**/node_modules/**"
]
},
"jestSonar": {
"reportPath": "./tmp",
"reportFile": "test-report.xml",
"indent": 4
}
}