-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1009 Bytes
/
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
{
"name": "@hmcts/nodejs-healthcheck",
"version": "1.8.5",
"description": "Healthcheck endpoint for Reform nodejs applications",
"main": "index.js",
"engines": {
"node": ">=18.19.0"
},
"scripts": {
"test": "mocha test/unit/* --reporter spec",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git@git.github.com:hmcts/nodejs-healthcheck.git"
},
"author": "HMCTS Reform",
"license": "MIT",
"dependencies": {
"@hmcts/nodejs-logging": "^4.0.4",
"js-yaml": "^4.0.0",
"superagent": "9"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.16.4",
"mocha": "10",
"nock": "13",
"proxyquire": "2",
"sinon": "17",
"sinon-chai": "3",
"supertest": "7"
}
}