-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
{
"name": "ccpay-callback-function",
"version": "1.0.0",
"private": true,
"main": "index.js",
"engines": {
"node": ">=v18.7.1"
},
"scripts": {
"start": "node serviceCallbackFunction/index.js",
"test": "nyc mocha test/*.js",
"lint": "eslint .",
"test:coverage": "nyc check-coverage --statements 80 --branches 80 --functions 20 --lines 80",
"test:a11y": "node --version",
"sonar-scan": "node_modules/sonar-scanner/bin/sonar-scanner"
},
"dependencies": {
"@azure/service-bus": "^1.1.7",
"@hmcts/properties-volume": "^1.0.0",
"applicationinsights": "^2.0.0",
"axios": "^1.5.1",
"config": "^3.3.1",
"node-fetch": ">=3.1.1",
"otp": "^0.1.3"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"debug": "^4.1.1",
"eslint": "^9.0.0",
"express": "^4.17.1",
"globals": "^15.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"otp": "^0.1.3",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"sonar-scanner": "^3.1.0"
},
"nyc": {
"report-dir": "coverage",
"temp-directory": "./coverage/.nyc_output",
"reporter": [
"lcov",
"text"
]
},
"resolutions": {
"axios": "1.6.8",
"node-fetch": ">=3.3.2",
"cookiejar": ">=2.1.4",
"xml2js": ">=0.6.2",
"json5": ">=2.2.3",
"tough-cookie": ">=4.1.3"
},
"packageManager": "[email protected]"
}