-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1 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
{
"name": "stylelint-config-itp",
"version": "2.0.0",
"description": "In The Pocket config for stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"itp"
],
"author": "In The Pocket",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/inthepocket/stylelint-config-itp.git"
},
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"test": "stylelint test/**/*.css --config index.js --fix && stylelint test/**/*.scss --config index.js --fix"
},
"files": [
"index.js"
],
"dependencies": {
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.1.3"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"stylelint": "^9.10.1"
},
"peerDependencies": {
"stylelint": "^9.3.0"
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --config index.js --fix",
"git add"
]
}
}