-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "ft-poller",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/Financial-Times/ft-poller"
},
"license": "MIT",
"description": "An http client to periodically fetch and cache data from web services",
"main": "./src/server.js",
"directories": {
"lib": "./lib"
},
"dependencies": {
"@dotcom-reliability-kit/logger": "^3.0.0",
"isomorphic-fetch": "^3.0.0",
"n-eager-fetch": "^8.0.0"
},
"devDependencies": {
"@dotcom-reliability-kit/eslint-config": "^3.0.0",
"@dotcom-tool-kit/component": "^4.0.5",
"@dotcom-tool-kit/eslint": "^3.1.6",
"@dotcom-tool-kit/mocha": "^3.1.6",
"@financial-times/eslint-config-next": "^7.0.0",
"check-engine": "^1.12.0",
"dotcom-tool-kit": "^3.3.11",
"eslint": "^8.56.0",
"lintspaces-cli": "^1.0.0",
"mocha": "^10.2.0",
"mockery": "^2.1.0",
"nock": "^13.4.0",
"sinon": "^19.0.2"
},
"scripts": {
"build": "dotcom-tool-kit build:local",
"test": "dotcom-tool-kit test:local",
"start": "dotcom-tool-kit run:local"
},
"engines": {
"node": "18.x || 20.x",
"npm": "7.x || 8.x || 9.x || 10.x"
},
"husky": {
"hooks": {
"commit-msg": "dotcom-tool-kit git:commitmsg",
"pre-commit": "dotcom-tool-kit git:precommit",
"pre-push": "dotcom-tool-kit test:local"
}
},
"volta": {
"node": "20.11.0"
}
}