-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "eslint-plugin-no-autofix",
"version": "2.1.0",
"author": "薛定谔的猫 <weiran.zsd@outlook.com>",
"description": "eslint rules without fixer.",
"main": "./lib/index.js",
"scripts": {
"test": "mocha \"tests/**/*.js\"",
"generate-release": "node-release-script"
},
"files": [
"LICENSE",
"readme.md",
"lib"
],
"dependencies": {
"eslint-rule-composer": "^0.3.0",
"find-up": "^5.0.0"
},
"devDependencies": {
"@not-an-aardvark/node-release-script": "^0.1.0",
"mocha": "^8.2.1"
},
"peerDependencies": {
"eslint": ">=8"
},
"keywords": [
"eslint plugin",
"autofix"
],
"license": "MIT",
"repository": "https://github.com/aladdin-add/eslint-plugin/tree/master/packages/no-autofix",
"homepage": "https://github.com/aladdin-add/eslint-plugin/tree/master/packages/no-autofix",
"bugs": "https://github.com/aladdin-add/eslint-plugin/issues/new?assignees=aladdin-add&labels=bug&template=bug-report--eslint-plugin-no-autofix.md&title=bug+report%3A+eslint-plugin-no-autofix",
"engines": {
"node": ">=18"
}
}