package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "eslint-plugin-vue",
  3. "version": "7.2.0",
  4. "description": "Official ESLint plugin for Vue.js",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "start": "npm run test:base -- --watch --growl",
  8. "test:base": "mocha \"tests/lib/**/*.js\" --reporter dot",
  9. "test": "nyc npm run test:base -- \"tests/integrations/*.js\" --timeout 60000",
  10. "debug": "mocha --inspect \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
  11. "cover": "npm run cover:test && npm run cover:report",
  12. "cover:test": "nyc npm run test:base -- --timeout 60000",
  13. "cover:report": "nyc report --reporter=html",
  14. "lint": "eslint . --rulesdir eslint-internal-rules",
  15. "lint:fix": "eslint . --rulesdir eslint-internal-rules --fix",
  16. "tsc": "tsc",
  17. "preversion": "npm test && npm run update && git add .",
  18. "version": "npm run lint -- --fix && git add .",
  19. "update": "node ./tools/update.js",
  20. "docs:watch": "vuepress dev docs",
  21. "docs:build": "vuepress build docs"
  22. },
  23. "files": [
  24. "lib"
  25. ],
  26. "homepage": "https://eslint.vuejs.org",
  27. "keywords": [
  28. "eslint",
  29. "eslint-plugin",
  30. "eslint-config",
  31. "vue",
  32. "vuejs",
  33. "rules"
  34. ],
  35. "author": "Toru Nagashima (https://github.com/mysticatea)",
  36. "contributors": [
  37. "Michał Sajnóg <msajnog93@gmail.com> (https://github.com/michalsnik)",
  38. "Yosuke Ota (https://github.com/ota-meshi)"
  39. ],
  40. "license": "MIT",
  41. "repository": {
  42. "type": "git",
  43. "url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
  44. },
  45. "bugs": {
  46. "url": "https://github.com/vuejs/eslint-plugin-vue/issues"
  47. },
  48. "engines": {
  49. "node": ">=8.10"
  50. },
  51. "peerDependencies": {
  52. "eslint": "^6.2.0 || ^7.0.0"
  53. },
  54. "dependencies": {
  55. "eslint-utils": "^2.1.0",
  56. "natural-compare": "^1.4.0",
  57. "semver": "^7.3.2",
  58. "vue-eslint-parser": "^7.2.0"
  59. },
  60. "devDependencies": {
  61. "@types/eslint": "^7.2.0",
  62. "@types/natural-compare": "^1.4.0",
  63. "@types/node": "^13.13.5",
  64. "@types/semver": "^7.2.0",
  65. "@typescript-eslint/parser": "^3.0.2",
  66. "@vuepress/plugin-pwa": "^1.4.1",
  67. "babel-eslint": "^10.1.0",
  68. "eslint": "^7.0.0",
  69. "eslint-config-prettier": "^6.11.0",
  70. "eslint-plugin-eslint-plugin": "^2.2.1",
  71. "eslint-plugin-import": "^2.20.2",
  72. "eslint-plugin-prettier": "^3.1.3",
  73. "eslint-plugin-vue": "file:.",
  74. "eslint4b": "^7.0.0",
  75. "lodash": "^4.17.15",
  76. "mocha": "^7.1.2",
  77. "nyc": "^15.0.1",
  78. "prettier": "^2.1.1",
  79. "typescript": "^3.9.5",
  80. "vue-eslint-editor": "^1.1.0",
  81. "vuepress": "^1.4.1"
  82. }
  83. }