package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "eslint-plugin-vue",
  3. "version": "4.7.1",
  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. "lint": "eslint . --rulesdir eslint-internal-rules",
  11. "pretest": "npm run lint",
  12. "preversion": "npm test && npm run update && git add .",
  13. "version": "npm run lint -- --fix && git add .",
  14. "update": "node ./tools/update.js"
  15. },
  16. "files": [
  17. "lib"
  18. ],
  19. "homepage": "https://github.com/vuejs/eslint-plugin-vue#readme",
  20. "keywords": [
  21. "eslint",
  22. "eslint-plugin",
  23. "eslint-config",
  24. "vue",
  25. "vuejs",
  26. "rules"
  27. ],
  28. "author": "Toru Nagashima (https://github.com/mysticatea)",
  29. "contributors": [
  30. "Michał Sajnóg <msajnog93@gmail.com> (http://github.com/michalsnik)"
  31. ],
  32. "license": "MIT",
  33. "repository": {
  34. "type": "git",
  35. "url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/vuejs/eslint-plugin-vue/issues"
  39. },
  40. "engines": {
  41. "node": ">=4"
  42. },
  43. "peerDependencies": {
  44. "eslint": "^3.18.0 || ^4.0.0"
  45. },
  46. "dependencies": {
  47. "vue-eslint-parser": "^2.0.3"
  48. },
  49. "devDependencies": {
  50. "@types/node": "^4.2.16",
  51. "babel-eslint": "^8.2.2",
  52. "chai": "^4.1.0",
  53. "eslint": "^4.14.0",
  54. "eslint-plugin-eslint-plugin": "^0.8.0",
  55. "eslint-plugin-html": "^4.0.1",
  56. "eslint-plugin-vue-libs": "^2.0.0",
  57. "lodash": "^4.17.4",
  58. "mocha": "^3.2.0",
  59. "nyc": "^11.1.0"
  60. },
  61. "__npminstall_done": "Thu Dec 24 2020 20:20:35 GMT+0800 (CST)",
  62. "_from": "eslint-plugin-vue@4.7.1",
  63. "_resolved": "https://registry.npm.taobao.org/eslint-plugin-vue/download/eslint-plugin-vue-4.7.1.tgz?cache=0&sync_timestamp=1608096288233&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-plugin-vue%2Fdownload%2Feslint-plugin-vue-4.7.1.tgz"
  64. }