forked from hmcts/ccpay-cpo-function-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"name": "ccpay-cpo-callback-function",
"version": "1.0.0",
"private": true,
"main": "index.js",
"engines": {
"node": ">=12.16.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": "^0.0.9",
"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": "^2.6.1",
"**/lodash": "^4.17.21",
"**/**/lodash": "^4.17.21"
}
}