package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "eslint-plugin-vue",
  3. "version": "6.2.2",
  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-brk \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
  11. "lint": "eslint . --rulesdir eslint-internal-rules",
  12. "pretest": "npm run lint",
  13. "preversion": "npm test && npm run update && git add .",
  14. "version": "npm run lint -- --fix && git add .",
  15. "update": "node ./tools/update.js",
  16. "docs:watch": "vuepress dev docs",
  17. "docs:build": "vuepress build docs"
  18. },
  19. "files": [
  20. "lib"
  21. ],
  22. "homepage": "https://eslint.vuejs.org",
  23. "keywords": [
  24. "eslint",
  25. "eslint-plugin",
  26. "eslint-config",
  27. "vue",
  28. "vuejs",
  29. "rules"
  30. ],
  31. "author": "Toru Nagashima (https://github.com/mysticatea)",
  32. "contributors": [
  33. "Michał Sajnóg <msajnog93@gmail.com> (https://github.com/michalsnik)"
  34. ],
  35. "license": "MIT",
  36. "repository": {
  37. "type": "git",
  38. "url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
  39. },
  40. "bugs": {
  41. "url": "https://github.com/vuejs/eslint-plugin-vue/issues"
  42. },
  43. "engines": {
  44. "node": ">=8.10"
  45. },
  46. "peerDependencies": {
  47. "eslint": "^5.0.0 || ^6.0.0"
  48. },
  49. "dependencies": {
  50. "natural-compare": "^1.4.0",
  51. "vue-eslint-parser": "^7.0.0",
  52. "semver": "^5.6.0"
  53. },
  54. "devDependencies": {
  55. "@types/node": "^4.2.16",
  56. "@typescript-eslint/parser": "^2.6.1",
  57. "acorn": "^7.1.0",
  58. "babel-eslint": "^10.0.2",
  59. "chai": "^4.1.0",
  60. "eslint": "^6.0.0",
  61. "eslint-plugin-eslint-plugin": "^2.0.1",
  62. "eslint-plugin-import": "^2.18.2",
  63. "eslint-plugin-vue": "file:.",
  64. "eslint-plugin-vue-libs": "^4.0.0",
  65. "eslint4b": "^6.6.0",
  66. "lodash": "^4.17.4",
  67. "mocha": "^5.2.0",
  68. "nyc": "^12.0.2",
  69. "typescript": "^3.5.2",
  70. "vue-eslint-editor": "^0.1.4",
  71. "vuepress": "^0.14.5"
  72. }
  73. }