-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nori",
"version": "2.0.0-beta.3",
"description": "",
"bin": "src/index.js",
"scripts": {
"test": "npm run lint && npm run unit-test",
"unit-test": "jest",
"lint": "eslint src/ test/",
"lint-fix": "eslint --fix src/ test/",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "[email protected]:Financial-Times/transformation-runner.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"@financial-times/biz-ops-client": "^0.8.0",
"@financial-times/git": "^2.1.0",
"@octokit/plugin-retry": "^3.0.5",
"@octokit/plugin-throttling": "^3.3.4",
"@octokit/rest": "^18.0.9",
"ansi-colors": "^3.2.4",
"enquirer": "2.3.0",
"error-subclass": "^2.2.0",
"get-stdin": "^6.0.0",
"got": "^9.6.0",
"immer": "^3.1.2",
"komatsu": "^1.3.0",
"mkdirp": "^0.5.5",
"mz": "^2.7.0",
"promise.allsettled": "^1.0.1",
"rmfr": "^2.0.0",
"thenify": "^3.3.1",
"tiny-relative-date": "^1.3.0",
"yargs": "^16.1.1"
},
"devDependencies": {
"@quarterto/eslint-config": "^1.4.0",
"@quarterto/prettier": "^1.1.0",
"check-engine": "^1.10.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-no-only-tests": "^2.1.0",
"husky": "^2.3.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^8.1.7",
"memfs": "^2.15.2",
"prettier": "^1.17.0"
},
"engines": {
"node": "16.x || 18.x",
"npm": "7.x || 8.x || 9.x"
},
"eslintConfig": {
"extends": [
"@quarterto"
]
},
"prettier": "@quarterto/prettier",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"volta": {
"node": "18.16.0"
}
}