-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "stylelint-config-standard-scss",
"version": "13.1.0",
"description": "The standard shareable SCSS config for Stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"standard",
"scss"
],
"repository": "stylelint-scss/stylelint-config-standard-scss",
"license": "MIT",
"author": "Stylelint SCSS",
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"format": "prettier . --write --ignore-path=.prettierignore",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier . --check",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"release": "np",
"test": "node --test",
"watch": "node --test --watch"
},
"dependencies": {
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1"
},
"devDependencies": {
"@stylelint/prettier-config": "^3.0.0",
"@stylelint/remark-preset": "^5.1.1",
"eslint": "^8.57.0",
"eslint-config-stylelint": "^21.0.0",
"np": "^10.0.7",
"npm-run-all2": "^5.0.2",
"prettier": "^3.3.3",
"remark-cli": "^12.0.1",
"stylelint": "^16.9.0"
},
"peerDependencies": {
"postcss": "^8.3.3",
"stylelint": "^16.9.0"
},
"peerDependenciesMeta": {
"postcss": {
"optional": true
}
}
}