-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.41 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
{
"name": "stylelint-config-sugarss-recommended",
"version": "3.0.0",
"description": "Recommended shareable config of SugarSS for stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"recommended",
"sugarss"
],
"author": "kkoudev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kkoudev/stylelint-config-sugarss-recommended.git"
},
"main": "index.js",
"files": [
"index.js"
],
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-stylelint": "^12.0.0",
"jest": "^26.4.2",
"mixin-deep": "^2.0.1",
"npm-run-all": "^4.1.3",
"npmpub": "^5.0.0",
"remark-cli": "^8.0.1",
"remark-preset-lint-consistent": "^3.0.1",
"remark-preset-lint-recommended": "^4.0.1",
"set-value": "^3.0.2",
"stylelint": "^13.7.1"
},
"peerDependencies": {
"stylelint": ">= 13.7"
},
"scripts": {
"dry-release": "npmpub --dry --verbose",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail",
"lint": "run-p lint:*",
"pretest": "npm run lint",
"release": "npmpub",
"test": "jest",
"watch": "jest --watch"
},
"eslintConfig": {
"extends": [
"stylelint"
]
},
"jest": {
"testEnvironment": "node",
"verbose": true
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
"remark-preset-lint-consistent"
]
}
}