-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
{
"name": "eslint-config-standardize",
"version": "0.9.1",
"main": "./index.js",
"author": "aMarCruz <[email protected]>",
"description": "My personal configuration based on StandardJS, ready for JavaScript and TypeScript",
"license": "MIT",
"scripts": {
"test": "eslint -f unix --ext .js,.jsx,.ts,.tsx scripts ./test/fixtures && echo Test passed.",
"pretest": "yarn build",
"build": "node scripts/create-conf && node scripts/create-conf-react && node scripts/create-conf-ts",
"list:config": "eslint --print-config",
"list:deprecated": "eslint-find-rules -n -d .eslintrc.json",
"list:unused": "node ./scripts/list-unused.js"
},
"files": [
"*.js",
"lib"
],
"keywords": [
"eslint",
"eslint-config",
"eslint-plugin",
"editorconfig",
"javascript",
"typescript",
"config",
"preset",
"prettier",
"prettierx",
"standardjs",
"lint"
],
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"bugs": {
"url": "https://github.com/aMarCruz/eslint-config-standardize/issues"
},
"repository": {
"url": "https://github.com/aMarCruz/eslint-config-standardize",
"type": "git"
},
"dependencies": {
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettierx": "~0.18.0",
"eslint-plugin-promise": "~5.1.0",
"eslint-plugin-react": "~7.23.2",
"eslint-plugin-react-hooks": "~4.2.0",
"eslint-plugin-unicorn": "~31.0.0"
},
"devDependencies": {
"@types/eslint": "~7.2.10",
"@types/node": "~15.0.1",
"@types/prettier": "~2.2.3",
"@types/react": "~17.0.4",
"@typescript-eslint/eslint-plugin": "~4.22.0",
"@typescript-eslint/parser": "~4.22.0",
"confusing-browser-globals": "^1.0.10",
"eslint": "~7.25.0",
"eslint-config-prettier": "~8.3.0",
"eslint-config-standard": "~16.0.2",
"eslint-config-standard-jsx": "~10.0.0",
"eslint-find-rules": "^3.6.1",
"prettier": "aMarCruz/prettier#2.2.2",
"react": "~17.0.2",
"typescript": "~4.2.4"
},
"peerDependencies": {
"eslint": ">=7.0.0"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
}
}
}