-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "stylelint-config-hudochenkov",
"version": "11.0.0",
"description": "My Stylelint config",
"main": "index.js",
"files": [
"full.js",
"index.js",
"limit-language-features.js",
"order.js",
"possible-errors.js",
"stylistic-issues.js"
],
"scripts": {
"prettier-check": "prettier '**/*.js' --check",
"lint": "eslint . --max-warnings=0 && npm run prettier-check",
"fix": "eslint . --fix --max-warnings=0 && prettier '**/*.js' --write",
"test": "stylelint test.css --max-warnings 0 --config full.js",
"prepare": "husky"
},
"repository": "hudochenkov/stylelint-config-hudochenkov",
"author": "Aleks Hudochenkov <[email protected]> (https://hudochenkov.com)",
"license": "MIT",
"eslintConfig": {
"extends": [
"eslint-config-hudochenkov",
"eslint-config-prettier"
]
},
"prettier": "prettier-config-hudochenkov",
"peerDependencies": {
"stylelint": "^16.0.2",
"stylelint-order": "^6.0.4"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-hudochenkov": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-config-hudochenkov": "^0.4.0",
"stylelint": "^16.10.0",
"stylelint-order": "^6.0.4"
},
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings=0",
"prettier --write"
]
}
}