-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "eslint-plugin-autofix",
"version": "2.2.0",
"author": "薛定谔的猫 <weiran.zsd@outlook.com>",
"description": "autofix some errors reported by eslint rules.",
"main": "./lib/index.js",
"scripts": {
"test": "mocha \"tests/**/*.js\"",
"generate-readme-table": "node tools/generate-readme-table.js",
"generate-release": "node-release-script",
"new": "node tools/new-rule.js"
},
"files": [
"LICENSE",
"readme.md",
"lib"
],
"dependencies": {
"eslint-rule-composer": "^0.3.0",
"espree": "^9.0.0",
"esutils": "^2.0.2",
"fastest-levenshtein": "^1.0.16"
},
"devDependencies": {
"@not-an-aardvark/node-release-script": "^0.1.0",
"@types/eslint": "^7.28.2",
"execa": "^5.1.1",
"git-config": "0.0.7",
"husky": "^7.0.4",
"minimist": "^1.2.0",
"mocha": "^9.1.3"
},
"peerDependencies": {
"eslint": ">=8"
},
"keywords": [
"eslint plugin",
"autofix"
],
"license": "MIT",
"repository": "https://github.com/aladdin-add/eslint-plugin/tree/master/packages/autofix",
"homepage": "https://github.com/aladdin-add/eslint-plugin/tree/master/packages/autofix",
"bugs": "https://github.com/aladdin-add/eslint-plugin/issues/new?assignees=aladdin-add&labels=bug&template=bug-report--eslint-plugin-autofix.md&title=eslint-plugin-autofix+bug",
"engines": {
"node": ">=18"
}
}