package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "vuex-router-sync",
  3. "version": "5.0.0",
  4. "description": "Effortlessly keep vue-router and vuex store in sync.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "types/*.d.ts"
  9. ],
  10. "typings": "types/index.d.ts",
  11. "scripts": {
  12. "test": "jest && npm run test:types",
  13. "test:types": "tsc -p types/test",
  14. "build": "buble src/index.js > index.js",
  15. "pretest": "npm run build",
  16. "prepublishOnly": "npm run build"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/vuejs/vuex-router-sync.git"
  21. },
  22. "keywords": [
  23. "vuex",
  24. "vue-router",
  25. "vue"
  26. ],
  27. "author": "Evan You",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/vuejs/vuex-router-sync/issues"
  31. },
  32. "homepage": "https://github.com/vuejs/vuex-router-sync#readme",
  33. "devDependencies": {
  34. "buble": "^0.16.0",
  35. "jest": "^21.2.1",
  36. "typescript": "^2.5.3",
  37. "vue": "github:vuejs/vue#dev",
  38. "vue-router": "^3.0.0",
  39. "vuex": "^3.0.0"
  40. },
  41. "peerDependencies": {
  42. "vue-router": "^3.0.0",
  43. "vuex": "^3.0.0"
  44. }
  45. }