UNPKG

eslint-plugin-type-graphql

Version:
63 lines (62 loc) 1.6 kB
{ "name": "eslint-plugin-type-graphql", "version": "1.0.0", "description": "Linter for TypeGraphQL decorators", "main": "dist/index.js", "repository": { "type": "git", "url": "git+https://github.com/borremosch/eslint-plugin-type-graphql.git" }, "scripts": { "build": "tsc -b tsconfig.json", "test": "jest --coverage", "lint": "eslint" }, "keywords": [ "ESLint", "TypeGraphQL" ], "engines": { "node": "^10.12.0 || >=12.0.0" }, "author": "Borre Mosch", "license": "Apache-2.0", "bugs": { "url": "https://github.com/borremosch/eslint-plugin-type-graphql/issues" }, "homepage": "https://github.com/borremosch/eslint-plugin-type-graphql#readme", "devDependencies": { "@types/jest": "^27.4.0", "@types/node": "^14.11.5", "@types/validator": "^13.7.1", "@typescript-eslint/eslint-plugin": "^5.9.0", "@typescript-eslint/parser": "^5.9.0", "class-validator": "^0.13.2", "eslint": "^8.6.0", "graphql": "^16.2.0", "husky": "^7.0.4", "jest": "^27.4.7", "lint-staged": "^12.1.6", "prettier": "^2.5.1", "ts-jest": "^27.1.2", "type-graphql": "^1.1.1", "typescript": "^4.5.4", "validator": "13.7.0" }, "peerDependencies": { "@typescript-eslint/parser": "^4.0.0", "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" }, "dependencies": { "@typescript-eslint/experimental-utils": "^5.9.0" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*.ts": "eslint --cache --fix", "*.{js,ts,md}": "prettier --write" } }