This repository was archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ccpay-cpo-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 . --ext .js",
"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": "^1.7.5",
"config": "^3.3.1",
"otp": "^0.1.3",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"request-promise-native": "^1.0.9",
"superagent": "^5.2.2"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"debug": "^4.1.1",
"eslint": "^7.32.0",
"express": "^4.17.1",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"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": {
"node-fetch": ">=3.3.2",
"cookiejar": ">=2.1.4",
"xml2js": ">=0.6.2",
"json5": ">=2.2.3",
"json-schema": " 0.4.0",
"qs": ">=6.5.3",
"tough-cookie": ">=4.1.3"
},
"packageManager": "yarn@3.6.2"
}