-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.13 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
{
"name": "eslint-config-react-jam3",
"version": "1.1.0",
"description": "Jam3's ESLint config file for React applications",
"main": "index.js",
"scripts": {
"test": "eslint . -c ./.eslintrc.js"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"jam3",
"javascript",
"code",
"quality",
"lint",
"linter",
"style",
"code style",
"strict",
"check",
"hint",
"verify"
],
"author": "Jam3",
"contributors": [
{
"name": "Iran Reyes",
"url": "http://www.iranreyes.com"
}
],
"engines": {
"node": ">=10.15.0",
"npm": ">=6.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jam3/eslint-config-react-jam3.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Jam3/eslint-config-react-jam3/issues"
},
"homepage": "https://github.com/Jam3/eslint-config-react-jam3#readme",
"peerDependencies": {
"babel-eslint": "10.x",
"eslint": "5.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-promise": "4.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"prettier": "1.x",
"eslint-config-prettier": "4.x",
"eslint-plugin-prettier": "3.x"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "7.5.0",
"babel-eslint": "10.0.1",
"eslint": "5.13.0",
"eslint-config-prettier": "4.0.0",
"eslint-config-react-app": "4.0.1",
"eslint-plugin-flowtype": "4.2.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jam3": "0.2.1",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.7.0",
"husky": "1.3.1",
"lint-staged": "8.1.3",
"prettier": "1.16.4"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "echo 'Pre-commit checks...' && lint-staged",
"pre-push": "echo 'Pre-push checks...' && npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}