eslint-nibble
Version:
Ease into ESLint, by fixing one rule at a time
59 lines (58 loc) • 1.42 kB
JSON
{
"name": "eslint-nibble",
"version": "9.0.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": {
"test": "tape tests/src/*.js | tap-difflet",
"lint": "eslint src tests/src",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"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",
"@inquirer/prompts": "^7.5.3",
"chalk": "^4.1.1",
"eslint-filtered-fix": "^0.3.0",
"eslint-formatter-friendly": "^7.0.0",
"optionator": "^0.9.1",
"text-table": "^0.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"eslint": "^9.27.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.1.0",
"prettier": "^4.0.0-alpha.12",
"tap-difflet": "^0.7.2",
"tape": "^5.9.0",
"tape-catch": "^1.0.6"
},
"peerDependencies": {
"eslint": "7 || 8 || 9"
}
}