{"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"keywords":["vue","hot","reload"],"dist-tags":{"latest":"2.1.0"},"author":{"name":"Evan You"},"description":"hot reload api for *.vue components","readme":"# vue-hot-reload-api\n\n> Note: `vue-hot-reload-api@2.x` only works with `vue@2.x`\n\nHot reload API for Vue components. This is what [vue-loader](https://github.com/vuejs/vue-loader) and [vueify](https://github.com/vuejs/vueify) use under the hood.\n\n## Usage\n\nYou will only be using this if you are writing some build toolchain based on Vue components. For normal application usage, just use `vue-loader` or `vueify`.\n\n``` js\n// define a component as an options object\nconst myComponentOptions = {\n  data () { ... },\n  created () { ... },\n  render () { ... }\n}\n\n// assuming Webpack's HMR API.\n// https://webpack.github.io/docs/hot-module-replacement.html\nif (module.hot) {\n  const api = require('vue-hot-reload-api')\n  const Vue = require('vue')\n\n  // make the API aware of the Vue that you are using.\n  // also checks compatibility.\n  api.install(Vue)\n\n  // compatibility can be checked via api.compatible after installation\n  if (!api.compatible) {\n    throw new Error('vue-hot-reload-api is not compatible with the version of Vue you are using.')\n  }\n\n  // indicate this module can be hot-reloaded\n  module.hot.accept()\n\n  if (!module.hot.data) {\n    // for each component option object to be hot-reloaded,\n    // you need to create a record for it with a unique id.\n    // do this once on startup.\n    api.createRecord('very-unique-id', myComponentOptions)\n  } else {\n    // if a component has only its template or render function changed,\n    // you can force a re-render for all its active instances without\n    // destroying/re-creating them. This keeps all current app state intact.\n    api.rerender('very-unique-id', myComponentOptions)\n\n    // --- OR ---\n\n    // if a component has non-template/render options changed,\n    // it needs to be fully reloaded. This will destroy and re-create all its\n    // active instances (and their children).\n    api.reload('very-unique-id', myComponentOptions)\n  }\n}\n```\n\n## License\n\n[MIT](http://opensource.org/licenses/MIT)\n","repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"users":{"nice_body":true,"monkeykode":true},"bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"license":"MIT","versions":{"1.0.0":{"name":"vue-hot-reload-api","version":"1.0.0","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"259f2161c5b3a12bf295b04b4b853382b529f505","_id":"vue-hot-reload-api@1.0.0","_shasum":"1a00f3610159ad48cd92560acc24947c42a9cd0b","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"1a00f3610159ad48cd92560acc24947c42a9cd0b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"vue-hot-reload-api","version":"1.1.0","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"485b7757dd940402672006a8224ad10667e8c55d","_id":"vue-hot-reload-api@1.1.0","_shasum":"8856e87263abeb29423a01473027d2bb24eba28d","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"8856e87263abeb29423a01473027d2bb24eba28d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"vue-hot-reload-api","version":"1.2.0","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"ebf0f5a3f97d8ca2f1815cb2e8bcb18b1f10bd3e","_id":"vue-hot-reload-api@1.2.0","_shasum":"45c3df1dd6e6ea4571b154e58e3dbd4cbaf7fbd3","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"45c3df1dd6e6ea4571b154e58e3dbd4cbaf7fbd3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"vue-hot-reload-api","version":"1.2.1","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"539de51b5ffe10839f2c64c806b60e9ce19f6cca","_id":"vue-hot-reload-api@1.2.1","_shasum":"179726ece1dee9de070a2af2ad79ef6e3bcfa10d","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"179726ece1dee9de070a2af2ad79ef6e3bcfa10d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.2.1.tgz"},"directories":{}},"1.2.2":{"name":"vue-hot-reload-api","version":"1.2.2","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"2c1b025627c1a99b17b8973e009c456c101b715b","_id":"vue-hot-reload-api@1.2.2","_shasum":"17d32008734a10c75635282331ecae698ea1e95d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"17d32008734a10c75635282331ecae698ea1e95d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.2.2.tgz"},"directories":{}},"1.3.0":{"name":"vue-hot-reload-api","version":"1.3.0","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"26aab61da0a67e3ba4a451e97e848bd2a6381199","_id":"vue-hot-reload-api@1.3.0","_shasum":"256becff48d29aef08be918bc4f1f0ddd6b2824a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"256becff48d29aef08be918bc4f1f0ddd6b2824a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.3.0.tgz"},"directories":{}},"1.3.1":{"name":"vue-hot-reload-api","version":"1.3.1","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"d3a43d1859719a8da15ef3f414f5833555ac60d0","_id":"vue-hot-reload-api@1.3.1","_shasum":"723c15d959ce6eb193af25df8e0450580ac0d070","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"723c15d959ce6eb193af25df8e0450580ac0d070","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.3.1.tgz"},"directories":{}},"1.3.2":{"name":"vue-hot-reload-api","version":"1.3.2","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"030ebbd755dca65d421cb1f3ed0760d5877100eb","_id":"vue-hot-reload-api@1.3.2","_shasum":"d644d674c1954ae1e5168a1a4af9a48523909d60","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"d644d674c1954ae1e5168a1a4af9a48523909d60","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.3.2.tgz"},"directories":{}},"2.0.0":{"name":"vue-hot-reload-api","version":"2.0.0","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"83997f04951d5abd338f69f4c32446cbf5aff7fd","_id":"vue-hot-reload-api@2.0.0","_shasum":"fab528f179ca5ebf29a77f05df367ce16da21c69","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"fab528f179ca5ebf29a77f05df367ce16da21c69","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.0.tgz_1465513319678_0.7917893524281681"},"directories":{}},"2.0.1":{"name":"vue-hot-reload-api","version":"2.0.1","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"300ecc46892a70fbda559d3bc8dd703667bafbfe","_id":"vue-hot-reload-api@2.0.1","_shasum":"8ca6c136b7601f48af307430610808dcccfdd058","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"8ca6c136b7601f48af307430610808dcccfdd058","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.1.tgz_1466013456995_0.2855698298662901"},"directories":{}},"1.3.3":{"name":"vue-hot-reload-api","version":"1.3.3","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"9c8bc1a28759b1f9b02758da482e16b914c852f4","_id":"vue-hot-reload-api@1.3.3","_shasum":"54d22d83786a878493f639cc76bca7992a23be46","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"54d22d83786a878493f639cc76bca7992a23be46","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-1.3.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-1.3.3.tgz_1466615841211_0.43817845988087356"},"directories":{}},"2.0.2":{"name":"vue-hot-reload-api","version":"2.0.2","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"c45b9159c1bafc478178c1c9a0d5e24e8708e792","_id":"vue-hot-reload-api@2.0.2","_shasum":"962c493fba9fb4f63b192ebd8696905a2551ec3a","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"962c493fba9fb4f63b192ebd8696905a2551ec3a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.2.tgz_1466783115674_0.5989443203434348"},"directories":{}},"2.0.3":{"name":"vue-hot-reload-api","version":"2.0.3","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"b8307816e20a372e27ae0702ae643eeabd15cb46","_id":"vue-hot-reload-api@2.0.3","_shasum":"1f88a57135b62a760e2ff546d044cfd0d126eb70","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"1f88a57135b62a760e2ff546d044cfd0d126eb70","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.3.tgz_1466865575856_0.6216868080664426"},"directories":{}},"2.0.4":{"name":"vue-hot-reload-api","version":"2.0.4","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"6837af64f622f471b7e5bc7024cb7b1893f70737","_id":"vue-hot-reload-api@2.0.4","_shasum":"0c7cf40dc61b2b0967ba08d67232f18f8029b5d5","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"0c7cf40dc61b2b0967ba08d67232f18f8029b5d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.4.tgz_1467254533378_0.5030903741717339"},"deprecated":"debugger","directories":{}},"2.0.5":{"name":"vue-hot-reload-api","version":"2.0.5","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"df02acf74cb6ff9e132b8e04a116bd8be32a29a2","_id":"vue-hot-reload-api@2.0.5","_shasum":"dd01443015f211328d4a64adc3caaefbe7d4e510","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"dd01443015f211328d4a64adc3caaefbe7d4e510","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.5.tgz_1467254557013_0.10644332738593221"},"directories":{}},"2.0.6":{"name":"vue-hot-reload-api","version":"2.0.6","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"b89c634ddc5691985aeec6173a1e7039787441d2","_id":"vue-hot-reload-api@2.0.6","_shasum":"817d4bfb30f55428aa1012d029499e07f3147d21","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"817d4bfb30f55428aa1012d029499e07f3147d21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.6.tgz_1470697614980_0.974693694151938"},"directories":{}},"2.0.7":{"name":"vue-hot-reload-api","version":"2.0.7","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"d984eded1422865c1fc8ca2a741fa2596612cd97","_id":"vue-hot-reload-api@2.0.7","_shasum":"45bd46cfeee7fd22550b467a76fa0c4a0ceae51b","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"45bd46cfeee7fd22550b467a76fa0c4a0ceae51b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.7.tgz"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.7.tgz_1483374354413_0.024780162842944264"},"directories":{}},"2.0.8":{"name":"vue-hot-reload-api","version":"2.0.8","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"1f8efddac61d0a86ab77cf87b4d44b8d2c6aaa6a","_id":"vue-hot-reload-api@2.0.8","_shasum":"b3ba6a9a443d561b14f2785c8ea056618cb2faa3","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"b3ba6a9a443d561b14f2785c8ea056618cb2faa3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.8.tgz"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.8.tgz_1484922568784_0.5686489003710449"},"directories":{}},"2.0.9":{"name":"vue-hot-reload-api","version":"2.0.9","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"d0a61e259b25270c445a24a123540bac2e06e04b","_id":"vue-hot-reload-api@2.0.9","_shasum":"2e8cfbfc8e531eea57d8c1f0bd761047c7e11b56","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"2e8cfbfc8e531eea57d8c1f0bd761047c7e11b56","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.9.tgz"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.9.tgz_1487472173407_0.6224188727792352"},"directories":{}},"2.0.10":{"name":"vue-hot-reload-api","version":"2.0.10","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"9abab1f5c6ed2970769754a642cccb23b277cb94","_id":"vue-hot-reload-api@2.0.10","_shasum":"28a12ef10511e70c90f260b0cbc4066b050e8af8","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"28a12ef10511e70c90f260b0cbc4066b050e8af8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.10.tgz"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.10.tgz_1487891202689_0.8558988713193685"},"directories":{}},"2.0.11":{"name":"vue-hot-reload-api","version":"2.0.11","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"2211fd476db2a6e9ba5c96466feae6cb8ee5c6c2","_id":"vue-hot-reload-api@2.0.11","_shasum":"bf26374fb73366ce03f799e65ef5dfd0e28a1568","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"bf26374fb73366ce03f799e65ef5dfd0e28a1568","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.0.11.tgz"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.0.11.tgz_1488078983406_0.6415146985091269"},"directories":{}},"2.1.0":{"name":"vue-hot-reload-api","version":"2.1.0","description":"hot reload api for *.vue components","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-hot-reload-api.git"},"keywords":["vue","hot","reload"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-hot-reload-api/issues"},"homepage":"https://github.com/vuejs/vue-hot-reload-api#readme","gitHead":"03707e4b7dcd0e4d280d941db90f408b5a24379f","_id":"vue-hot-reload-api@2.1.0","_shasum":"9ca58a6e0df9078554ce1708688b6578754d86de","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"9ca58a6e0df9078554ce1708688b6578754d86de","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-hot-reload-api/-/vue-hot-reload-api-2.1.0.tgz"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-hot-reload-api-2.1.0.tgz_1492421778603_0.8060554063413292"},"directories":{}}},"name":"vue-hot-reload-api","time":{"modified":"2017-04-17T09:36:20.392Z","created":"2015-10-21T18:37:46.235Z","1.0.0":"2015-10-21T18:37:46.235Z","1.1.0":"2015-10-22T03:48:41.083Z","1.2.0":"2015-10-23T15:56:45.408Z","1.2.1":"2015-10-23T19:58:07.355Z","1.2.2":"2015-11-28T02:03:27.778Z","1.3.0":"2016-01-24T23:35:47.087Z","1.3.1":"2016-01-26T16:12:07.159Z","1.3.2":"2016-01-29T01:55:18.201Z","2.0.0":"2016-06-09T23:02:02.186Z","2.0.1":"2016-06-15T17:57:40.592Z","1.3.3":"2016-06-22T17:17:23.793Z","2.0.2":"2016-06-24T15:45:17.878Z","2.0.3":"2016-06-25T14:39:38.619Z","2.0.4":"2016-06-30T02:42:15.862Z","2.0.5":"2016-06-30T02:42:39.473Z","2.0.6":"2016-08-08T23:06:56.560Z","2.0.7":"2017-01-02T16:25:56.441Z","2.0.8":"2017-01-20T14:29:30.543Z","2.0.9":"2017-02-19T02:42:55.233Z","2.0.10":"2017-02-23T23:06:43.313Z","2.0.11":"2017-02-26T03:16:23.943Z","2.1.0":"2017-04-17T09:36:20.392Z"},"readmeFilename":"README.md","homepage":"https://github.com/vuejs/vue-hot-reload-api#readme"}