-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "@zendeskgarden/stylelint-config",
"version": "22.0.0",
"description": "Garden stylelint config",
"license": "Apache-2.0",
"author": "Zendesk Garden <[email protected]>",
"homepage": "https://garden.zendesk.com/",
"repository": "https://github.com/zendeskgarden/stylelint-config",
"bugs": {
"url": "https://github.com/zendeskgarden/stylelint-config/issues"
},
"main": "index.js",
"files": [
"plugins",
"rules"
],
"scripts": {
"format": "prettier-package-json --write",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "echo 'a { all: unset; }' | stylelint --config index.js",
"lint:js": "eslint --max-warnings 0",
"prepare": "husky",
"tag": "[ `git rev-parse --abbrev-ref HEAD` = 'main' ] && standard-version --no-verify",
"test": "npm run lint && npm run format && git diff --quiet"
},
"peerDependencies": {
"stylelint": "^16.4.0",
"stylelint-order": "^6.0.0"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@zendeskgarden/eslint-config": "44.0.1",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.6",
"prettier-package-json": "2.8.0",
"standard-version": "9.5.0",
"stylelint": "16.9.0",
"stylelint-order": "6.0.4"
},
"keywords": [
"garden",
"stylelint",
"zendesk"
],
"publishConfig": {
"access": "public"
}
}