-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.77 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
60
61
62
63
{
"name": "@financial-times/n-es-client",
"version": "0.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:Financial-Times/n-es-client.git"
},
"homepage": "https://github.com/Financial-Times/n-es-client",
"dependencies": {
"@dotcom-reliability-kit/logger": "^2.2.6",
"http-errors": "^1.8.0",
"signed-aws-es-fetch": "^1.6.0"
},
"overrides": {
"signed-aws-es-fetch": {
"node-fetch": "^2.6.1"
}
},
"devDependencies": {
"@dotcom-tool-kit/circleci": "^6.0.1",
"@dotcom-tool-kit/circleci-npm": "^5.3.5",
"@dotcom-tool-kit/eslint": "^3.2.0",
"@dotcom-tool-kit/mocha": "^3.2.1",
"@dotcom-tool-kit/npm": "^3.3.2",
"@dotcom-tool-kit/prettier": "^3.2.1",
"@financial-times/eslint-config-next": "^4.0.0",
"@financial-times/secret-squirrel": "^2.21.0",
"chai": "^4.1.0",
"check-engine": "^1.14.0",
"coveralls": "^3.0.0",
"dotcom-tool-kit": "^3.5.2",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-yml": "^1.1.0",
"husky": "^7.0.4",
"mocha": "^6.0.0",
"nock": "^11.0.0",
"nyc": "^11.8.0",
"sinon": "^5.0.0"
},
"engines": {
"node": "18.x || 20.x || 22.x",
"npm": "9.x || 10.x"
},
"scripts": {
"prepare": "husky install",
"preinstall": "[ \"$INIT_CWD\" != \"$PWD\" ] || npm_config_yes=true npx check-engine",
"build": "dotcom-tool-kit build:local",
"test": "dotcom-tool-kit test:local",
"start": "dotcom-tool-kit run:local",
"fix:js": "eslint --fix '**/*.{js,json,yml}'",
"fix": "npm run fix:js",
"precommit": "secret-squirrel && npm run format && npm run fix",
"prepush": "npm run test",
"format": "dotcom-tool-kit format:local",
"coverage": "nyc --reporter=lcovonly mocha --config=.mocharc.json"
},
"volta": {
"node": "18.20.2"
}
}