-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "@ofk/stylelint-config-recommend",
"version": "7.1.0",
"description": "stylelint config with scss support",
"license": "MIT",
"author": "ofk <[email protected]> (https://github.com/ofk/)",
"repository": {
"type": "git",
"url": "git+https://github.com/ofk/stylelint-config-recommend.git"
},
"main": "index.mjs",
"files": [
"*.mjs"
],
"scripts": {
"lint": "run-s -c lint:*",
"lint:package-json": "prettier-package-json -l",
"lint:prettier": "prettier --check .",
"lint-fix": "run-s -c lint-fix:*",
"lint-fix:package-json": "prettier-package-json --write",
"lint-fix:prettier": "prettier --write .",
"prepare": "husky install",
"test": "stylelint --aei \"test/**/*.{css,scss}\""
},
"dependencies": {
"stylelint-config-clean-order": "5.4.2",
"stylelint-config-recommended-scss": "14.0.0",
"stylelint-config-standard": "36.0.0",
"stylelint-scss": "6.2.1"
},
"devDependencies": {
"husky": "9.0.11",
"lint-staged": "15.2.2",
"npm-run-all": "4.1.5",
"prettier": "3.2.5",
"prettier-package-json": "2.8.0",
"stylelint": "16.4.0"
},
"lint-staged": {
"*.{css,js,json,md,scss}": "prettier --write",
"package.json": [
"prettier --write",
"npm run lint-fix:package-json"
]
}
}