forked from emerson-eps/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "@emerson-eps/eslint-config",
"version": "0.0.0-development",
"description": "Shared ESLint config for Emerson E&P Software",
"keywords": [
"eslint",
"eslintconfig",
"typescript"
],
"homepage": "https://github.com/emerson-eps/eslint-config",
"bugs": {
"url": "https://github.com/emerson-eps/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/emerson-eps/eslint-config.git"
},
"license": "MIT",
"main": "index.js",
"files": [
".eslintrc.js",
"index.js"
],
"scripts": {
"lint:fix": "eslint . --fix",
"print-config": "eslint --print-config .eslintrc.js",
"semantic-release": "semantic-release",
"test": "prettier . --check && eslint ."
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "4.x",
"@typescript-eslint/parser": "4.x",
"babel-eslint": "10.x",
"eslint-config-prettier": "8.x",
"eslint-config-react-app": "6.x",
"eslint-plugin-flowtype": "5.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "3.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "4.x",
"eslint-plugin-sonarjs": "^0.7.0"
},
"devDependencies": {
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": ">= 7",
"prettier": ">= 2",
"semantic-release": "^17.4.2",
"typescript": ">= 3.7"
},
"peerDependencies": {
"eslint": ">= 7",
"prettier": ">= 2",
"typescript": ">= 3.7"
},
"release": {
"branches": [
"main"
],
"preset": "conventionalcommits"
}
}