This repository has been archived by the owner on Dec 6, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 255
/
package.json
80 lines (80 loc) · 1.58 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
79
80
{
"private": true,
"name": "poi",
"scripts": {
"lint": "xo",
"test": "sh tasks/test.sh",
"commit": "git-cz",
"release": "lerna version --conventional-commits"
},
"repository": {
"type": "git",
"url": "[email protected]:egoist/poi.git"
},
"workspaces": [
"core/*",
"plugins/*",
"other-packages/*",
"create-poi-app"
],
"devDependencies": {
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^4.2.5",
"jest": "^25.5.2",
"lerna": "^3.22.1",
"lint-staged": "^8.1.0",
"xo": "^0.23.0"
},
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended"
],
"rules": {
"unicorn/filename-case": "off",
"no-await-in-loop": "off",
"unicorn/no-abusive-eslint-disable": "off",
"no-multi-assign": "off",
"camelcase": "off"
},
"envs": [
"jest"
],
"ignores": [
"create-poi-app/generator/templates/**",
"test/kitchensink/**",
"**/example/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"xo --fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
},
"ignore": [
"create-poi-app/generator/templates/**",
"test/kitchensink/**",
"**/example/**"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}