-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
56 lines (56 loc) · 1.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
{
"name": "eslint-nibble",
"version": "8.1.0",
"description": "Ease into ESLint, by fixing one rule at a time",
"main": "index.js",
"bin": {
"eslint-nibble": "./bin/eslint-nibble.js"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"pretest": "npm run lint",
"test": "tape tests/src/*.js | tap-difflet",
"lint": "eslint src tests/src"
},
"keywords": [
"eslint",
"formatter",
"linting",
"linter",
"eslint-stats",
"eslint-friendly-formatter"
],
"author": "Ian VanSchooten",
"license": "MIT",
"bugs": {
"url": "https://github.com/IanVS/eslint-nibble/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/IanVS/eslint-nibble.git"
},
"dependencies": {
"@ianvs/eslint-stats": "^2.0.0",
"chalk": "^4.1.1",
"eslint-filtered-fix": "^0.3.0",
"eslint-formatter-friendly": "^7.0.0",
"inquirer": "^8.2.3",
"optionator": "^0.9.1",
"text-table": "^0.2.0"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"tap-difflet": "^0.7.2",
"tape": "^5.6.0",
"tape-catch": "^1.0.6"
},
"peerDependencies": {
"eslint": ">=7.0.0"
}
}