-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "eslint-plugin-sort-react-dependency-arrays",
"description": "ESLint plugin to alphabetically sort React hook dependency arrays",
"version": "1.0.0",
"author": "Steven Sacks <[email protected]>",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"react",
"react-dependency-array",
"react-dependency-arrays",
"sort-react-dependency-array",
"sort-react-dependency-arrays"
],
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha tests --recursive"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-plugin-eslint-plugin": "6.2.0",
"eslint-plugin-node": "11.1.0",
"mocha": "10.6.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"engines": {
"node": ">= 18.18.0 || >= 20.0.0 || >= 22.0.0"
}
}