eslint-plugin-ts-export-naming-convention
Version:
ESLint plugin to enforce naming conventions for TypeScript exports
70 lines • 2.05 kB
JSON
{
"name": "eslint-plugin-ts-export-naming-convention",
"description": "ESLint plugin to enforce naming conventions for TypeScript exports",
"keywords": [
"eslint",
"eslintplugin",
"typescript",
"export",
"naming-convention"
],
"version": "1.0.1",
"author": "Doray <open@doray.dev>",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/dorayx/eslint-plugin-ts-export-naming-convention.git"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"//1": "Due to yarn2+, we have to use 'postinstall' script to install husky",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "yarn build && vitest run",
"test:dev": "vitest dev",
"coverage": "vitest run --coverage",
"_postinstall": "is-ci || husky install",
"plop": "plop",
"semantic-release": "semantic-release",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "^8.44.2",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-plugin": "^5.1.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"pinst": "^3.0.0",
"plop": "^3.1.2",
"prettier": "3.0.2",
"semantic-release": "^21.1.1",
"semantic-release-yarn": "^2.0.1",
"typescript": "~5.1.0",
"vite": "^4.4.5",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.3"
},
"packageManager": "yarn@3.6.3",
"engines": {
"node": ">=16"
},
"engineStrict": true,
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=6",
"eslint": ">=8"
}
}