This repository was archived by the owner on Jan 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.55 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.55 KB
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
{
"name": "@vmw/eslint-config-vmware-react",
"version": "0.3.1",
"description": "VMware's ESLint config based on eslint-config-react-app",
"author": "VMware, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/vmware/eslint-config-vmware-react/issues"
},
"homepage": "https://github.com/vmware/eslint-config-vmware-react#readme",
"repository": {
"type": "git",
"url": "https://github.com/vmware/eslint-config-vmware-react.git"
},
"main": "index.js",
"files": [
"cra",
"index.js"
],
"scripts": {
"jest": "jest",
"test": "eslint --ext .tsx,ts test/",
"publish:latest": "yarn publish --registry=https://registry.npmjs.org/ --access=public",
"publish:next": "yarn publish --tag next --registry=https://registry.npmjs.org/ --access=public"
},
"engines": {
"node": ">=12",
"npm": ">=6 <7",
"yarn": ">=1.22.0"
},
"dependencies": {
"confusing-browser-globals": "1.0.10"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-testing-library": "^5.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"prettier": "^2.5.0"
},
"devDependencies": {
"@types/jest": "27.0.3",
"@types/react": "17.0.37",
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"babel-eslint": "10.1.0",
"eslint": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-jest-dom": "3.9.2",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-sort-destructure-keys": "1.4.0",
"eslint-plugin-testing-library": "5.0.0",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"jest": "27.4.2",
"prettier": "2.5.0",
"react": "17.0.2",
"ts-jest": "27.0.7",
"typescript": "4.4.3"
},
"resolutions": {
"json5": "^1.0.2",
"minimist": "1.2.6",
"minimatch": "^3.0.5"
}
}