eslint-plugin-max-methods-per-class
Version:
ESLint plugin to enforce a maximum number of methods per class
46 lines (45 loc) • 1.15 kB
JSON
{
"name": "eslint-plugin-max-methods-per-class",
"description": "ESLint plugin to enforce a maximum number of methods per class",
"version": "1.0.2",
"main": "index.js",
"author": "mawrkus <web@sparring-partner.be>",
"license": "MIT",
"homepage": "https://github.com/mawrkus/eslint-plugin-max-methods-per-class",
"bugs": {
"url": "https://github.com/mawrkus/eslint-plugin-max-methods-per-class/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/mawrkus/eslint-plugin-max-methods-per-class.git"
},
"files": [
"rules",
"index.js",
"README.md"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"eslintrule",
"eslint-rule",
"max",
"maximum",
"methods",
"class"
],
"scripts": {
"test": "node ./tests/max-methods-per-class.js",
"prerelease": "npm run test",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm run push && npm publish",
"push": "git push origin main && git push origin --tags"
},
"peerDependencies": {
"eslint": "^7.0.0"
},
"devDependencies": {
"eslint": "^7.32.0"
}
}