UNPKG

eslint-plugin-file-naming

Version:

eslint文件命名规范惯例插件

54 lines 1.14 kB
{ "name": "eslint-plugin-file-naming", "version": "1.0.5", "description": "eslint文件命名规范惯例插件", "type": "module", "author": "eqian", "keywords": [ "eslint", "eslintplugin", "eslint-plugin", "folder", "path", "file", "filename", "file-naming", "naming-conventions" ], "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": "./dist/index.js", "./package.json": "./package.json" }, "repository": { "type": "git", "url": "https://github.com/c-eqian/eslint-config.git" }, "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" }, "peerDependencies": { "eslint": ">=9.0.0" }, "files": [ "dist" ], "private": false, "dependencies": { "micromatch": "^4.0.8" }, "engines": { "node": ">=18" }, "devDependencies": { "@types/micromatch": "^4.0.9" }, "scripts": { "build": "tsup", "release": "pnpm run build && bumpp && pnpm -r publish --access public --no-git-checks", "test": "tsx __test__/index.test.ts" } }