-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.72 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
{
"name": "eslint-plugin-react-hooks-unreliable-deps",
"description": "Extends ESLint rules for React Hooks to check for potential reference equality issues in dependency arrays",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/gnowland/eslint-plugin-react-hooks-unreliable-deps.git",
"directory": "./"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"cjs"
],
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"react",
"objects"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gnowland/eslint-plugin-react-hooks-unreliable-deps/issues"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/gnowland/eslint-plugin-react-hooks-unreliable-deps",
"peerDependencies": {
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0",
"eslint-plugin-react-hooks": "^3.0.0 || ^4.0.0"
},
"scripts": {
"simlink": "ln -hfs ../ node_modules/${npm_package_name}",
"build": "npm run simlink && node ./scripts/rollup/build.js"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"@babel/plugin-transform-block-scoped-functions": "^7.10.4",
"@babel/plugin-transform-block-scoping": "^7.11.1",
"@babel/plugin-transform-computed-properties": "^7.10.4",
"@babel/plugin-transform-destructuring": "^7.10.4",
"@babel/plugin-transform-for-of": "^7.10.4",
"@babel/plugin-transform-literals": "^7.10.4",
"@babel/plugin-transform-shorthand-properties": "^7.10.4",
"@babel/plugin-transform-spread": "^7.11.0",
"@babel/plugin-transform-template-literals": "^7.10.5",
"@babel/preset-flow": "^7.10.4",
"@typescript-eslint/parser-v2": "npm:@typescript-eslint/parser@^2.26.0",
"@typescript-eslint/parser-v3": "npm:@typescript-eslint/parser@^3.10.0",
"@typescript-eslint/parser-v4": "npm:@typescript-eslint/parser@^4.1.0",
"@typescript-eslint/parser-v5": "npm:@typescript-eslint/parser@^5.0.0-0",
"babel-code-frame": "^6.26.0",
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
"cli-table": "^0.3.1",
"filesize": "^6.0.1",
"google-closure-compiler": "^20200517.0.0",
"gzip-size": "^5.1.1",
"ncp": "^2.0.0",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^2.1.1",
"rollup-plugin-prettier": "^0.6.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-strip-banner": "^0.2.0",
"targz": "^1.0.1"
}
}