-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
71 lines (71 loc) · 1.7 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "stylelint-config-standard",
"version": "36.0.1",
"description": "Standard shareable config for Stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"standard"
],
"repository": "stylelint/stylelint-config-standard",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
{
"type": "github",
"url": "https://github.com/sponsors/stylelint"
}
],
"license": "MIT",
"author": "Stylelint",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"format": "prettier . --write",
"prepare": "husky",
"lint:formatting": "prettier . --check",
"lint:js": "eslint",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"release": "np --no-release-draft",
"pretest": "npm run lint",
"test": "node --test",
"watch": "npm test --ignore-scripts -- --watch"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"dependencies": {
"stylelint-config-recommended": "^14.0.1"
},
"devDependencies": {
"@stylelint/prettier-config": "^3.0.0",
"@stylelint/remark-preset": "^5.1.1",
"eslint": "^9.14.0",
"eslint-config-stylelint": "^23.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"np": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"remark-cli": "^12.0.1",
"stylelint": "^16.2.1"
},
"peerDependencies": {
"stylelint": "^16.1.0"
},
"engines": {
"node": ">=18.12.0"
}
}