This repository has been archived by the owner on Feb 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
112 lines (112 loc) · 2.6 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "stylelint-config-wordpress",
"version": "17.0.0",
"description": "WordPress shareable config for stylelint",
"author": "stylelint",
"license": "MIT",
"keywords": [
"code",
"code style",
"css",
"lint",
"linter",
"linting",
"stylelint",
"stylelint-config",
"stylelint-config-wordpress",
"validate",
"wordpress",
"WordPress"
],
"homepage": "https://github.com/WordPress-Coding-Standards/stylelint-config-wordpress",
"repository": {
"type": "git",
"url": "https://github.com/WordPress-Coding-Standards/stylelint-config-wordpress.git"
},
"bugs": "https://github.com/WordPress-Coding-Standards/stylelint-config-wordpress/issues",
"engines": {
"node": ">=10"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"index.js",
"scss.js"
],
"main": "index.js",
"dependencies": {
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.17.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@wordpress/scripts": "^10.0.0",
"husky": "^4.2.3",
"npm-run-all": "^4.1.5",
"npmpub": "^5.0.0",
"remark-cli": "^8.0.0",
"remark-preset-lint-consistent": "^3.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"stylelint": "^13.2.0",
"stylelint-find-rules": "^2.2.0"
},
"peerDependencies": {
"stylelint": "^10.1.0 || ^11.0.0 || ^12.0.0 || ^13.0.0"
},
"scripts": {
"check-engines": "wp-scripts check-engines --package",
"check-licenses": "wp-scripts check-licenses --production",
"dry-release": "npmpub --dry --verbose",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md": "remark . --quiet --frail",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint": "npm-run-all --parallel lint:*",
"pretest": "npm run lint",
"release": "npmpub --verbose",
"stylelint-find-unused-rules": "stylelint-find-rules --config index.js",
"test:unit": "wp-scripts test-unit-js",
"test": "npm run test:unit",
"watch": "jest --watch"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
],
"rules": {
"linebreak-style": 0
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config",
"rules": {
"valid-values-license": [
"error",
[
"MIT"
]
]
}
},
"remarkConfig": {
"presets": [
"lint-recommended",
"lint-consistent"
]
}
}