| { |
| "name": "eslint-rule-extender", |
| "version": "0.0.1", |
| "description": "Utility to extend existing ESLint rules", |
| "license": "MIT", |
| "author": "Kai Cataldo <kai@kaicataldo.com>", |
| "funding": { |
| "type": "github", |
| "url": "https://github.com/sponsors/kaicataldo" |
| }, |
| "repository": { |
| "type": "git", |
| "url": "git+https://github.com/kaicataldo/eslint-rule-extender.git" |
| }, |
| "bugs": { |
| "url": "https://github.com/kaicataldo/eslint-rule-extender/issues" |
| }, |
| "homepage": "https://github.com/kaicataldo/eslint-rule-extender#readme", |
| "keywords": [ |
| "eslint", |
| "custom", |
| "rule", |
| "rules", |
| "plugin", |
| "plugins" |
| ], |
| "engines": { |
| "node": ">=10" |
| }, |
| "main": "lib/index.js", |
| "files": [ |
| "lib", |
| "LICENSE", |
| "README.md" |
| ], |
| "scripts": { |
| "lint": "eslint .", |
| "format": "prettier '**/*.js' --write", |
| "test": "jest" |
| }, |
| "husky": { |
| "hooks": { |
| "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", |
| "pre-commit": "pretty-quick --staged" |
| } |
| }, |
| "devDependencies": { |
| "@commitlint/cli": "^11.0.0", |
| "@commitlint/config-conventional": "^11.0.0", |
| "eslint": "^7.6.0", |
| "eslint-config-prettier": "^6.11.0", |
| "eslint-plugin-node": "^11.1.0", |
| "husky": "^4.2.5", |
| "jest": "^26.5.3", |
| "prettier": "^2.0.5", |
| "pretty-quick": "^3.1.0" |
| } |
| } |