-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.37 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": "root",
"scripts": {
"format": "prettier 'packages/**/*.js' --write",
"lint": "prettier --check 'packages/**/*.{js,html}' && healthier 'packages/**/*.{js,html}'"
},
"repository": {
"type": "git",
"url": "[email protected]:schn4ck/schnack-plugins"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"healthier": "^2.0.0",
"husky": "^1.3.1",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"healthier",
"git add"
]
},
"prettier": {
"tabWidth": 4,
"semi": true,
"printWidth": 100,
"singleQuote": true
},
"eslintConfig": {
"parser": "babel-eslint",
"rules": {
"no-console": [
"error",
{
"allow": [
"warn",
"error"
]
}
],
"camelcase": [
"warn",
{
"ignoreDestructuring": true,
"properties": "never"
}
]
}
},
"private": true
}