-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.81 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@arslivinski/eslint-config",
"version": "1.0.0-alpha.19",
"description": "Personal set of ESLint configurations",
"license": "ISC",
"main": "base.js",
"scripts": {
"check": "tsc",
"test": "npm run check && npm run -s test:base && npm run -s test:jest && npm run -s test:react && npm run -s test:typescript",
"test:base": "eslint-find-rules --unused base.js",
"test:jest": "eslint-find-rules --unused jest.js --no-core",
"test:node": "eslint-find-rules --unused node.js --no-core",
"test:react": "eslint-find-rules --unused react.js --no-core",
"test:typescript": "eslint-find-rules --unused typescript.js --no-core",
"lint": "eslint ."
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.35.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "*"
},
"peerDependenciesMeta": {
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"eslint-plugin-jest": {
"optional": true
},
"eslint-plugin-n": {
"optional": true
},
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"eslint-import-resolver-typescript": {
"optional": true
},
"typescript": {
"optional": true
}
},
"dependencies": {
"confusing-browser-globals": "^1.0.11",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^45.0.2"
},
"devDependencies": {
"@types/confusing-browser-globals": "^1.0.0",
"@types/eslint": "^8.21.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.35.0",
"eslint-find-rules": "^4.1.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^4.9.5"
},
"author": {
"name": "Anderson Roberto Slivinski",
"url": "https://github.com/arslivinski"
},
"homepage": "https://github.com/arslivinski/eslint-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/arslivinski/eslint-config.git"
},
"bugs": {
"url": "https://github.com/arslivinski/eslint-config/issues"
},
"keywords": [
"eslint",
"eslintconfig"
],
"eslintConfig": {
"ignorePatterns": [
"!.*.js",
"node_modules/"
],
"extends": [
"./base.js",
"./commonjs.js"
]
}
}