-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
{
"name": "@stylelint/npm-package-json-lint-config",
"version": "5.1.0",
"description": "A stylelint shareable config for npm-package-json-lint.",
"keywords": [
"stylelint",
"npm-package-json-lint",
"npm-package-json-lint-config"
],
"repository": "stylelint/npm-package-json-lint-config",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
{
"type": "github",
"url": "https://github.com/sponsors/stylelint"
}
],
"license": "MIT",
"author": "stylelint",
"main": "lib/npm-package-json-lint-config.js",
"files": [
"lib",
"!**/*.test.*"
],
"scripts": {
"format": "prettier . --write",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier . --check",
"lint:js": "eslint",
"lint:packagejson": "npmPkgJsonLint .",
"prepare": "husky",
"release": "np --no-release-draft",
"pretest": "npm run lint",
"test": "node --test"
},
"lint-staged": {
"*.{js,mjs}": "eslint --cache --fix",
"*.{js,mjs,json,md,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"npmpackagejsonlint": {
"extends": [
"./lib/npm-package-json-lint-config.js"
]
},
"dependencies": {
"npm-package-json-lint-config-default": "^7.0.1"
},
"devDependencies": {
"@stylelint/prettier-config": "^3.0.0",
"eslint": "^9.19.0",
"eslint-config-stylelint": "^23.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"np": "^10.2.0",
"npm-package-json-lint": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2"
},
"peerDependencies": {
"npm-package-json-lint": "^8.0.0"
},
"engines": {
"node": ">=18.12.0"
},
"publishConfig": {
"access": "public"
}
}