-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.71 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
72
73
74
75
{
"name": "stylelint-config-cloudfour",
"version": "10.0.0",
"description": "Cloud Four's stylelint config",
"keywords": [
"stylelint",
"stylelint-config",
"cloudfour"
],
"repository": "cloudfour/stylelint-config-cloudfour",
"license": "MIT",
"author": "Cloud Four",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "run-s lint:js lint:md:check lint:prettier",
"lint:check": "run-s lint:*:check",
"lint:js": "eslint --fix .",
"lint:js:check": "eslint .",
"lint:md:check": "remark . --quiet --frail",
"lint:prettier": "prettier --write .",
"lint:prettier:check": "prettier --list-different .",
"test": "node --test",
"test:watch": "npm test --ignore-scripts -- --watch"
},
"prettier": "@stylelint/prettier-config",
"eslintConfig": {
"extends": [
"stylelint"
],
"overrides": [
{
"files": [
"**/*.test.js"
],
"env": {
"jest": true
}
}
],
"globals": {
"module": true,
"require": true
}
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"dependencies": {
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-config-suitcss": "^21.0.0",
"stylelint-high-performance-animation": "1.10.0"
},
"devDependencies": {
"@stylelint/prettier-config": "3.0.0",
"@stylelint/remark-preset": "5.1.1",
"eslint": "8.57.1",
"eslint-config-stylelint": "21.0.0",
"npm-run-all2": "6.2.6",
"postcss": "8.4.49",
"prettier": "3.3.3",
"remark-cli": "12.0.1",
"stylelint": "16.10.0"
},
"peerDependencies": {
"stylelint": "^16.0.0"
},
"engines": {
"node": ">=18.12.0"
}
}