forked from kentcdodds/eslint-config-kentcdodds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.07 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": "eslint-config-crisfcodes",
"version": "0.0.0-semantically-released",
"description": "ESLint rules according to crisfcodes' personal preference",
"main": "index.js",
"scripts": {
"find-new-rules": "npm-run-all --parallel find-new-rules:*",
"find-new-rules:jest": "eslint-find-rules --unused ./other/test/jest/index.js",
"find-new-rules:jsx-a11y": "eslint-find-rules --unused ./other/test/jsx-a11y/index.js",
"find-new-rules:main": "eslint-find-rules --unused ./index.js",
"find-new-rules:react": "eslint-find-rules --unused ./other/test/react/index.js",
"find-new-rules:react-native": "eslint-find-rules --unused ./other/test/react-native/index.js",
"find-new-rules:comments": "eslint-find-rules --unused ./other/test/comments/index.js",
"lint": "eslint --config index.js .",
"prepare": "husky install .config/husky",
"test": "npm-run-all --parallel lint find-new-rules",
"validate": "npm-run-all --parallel lint test"
},
"repository": {
"type": "git",
"url": "https://github.com/crisfcodes/eslint-config-crisfcodes"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"crisfcodes",
"javascript",
"styleguide"
],
"authors": [
"Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"Cristian C. Flórez <cristianflorez0501@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/crisfcodes/eslint-config-crisfcodes/issues"
},
"homepage": "https://github.com/crisfcodes/eslint-config-crisfcodes#readme",
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.0.5",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.14.1",
"eslint": "^7.32.0",
"eslint-find-rules": "^4.1.0",
"husky": "^7.0.4",
"jest": "^27.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"react": "^17.0.2",
"typescript": "^4.4.2"
},
"peerDependencies": {
"eslint": "^7.5.0",
"typescript": "^4.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"eslintConfig": {
"extends": "./index.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"engines": {
"node": "^10.12.0 || >=12.0.0",
"npm": ">=6",
"yarn": ">=1"
}
}