eslint-plugin-react-form-fields
Version:
React Form Fields specific linting rules for ESLint
95 lines (94 loc) • 2.69 kB
JSON
{
"name": "eslint-plugin-react-form-fields",
"version": "1.2.22",
"description": "React Form Fields specific linting rules for ESLint",
"engines": {
"node": ">=8.10.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"lint": "run-s lint:ts lint:eslint lint:prettier",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint '**/*.{js,ts}'",
"lint:prettier": "prettier '**/*.{js,ts,json,yaml,md}'",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"commit": "commit",
"add-rule": "ts-node scripts/add-rule",
"update": "ts-node scripts/update",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"eslint": ">=5.16.0"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.27.0",
"jsx-ast-utils": "^3.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/prompt-cli": "^17.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@types/eslint": "^8.4.2",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.26.0",
"all-contributors-cli": "^6.20.0",
"camelcase": "^6.3.0",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"jest": "^26.6.3",
"lint-staged": "^12.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7",
"ts-jest": "^26.5.6",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/kotarella1110/eslint-plugin-react-form-fields.git"
},
"keywords": [
"typescript",
"template",
"eslint",
"eslint-plugin",
"react",
"form",
"react-form",
"react-form-fields"
],
"author": "Kotaro Sugawara <kotarella1110@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kotarella1110/eslint-plugin-react-form-fields/issues"
},
"homepage": "https://github.com/kotarella1110/eslint-plugin-react-form-fields#readme"
}