forked from foxglove/eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "@lichtblick/eslint-plugin",
"version": "2.0.7",
"description": "Lichtblick ESLint rules and configuration",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lichtblick-suite/eslint-plugin.git"
},
"main": "index.mjs",
"files": [
"**/*.mjs",
"**/*.cjs",
"**/*.js",
"dist"
],
"scripts": {
"test": "jest",
"tsc": "tsc",
"lint": "eslint .",
"prettier": "prettier"
},
"dependencies": {
"@eslint/compat": "^1",
"eslint-config-prettier": "^9",
"eslint-plugin-es": "^4",
"eslint-plugin-filenames": "^1",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^28",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^5",
"tsutils": "^3",
"typescript": "^4 || ^5",
"typescript-eslint": "^8"
},
"peerDependencies": {
"eslint": "^9.38.0",
"eslint-config-prettier": "^8 || ^9",
"prettier": "^3",
"typescript": "^4 || ^5"
},
"devDependencies": {
"@lichtblick/eslint-plugin": "file:.",
"@lichtblick/tsconfig": "1.0.0",
"@types/jest": "29.5.3",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"@typescript-eslint/rule-tester": "8.46.2",
"@typescript-eslint/utils": "8.46.2",
"eslint": "9.38.0",
"jest": "29.6.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.2"
},
"prettier": {
"trailingComma": "es5",
"endOfLine": "auto"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}