{"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"keywords":["datepicker","calendar","date"],"dist-tags":{"latest":"1.8.2"},"description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","readme":"Pikaday\n========\n\n[![NPM version][npm-image]][npm-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n\n### A refreshing JavaScript Datepicker\n\n* Lightweight (less than 5kb minified and gzipped)\n* No dependencies (but plays well with [Moment.js][moment])\n* Modular CSS classes for easy styling\n\n[**Try Pikaday Demo →**][Pikaday]\n\n![Pikaday Screenshot][screenshot]\n\n**Production ready?** Since version 1.0.0 Pikaday is stable and used in production. If you do however find bugs or have feature requests please submit them to the [GitHub issue tracker][issues].\nAlso see the [changelog](CHANGELOG.md)\n\n## Installation\nYou can install Pikaday as an NPM package:\n\n```shell\nnpm install pikaday\n```\n\nOr link directly to the CDN:\n\n```html\n<script src=\"https://cdn.jsdelivr.net/npm/pikaday/pikaday.js\"></script>\n```\n\n## Styles\nYou will also need to include Pikaday CSS file. This step depends on how Pikaday was installed. Either import from NPM:\n\n```css\n@import './node_modules/pikaday/css/pikaday.css';\n```\n\nOr link to the CDN:\n\n```html\n<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.jsdelivr.net/npm/pikaday/css/pikaday.css\">\n```\n\n## Usage\n\n**Pikaday** can be bound to an input field:\n\n```html\n<input type=\"text\" id=\"datepicker\">\n```\n\nAdd the JavaScript to the end of your document:\n\n```html\n<script src=\"pikaday.js\"></script>\n<script>\n    var picker = new Pikaday({ field: document.getElementById('datepicker') });\n</script>\n```\n\nIf you're using **jQuery** make sure to pass only the first element:\n\n```javascript\nvar picker = new Pikaday({ field: $('#datepicker')[0] });\n```\n\nIf the Pikaday instance is not bound to a field you can append the element anywhere:\n\n```javascript\nvar field = document.getElementById('datepicker');\nvar picker = new Pikaday({\n    onSelect: function(date) {\n        field.value = picker.toString();\n    }\n});\nfield.parentNode.insertBefore(picker.el, field.nextSibling);\n```\n\n### Formatting\n\nBy default, dates are formatted and parsed using standard JavaScript Date object.\nIf [Moment.js][moment] is available in scope, it will be used to format and parse input values. You can pass an additional `format` option to the configuration which will be passed to the `moment` constructor.\nSee the [moment.js example][] for a full version.\n\n```html\n<input type=\"text\" id=\"datepicker\" value=\"9 Oct 2014\">\n\n<script src=\"moment.js\"></script>\n<script src=\"pikaday.js\"></script>\n<script>\n    var picker = new Pikaday({\n        field: document.getElementById('datepicker'),\n        format: 'D MMM YYYY',\n        onSelect: function() {\n            console.log(this.getMoment().format('Do MMMM YYYY'));\n        }\n    });\n</script>\n```\n\nFor more advanced and flexible formatting you can pass your own `toString` function to the configuration which will be used to format the date object.\nThis function has the following signature:\n\n`toString(date, format = 'YYYY-MM-DD')`\n\nYou should return a string from it.\n\nBe careful, though. If the formatted string that you return cannot be correctly parsed by the `Date.parse` method (or by `moment` if it is available), then you must provide your own `parse` function in the config. This function will be passed the formatted string and the format:\n\n`parse(dateString, format = 'YYYY-MM-DD')`\n\n```javascript\nvar picker = new Pikaday({\n    field: document.getElementById('datepicker'),\n    format: 'D/M/YYYY',\n    toString(date, format) {\n        // you should do formatting based on the passed format,\n        // but we will just return 'D/M/YYYY' for simplicity\n        const day = date.getDate();\n        const month = date.getMonth() + 1;\n        const year = date.getFullYear();\n        return `${day}/${month}/${year}`;\n    },\n    parse(dateString, format) {\n        // dateString is the result of `toString` method\n        const parts = dateString.split('/');\n        const day = parseInt(parts[0], 10);\n        const month = parseInt(parts[1], 10) - 1;\n        const year = parseInt(parts[2], 10);\n        return new Date(year, month, day);\n    }\n});\n```\n\n### Configuration\n\nAs the examples demonstrate above\nPikaday has many useful options:\n\n* `field` bind the datepicker to a form field\n* `trigger` use a different element to trigger opening the datepicker, see [trigger example][] (default to `field`)\n* `bound` automatically show/hide the datepicker on `field` focus (default `true` if `field` is set)\n* `ariaLabel` data-attribute on the input field with an aria assistance text (only applied when `bound` is set)\n* `position` preferred position of the datepicker relative to the form field, e.g.: `top right`, `bottom right` **Note:** automatic adjustment may occur to avoid datepicker from being displayed outside the viewport, see [positions example][] (default to 'bottom left')\n* `reposition` can be set to false to not reposition datepicker within the viewport, forcing it to take the configured `position` (default: true)\n* `container` DOM node to render calendar into, see [container example][] (default: undefined)\n* `format` the default output format for `.toString()` and `field` value (requires [Moment.js][moment] for custom formatting)\n* `formatStrict` the default flag for moment's strict date parsing (requires [Moment.js][moment] for custom formatting)\n* `toString(date, format)` function which will be used for custom formatting. This function will take precedence over `moment`.\n* `parse(dateString, format)` function which will be used for parsing input string and getting a date object from it. This function will take precedence over `moment`.\n* `defaultDate` the initial date to view when first opened\n* `setDefaultDate` Boolean (true/false). make the `defaultDate` the initial selected value\n* `firstDay` first day of the week (0: Sunday, 1: Monday, etc)\n* `minDate` the minimum/earliest date that can be selected (this should be a native Date object - e.g. `new Date()` or `moment().toDate()`)\n* `maxDate` the maximum/latest date that can be selected (this should be a native Date object - e.g. `new Date()` or `moment().toDate()`)\n* `disableWeekends` disallow selection of Saturdays or Sundays\n* `disableDayFn` callback function that gets passed a Date object for each day in view. Should return true to disable selection of that day.\n* `yearRange` number of years either side (e.g. `10`) or array of upper/lower range (e.g. `[1900,2015]`)\n* `showWeekNumber` show the ISO week number at the head of the row (default `false`)\n* `pickWholeWeek` select a whole week instead of a day (default `false`)\n* `isRTL` reverse the calendar for right-to-left languages\n* `i18n` language defaults for month and weekday names (see internationalization below)\n* `yearSuffix` additional text to append to the year in the title\n* `showMonthAfterYear` render the month after year in the title (default `false`)\n* `showDaysInNextAndPreviousMonths` render days of the calendar grid that fall in the next or previous months (default: false)\n* `enableSelectionDaysInNextAndPreviousMonths` allows user to select date that is in the next or previous months (default: false)\n* `numberOfMonths` number of visible calendars\n* `mainCalendar` when `numberOfMonths` is used, this will help you to choose where the main calendar will be (default `left`, can be set to `right`). Only used for the first display or when a selected date is not already visible\n* `events` array of dates that you would like to differentiate from regular days (e.g. `['Sat Jun 28 2017', 'Sun Jun 29 2017', 'Tue Jul 01 2017',]`)\n* `theme` define a classname that can be used as a hook for styling different themes, see [theme example][] (default `null`)\n* `blurFieldOnSelect` defines if the field is blurred when a date is selected (default `true`)\n* `onSelect` callback function for when a date is selected\n* `onOpen` callback function for when the picker becomes visible\n* `onClose` callback function for when the picker is hidden\n* `onDraw` callback function for when the picker draws a new month\n* `keyboardInput` enable keyboard input support (default `true`)\n\n### Styling\n\nIf the `reposition` configuration-option is enabled (default), Pikaday will apply CSS-classes to the datepicker according to how it is positioned:\n\n* `top-aligned`\n* `left-aligned`\n* `right-aligned`\n* `bottom-aligned`\n\nNote that the DOM element at any time will typically have 2 CSS-classes (eg. `top-aligned right-aligned` etc).\n\n## jQuery Plugin\n\nThe normal version of Pikaday does not require jQuery, however there is a jQuery plugin if that floats your boat (see `plugins/pikaday.jquery.js` in the repository). This version requires jQuery, naturally, and can be used like other plugins:\nSee the [jQuery example][] for a full version.\n\n```html\n<script src=\"//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js\"></script>\n<script src=\"pikaday.js\"></script>\n<script src=\"plugins/pikaday.jquery.js\"></script>\n<script>\n\n// activate datepickers for all elements with a class of `datepicker`\n$('.datepicker').pikaday({ firstDay: 1 });\n\n// chain a few methods for the first datepicker, jQuery style!\n$('.datepicker').eq(0).pikaday('show').pikaday('gotoYear', 2042);\n\n</script>\n```\n\n## AMD support\n\nIf you use a modular script loader, Pikaday is not bound to the global object and will fit nicely in your build process. You can require Pikaday just like any other module.\nSee the [AMD example][] for a full version.\n\n```javascript\nrequire(['pikaday'], function(Pikaday) {\n    var picker = new Pikaday({ field: document.getElementById('datepicker') });\n});\n```\nThe same applies for the jQuery plugin mentioned above.\nSee the [jQuery AMD example][] for a full version.\n\n```javascript\nrequire(['jquery', 'pikaday.jquery'], function($) {\n    $('#datepicker').pikaday();\n});\n```\n\n## CommonJS module support\n\nIf you use a CommonJS compatible environment you can use the require function to import Pikaday.\n\n\n```javascript\nvar pikaday = require('pikaday');\n```\n\nWhen you bundle all your required modules with [Browserify][browserify] and you don't use [Moment.js][moment] specify the ignore option:\n\n`browserify main.js -o bundle.js -i moment`\n\n## Ruby on Rails\n\nIf you're using **Ruby on Rails**, make sure to check out the [Pikaday gem][gem].\n\n## Methods\n\nYou can control the date picker after creation:\n\n```javascript\nvar picker = new Pikaday({ field: document.getElementById('datepicker') });\n```\n\n### Get and set date\n\n`picker.toString('YYYY-MM-DD')`\n\nReturns the selected date in a string format. If [Moment.js][moment] exists (recommended) then Pikaday can return any format that Moment understands.\nYou can also provide your own `toString` function and do the formatting yourself. Read more in the [formatting](#formatting) section.\n\nIf neither `moment` object exists nor `toString` function is provided, JavaScript's default [`.toDateString()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString) method will be used.\n\n`picker.getDate()`\n\nReturns a basic JavaScript `Date` object of the selected day, or `null` if no selection.\n\n`picker.setDate('2015-01-01')`\n\nSet the current selection. This will be restricted within the bounds of `minDate` and `maxDate` options if they're specified. You can optionally pass a boolean as the second parameter to prevent triggering of the onSelect callback (true), allowing the date to be set silently.\n\n`picker.getMoment()`\n\nReturns a [Moment.js][moment] object for the selected date (Moment must be loaded before Pikaday).\n\n`picker.setMoment(moment('14th February 2014', 'DDo MMMM YYYY'))`\n\nSet the current selection with a [Moment.js][moment] object (see `setDate` for details).\n\n### Clear and reset date\n\n`picker.clear()`\n\nWill clear and reset the input where picker is bound to.\n\n### Change current view\n\n`picker.gotoDate(new Date(2014, 1))`\n\nChange the current view to see a specific date. This example will jump to February 2014 ([month is a zero-based index][mdn_date]).\n\n`picker.gotoToday()`\n\nShortcut for `picker.gotoDate(new Date())`\n\n`picker.gotoMonth(2)`\n\nChange the current view by month (0: January, 1: Februrary, etc).\n\n`picker.nextMonth()`\n`picker.prevMonth()`\n\nGo to the next or previous month (this will change year if necessary).\n\n`picker.gotoYear()`\n\nChange the year being viewed.\n\n`picker.setMinDate()`\n\nUpdate the minimum/earliest date that can be selected.\n\n`picker.setMaxDate()`\n\nUpdate the maximum/latest date that can be selected.\n\n`picker.setStartRange()`\n\nUpdate the range start date. For using two Pikaday instances to select a date range.\n\n`picker.setEndRange()`\n\nUpdate the range end date. For using two Pikaday instances to select a date range.\n\n### Show and hide datepicker\n\n`picker.isVisible()`\n\nReturns `true` or `false`.\n\n`picker.show()`\n\nMake the picker visible.\n\n`picker.adjustPosition()`\n\nRecalculate and change the position of the picker.\n\n`picker.hide()`\n\nHide the picker making it invisible.\n\n`picker.destroy()`\n\nHide the picker and remove all event listeners — no going back!\n\n### Internationalization\n\nThe default `i18n` configuration format looks like this:\n\n```javascript\ni18n: {\n    previousMonth : 'Previous Month',\n    nextMonth     : 'Next Month',\n    months        : ['January','February','March','April','May','June','July','August','September','October','November','December'],\n    weekdays      : ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],\n    weekdaysShort : ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']\n}\n```\n\nYou must provide 12 months and 7 weekdays (with abbreviations). Always specify weekdays in this order with Sunday first. You can change the `firstDay` option to reorder if necessary (0: Sunday, 1: Monday, etc). You can also set `isRTL` to `true` for languages that are read right-to-left.\n\n\n## Extensions\n\n### Timepicker\n\nPikaday is a pure datepicker. It will not support picking a time of day. However, there have been efforts to add time support to Pikaday.\nSee [#1][issue1] and [#18][issue18]. These reside in their own fork.\n\nYou can use the work [@owenmead][owenmead] did most recently at [owenmead/Pikaday][owen Pika]\nA more simple time selection approach done by [@xeeali][xeeali] at [xeeali/Pikaday][xeeali Pika] is based on version 1.2.0.\nAlso [@stas][stas] has a fork [stas/Pikaday][stas Pika], but is now quite old\n\n\n## Browser Compatibility\n\n* IE 7+\n* Chrome 8+\n* Firefox 3.5+\n* Safari 3+\n* Opera 10.6+\n\n[![browser compatibility](https://ci.testling.com/rikkert/pikaday.png)\n](https://ci.testling.com/rikkert/pikaday)\n\n\n* * *\n\n## Authors\n\n* David Bushell [https://dbushell.com][Bushell] [@dbushell][Bushell Twitter]\n* Ramiro Rikkert [GitHub][Rikkert] [@RamRik][Rikkert Twitter]\n\nThanks to [@shoogledesigns][shoogledesigns] for the name.\n\nCopyright © 2014 David Bushell | BSD & MIT license\n\n  [Pikaday]:     https://pikaday.com/                                             \"Pikaday\"\n  [moment]:      http://momentjs.com/                                             \"moment.js\"\n  [browserify]:  http://browserify.org/                                           \"browserify\"\n  [screenshot]:  https://raw.github.com/Pikaday/Pikaday/master/examples/screenshot.png  \"Screenshot\"\n  [issues]:      https://github.com/Pikaday/Pikaday/issues                        \"Issue tracker\"\n  [gem]:         https://rubygems.org/gems/pikaday-gem                            \"RoR gem\"\n  [mdn_date]:    https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date  \"Date\"\n  [Bushell]:     https://dbushell.com/                                            \"dbushell.com\"\n  [Bushell Twitter]: https://twitter.com/dbushell                                 \"@dbushell\"\n  [Rikkert]:     https://github.com/rikkert                                       \"Rikkert GitHub\"\n  [Rikkert Twitter]: https://twitter.com/ramrik                                   \"@ramrik\"\n  [shoogledesigns]:  https://twitter.com/shoogledesigns/status/255209384261586944 \"@shoogledesigns\"\n  [issue1]:      https://github.com/Pikaday/Pikaday/issues/1                      \"Issue 1\"\n  [issue18]:     https://github.com/Pikaday/Pikaday/issues/18                     \"Issue 18\"\n  [stas]:        https://github.com/stas                                          \"@stas\"\n  [stas Pika]:   https://github.com/stas/Pikaday                                  \"Pikaday\"\n  [owenmead]:    https://github.com/owenmead                                      \"@owenmead\"\n  [owen Pika]:   https://github.com/owenmead/Pikaday                              \"Pikaday\"\n  [xeeali]:      https://github.com/xeeali                                        \"@xeeali\"\n  [xeeali Pika]: https://github.com/xeeali/Pikaday                                \"Pikaday\"\n  [moment.js example]: https://pikaday.com/examples/moment.html    \"Pikaday w/ moment.js\"\n  [jQuery example]: https://pikaday.com/examples/jquery.html       \"Pikaday w/ jQuery\"\n  [AMD example]: https://pikaday.com/examples/amd.html             \"Pikaday w/ AMD\"\n  [jQuery AMD example]: https://pikaday.com/examples/jquery-amd.html \"Pikaday w/ jQuery + AMD\"\n  [trigger example]: https://pikaday.com/examples/trigger.html     \"Pikaday using custom trigger\"\n  [positions example]: https://pikaday.com/examples/positions.html \"Pikaday using different position options\"\n  [container example]: https://pikaday.com/examples/container.html \"Pikaday using custom calendar container\"\n  [theme example]: https://pikaday.com/examples/theme.html         \"Pikaday using multiple themes\"\n\n\n\n[npm-image]: https://img.shields.io/npm/v/pikaday.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/pikaday\n[license-image]: https://img.shields.io/:license-mit-blue.svg?style=flat-square\n[license-url]: LICENSE.md\n[downloads-image]: http://img.shields.io/npm/dm/pikaday.svg?style=flat-square\n[downloads-url]: https://npmjs.org/package/pikaday\n","repository":{"type":"git","url":"git+https://github.com/Pikaday/Pikaday.git"},"users":{"fattenap":true,"afewinterestingthings":true,"gluten":true,"ux_web":true,"dubielzyk":true,"travm":true,"ungurys":true,"ninetails":true,"adammench":true,"pablaber":true,"panlw":true,"uptonking":true,"noxracing":true,"zalithka":true},"bugs":{"url":"https://github.com/Pikaday/Pikaday/issues"},"license":"(0BSD OR MIT)","versions":{"1.2.0":{"name":"pikaday","version":"1.2.0","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"licenses":[{"type":"BSD","url":"http://opensource.org/licenses/BSD-3-Clause"},{"type":"MIT","url":"http://opensource.org/licenses/MIT"}],"main":"pikaday.js","repository":{"type":"git","url":"https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"dependencies":{"moment":"2.x"},"_id":"pikaday@1.2.0","dist":{"shasum":"5fead6668bd43e6b1c9989ed1747d47d0346d89d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.2.0.tgz","integrity":"sha512-dikfhtWy1ExcXgRuvtOmvtUenzVl1DLvgktd45mVrxrLZuOrypW/L2jM4EmrpMAnRpzBQEUAYiCMnxOJKGMJzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCVF64eeoVbrLrBo9VFdL5PEGF8kDoJzd3Wm7veUQwXcgIgVRsIbkkZ8zuuPp2lwHgetM67SdSe0wF1Z1aQ6N24EOM="}]},"_from":"./","_npmVersion":"1.3.8","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"directories":{}},"1.3.0":{"name":"pikaday","version":"1.3.0","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"licenses":[{"type":"BSD","url":"http://opensource.org/licenses/BSD-3-Clause"},{"type":"MIT","url":"http://opensource.org/licenses/MIT"}],"main":"pikaday.js","repository":{"type":"git","url":"https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"dependencies":{"moment":"2.x"},"_id":"pikaday@1.3.0","dist":{"shasum":"3b2e989155e61b553273f742c31a257fcfa009a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.3.0.tgz","integrity":"sha512-R7B43kzEVrhI+Q7b2gZaqcbcNJInzDjUGT8S9mygKXpUCB+wp7s/dg6FByFOLRAOfb4rv6TJ9kigfDJNaCU6cA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFJEBBokFZhfhnHQcFWGw4keUazXbn6ONRrgELUidpF/AiBqN75Lo2TFQeL4WjljRsYG33vpinKexWkMe80nBtJZnA=="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"directories":{}},"1.3.1":{"name":"pikaday","version":"1.3.1","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"licenses":[{"type":"BSD","url":"http://opensource.org/licenses/BSD-3-Clause"},{"type":"MIT","url":"http://opensource.org/licenses/MIT"}],"main":"pikaday.js","repository":{"type":"git","url":"https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"dependencies":{"moment":"2.x"},"_id":"pikaday@1.3.1","dist":{"shasum":"2fd89226a7904d73ae0063eca5816d14b83ab95e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.3.1.tgz","integrity":"sha512-j+W9egXtUyfPgocKgnbAzM3NWLrvV6DdIrj7dcIv85Ub0hmfQGGv6gGgj/20Lm79dFwVcymAOvYuYiQa3Cc8Nw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAOfAmzsfX8hZtxYugjWCG7EZidnGQLApJt2M0XzhLYpAiA5s3Es4DPRZm53gLM4/LAJNM3DVmUohSIBwSDb7mS0zw=="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"directories":{}},"1.3.2":{"name":"pikaday","version":"1.3.2","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"licenses":[{"type":"BSD","url":"http://opensource.org/licenses/BSD-3-Clause"},{"type":"MIT","url":"http://opensource.org/licenses/MIT"}],"main":"pikaday.js","repository":{"type":"git","url":"https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"dependencies":{"moment":"2.x"},"_id":"pikaday@1.3.2","dist":{"shasum":"8f0b17659e117da5688c27ef8e34f9a59699c694","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.3.2.tgz","integrity":"sha512-7DDEG8urZhW1cFpUqhR1NL1IAyuEkb59Jdt4raJ7rawZ34hZ9RDXQtz+v3xM6t0g7VqwScGGq7PRlCzahb2VFg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDr+JMRVV1yZlZC+psTtxUP5EhE2qZuBzZ3K5E9M/vO4QIhALHP42kC6zq9fr71xrqkKsAmspiQ9VWlcOcrQLu5/y2/"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"directories":{}},"1.3.3":{"name":"pikaday","version":"1.3.3","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"licenses":[{"type":"BSD","url":"http://opensource.org/licenses/BSD-3-Clause"},{"type":"MIT","url":"http://opensource.org/licenses/MIT"}],"main":"pikaday.js","repository":{"type":"git","url":"https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"dependencies":{"moment":"2.x"},"_id":"pikaday@1.3.3","dist":{"shasum":"1ca0f4ca583e880d475451f4a1dfd88902751fdf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.3.3.tgz","integrity":"sha512-KmEcYHxFPLiUxTZdMwSlyE7ZNBKqfKRYEmDOrOdwgN6fam8Zc3V2KiI0vdiShzkefcX3yHqmFriT605C8ByYeQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDeJKhppf2F919JUgI1RPLGjl/MJFlwCI71nTA3cU9/sAiEAgidTFqGHqUJGzFX2Fz1o27ZzZzCDuIfagUj+kGCyu68="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"directories":{}},"1.4.0":{"name":"pikaday","version":"1.4.0","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"licenses":[{"type":"BSD","url":"http://opensource.org/licenses/BSD-3-Clause"},{"type":"MIT","url":"http://opensource.org/licenses/MIT"}],"main":"pikaday.js","repository":{"type":"git","url":"https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"dependencies":{"moment":"2.x"},"_id":"pikaday@1.4.0","dist":{"shasum":"dd96d4a3c5707289ef4dc7ddf3e0194d0c6ff2e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.4.0.tgz","integrity":"sha512-506rOOkXj/eUlv7nleeGMwOJnqvKKfotfOwcvtOODwdon3YxJNc8+7wsl0ydtbX1LG+QCKBxBh1BLtQ2IPCViw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1tYBuu423YtnAMlkKS60E1f/QteFNPe+SZHf9WItQmAIgCP0lDOc+2KzDn9V3blh4Br04iL5xL4E2VvnU2CFrIkg="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"directories":{}},"1.5.0":{"name":"pikaday","version":"1.5.0","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"licenses":[{"type":"BSD","url":"http://opensource.org/licenses/BSD-3-Clause"},{"type":"MIT","url":"http://opensource.org/licenses/MIT"}],"main":"pikaday.js","repository":{"type":"git","url":"git+https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"gitHead":"d6a7c61a2bc034a622290fc1893551cbaeb07e6a","dependencies":{"moment":"2.x"},"_id":"pikaday@1.5.0","scripts":{},"_shasum":"8afb55f423b1932f3c2273f08cbf0b4c482fdf57","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"dist":{"shasum":"8afb55f423b1932f3c2273f08cbf0b4c482fdf57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.5.0.tgz","integrity":"sha512-rbok8tGvzb4+FIQq4WxYY0hlfUnaDIT+BPxIudyHYD/zJptEuA49AjpyhbVD+0STHIFhimT30r0VBX3CIvQv2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBmTD6eISDJLTr3UvdU06EZABGCUwVOVQwvLVQI+zzUaAiEAqonnInq+zcbJo6HjWcIz2QE9kGTNSChp19HDhohnpF8="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/pikaday-1.5.0.tgz_1477576797497_0.720182585529983"},"directories":{}},"1.5.1":{"name":"pikaday","version":"1.5.1","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"licenses":[{"type":"BSD","url":"http://opensource.org/licenses/BSD-3-Clause"},{"type":"MIT","url":"http://opensource.org/licenses/MIT"}],"main":"pikaday.js","repository":{"type":"git","url":"git+https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"gitHead":"5f15c0e454035dd074f3477dd65e2790faa24ee5","dependencies":{"moment":"2.x"},"_id":"pikaday@1.5.1","scripts":{},"_shasum":"0a48549bc1a14ea1d08c44074d761bc2f2bfcfd3","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"dist":{"shasum":"0a48549bc1a14ea1d08c44074d761bc2f2bfcfd3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.5.1.tgz","integrity":"sha512-JpGs4DM+DrwhGx/deyi2pUcrUtTcyegR6XOIbFkjSaJp0yYp5d8Bvzlgtl8eaX1gNEqsqJZFIsRMEzdRA1xbDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDe0ZDnXjjKPYtChbnq6pRcLiYRwtzwwDYZMogf9FjKHgIgT1wGdgZx1rliiCV820FCqU0a1jWeQ7JpQTOoN4R9otk="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/pikaday-1.5.1.tgz_1477657404443_0.27145478618331254"},"directories":{}},"1.6.0":{"name":"pikaday","version":"1.6.0","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"license":"(0BSD OR MIT)","main":"pikaday.js","repository":{"type":"git","url":"git+https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1","testling":"^1.7","jshint":"^2.9"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"scripts":{"test":"testling","lint":"jshint *.js plugins/*.js tests/*.js"},"gitHead":"ca307cd5cdb36a1d0ce8340df0eb186622a1c721","dependencies":{"moment":"2.x"},"_id":"pikaday@1.6.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"dist":{"integrity":"sha512-OGO+4t/di57RwnW8Vk4xGveAq9+3gUFypqyKVNzywrFLKaTUwKEUqBcostOjaK2jn/CMabO+HHRMq56n5uS+pA==","shasum":"869aa6241173d5e284d275c83c57d1756e47b59b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.6.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD/THL0TNTpWkXgy8emU2+3xF24MpD+xEE5hMKQtDA+LgIgdWLgzjuH+dNZcnloev+D8ftRE4I0OaOwCP9hKouOq5Y="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pikaday-1.6.0.tgz_1496240080671_0.6802428376395255"},"directories":{}},"1.6.1":{"name":"pikaday","version":"1.6.1","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"license":"(0BSD OR MIT)","main":"pikaday.js","repository":{"type":"git","url":"git+https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1","testling":"^1.7","jshint":"^2.9"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"scripts":{"test":"testling","lint":"jshint *.js plugins/*.js tests/*.js"},"gitHead":"2216628502e986368362af7420f9afee9cc30d1c","dependencies":{"moment":"2.x"},"_id":"pikaday@1.6.1","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"dist":{"integrity":"sha512-B+pxVcSGuzLblMe4dnhCF3dnI2zkyj5GAqanGX9cVcOk90fp2ULo1OZFUPRXQXUE5tmcimnk1tPOFs8tUHQetQ==","shasum":"b91bcb9b8539cedd8d6d08e4e7465e12095671b0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.6.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC9Yx8iPd73bqUG3GWjLbvugWKY34rPr05xTtaUPVu66QIgD2XqsLY0r6lxw6wdGUbadTAg6h8uYDe+FNbZFOy+hgE="}]},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pikaday-1.6.1.tgz_1497429429870_0.33511388557963073"},"directories":{}},"1.7.0":{"name":"pikaday","version":"1.7.0","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"http://dbushell.github.io/Pikaday/","bugs":{"url":"https://github.com/dbushell/Pikaday/issues"},"license":"(0BSD OR MIT)","main":"pikaday.js","repository":{"type":"git","url":"git+https://github.com/dbushell/Pikaday.git"},"optionalDependencies":{"moment":"2.x"},"devDependencies":{"mocha":"~1.18.2","expect.js":"^0.3.1","testling":"^1.7","jshint":"^2.9"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"scripts":{"test":"testling","lint":"jshint *.js plugins/*.js tests/*.js"},"gitHead":"f8e9f8b240e14adcd811d6f090afd7a6623cb981","dependencies":{"moment":"2.x"},"_id":"pikaday@1.7.0","_npmVersion":"5.6.0","_nodeVersion":"9.2.1","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"dist":{"integrity":"sha512-b1z65oFulNTKOdcg9+wTnZWBzfekf1AqPMCmmK9qH6aT7stqDyh76G6nLeuYr3WqchjW/7QLOBFmok14sCecsA==","shasum":"78bf26e709f7c135b674762bbab79d75ac589ab6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.7.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8HhHoAjRB60XOZZN2PASiqujr+20G2qr1+wcP43EruwIgZDV7EN5k2A1k7jJyHSqidoM3qYm7sZ963cbRt4GNNuk="}]},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pikaday-1.7.0.tgz_1513080184352_0.9947067983448505"},"directories":{}},"1.8.0":{"name":"pikaday","version":"1.8.0","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"https://pikaday.com","bugs":{"url":"https://github.com/Pikaday/Pikaday/issues"},"license":"(0BSD OR MIT)","main":"pikaday.js","repository":{"type":"git","url":"git+https://github.com/Pikaday/Pikaday.git"},"devDependencies":{"expect.js":"^0.3.1","jshint":"^2.9.6","mocha":"^5.2.0"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"scripts":{"test":"testling","lint":"jshint *.js plugins/*.js tests/*.js"},"gitHead":"1220a0a32e245d420ab935d8d85b28ea77def028","_id":"pikaday@1.8.0","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"dist":{"integrity":"sha512-SgGxMYX0NHj9oQnMaSyAipr2gOrbB4Lfs/TJTb6H6hRHs39/5c5VZi73Q8hr53+vWjdn6HzkWcj8Vtl3c9ziaA==","shasum":"ce930e257042e852e6aadee1115e01554b2d71c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.8.0.tgz","fileCount":38,"unpackedSize":126433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbx4J9CRA9TVsSAnZWagAA79YP/1cn07wY9M2+xeWsLlnd\nNG2AD3j/ZRbQsv6p0hZSzLH/JklXqqOlQXTqKP1GOgxmZoi6rytXpvapv9gf\nZEdxW6SCahQiOE5h8zXSnWvdmB+n0gHu+laYfixdZHF4/Jjy3ZA1SCJ594rb\n3mhJJUOE6zw+fICQV67p4Pl48MLqvPDL+4J9xMRvqjKSKhN67MkkwiMy2soL\n+0LePD8FJ/Xh4G3QYgQBJnlI4GK3BeEsApw6AWWf4J+wkpuOFawrkZVX/91F\nzkPH9T8HcAx64EVfqYYKBzT/AzPLTR05dGf/4BYPrAbHKO/OP+tnQKhRqOgS\n2FgTFANJQl/vKIl5y/enKe1XcwnK/F5cRJBvRPoDGhBYq6cdlr4lgIPS0ziP\nLGCkpf/MweDvkPv+ZjBdJl/gUhuk91p9yCmRfzyfScofaabrdTL+mDyfIN0r\nJXmjWNilfldlWhbmXdq9Q3fnrKhOXGhseUxNnm/3J0mYL4eKnIm6Dd/5f0/w\njgubkr3Gg4y8bkuSU6Zf5RZy3pDoOVPtN7tbTToVkmpCbnXCrn1kcZwjWpTq\nbVEmE9Mvw5OwgNsS+z7fXllQmIZ6CX3w07IXOs5Ilnb8XHIEGhdVzL55QTjW\n8m6+NFxm7WrCE7ps0CkGKrkaJsyACqFGu3Drm4ymJE8ZdI/YpPwiwUGX1yEL\nu2PE\r\n=1COp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFY5JOFtOTtYjLUER4wQiwgIm5BGeEVXhoaTTZ/7XzGKAiBzc+9bQcAkLmWu/YOc7g64SCikgvMKW8IMYDMFHlHs8w=="}]},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pikaday_1.8.0_1539801724932_0.011365914585315107"},"_hasShrinkwrap":false},"1.8.1":{"name":"pikaday","version":"1.8.1","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"https://pikaday.com","bugs":{"url":"https://github.com/Pikaday/Pikaday/issues"},"license":"(0BSD OR MIT)","main":"pikaday.js","repository":{"type":"git","url":"git+https://github.com/Pikaday/Pikaday.git"},"devDependencies":{"expect.js":"^0.3.1","jshint":"^2.12.0","mocha":"^8.2.0"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"scripts":{"test":"testling","lint":"jshint *.js plugins/*.js tests/*.js"},"gitHead":"eb2a29739b2ec6a58303aae1342c1a9e46755bf1","_id":"pikaday@1.8.1","_nodeVersion":"14.7.0","_npmVersion":"6.14.7","dist":{"integrity":"sha512-hsLg0YIdFnJ/NhGR0qjiDO3PFyr4yVf/u/4A2O0PEhchvGj6Hprt0A5PvmmNFQc3nyoJtCJs2LCqeKOkFm0VoQ==","shasum":"9daf34db5d947f37c54c7157073428a1428c97da","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.8.1.tgz","fileCount":11,"unpackedSize":81476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkcikCRA9TVsSAnZWagAAXWwP/3hW9qoZTHZsvkxLtyeO\n8TzazC9ylUNkJW/93+diEk3AetqZ5azNEsEE3a7XKKM070x1RznFG0U/toSO\nGhAosNpIbvRVrxAsyfYRUkhIzqu21G6Tq6yjJz4iKk6lgbvvp48XzvNde2Vt\nSKLJSu0C4YwlFZhBdHlkkQrKQpwzxgW/7uQ8fZas9CF7L/nKSn63ReLm1BE8\nyWddHkpgfuSujCCeceyOASEq08xWS2luJr+4rUjbmjypp+lWJdPZoSV7zsoP\nLyE6y6yQzLCJjF6Avd/bxb3manlIUXp7kP3cufuyseE69Ud9JSq8oK2yIUCO\nlXXaPPu7zkQ8kdN9WpooM62ByhRX8SqMVOqwPc7axSc5qSHaIHVRhY2Lfhmu\neqaKopkmtUBcJM9QIRVUWkZuRj0acKi0ZLQ9lr6kXODW+Iydlyno+M0MCrXr\nduSPLiQR5QV9PbuQm4NnnX5J6KwPe8gts/eWcr2wx5ZMbJaCIu/WBit5p4SC\nei8lnZ5+UIOfIf4jeiVkgZsrep5Wtt6EmwMOUA/G6cHWH9IW9F0dlpuDvaj/\nlvr3rDdOlgmYyE9ZAHfOC2QhsIfgP1bKhyR9GScmRu02oBnwKU1IDjyMWpll\nmcEhi9MSBphZt+YGOCb8DRYiHSK5D0mCD8DTuEQdqWaG2Ylil7363S7eZrQZ\nbADl\r\n=GUUe\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDPVkDMy5whI+uapw71lkwrJ65K/gU+B4rTnB/2x/JyBwIgXrmozldflTFbWaodJmULoswycuNBaQBNdE9X5tj+jN4="}]},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pikaday_1.8.1_1603389604196_0.9416793510926984"},"_hasShrinkwrap":false,"deprecated":"this package has been deprecated"},"1.8.2":{"name":"pikaday","version":"1.8.2","description":"A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS","keywords":["datepicker","calendar","date"],"homepage":"https://pikaday.com","bugs":{"url":"https://github.com/Pikaday/Pikaday/issues"},"license":"(0BSD OR MIT)","main":"pikaday.js","repository":{"type":"git","url":"git+https://github.com/Pikaday/Pikaday.git"},"devDependencies":{"expect.js":"^0.3.1","jshint":"^2.12.0","mocha":"^8.2.0"},"testling":{"harness":"mocha","files":"tests/*.js","browsers":["ie/7..latest","chrome/latest","firefox/3.6","firefox/latest","safari/latest","opera/latest"]},"scripts":{"test":"testling","lint":"jshint *.js plugins/*.js tests/*.js"},"gitHead":"4524a48e52d16519d63c2d80c4e419e9be9a0825","_id":"pikaday@1.8.2","_nodeVersion":"14.7.0","_npmVersion":"6.14.7","dist":{"integrity":"sha512-TNtsE+34BIax3WtkB/qqu5uepV1McKYEgvL3kWzU7aqPCpMEN6rBF3AOwu4WCwAealWlBGobXny/9kJb49C1ew==","shasum":"72cc73fab7ccc068cbdf7dcaa1ce400fcfd894e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/pikaday/-/pikaday-1.8.2.tgz","fileCount":11,"unpackedSize":81500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkc6OCRA9TVsSAnZWagAAEqsP/2ITH+i4n11Zw8h9qrTk\nCht89ozf3RS29h9D+cozNVoBpx3hMAcXvJGmXyorGWnOW5Muj8UsyfJxz+HV\nQq/79A//MP4mgn1xrt/S85FPKUUY9QZILUDZ69VonxVkK4fNsUwgSbK5drXP\nuQDQr1LTIcfIwM8Kre4lXpt6br7ionS0vYctQFIiDCkxqbfbZRAuupbqq48e\nYWAg50L10JCxxd/mNFF5PFktp7EoWti2T1kryQR+W8+a/lt1E2R3StkNIuqh\nMuiaihUBqVAk00Sz813xwxUVskm9FSzgjF3mzYU4YvvZOar6WR7T7g3Ye8WT\neRi9iRZX3hvggEl015eLln9Pb8P6kw2c+EzcduneDEXDfg8R4J8JLTSF9p5H\nSW/lH6+LAZGkLLl/YHvgfMIZ0ThC0iYYdVEiI8zEUkwHHwfVgw8mRJJml5z/\nI70zZBuNLeBLSrTLNGThccFqWipUnoNpun0YoyOR2bz2iof9hHIwvuHOrBPs\nozLx0V8jbfe8+mYyAVeYrwKlQfNpwQmzR032jlP8D0pScK7hxe2UsR2/0oNp\nZThaGlf97pXepmbyX0CrDDlxHAS/nTkyKzSn5Qlt6sT8ROBEixoTXeuJoJDz\nzac94bH4Y4EfvE7/TQa89YvODrg8pHioPV+XkOXbGHrFKaD+FtXUVGz58/Pb\n15yG\r\n=vIp1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDdewnSlNjioZi3GuO22p8qZUPLgdjofFpqIZFb+iM1PAiAO7pMGVX1UquKrXobi4l6nlJN9LPXFC0RiV4aJrJqXCA=="}]},"maintainers":[{"name":"deployment","email":"rrikkert@gmail.com"}],"_npmUser":{"name":"deployment","email":"rrikkert@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pikaday_1.8.2_1603391118199_0.8094806472669098"},"_hasShrinkwrap":false}},"name":"pikaday","time":{"modified":"2022-06-23T23:17:28.169Z","created":"2014-01-28T08:22:37.074Z","1.2.0":"2014-01-28T08:23:18.130Z","1.3.0":"2015-01-10T09:59:11.189Z","1.3.1":"2015-01-21T10:06:17.287Z","1.3.2":"2015-02-17T15:53:34.716Z","1.3.3":"2015-06-26T13:51:19.363Z","1.4.0":"2015-10-30T08:36:03.870Z","1.5.0":"2016-10-27T13:59:59.713Z","1.5.1":"2016-10-28T12:23:26.494Z","1.6.0":"2017-05-31T14:14:41.759Z","1.6.1":"2017-06-14T08:37:11.293Z","1.7.0":"2017-12-12T12:03:05.583Z","1.8.0":"2018-10-17T18:42:05.075Z","1.8.1":"2020-10-22T18:00:04.380Z","1.8.2":"2020-10-22T18:25:18.421Z"},"readmeFilename":"README.md","homepage":"https://pikaday.com"}