-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
85 lines (85 loc) · 1.95 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
{
"name": "eslint-plugin-autofix",
"version": "0.0.5",
"author": "薛定谔的猫 <weiran.zsd@outlook.com>",
"description": "autofix some errors reported by eslint rules.",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha \"tests/**/*.js\"",
"pretest": "npm run lint",
"generate-readme-table": "node scripts/generate-readme-table.js",
"generate-release": "node-release-script",
"new": "node scripts/new-rule.js"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"dependencies": {
"eslint-rule-composer": "^0.3.0",
"string-similarity": "^3.0.0"
},
"devDependencies": {
"@not-an-aardvark/node-release-script": "^0.1.0",
"@types/eslint": "^4.16.6",
"eslint": "^5.14.0",
"eslint-config-eslint": "^5.0.1",
"eslint-plugin-eslint-plugin": "^2.0.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-project": "^0.2.1",
"execa": "^1.0.0",
"git-config": "0.0.7",
"husky": "^1.3.1",
"minimist": "^1.2.0",
"mocha": "^5.2.0"
},
"peerDependencies": {
"eslint": ">= 5.0.0"
},
"keywords": [
"eslint plugin",
"autofix"
],
"eslintConfig": {
"extends": [
"eslint",
"plugin:eslint-plugin/recommended"
],
"plugins": [
"eslint-plugin",
"project"
],
"overrides": [
{
"files": [
"lib/rules/*.js"
],
"rules": {
"project/rule-def-format": 2
}
},
{
"files": [
"tests/**/*.js"
],
"env": {
"mocha": true
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint -- --fix && git add ."
}
},
"license": "MIT",
"repository": "https://github.com/aladdin-add/eslint-plugin-autofix",
"homepage": "https://github.com/aladdin-add/eslint-plugin-autofix",
"bugs": "https://github.com/aladdin-add/eslint-plugin-autofix/issues/",
"engines": {
"node": ">=8"
}
}