-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "@zendeskgarden/eslint-config",
"version": "45.0.0",
"description": "Garden ESLint config",
"license": "Apache-2.0",
"author": "Zendesk Garden <[email protected]>",
"homepage": "https://garden.zendesk.com/",
"repository": "https://github.com/zendeskgarden/eslint-config",
"bugs": {
"url": "https://github.com/zendeskgarden/eslint-config/issues"
},
"type": "module",
"main": "index.js",
"files": [
"plugins",
"rules"
],
"scripts": {
"format": "prettier-package-json --write",
"lint": "eslint eslint.config.js index.js plugins/*.js rules/*.js --max-warnings 0",
"prepare": "husky",
"start": "npm exec @eslint/config-inspector",
"tag": "[ `git rev-parse --abbrev-ref HEAD` = 'main' ] && commit-and-tag-version --no-verify --npmPublishHint 'true'",
"test": "npm run format && npm run lint && git diff --quiet"
},
"dependencies": {
"@babel/eslint-parser": "7.25.9",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "17.15.0",
"eslint-plugin-notice": "1.0.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"globals": "15.13.0",
"typescript-eslint": "8.18.1"
},
"peerDependencies": {
"eslint": "^9.0.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@eslint/config-inspector": "0.6.0",
"@zendeskgarden/scripts": "2.4.3",
"commit-and-tag-version": "12.5.0",
"envalid": "8.0.0",
"eslint": "9.17.0",
"husky": "9.1.7",
"jest": "29.7.0",
"prettier-package-json": "2.8.0",
"react": "19.0.0",
"typescript": "5.7.2"
},
"keywords": [
"eslint",
"garden",
"zendesk"
],
"publishConfig": {
"access": "public"
}
}