-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 916 Bytes
/
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
{
"name": "css-unit-converter",
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-jwilsson": "^4.1.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.5",
"parcel-bundler": "^1.11.0",
"parcel-plugin-clean-dist": "0.0.6",
"postcss-nesting": "^7.0.0",
"stylelint": "^10.1.0",
"stylelint-config-jwilsson": "^3.0.0"
},
"scripts": {
"build": "parcel build src/index.html --public-url ./",
"start": "parcel serve src/index.html"
},
"lint-staged": {
"*.js": [
"eslint src/ --fix",
"git add"
],
"*.css": [
"stylelint src/ --fix",
"git add"
]
},
"postcss": {
"plugins": {
"postcss-nesting": {}
}
},
"eslintConfig": {
"extends": "eslint-config-jwilsson/browser"
},
"stylelint": {
"extends": "stylelint-config-jwilsson"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}