-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
87 lines (87 loc) · 2.29 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
{
"name": "eslint-plugin-eslint-plugin",
"version": "4.0.2",
"description": "An ESLint plugin for linting ESLint plugins",
"author": "Teddy Katz",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"lint": "npm-run-all --continue-on-error --aggregate-output --parallel lint:*",
"lint:docs": "markdownlint '**/*.md'",
"lint:js": "eslint .",
"generate-readme-table": "node build/generate-readme-table.js",
"release": "release-it",
"test": "nyc --all --check-coverage --include lib mocha tests --recursive"
},
"files": [
"lib/"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin.git"
},
"bugs": {
"url": "https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues"
},
"homepage": "https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin#readme",
"dependencies": {
"eslint-utils": "^3.0.0",
"estraverse": "^5.2.0"
},
"nyc": {
"branches": 99,
"functions": 99,
"lines": 99,
"statements": 99
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@release-it/conventional-changelog": "^3.3.0",
"@typescript-eslint/parser": "^5.0.0",
"auto-changelog": "^2.3.0",
"chai": "^4.1.0",
"dirty-chai": "^2.0.1",
"eslint": "^8.0.0",
"eslint-config-not-an-aardvark": "^2.1.0",
"eslint-plugin-eslint-plugin": "file:./",
"eslint-plugin-markdown": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^37.0.0",
"eslint-scope": "^6.0.0",
"espree": "^9.0.0",
"husky": "^7.0.2",
"lodash": "^4.17.2",
"markdownlint-cli": "^0.28.1",
"mocha": "^9.1.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"release-it": "^14.9.0",
"typescript": "^4.4.3"
},
"peerDependencies": {
"eslint": ">=6.0.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
},
"github": {
"release": true
}
}
}