-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.99 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
76
77
78
79
{
"name": "stylelint-test-rule-node",
"version": "0.4.0",
"description": "A Stylelint rule tester using Node.js built-in test runner.",
"keywords": [
"stylelint",
"test"
],
"repository": "stylelint/stylelint-test-rule-node",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
{
"type": "github",
"url": "https://github.com/sponsors/stylelint"
}
],
"license": "MIT",
"author": "stylelint",
"type": "module",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**",
"!**/__tests__/**"
],
"scripts": {
"format": "prettier . --write",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier . --check",
"lint:js": "eslint .",
"lint:md": "remark . --quiet --frail",
"lint:packagejson": "npmPkgJsonLint .",
"lint:types": "tsc",
"release": "np --no-release-draft",
"pretest": "npm run lint",
"test": "node --test",
"watch": "npm --ignore-scripts test -- --watch",
"prepare": "husky"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json,md,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"npmpackagejsonlint": {
"extends": "@stylelint/npm-package-json-lint-config"
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"devDependencies": {
"@stylelint/npm-package-json-lint-config": "^5.1.0",
"@stylelint/prettier-config": "^3.0.0",
"@stylelint/remark-preset": "^5.1.1",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"eslint": "^9.17.0",
"eslint-config-stylelint": "^23.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"np": "^10.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"remark-cli": "^12.0.1",
"stylelint": "^16.14.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"stylelint": "^16.0.1"
},
"engines": {
"node": ">=18.12.0"
}
}