-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "stylelint-ecosystem-tester",
"version": "0.0.0",
"private": true,
"description": "A comprehensive test suite for Stylelint ecosystem.",
"keywords": [
"stylelint"
],
"repository": "stylelint/stylelint-ecosystem-tester",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
{
"type": "github",
"url": "https://github.com/sponsors/stylelint"
}
],
"license": "MIT",
"author": "stylelint",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "npm run lint:formatting && npm run lint:js && npm run lint:md",
"lint:formatting": "prettier --check .",
"lint:js": "eslint . --cache --max-warnings=0",
"lint:md": "remark . --quiet --frail",
"prepare": "husky",
"pretest": "npm run lint",
"test": "node scripts/test.js",
"update-readme": "node scripts/update-readme.js",
"update-workflows": "node scripts/update-workflows.js"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json,md,yaml,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"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",
"prettier": "^3.3.3",
"remark-cli": "^12.0.1",
"yaml": "^2.6.0"
},
"engines": {
"node": ">=20"
}
}