-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "eslint-plugin-react-hooks-addons",
"version": "0.4.1",
"author": "Zheng Song",
"license": "MIT",
"description": "ESLint rule to check unused and potentially unnecessary dependencies in React Hooks.",
"repository": "szhsin/eslint-plugin-react-hooks-addons",
"homepage": "https://github.com/szhsin/eslint-plugin-react-hooks-addons",
"main": "lib/index.js",
"files": [
"lib/"
],
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"react",
"hook"
],
"scripts": {
"build": "babel src/ --out-dir lib/",
"start": "npm run build -- -w",
"test": "node tests/rules/*.js",
"pret": "prettier --write .",
"lint": "eslint .",
"eg": "cd examples && eslint ."
},
"peerDependencies": {
"eslint": ">=3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@eslint/compat": "^1.2.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.10.0",
"prettier": "^3.3.3"
},
"overrides": {
"eslint-plugin-react-hooks": {
"eslint": "$eslint"
}
}
}