package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. {
  2. "_from": "eslint-plugin-vue@^8.2.0",
  3. "_id": "eslint-plugin-vue@8.6.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-abXiF2J18n/7ZPy9foSlJyouKf54IqpKlNvNmzhM93N0zs3QUxZG/oBd3tVPOJTKg7SlhBUtPxugpqzNbgGpQQ==",
  6. "_location": "/eslint-plugin-vue",
  7. "_phantomChildren": {
  8. "lru-cache": "6.0.0"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "eslint-plugin-vue@^8.2.0",
  14. "name": "eslint-plugin-vue",
  15. "escapedName": "eslint-plugin-vue",
  16. "rawSpec": "^8.2.0",
  17. "saveSpec": null,
  18. "fetchSpec": "^8.2.0"
  19. },
  20. "_requiredBy": [
  21. "#DEV:/",
  22. "/@nuxtjs/eslint-config",
  23. "/eslint-plugin-nuxt"
  24. ],
  25. "_resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.6.0.tgz",
  26. "_shasum": "fbdf0f13f8d208a4cba752bf54042661a1aec5c3",
  27. "_spec": "eslint-plugin-vue@^8.2.0",
  28. "_where": "H:\\gs_nuxt",
  29. "author": {
  30. "name": "Toru Nagashima",
  31. "url": "https://github.com/mysticatea"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/vuejs/eslint-plugin-vue/issues"
  35. },
  36. "bundleDependencies": false,
  37. "contributors": [
  38. {
  39. "name": "Michał Sajnóg",
  40. "email": "msajnog93@gmail.com",
  41. "url": "https://github.com/michalsnik"
  42. },
  43. {
  44. "name": "Yosuke Ota",
  45. "url": "https://github.com/ota-meshi"
  46. }
  47. ],
  48. "dependencies": {
  49. "eslint-utils": "^3.0.0",
  50. "natural-compare": "^1.4.0",
  51. "semver": "^7.3.5",
  52. "vue-eslint-parser": "^8.0.1"
  53. },
  54. "deprecated": false,
  55. "description": "Official ESLint plugin for Vue.js",
  56. "devDependencies": {
  57. "@types/eslint": "^7.28.1",
  58. "@types/eslint-visitor-keys": "^1.0.0",
  59. "@types/natural-compare": "^1.4.0",
  60. "@types/node": "^13.13.5",
  61. "@types/semver": "^7.2.0",
  62. "@typescript-eslint/parser": "^5.5.0",
  63. "@vuepress/plugin-pwa": "^1.4.1",
  64. "acorn": "^8.5.0",
  65. "env-cmd": "^10.1.0",
  66. "eslint": "^8.0.0",
  67. "eslint-config-prettier": "^6.11.0",
  68. "eslint-plugin-eslint-plugin": "^3.5.3",
  69. "eslint-plugin-import": "^2.20.2",
  70. "eslint-plugin-jsonc": "^1.4.0",
  71. "eslint-plugin-node-dependencies": ">=0.5.0 <1.0.0",
  72. "eslint-plugin-prettier": "^3.1.3",
  73. "eslint-plugin-vue": "file:.",
  74. "espree": "^9.0.0",
  75. "lodash": "^4.17.21",
  76. "markdownlint-cli": "^0.31.1",
  77. "mocha": "^7.1.2",
  78. "nyc": "^15.1.0",
  79. "prettier": "^2.4.1",
  80. "typescript": "^4.5.0",
  81. "vue-eslint-editor": "^1.1.0",
  82. "vuepress": "^1.8.2"
  83. },
  84. "engines": {
  85. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  86. },
  87. "files": [
  88. "lib"
  89. ],
  90. "homepage": "https://eslint.vuejs.org",
  91. "keywords": [
  92. "eslint",
  93. "eslint-plugin",
  94. "eslint-config",
  95. "vue",
  96. "vuejs",
  97. "rules"
  98. ],
  99. "license": "MIT",
  100. "main": "lib/index.js",
  101. "name": "eslint-plugin-vue",
  102. "peerDependencies": {
  103. "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
  104. },
  105. "repository": {
  106. "type": "git",
  107. "url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
  108. },
  109. "scripts": {
  110. "cover": "npm run cover:test && npm run cover:report",
  111. "cover:report": "nyc report --reporter=html",
  112. "cover:test": "nyc npm run test:base -- --timeout 60000",
  113. "debug": "mocha --inspect \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
  114. "docs:build": "vuepress build docs",
  115. "docs:watch": "vuepress dev docs",
  116. "lint": "eslint . --rulesdir eslint-internal-rules && markdownlint \"**/*.md\"",
  117. "lint:fix": "eslint . --rulesdir eslint-internal-rules --fix && markdownlint \"**/*.md\" --fix",
  118. "new": "node tools/new-rule.js",
  119. "predocs:build": "npm run update",
  120. "preversion": "npm test && git add .",
  121. "start": "npm run test:base -- --watch --growl",
  122. "test": "nyc npm run test:base -- \"tests/integrations/*.js\" --timeout 60000",
  123. "test:base": "mocha \"tests/lib/**/*.js\" --reporter dot",
  124. "tsc": "tsc",
  125. "update": "node ./tools/update.js",
  126. "version": "env-cmd -e version npm run update && npm run lint -- --fix && git add ."
  127. },
  128. "version": "8.6.0"
  129. }