-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 KB
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
{
"name": "@financial-times/user-agent",
"version": "0.0.0",
"description": "A library to generate user-agent strings that conform to the FT standard",
"repository": {
"type": "git",
"url": "https://github.com/Financial-Times/user-agent-node.git"
},
"homepage": "https://github.com/Financial-Times/user-agent-node",
"bugs": "https://github.com/Financial-Times/user-agent-node/issues",
"license": "MIT",
"main": "lib/user-agent.js",
"types": "types/user-agent.d.ts",
"scripts": {
"build": "dotcom-tool-kit build:local",
"test": "dotcom-tool-kit test:local",
"start": "dotcom-tool-kit run:local",
"format": "dotcom-tool-kit format:local"
},
"dependencies": {
"@dotcom-reliability-kit/app-info": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@commitlint/config-conventional": "^20.5.0",
"@dotcom-reliability-kit/eslint-config": "^4.1.0",
"@dotcom-tool-kit/commitlint": "^2.1.0",
"@dotcom-tool-kit/component": "^7.0.1",
"@dotcom-tool-kit/eslint": "^5.0.1",
"@dotcom-tool-kit/husky-npm": "^6.0.1",
"@dotcom-tool-kit/lint-staged-npm": "^5.0.1",
"@dotcom-tool-kit/node-test": "^2.0.1",
"@dotcom-tool-kit/prettier": "^5.0.1",
"@dotcom-tool-kit/typescript": "^4.1.0",
"@financial-times/eslint-config-next": "^7.1.0",
"dotcom-tool-kit": "^5.2.0",
"eslint-plugin-prettier": "^5.5.5",
"quibble": "^0.9.2"
},
"engines": {
"node": "20.x || 22.x || 24.x"
},
"lint-staged": {
"**/*.js": "dotcom-tool-kit format:staged test:staged --"
},
"husky": {
"hooks": {
"pre-commit": "dotcom-tool-kit git:precommit",
"commit-msg": "dotcom-tool-kit git:commitmsg"
}
},
"volta": {
"node": "22.13.1"
}
}