package.json 749 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "vue-hot-reload-api",
  3. "version": "2.3.4",
  4. "description": "hot reload api for *.vue components",
  5. "main": "dist/index.js",
  6. "files": [
  7. "dist"
  8. ],
  9. "scripts": {
  10. "build": "buble src -o dist",
  11. "test": "jest",
  12. "prepublishOnly": "npm run test && npm run build"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/vuejs/vue-hot-reload-api.git"
  17. },
  18. "keywords": [
  19. "vue",
  20. "hot",
  21. "reload"
  22. ],
  23. "author": "Evan You",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/vuejs/vue-hot-reload-api/issues"
  27. },
  28. "homepage": "https://github.com/vuejs/vue-hot-reload-api#readme",
  29. "devDependencies": {
  30. "buble": "^0.19.6",
  31. "jest": "^24.9.0",
  32. "vue": "^2.5.21"
  33. }
  34. }