-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
{
"name": "stylelint-config-standard",
"version": "21.0.0",
"description": "Standard shareable config for stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"standard"
],
"repository": {
"type": "git",
"url": "https://github.com/stylelint/stylelint-config-standard.git"
},
"license": "MIT",
"author": "stylelint",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"format": "prettier . --write",
"prepare": "is-ci || husky install",
"lint:formatting": "prettier . --check",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "np",
"test": "jest",
"watch": "jest --watch"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"eslintConfig": {
"extends": [
"stylelint"
]
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"dependencies": {
"stylelint-config-recommended": "^4.0.0"
},
"devDependencies": {
"@stylelint/prettier-config": "^2.0.0",
"@stylelint/remark-preset": "^2.0.0",
"eslint": "^7.21.0",
"eslint-config-stylelint": "^13.1.0",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"np": "^7.4.0",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"remark-cli": "^9.0.0",
"stylelint": "^13.12.0"
},
"peerDependencies": {
"stylelint": "^13.12.0"
}
}