-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "@benbender/eslint-config",
"version": "0.4.0",
"description": "ESLint configuration to be shared across repositories.",
"main": "index.js",
"author": "Benjamin Bender <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/benbender/cp-common.git",
"directory": "eslint-config"
},
"bugs": {
"url": "https://github.com/benbender/cp-common/issues"
},
"homepage": "https://github.com/benbender/cp-common#readme",
"keywords": [
"eslint",
"configuration"
],
"scripts": {
"test": "eslint ./index.js",
"lint": "eslint ./index.js",
"lint:fix": "eslint ./index.js --fix"
},
"files": [
"index.js"
],
"dependencies": {
"@benbender/prettier-config": "^0.1.0",
"@next/eslint-plugin-next": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1"
},
"peerDependencies": {
"eslint": ">= 7"
},
"eslintConfig": {
"extends": "./index.js"
}
}