UNPKG

eslint-plugin-deprecation

Version:

ESLint rule that reports usage of deprecated code

84 lines (83 loc) 2.27 kB
{ "name": "eslint-plugin-deprecation", "version": "3.0.0", "description": "ESLint rule that reports usage of deprecated code", "author": "Alex Malkevich <malkevich.alex@gmail.com>", "license": "LGPL-3.0-or-later", "repository": { "type": "git", "url": "https://github.com/gund/eslint-plugin-deprecation.git" }, "main": "dist/index.js", "files": [ "dist" ], "scripts": { "ct": "git-cz", "prebuild": "rimraf dist", "build": "tsc --build tsconfig.build.json", "build:w": "npm run build -- --watch", "test": "jest", "test:w": "npm run test -- --watch", "format": "prettier --write src/**/*", "format:check": "prettier --check src/**/*", "semantic-release": "semantic-release" }, "dependencies": { "@typescript-eslint/utils": "^7.0.0", "tslib": "^2.3.1", "ts-api-utils": "^1.3.0" }, "peerDependencies": { "eslint": "^8.0.0", "typescript": "^4.2.4 || ^5.0.0" }, "devDependencies": { "@commitlint/cli": "^17.5.1", "@commitlint/config-conventional": "^17.4.4", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^9.0.2", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^8.0.7", "@semantic-release/npm": "^10.0.2", "@semantic-release/release-notes-generator": "^10.0.3", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/rule-tester": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "commitizen": "^4.2.4", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.0.0", "husky": "^8.0.3", "jest": "^29.5.0", "lint-staged": "^13.2.0", "prettier": "^2.4.1", "rimraf": "^4.4.1", "semantic-release": "^21.0.0", "ts-jest": "^29.0.5", "typescript": "^5.0.2" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged", "pre-push": "npm run format:check" } }, "lint-staged": { "src/**/*": [ "prettier --write" ] } }