-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.11 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.11 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "eslint-plugin-eslint-plugin",
"version": "7.3.2",
"description": "An ESLint plugin for linting ESLint plugins",
"author": "Teddy Katz",
"main": "./dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"license": "MIT",
"scripts": {
"build": "tsdown",
"e2e": "node ./e2e/run-all-tests.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm-run-all --continue-on-error --aggregate-output --parallel lint:*",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:eslint-docs": "npm-run-all -s build \"update:eslint-docs -- --check\"",
"lint:js": "eslint --cache --ignore-pattern \"**/*.md\" --flag unstable_native_nodejs_ts_config",
"lint:js-docs": "eslint --no-inline-config \"**/*.md\" --flag unstable_native_nodejs_ts_config",
"lint:package-json": "npmPkgJsonLint .",
"prepare": "husky install",
"test": "vitest run --coverage",
"test:remote": "eslint-remote-tester",
"typecheck": "tsc",
"update:eslint-docs": "eslint-doc-generator"
},
"files": [
"CHANGELOG.md",
"dist/"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eslint-community/eslint-plugin-eslint-plugin.git"
},
"bugs": {
"url": "https://github.com/eslint-community/eslint-plugin-eslint-plugin/issues"
},
"homepage": "https://github.com/eslint-community/eslint-plugin-eslint-plugin#readme",
"dependencies": {
"@eslint-community/eslint-utils": "^4.4.0",
"estraverse": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/types": "^20.0.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@eslint/markdown": "^7.5.1",
"@types/eslint-scope": "^8.4.0",
"@types/espree": "^10.1.0",
"@types/estraverse": "^5.1.7",
"@types/estree": "^1.0.8",
"@types/lodash": "^4.17.18",
"@types/node": "^24.0.0",
"@typescript-eslint/parser": "8.58.1",
"@typescript-eslint/utils": "8.58.1",
"@vitest/coverage-istanbul": "^4.0.0",
"eslint": "^9.39.1",
"eslint-config-not-an-aardvark": "^2.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-doc-generator": "3.3.2",
"eslint-plugin-n": "^17.21.0",
"eslint-plugin-unicorn": "^62.0.0",
"eslint-remote-tester": "^4.0.3",
"eslint-scope": "^8.4.0",
"espree": "^11.2.0",
"husky": "^9.1.7",
"jiti": "^2.5.1",
"lint-staged": "^16.2.7",
"lodash": "^4.17.21",
"markdownlint-cli": "^0.43.0",
"npm-package-json-lint": "^9.0.0",
"npm-run-all2": "^8.0.0",
"prettier": "3.8.2",
"tsdown": "^0.13.3",
"typescript": "^5.9.2",
"typescript-eslint": "8.58.1",
"vitest": "^4.0.0"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24.0.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,md,json}": "prettier --write"
}
}