-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.08 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
{
"name": "lint-config",
"workspaces": [
"create-lint-config",
"eslint/*",
"generator-lint-config",
"prettier-config"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"release": "lerna publish --conventional-commits",
"postinstall": "husky install"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^11.2.6",
"prettier": "^2.7.1"
},
"resolutions": {
"minimist": "^1.2.6"
},
"prettier": "./prettier-config",
"lint-staged": {
"*.js": "eslint --fix",
"*.{json,md,yml}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
0
]
}
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"fixtures"
]
},
"packageManager": "[email protected]",
"volta": {
"node": "16.20.2",
"yarn": "1.22.4"
}
}