-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.41 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
{
"name": "eslint-config-za",
"version": "2.3.1",
"description": "ZhongAn's ESLint config",
"main": "index.js",
"config": {
"airbnb": "eslint-config-airbnb@18.2.0"
},
"scripts": {
"sync": "npm install --save $npm_package_config_airbnb && npx install-peerdeps --dev --only-peers $npm_package_config_airbnb",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.vue .; exit 0",
"test": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "https://github.com/ZhonganTechENG/eslint-config-za"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"zhongan",
"airbnb",
"javascript",
"typescript",
"styleguide"
],
"author": "Lin Qun",
"license": "MIT",
"homepage": "https://github.com/ZhonganTechENG/eslint-config-za",
"dependencies": {
"eslint-config-airbnb": "^18.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-eslint": "^10.0.1",
"conventional-changelog-cli": "^2.0.25",
"eslint": "^7.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^26.1.0",
"jest-runner-eslint": "^0.10.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0 || ^6.8.0 || ^7.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4 || ^3 || ^2.3.0 || ^1.7.0",
"eslint-plugin-vue": "^6.2.2",
"typescript": "^4.0.2"
},
"engines": {
"node": ">= 8"
},
"jest": {
"projects": [
{
"displayName": "snapshot",
"testMatch": [
"<rootDir>/test/**/snapshot.test.js"
]
},
{
"runner": "jest-runner-eslint",
"displayName": "lint",
"testMatch": [
"<rootDir>/test/**/rules/*"
]
}
]
},
"jest-runner-eslint": {
"cliOptions": {
"ext": [
".js",
".jsx",
".ts",
".tsx",
".vue"
]
}
}
}