-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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": "@financial-times/n-map-content-to-topper",
"version": "0.0.0",
"description": "A library for mapping content to a topper on FT.com and the App",
"main": "main.js",
"scripts": {
"prepare": "husky install",
"precommit": "secret-squirrel && npm run format && npm run fix",
"prepush": "npm run test",
"fix": "eslint '**/*.{js,json,yml}' --fix",
"format": "dotcom-tool-kit format:local",
"build": "dotcom-tool-kit build:local",
"test": "dotcom-tool-kit test:local",
"start": "dotcom-tool-kit run:local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Financial-Times/n-map-content-to-topper.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Financial-Times/n-map-content-to-topper/issues"
},
"homepage": "https://github.com/Financial-Times/n-map-content-to-topper#readme",
"engines": {
"node": "18.x || 20.x",
"npm": "9.x || 10.x"
},
"devDependencies": {
"@dotcom-tool-kit/circleci-npm": "^5.3.3",
"@dotcom-tool-kit/eslint": "^3.2.1",
"@dotcom-tool-kit/mocha": "^3.2.0",
"@dotcom-tool-kit/npm": "^3.3.1",
"@dotcom-tool-kit/prettier": "^3.2.0",
"@financial-times/eslint-config-next": "^4.0.0",
"@financial-times/secret-squirrel": "^2.21.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-yml": "^1.1.0",
"bower": "^1.8.8",
"chai": "^4.2.0",
"dotcom-tool-kit": "^3.5.0",
"husky": "^8.0.0",
"mocha": "^8.1.1",
"proxyquire": "^2.1.3",
"sinon": "^9.0.3"
},
"volta": {
"node": "18.20.2",
"npm": "10.5.0"
},
"husky": {
"hooks": {
"pre-commit": "secret-squirrel && npm run format && npm run fix",
"pre-push": "npm run test"
}
}
}