UNPKG

eslint-plugin-vue-scoped-css

Version:
139 lines (138 loc) 4.45 kB
{ "name": "eslint-plugin-vue-scoped-css", "version": "2.9.0", "description": "ESLint plugin for Scoped CSS in Vue.js", "main": "dist/index.js", "scripts": { "prebuild": "npm run -s clean", "build": "tsc --project ./tsconfig.build.json", "clean": "rimraf .nyc_output dist coverage", "lint": "eslint .", "eslint-fix": "eslint . --fix", "pretest": "npm run build", "test:base": "mocha --require ts-node/register \"tests/**/*.ts\" --reporter dot --timeout 60000", "test": "npm run test:nyc", "test:nyc": "nyc --reporter=lcov npm run test:base", "test:debug": "mocha --require ts-node/register/transpile-only \"tests/**/*.ts\" --reporter dot", "test:watch": "npm run test:base -- --watch", "update": "ts-node ./tools/update.ts && npm run eslint-fix && npm run test:nyc", "new": "ts-node ./tools/new-rule.ts", "predocs:watch": "npm run build", "docs:watch": "vitepress dev docs", "docs:build": "npm run build && vitepress build docs", "docs:open-dist": "cd ./docs/.vitepress/dist && npx -y http-server --open http://localhost:8080/eslint-plugin-vue-scoped-css/", "preversion": "npm test && npm run update && git add .", "version": "npm run lint -- --fix && git add .", "version:ci": "npm run update && changeset version", "prerelease": "npm run build", "release": "changeset publish", "updatefixture": "cross-env UPDATE_FIXTURE=\"true\" npm run test:base" }, "repository": { "type": "git", "url": "git+https://github.com/future-architect/eslint-plugin-vue-scoped-css.git" }, "author": "Yosuke Ota", "funding": "https://github.com/sponsors/ota-meshi", "license": "MIT", "bugs": { "url": "https://github.com/future-architect/eslint-plugin-vue-scoped-css/issues" }, "homepage": "https://future-architect.github.io/eslint-plugin-vue-scoped-css/", "keywords": [ "eslint", "eslintplugin", "eslint-plugin", "vue", "style", "scoped", "css" ], "files": [ "dist" ], "devDependencies": { "@changesets/cli": "^2.27.5", "@eslint-community/eslint-plugin-eslint-comments": "^4.3.0", "@ota-meshi/eslint-plugin": "^0.17.4", "@ota-meshi/site-kit-eslint-editor-vue": "^0.2.1", "@svitejs/changesets-changelog-github-compact": "^1.1.0", "@types/eslint": "^8.56.10", "@types/estree": "^1.0.5", "@types/lodash": "^4.17.5", "@types/mocha": "^10.0.7", "@types/node": "^22.0.0", "@types/semver": "^7.5.8", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "assert": "^2.1.0", "cross-env": "^7.0.3", "eslint": "^9.5.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-eslint-plugin": "^6.1.0", "eslint-plugin-jsdoc": "^50.0.0", "eslint-plugin-json-schema-validator": "^5.1.1", "eslint-plugin-jsonc": "^2.16.0", "eslint-plugin-n": "^17.9.0", "eslint-plugin-node-dependencies": "^0.12.0", "eslint-plugin-prettier": "^5.1.3", "eslint-plugin-regexp": "^2.6.0", "eslint-plugin-vue": "^9.26.0", "eslint-plugin-vue-scoped-css": "^2.8.0", "eslint-plugin-yml": "^1.14.0", "events": "^3.3.0", "mocha": "^10.0.0", "nyc": "^17.0.0", "pako": "^2.1.0", "prettier": "^3.1.0", "rimraf": "^3.0.2", "semver": "^7.3.2", "stylelint": "^16.0.0", "stylelint-config-recommended-vue": "^1.1.0", "stylelint-config-standard": "^36.0.0", "stylelint-config-standard-vue": "^1.0.0", "stylelint-stylus": "^1.0.0", "ts-node": "^10.9.1", "typescript": "~5.7.0", "typescript-eslint": "^8.0.0", "vite-plugin-eslint4b": "^0.4.6", "vitepress": "^1.0.1", "vue-eslint-parser": "^9.0.0" }, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "eslint-compat-utils": "^0.6.0", "lodash": "^4.17.21", "postcss": "^8.4.31", "postcss-safe-parser": "^6.0.0", "postcss-scss": "^4.0.3", "postcss-selector-parser": "^6.0.9", "postcss-styl": "^0.12.0" }, "peerDependencies": { "eslint": ">=5.0.0", "vue-eslint-parser": ">=7.1.0" }, "nyc": { "include": [ "lib/*.ts", "lib/**/*.ts" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "exclude": [ "**/*.spec.js", "tests/**/*.js" ] }, "engines": { "node": "^12.22 || ^14.17 || >=16" }, "publishConfig": { "access": "public" } }