-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "n-health",
"version": "0.0.0",
"description": "Makes it easy to add healthchecks to an app",
"main": "main.js",
"scripts": {
"test": "dotcom-tool-kit test:local",
"build": "dotcom-tool-kit build:local",
"start": "dotcom-tool-kit run:local",
"format": "dotcom-tool-kit format:local"
},
"engines": {
"node": "20.x || 22.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Financial-Times/n-health.git"
},
"license": "MIT",
"bugs": "https://github.com/Financial-Times/n-health/issues",
"homepage": "https://github.com/Financial-Times/n-health#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@dotcom-reliability-kit/eslint-config": "^4.0.0",
"@dotcom-tool-kit/component": "^5.0.2",
"@dotcom-tool-kit/eslint": "^4.0.1",
"@dotcom-tool-kit/husky-npm": "^5.0.1",
"@dotcom-tool-kit/lint-staged-npm": "^4.0.1",
"@dotcom-tool-kit/mocha": "^4.0.1",
"@dotcom-tool-kit/prettier": "^4.0.1",
"@financial-times/eslint-config-next": "^7.1.0",
"dotcom-tool-kit": "^4.0.1",
"mocha": "^11.1.0",
"proxyquire": "^2.1.3",
"sinon": "^19.0.0"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.670.0",
"@dotcom-reliability-kit/logger": "^4.0.0",
"fetchres": "^1.5.1",
"ms": "^2.0.0",
"node-fetch": "^2.6.7"
},
"husky": {
"hooks": {
"pre-commit": "dotcom-tool-kit git:precommit",
"commit-msg": "dotcom-tool-kit git:commitmsg"
}
},
"lint-staged": {
"**/*.js": "dotcom-tool-kit format:staged test:staged --"
},
"volta": {
"node": "22.13.1"
},
"mocha": {
"exit": true
}
}