package.json 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "eslint-plugin-vue",
  3. "version": "8.7.1",
  4. "description": "Official ESLint plugin for Vue.js",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "new": "node tools/new-rule.js",
  8. "start": "npm run test:base -- --watch --growl",
  9. "test:base": "mocha \"tests/lib/**/*.js\" --reporter dot",
  10. "test": "nyc npm run test:base -- \"tests/integrations/*.js\" --timeout 60000",
  11. "debug": "mocha --inspect \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
  12. "cover": "npm run cover:test && npm run cover:report",
  13. "cover:test": "nyc npm run test:base -- --timeout 60000",
  14. "cover:report": "nyc report --reporter=html",
  15. "lint": "eslint . --rulesdir eslint-internal-rules && markdownlint \"**/*.md\"",
  16. "lint:fix": "eslint . --rulesdir eslint-internal-rules --fix && markdownlint \"**/*.md\" --fix",
  17. "tsc": "tsc",
  18. "preversion": "npm test && git add .",
  19. "version": "env-cmd -e version npm run update && npm run lint -- --fix && git add .",
  20. "update": "node ./tools/update.js",
  21. "docs:watch": "vuepress dev docs",
  22. "predocs:build": "npm run update",
  23. "docs:build": "vuepress build docs"
  24. },
  25. "files": [
  26. "lib"
  27. ],
  28. "homepage": "https://eslint.vuejs.org",
  29. "keywords": [
  30. "eslint",
  31. "eslint-plugin",
  32. "eslint-config",
  33. "vue",
  34. "vuejs",
  35. "rules"
  36. ],
  37. "author": "Toru Nagashima (https://github.com/mysticatea)",
  38. "contributors": [
  39. "Michał Sajnóg <msajnog93@gmail.com> (https://github.com/michalsnik)",
  40. "Yosuke Ota (https://github.com/ota-meshi)"
  41. ],
  42. "license": "MIT",
  43. "repository": {
  44. "type": "git",
  45. "url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
  46. },
  47. "bugs": {
  48. "url": "https://github.com/vuejs/eslint-plugin-vue/issues"
  49. },
  50. "engines": {
  51. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  52. },
  53. "peerDependencies": {
  54. "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
  55. },
  56. "dependencies": {
  57. "eslint-utils": "^3.0.0",
  58. "natural-compare": "^1.4.0",
  59. "nth-check": "^2.0.1",
  60. "postcss-selector-parser": "^6.0.9",
  61. "semver": "^7.3.5",
  62. "vue-eslint-parser": "^8.0.1"
  63. },
  64. "devDependencies": {
  65. "@types/eslint": "^7.28.1",
  66. "@types/eslint-visitor-keys": "^1.0.0",
  67. "@types/natural-compare": "^1.4.0",
  68. "@types/node": "^13.13.5",
  69. "@types/semver": "^7.2.0",
  70. "@typescript-eslint/parser": "^5.5.0",
  71. "@vuepress/plugin-pwa": "^1.4.1",
  72. "acorn": "^8.5.0",
  73. "env-cmd": "^10.1.0",
  74. "eslint": "^8.0.0",
  75. "eslint-config-prettier": "^6.11.0",
  76. "eslint-plugin-eslint-plugin": "^3.5.3",
  77. "eslint-plugin-import": "^2.20.2",
  78. "eslint-plugin-jsonc": "^1.4.0",
  79. "eslint-plugin-node-dependencies": ">=0.5.0 <1.0.0",
  80. "eslint-plugin-prettier": "^3.1.3",
  81. "eslint-plugin-vue": "file:.",
  82. "espree": "^9.0.0",
  83. "lodash": "^4.17.21",
  84. "markdownlint-cli": "^0.31.1",
  85. "mocha": "^7.1.2",
  86. "nyc": "^15.1.0",
  87. "prettier": "^2.4.1",
  88. "typescript": "^4.5.0",
  89. "vue-eslint-editor": "^1.1.0",
  90. "vuepress": "^1.8.2"
  91. }
  92. }