You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.1 KiB
96 lines
3.1 KiB
{
|
|
"name": "eslint-plugin-vue",
|
|
"version": "9.9.0",
|
|
"description": "Official ESLint plugin for Vue.js",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"new": "node tools/new-rule.js",
|
|
"start": "npm run test:base -- --watch --growl",
|
|
"test:base": "mocha \"tests/lib/**/*.js\" --reporter dot",
|
|
"test": "nyc npm run test:base -- \"tests/integrations/*.js\" --timeout 60000",
|
|
"debug": "mocha --inspect \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
|
|
"cover": "npm run cover:test && npm run cover:report",
|
|
"cover:test": "nyc npm run test:base -- --timeout 60000",
|
|
"cover:report": "nyc report --reporter=html",
|
|
"lint": "eslint . --rulesdir eslint-internal-rules && markdownlint \"**/*.md\"",
|
|
"lint:fix": "eslint . --rulesdir eslint-internal-rules --fix && markdownlint \"**/*.md\" --fix",
|
|
"tsc": "tsc",
|
|
"preversion": "npm test && git add .",
|
|
"version": "env-cmd -e version npm run update && npm run lint -- --fix && git add .",
|
|
"update": "node ./tools/update.js",
|
|
"docs:watch": "vitepress dev docs",
|
|
"predocs:build": "npm run update",
|
|
"docs:build": "vitepress build docs"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"homepage": "https://eslint.vuejs.org",
|
|
"keywords": [
|
|
"eslint",
|
|
"eslint-plugin",
|
|
"eslint-config",
|
|
"vue",
|
|
"vuejs",
|
|
"rules"
|
|
],
|
|
"author": "Toru Nagashima (https://github.com/mysticatea)",
|
|
"contributors": [
|
|
"Michał Sajnóg <msajnog93@gmail.com> (https://github.com/michalsnik)",
|
|
"Yosuke Ota (https://github.com/ota-meshi)"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/vuejs/eslint-plugin-vue/issues"
|
|
},
|
|
"engines": {
|
|
"node": "^14.17.0 || >=16.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
|
|
},
|
|
"dependencies": {
|
|
"eslint-utils": "^3.0.0",
|
|
"natural-compare": "^1.4.0",
|
|
"nth-check": "^2.0.1",
|
|
"postcss-selector-parser": "^6.0.9",
|
|
"semver": "^7.3.5",
|
|
"vue-eslint-parser": "^9.0.1",
|
|
"xml-name-validator": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
"@ota-meshi/site-kit-eslint-editor-vue": "^0.1.0",
|
|
"@types/eslint": "^8.4.2",
|
|
"@types/eslint-visitor-keys": "^1.0.0",
|
|
"@types/natural-compare": "^1.4.1",
|
|
"@types/node": "^13.13.5",
|
|
"@types/semver": "^7.3.9",
|
|
"@types/xml-name-validator": "^4.0.0",
|
|
"@typescript-eslint/parser": "^5.45.0",
|
|
"assert": "^2.0.0",
|
|
"env-cmd": "^10.1.0",
|
|
"esbuild": "^0.15.15",
|
|
"eslint": "^8.15.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-eslint-plugin": "^3.5.3",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-jsonc": "^2.2.1",
|
|
"eslint-plugin-node-dependencies": ">=0.5.0 <1.0.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-unicorn": "^42.0.0",
|
|
"eslint-plugin-vue": "file:.",
|
|
"espree": "^9.3.2",
|
|
"events": "^3.3.0",
|
|
"markdownlint-cli": "^0.31.1",
|
|
"mocha": "^10.0.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.6.2",
|
|
"typescript": "^4.9.3",
|
|
"vitepress": "^1.0.0-alpha.29"
|
|
}
|
|
}
|
|
|