package.json 3.9 KB

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