-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.84 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
{
"name": "@tomer/eslint-config",
"version": "4.6.1",
"author": {
"name": "Tomer Aberbach",
"email": "tomer@aberba.ch",
"url": "https://tomeraberba.ch"
},
"description": "My ESLint configuration!",
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"lint",
"configuration",
"config"
],
"homepage": "https://github.com/TomerAberbach/eslint-config",
"repository": "TomerAberbach/eslint-config",
"bugs": {
"url": "https://github.com/TomerAberbach/eslint-config/issues"
},
"funding": {
"url": "https://github.com/sponsors/TomerAberbach"
},
"license": "MIT",
"files": [
"src"
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">= 22"
},
"exports": {
".": "./src/index.js",
"./package.json": "./package.json"
},
"scripts": {
"format": "prettier --cache --write .",
"lint": "eslint --config src/index.js --cache --cache-location node_modules/.cache/eslint/ --fix ."
},
"prettier": "@tomer/prettier-config",
"dependencies": {
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@vitest/eslint-plugin": "^1.6.9",
"eslint-config-flat-gitignore": "^2.2.1",
"eslint-plugin-command": "^3.4.0",
"eslint-plugin-depend": "^1.4.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-testing-library": "^7.16.0",
"eslint-plugin-tsdoc": "^0.5.0",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.3.0",
"typescript-eslint": "^8.56.1"
},
"peerDependencies": {
"eslint": "^9",
"typescript": "^5"
},
"devDependencies": {
"@tomer/prettier-config": "^4.0.0",
"eslint": "^9.35.0",
"prettier": "^3.8.1"
}
}