{"_id":"vue-datepicker","_rev":"25-5a8f93ec5daf29eb2f4a0224542d885d","name":"vue-datepicker","time":{"modified":"2022-06-28T19:18:56.429Z","created":"2015-12-01T00:18:32.041Z","0.1.1":"2015-12-01T00:18:32.041Z","1.0.1":"2016-01-19T07:30:40.048Z","1.0.2":"2016-01-19T10:00:59.285Z","1.0.3":"2016-01-19T10:29:43.354Z","1.0.4":"2016-01-20T07:16:15.877Z","1.0.5":"2016-01-20T07:59:41.345Z","1.0.6":"2016-01-30T02:20:50.348Z","1.0.8":"2016-02-04T03:15:42.248Z","1.1.0":"2016-02-05T03:20:08.703Z","1.1.1":"2016-02-17T06:19:29.143Z","1.1.3":"2016-02-24T14:11:50.311Z","1.1.4":"2016-03-12T11:47:02.856Z","1.1.5":"2016-03-12T12:04:26.726Z","1.2.0":"2016-05-07T09:20:43.172Z","1.2.1":"2016-08-05T03:07:37.120Z","1.2.2":"2016-08-06T05:04:35.206Z","1.3.0":"2016-10-18T03:05:38.705Z"},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"dist-tags":{"latest":"1.3.0"},"description":"calendar and datepicker component with material design for Vue.js ","readme":"# vue-datepicker\ncalendar and datepicker component with material design for Vue.js\n\n# Demo\n\nThe demo page is [HERE](http://hilongjw.github.io/vue-datepicker/demo.html).\n\n![Screenshot](screenshot.png)\n\n# Requirements\n\n- [Vue.js](https://github.com/yyx990803/vue) `^1.0.0` & `^2.0.0`\n- [moment](https://github.com/moment/moment) `^2.11.1`\n\n# Instllation\n\n## npm\n\n```shell\n$ npm install vue-datepicker\n```\n\n# Usage\n\n```html\n<script>\n// for Vue 1.0\nimport myDatepicker from 'vue-datepicker/vue-datepicker-1.vue'\n\n// for Vue 2.0\nimport myDatepicker from 'vue-datepicker'\n\nexport default {\n  data () {\n    return {\n      // for Vue 1.0\n      starttime: '',\n      endtime: '2016-01-19',\n      testTime: '',\n      multiTime: '',\n\n      // for Vue 2.0\n      startTime: {\n        time: ''\n      },\n      endtime: {\n        time: ''\n      }\n\n      option: {\n        type: 'day',\n        week: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'],\n        month: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],\n        format: 'YYYY-MM-DD',\n        placeholder: 'when?',\n        inputStyle: {\n          'display': 'inline-block',\n          'padding': '6px',\n          'line-height': '22px',\n          'font-size': '16px',\n          'border': '2px solid #fff',\n          'box-shadow': '0 1px 3px 0 rgba(0, 0, 0, 0.2)',\n          'border-radius': '2px',\n          'color': '#5F5F5F'\n        },\n        color: {\n          header: '#ccc',\n          headerText: '#f00'\n        },\n        buttons: {\n          ok: 'Ok',\n          cancel: 'Cancel'\n        },\n        overlayOpacity: 0.5, // 0.5 as default\n        dismissible: true // as true as default\n      },\n      timeoption: {\n        type: 'min',\n        week: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'],\n        month: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],\n        format: 'YYYY-MM-DD HH:mm'\n      },\n      multiOption: {\n        type: 'multi-day',\n        week: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'],\n        month: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],\n        format:\"YYYY-MM-DD HH:mm\"\n      },\n      limit: [{\n        type: 'weekday',\n        available: [1, 2, 3, 4, 5]\n      },\n      {\n        type: 'fromto',\n        from: '2016-02-01',\n        to: '2016-02-20'\n      }]\n    }\n  },\n  components: {\n    'date-picker': myDatepicker\n  }\n}\n</script>\n<template>\n  <div class=\"card\">\n\n    <!-- for Vue 1.0 -->\n    <div class=\"row\">\n      <span>Departure Date：</span>\n      <date-picker :time.sync=\"starttime\" :option=\"option\" :limit=\"limit\"></date-picker>\n    </div>\n\n    <!-- for Vue 2.0 -->\n    <div class=\"row\">\n      <span>Departure Date：</span>\n      <date-picker :date=\"startTime\" :option=\"option\" :limit=\"limit\"></date-picker>\n    </div>\n\n  </div>\n</template>\n```\n\n# API\n\n - Option \n\n * type\n\n```\n  type: 'day' // 'min', 'multi-day'\n\n```\n\n * format\n\n```\nformat: 'YYYY-MM-DD HH:mm'\n```\n\n * placeholder\n\n```\nplaceholder: 'when?'\n```\n\n * week\n\n```\n week: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su']\n```\n\n * month\n\n```\n  month: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August','September', 'October', 'November', 'December']\n```\n\n* inputStyle\n\n```\ninputStyle: {\n  'display': 'inline-block',\n  'padding': '6px',\n  'line-height': '22px',\n  'font-size': '16px',\n  'border': '2px solid #fff',\n  'box-shadow': '0 1px 3px 0 rgba(0, 0, 0, 0.2)',\n  'border-radius': '2px',\n  'color': '#5F5F5F'\n}\n```\n\n * color\n\n```\n  color: {\n    header: '#ccc',\n    headerText: '#f00'\n  }\n```\n\n\n * buttons\n\n```\nbuttons: {\n  ok: 'OK',\n  cancel: 'Cancel'\n}\n```\n\n * animate\n\n```\n  overlayOpacity: 0.5, // 0.5 as default\n  dismissible: true // as true as default\n```\n\n\n - limit\n\n  * from sometime to sometime(when from/to is empty, days before/after end/start time will be available)\n\n```javascript\n\nlimit: {\n  type:'fromto',\n  from:'2016-01-10',\n  to:'2016-01-30'\n}\n\n```\n * weekdays\n\n```javascript\n\nlimit:{\n  type: 'weekday',\n  available: [1, 2, 3, 4, 5] \n}\n\n```\n\n### prop\n\n* Vue 1.0\n\n```javascript\n\ntime: '' // string\n\n```\n\n```html\n\n<date-picker :time.sync=\"time\" :limit=\"limit\"></date-picker>\n\n```\n\n* Vue 2.0\n\n```javascript\ndate: {\n  time: '' // string\n}\n```\n\n```html\n\n<date-picker :date=\"date\" :limit=\"limit\"></date-picker>\n\n```\n\n\n# License\n\n[The MIT License](http://opensource.org/licenses/MIT)\n\n","versions":{"1.0.1":{"name":"vue-datepicker","version":"1.0.1","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"5e53775d327ef02b0e3a335e8d3f4d3b65593a2a","_id":"vue-datepicker@1.0.1","_shasum":"893be72b8879be1fe7cd9e7fbd706c6d4a9e4eac","_from":".","_npmVersion":"3.3.3","_nodeVersion":"5.4.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"893be72b8879be1fe7cd9e7fbd706c6d4a9e4eac","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.0.1.tgz","integrity":"sha512-9yT5AWcj0+vNzHhCsRo0Ku3GT5CU5XkfEWwNHoCtYbcpftVK0t2jO/x+CfBNrwUH9/wHnP0BzxQIfQE2E8R9jA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA7UCN8Ns5ztE1tuk40HV8JmWJB5R4MoJv2hZPm9WAMpAiARP3lY1eQ78nrjCEBgDGIGeHTx1i/YFl+0UoBwN5UzRA=="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"directories":{}},"1.0.2":{"name":"vue-datepicker","version":"1.0.2","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"5db06aff77f8b7ee594d6401e2c87e3c5f87e2ac","_id":"vue-datepicker@1.0.2","_shasum":"16d0b1968d15120af23c3f720842cf356b439479","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"16d0b1968d15120af23c3f720842cf356b439479","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.0.2.tgz","integrity":"sha512-JElQLS3CrUtlH5RxEjefkl8iMZ+LzbKq8i31xwmr9U4wFCptJAuOjsTWn/jB1d/LV9gUNfeXj1l0Rjfa65wHMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBmepQJGvQXO+cmGy5pEyXwhscVA3LZGaDTV3khrieclAiEApiDsRgkw4uE072Dm32ssLtyi0zLiDy4VZgOYyYUzX34="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"directories":{}},"1.0.3":{"name":"vue-datepicker","version":"1.0.3","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"fd12b9b82ae35e6e82154d2e4831b9d9c269da9e","_id":"vue-datepicker@1.0.3","_shasum":"b60db986251264f1439b6dc52bd49f517eb615a2","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"b60db986251264f1439b6dc52bd49f517eb615a2","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.0.3.tgz","integrity":"sha512-Yg4ZC3Hn/O1d8ZdPXucMjIMNT52kuEIEWqugaSkybw6ta52SjbWDLjvoiiTSpQMhCWxR5OZIzRgs20G3VRgEHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEkP0sOklFRtvZEi7lb99fFbw4Tv+ENu0pWfaHBFGCkPAiBIm6EyP2jn6Ce3v92P/lFSO/LPG0lqr13XaPPLFZ7KkA=="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"directories":{}},"1.0.4":{"name":"vue-datepicker","version":"1.0.4","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"f5226b01f9a54f46ee3549ce540c88f79736b751","_id":"vue-datepicker@1.0.4","_shasum":"4c5cf843acd631a155ae2eca140618e063059e92","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"4c5cf843acd631a155ae2eca140618e063059e92","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.0.4.tgz","integrity":"sha512-kJdrlFHu0Ufk5GKZ00sjfJ1Etw8jBdHiNbsEyYT/onjXN5YJmp9TESNNE42YjBWm5QEsZthNkg9LK/EaOWk0ZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6/kfV4iwizWekt1IAoIMAhjXEygns5YQe5mSQhCc0igIhANW2rO03zCWjzJy1NkWUH1EO5tMGPvpoXoIvx8lWWYbB"}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"directories":{}},"1.0.5":{"name":"vue-datepicker","version":"1.0.5","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"5b28dcdf9ebe547613bfe563cc32cddc8bb2aac6","_id":"vue-datepicker@1.0.5","_shasum":"0916d8bb5022c9fbd5240ac68f3f192d344130b8","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"0916d8bb5022c9fbd5240ac68f3f192d344130b8","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.0.5.tgz","integrity":"sha512-SLP1XaIC7NRYAaVZgv9jShYvHnB4fNT67JjVCwj7pasd0y5p3LGxQGq+gRh+AAUAb/NFsnZxFqHDLTlrH/qflA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICap39IyWCwqghPnbP6wZwiGA2v4P2GeIlKgjPKgZeHxAiEAsQ8GkDqjbfZSLXWtUWa9KsA6+IMxJIJiQyu6qYgvBps="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"directories":{}},"1.0.6":{"name":"vue-datepicker","version":"1.0.6","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"ebd33f45058019652933211523f99b9e8d3206a3","_id":"vue-datepicker@1.0.6","_shasum":"9cefba8a0f829654e13df2a83dd32e5cf5b40c8d","_from":".","_npmVersion":"3.3.3","_nodeVersion":"5.5.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"9cefba8a0f829654e13df2a83dd32e5cf5b40c8d","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.0.6.tgz","integrity":"sha512-bf6TCWcpcEYydAlIRvwK3AEhbYohNjNIkh1Sene04LyDWUvJjsArmRabDogPKRBa6MII+V+xUWUCziRNGyd6zg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH6rickRyJzj2MtlqoYH78T86clmW66y28q5Ij4Kc8rdAiAGu5PoeKEyevBA/wb2vVrL/NqfCzyarLHx5WGa53Ewcg=="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"directories":{}},"1.0.8":{"name":"vue-datepicker","version":"1.0.8","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"7dd6e615accd05c88f8307d45be43b02bd70cfc1","_id":"vue-datepicker@1.0.8","_shasum":"1115aa243e765fea2a6bbabe86a5eefa06ae67cf","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"1115aa243e765fea2a6bbabe86a5eefa06ae67cf","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.0.8.tgz","integrity":"sha512-BTwZaszZrgNc78syTlO2U9KwZbE44DU0MOD+XdfOJzZ6fwYEdj8VPDloiwWS0WyiQDUsIUGQ2ly2eMLllCywog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCAwr0wur8OXgpB95KWXGx7W8AuSfqEkc3vi04dRMgWowIhAPrzBpM9/NStPfmwrZknLjWGEZept8cV/QkxEm1Kv984"}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.0.8.tgz_1454555739076_0.8052859709132463"},"directories":{}},"1.1.0":{"name":"vue-datepicker","version":"1.1.0","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"a4f8fa60823fbf5ffdb892d05b3e9bd16573631c","_id":"vue-datepicker@1.1.0","_shasum":"5e8e834cab52315ebe02dec10ef6cce230414a80","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"5e8e834cab52315ebe02dec10ef6cce230414a80","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.1.0.tgz","integrity":"sha512-/STP/uE5x52ChnBfmrBFILopM0KvxiVnnVrQxAkU3YjMGyFXUmlylKx/aNSW/eOgh3CM+6oq6Fa7iEXUsbTs9g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAK/c+PVaEsV2iNk3OnuHdfU7AfknpuBANv7YVISTFGHAiEAiYE2kLmJ7F7OtjXro3sVxT51YiPeMM7fdgdwpQa4sSQ="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.1.0.tgz_1454642407850_0.8337747354526073"},"directories":{}},"1.1.1":{"name":"vue-datepicker","version":"1.1.1","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"e213f669a071c711eb87006904b94980e168337d","_id":"vue-datepicker@1.1.1","_shasum":"7dfee814fde1b9f22bd089c9e405dbb597d1ba46","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"7dfee814fde1b9f22bd089c9e405dbb597d1ba46","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.1.1.tgz","integrity":"sha512-4HOPFayJaS4D98v20C0uF6yHLsUXtDUGsdbmAbPr27mU5bjyZECM5GzctnJNTc++CPcC90x020vgjt2oJo6lCg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCZu5b/uZqQGWBUCa0eSaY+7MWNUJVZ5UW5Dp3kSIIPfQIhAPkYItKTyYQhixC7sa+GanikYknoq2E1yjJgeT/3jih0"}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.1.1.tgz_1455689963011_0.40199866821058095"},"directories":{}},"1.1.3":{"name":"vue-datepicker","version":"1.1.3","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"da97049f324627eb3e8ca1df82d2b04584fc4fb5","_id":"vue-datepicker@1.1.3","_shasum":"820a4e1154fdb40a46e8575a7e1798d0951c4a56","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"820a4e1154fdb40a46e8575a7e1798d0951c4a56","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.1.3.tgz","integrity":"sha512-bPh6YpbEK3LA1f3uOGOCMdjTTWZH+Sqo9td0g03JfZjUqM0XMtyZLEWx6PeDvjCefyVfcZgjKw5zjFVEFIKK3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA/oGUqIMqXolXyxjrtmNp08seUYncpeMM8JpQnr39NeAiBCZumuhGcuAurXojuX2kQd48eowPFa5JKvnAS5yE6zEQ=="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.1.3.tgz_1456323107386_0.945347327273339"},"directories":{}},"1.1.4":{"name":"vue-datepicker","version":"1.1.4","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1","lodash":"^4.5.0"},"gitHead":"60a35aac253822e61b41023003aac62d4194816c","_id":"vue-datepicker@1.1.4","_shasum":"84445fad2920613fb424597db41eac38d1a5b15d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"84445fad2920613fb424597db41eac38d1a5b15d","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.1.4.tgz","integrity":"sha512-+5nU8qC/GM71DqUxMrs9rDzq8K6XK4OkFTnx9bKq8+JM520vgQLLE3Ir1zN8P5+4UYtqp1YIset0w8E7Zdz4HA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICRgSlh95qCu5WhxHTZpw7pcrUMpAkA4+SNYiH1MII6CAiEAmtVr/wLLXB+0pimb0Gcj7tXvN/MMWNAHrb8Xt9thU+I="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.1.4.tgz_1457783220554_0.27187721664085984"},"directories":{}},"1.1.5":{"name":"vue-datepicker","version":"1.1.5","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1","lodash":"^4.5.0"},"gitHead":"2921f8634727099c9e8f5cd16cf931726d6eaa8f","_id":"vue-datepicker@1.1.5","_shasum":"8b0d84122ab2595f3260ba008c0f843e38284e16","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"8b0d84122ab2595f3260ba008c0f843e38284e16","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.1.5.tgz","integrity":"sha512-ue3JoQedn1N9UdOBuyKubGBDmJkKsOexg0bvWEt28hRjJQefy7PbFLXOpSa6yHoAG6+s0U1iDLQF5HZXMTvfLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHAhpO96c4Pt662lwjvc/Sa2oWIMJphn91wpD5nN+FXoAiA0k/ayt13VzBxPQBKy30Y678KWIb7RYGv1XZBwCY6jQQ=="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.1.5.tgz_1457784264146_0.1356895985081792"},"directories":{}},"1.2.0":{"name":"vue-datepicker","version":"1.2.0","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"gitHead":"c7cb5481dfae6e6fa5e1b324c2ee3421e0ca547d","_id":"vue-datepicker@1.2.0","_shasum":"5cfbfdf2c6ee663187076eafd668c26b5fcd65ac","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.7.0","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"5cfbfdf2c6ee663187076eafd668c26b5fcd65ac","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.2.0.tgz","integrity":"sha512-4P9OLHATDgfOu34mkFIfszJOQkk6QogN7h+TWzw+tUKRmLMIkuTqCEhaE1gHPKEJsXfr8+QYn9I7RFvKRtfxkw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWBxfQY0/kbbg6qTi2yRjTQhLkNY81mYpXiAAtg3HcJgIhAOPAVbmMOTgXiI8bE90rTjtYAJqb0AmuB7tNZ6l88s9L"}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.2.0.tgz_1462612840820_0.9577475336845964"},"directories":{}},"1.2.1":{"name":"vue-datepicker","version":"1.2.1","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"browserify":{"transform":[["babelify",{"presets":["es2015"]}],["vueify"]]},"gitHead":"b8089ba4f765cc940e3764f64faab200d472d13f","_id":"vue-datepicker@1.2.1","_shasum":"5db2b6459197bcc3e922455aff0272ab38cfcfa3","_from":".","_npmVersion":"3.9.3","_nodeVersion":"6.2.1","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"5db2b6459197bcc3e922455aff0272ab38cfcfa3","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.2.1.tgz","integrity":"sha512-mp7v3i6nQXmURqC+BgY4iDPowkq5ADMsXlAGQEgSSJPR0HCzM0/6fJpr2aTJNAvc2Eg+CFC+kG8Vz0EDPXtE4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGbKQ8j2k8gXS1pqTQZTPjPozfONA3NCHK8ZlG4rZGn9AiAeo2exlZjp2QCHkBvAlRya5LaphtUN013ZoBV3Y3IZxg=="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.2.1.tgz_1470366456872_0.3374715973623097"},"directories":{}},"1.2.2":{"name":"vue-datepicker","version":"1.2.2","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"browserify":{"transform":[["babelify",{"presets":["es2015"]}],["vueify"]]},"gitHead":"80c7065ddad6acd7b829b1c5cb11706378195107","_id":"vue-datepicker@1.2.2","_shasum":"7bc944e2e563a5b0655751497343e705c35713fc","_from":".","_npmVersion":"3.9.3","_nodeVersion":"6.2.1","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"7bc944e2e563a5b0655751497343e705c35713fc","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.2.2.tgz","integrity":"sha512-xyRwxCk5WH9JMOMizTBN0loWWbENL/tZtNej8PiOhtP6g5YllRqsxh65l3xBOTaPAuUPYLzI66KaEv3XS+Y5Ww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDtTdq4cJEr4UNrJ37vgVmEkHAMRWRWtARlwtJ5oGapnAiEA9eTYeW3wdEMUOL5ABMSR0AA/g4WgfQ2HVR7D3V9UFY4="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.2.2.tgz_1470459874941_0.4218455906957388"},"directories":{}},"1.3.0":{"name":"vue-datepicker","version":"1.3.0","description":"calendar and datepicker component with material design for Vue.js ","main":"vue-datepicker.vue","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"keywords":["vue","datepicker","vue-datepicker"],"author":{"name":"Awe"},"license":"MIT","bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","dependencies":{"moment":"^2.11.1"},"browserify":{"transform":[["babelify",{"presets":["es2015"]}],["vueify",{}]]},"gitHead":"b2487967cc70e24a2558b318214bf8396df808b3","_id":"vue-datepicker@1.3.0","_shasum":"12f35f44d8f99b7b938c5735dcbea0258b0bf80c","_from":".","_npmVersion":"3.9.3","_nodeVersion":"6.2.1","_npmUser":{"name":"imawe","email":"hilongjw@qq.com"},"dist":{"shasum":"12f35f44d8f99b7b938c5735dcbea0258b0bf80c","tarball":"https://registry.npmjs.org/vue-datepicker/-/vue-datepicker-1.3.0.tgz","integrity":"sha512-k+Rj8BHTSaLaTVvBvYZmx2H39pQ44dqSxTzbc0e/Ey6CGYKa1Hehtw5nds/Za8xGIOnr08LzfYj+9Ukiay8Mqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFd4JUjxhPvOTwDslwGXBajMZNJ003ZqP7LSCUbH1UnFAiBatGKj08CCSBiZUw3dreb4ychJj5oBJH1ABrxMuhii5Q=="}]},"maintainers":[{"name":"imawe","email":"hilongjw@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-datepicker-1.3.0.tgz_1476759935411_0.05393126397393644"},"directories":{}}},"homepage":"https://github.com/hilongjw/vue-datepicker#readme","keywords":["vue","datepicker","vue-datepicker"],"repository":{"type":"git","url":"git+https://github.com/hilongjw/vue-datepicker.git"},"author":{"name":"Awe"},"bugs":{"url":"https://github.com/hilongjw/vue-datepicker/issues"},"license":"MIT","readmeFilename":"README.md","users":{"luhuan":true,"landen":true,"pisty2":true,"ageofsys":true,"gashira_e":true}}