-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "eslint-config-lab",
"version": "0.3.1",
"description": "eslint config for lab",
"main": "index.js",
"scripts": {
"lint": "eslint index.js --fix"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"xo",
"./index.js"
]
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/richlab/eslint-config-lab.git"
},
"keywords": [
"eslint",
"xo"
],
"author": "ULIVZ <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/richlab/eslint-config-lab/issues"
},
"homepage": "https://github.com/richlab/eslint-config-lab#readme",
"dependencies": {
"eslint-plugin-markdown": "^1.0.2",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-import": "^2.20.1",
"@typescript-eslint/parser": "^2.27.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"eslint-plugin-financial": "^0.1.0",
"eslint-import-resolver-typescript": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-xo": "^0.29.1"
}
}