This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.61 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
99
100
101
102
103
104
105
{
"name": "@websublime/eslint-config",
"version": "1.2.1",
"description": "ESLint configuration",
"keywords": [
"eslint",
"config",
"eslint-config",
"lint"
],
"author": {
"name": "Miguel Ramos",
"email": "hello@miguelramos.dev",
"url": "https://miguelramos.dev"
},
"repository": "github:websublime/eslint-config",
"license": "MIT",
"files": [
"rules/",
"index.js",
"react.js",
"typescript.js",
"typescript-react.js",
"angular.js",
"vue.js"
],
"scripts": {
"format": "prettier --write",
"release": "np --no-tests",
"test:update": "jest -u",
"test": "jest",
"test:cli": "printf '' | yarn eslint -c ./index.js ./rules/__test__/*.test.js"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-new-with-error": "^2.0.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-class-members": "^1.8.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-vue": "^7.2.0",
"vue-eslint-parser": "^7.2.0"
},
"peerDependencies": {
"eslint": "7"
},
"devDependencies": {
"@types/eslint": "^7.2.6",
"@types/jest": "^26.0.18",
"@typescript-eslint/experimental-utils": "^4.9.1",
"husky": "^4.3.5",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.10.0",
"lint-staged": "^10.5.3",
"np": "^7.0.0",
"prettier": "^2.2.1",
"resolve-from": "^5.0.0",
"typescript": "^4.1.2"
},
"lint-staged": {
"*.{js,json,md,yml}": [
"yarn format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"projects": [
{
"displayName": "test",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/**/*.test.{js,ts,jsx,tsx}"
]
}
]
}
}