package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "eslint-plugin-vue",
  3. "version": "9.30.0",
  4. "description": "Official ESLint plugin for Vue.js",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "scripts": {
  8. "new": "node tools/new-rule.js",
  9. "start": "npm run test:base -- --watch --growl",
  10. "test:base": "mocha \"tests/lib/**/*.js\" --reporter dot",
  11. "test": "nyc npm run test:base -- \"tests/integrations/*.js\" --timeout 60000",
  12. "test:integrations": "mocha \"tests/integrations/*.js\" --timeout 60000",
  13. "debug": "mocha --inspect \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
  14. "cover": "npm run cover:test && npm run cover:report",
  15. "cover:test": "nyc npm run test:base -- --timeout 60000",
  16. "cover:report": "nyc report --reporter=html",
  17. "lint": "eslint . && markdownlint \"**/*.md\"",
  18. "lint:fix": "eslint . --fix && markdownlint \"**/*.md\" --fix",
  19. "tsc": "tsc",
  20. "preversion": "npm test && git add .",
  21. "version": "env-cmd -e version npm run update && npm run lint -- --fix && git add .",
  22. "update": "node ./tools/update.js",
  23. "docs:watch": "vitepress dev docs",
  24. "predocs:build": "npm run update",
  25. "docs:build": "vitepress build docs"
  26. },
  27. "files": [
  28. "lib"
  29. ],
  30. "homepage": "https://eslint.vuejs.org",
  31. "keywords": [
  32. "eslint",
  33. "eslint-plugin",
  34. "eslint-config",
  35. "vue",
  36. "vuejs",
  37. "rules"
  38. ],
  39. "author": "Toru Nagashima (https://github.com/mysticatea)",
  40. "contributors": [
  41. "Michał Sajnóg <msajnog93@gmail.com> (https://github.com/michalsnik)",
  42. "Yosuke Ota (https://github.com/ota-meshi)"
  43. ],
  44. "license": "MIT",
  45. "repository": {
  46. "type": "git",
  47. "url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/vuejs/eslint-plugin-vue/issues"
  51. },
  52. "engines": {
  53. "node": "^14.17.0 || >=16.0.0"
  54. },
  55. "peerDependencies": {
  56. "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
  57. },
  58. "dependencies": {
  59. "@eslint-community/eslint-utils": "^4.4.0",
  60. "globals": "^13.24.0",
  61. "natural-compare": "^1.4.0",
  62. "nth-check": "^2.1.1",
  63. "postcss-selector-parser": "^6.0.15",
  64. "semver": "^7.6.3",
  65. "vue-eslint-parser": "^9.4.3",
  66. "xml-name-validator": "^4.0.0"
  67. },
  68. "devDependencies": {
  69. "@ota-meshi/site-kit-eslint-editor-vue": "^0.2.4",
  70. "@stylistic/eslint-plugin": "^2.9.0",
  71. "@types/eslint": "^8.56.2",
  72. "@types/eslint-visitor-keys": "^3.3.2",
  73. "@types/natural-compare": "^1.4.3",
  74. "@types/node": "^14.18.63",
  75. "@types/semver": "^7.5.8",
  76. "@types/xml-name-validator": "^4.0.3",
  77. "@typescript-eslint/parser": "^7.18.0",
  78. "@typescript-eslint/types": "^7.18.0",
  79. "assert": "^2.1.0",
  80. "env-cmd": "^10.1.0",
  81. "esbuild": "^0.24.0",
  82. "eslint": "^8.57.0",
  83. "eslint-config-prettier": "^9.1.0",
  84. "eslint-plugin-eslint-plugin": "~6.3.1",
  85. "eslint-plugin-import": "^2.31.0",
  86. "eslint-plugin-jsonc": "^2.16.0",
  87. "eslint-plugin-node-dependencies": "^0.12.0",
  88. "eslint-plugin-prettier": "^5.2.1",
  89. "eslint-plugin-unicorn": "^56.0.0",
  90. "eslint-plugin-vue": "file:.",
  91. "espree": "^9.6.1",
  92. "events": "^3.3.0",
  93. "markdownlint-cli": "^0.42.0",
  94. "mocha": "^10.7.3",
  95. "nyc": "^17.1.0",
  96. "pathe": "^1.1.2",
  97. "prettier": "^3.3.3",
  98. "typescript": "^5.6.3",
  99. "vitepress": "^1.4.1"
  100. }
  101. }