{"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"dist-tags":{"latest":"1.1.3"},"author":{"name":"gbrits_0"},"description":"An event calendar component for the Ionic hybrid mobile development platform","readme":"# Ionic Calendar (English and Spanish)\n\n![image](https://raw.githubusercontent.com/gbrits/ionic-calendar/master/calendar.png?raw=true)\n\nA straight forward calendar module that has the optional capability to expand to *clickable days* and trackable *events*, with unobtrusive boiler-plating.\n\n## Ionic Support\n\nThis module was tested to Ionic v3.19.0.\n\n### Installing\n\nGo ahead and install via NPM\n\n```\nnpm install ionic3-calendar-en --save\n```\n\nWithin your **app.module.ts** file, make sure to add the import.\n\n```javascript\nimport { CalendarModule } from 'ionic3-calendar-en';\n@NgModule({\n  ...\nimports: [\n  ...\n  CalendarModule,\n  ...\n]\n  ...\n})\n```\n\n## Usage / Getting started\n\nBasic usage is as follows:\n\n```javascript\n\n<ion-calendar #calendar></ion-calendar>\n\n<ion-calendar #calendar lang=\"es\"></ion-calendar> // Spanish support\n\n<ion-calendar #calendar lang=\"en\"></ion-calendar> // Or you can explicitly indicate English\n\n```\n\nTo make days clickable, and emit back information about the day selected, include the onDaySelect binding.\n\n```javascript\n<ion-calendar #calendar (onDaySelect)=\"onDaySelect($event)\"></ion-calendar>\n```\n\nYou can add a button to jump to today, for ease of navigation:\n\n```javascript\n<button ion-button (click)=\"calendar.today()\">Jump to Today</button>\n```\n\n### Events\n\nAdding events to the calendar, as seen in the screenshot atop, those tiny notification blips can appear on a given day, if your backend API responds with the right date makeup for the given month. I suggest you write something that provides data for the former and the latter month, for the sake of edge days on a given month. The month number starts from 0 for January to 11 for December.\n\nAccepted format of data:\n\n```javascript\nthis.currentEvents = [\n  {\n    year: 2017,\n    month: 11,\n    date: 25\n  },\n  {\n    year: 2017,\n    month: 11,\n    date: 26\n  }\n];\n```\n\nThe consequent invocation of these events would be done like so:\n\n```javascript\n<ion-calendar #calendar [events]=\"currentEvents\" (onDaySelect)=\"onDaySelect($event)\" (onMonthSelect)=\"onMonthSelect($event)\"></ion-calendar>\n```\n\n### Changelog\n\n> 20th June 2018\n>> Language prop added, Spanish supported.\n\n> 8th December 2017\n>> Added Events capability\n\n> 5th December 2017\n>> Added English comments to code\n>> Added English month names instead of numerals on FE\n>> Minor colour adjustments for legibility\n\n## Authors\n\n* **Laker Liu** - *Initial work* - [Ionic3-Calendar](https://github.com/laker007/ionic3-calendar)\n\n**It's not what you start in life, it's what you finish.**\n\n","repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"license":"ISC","versions":{"1.0.0":{"name":"ionic3-calendar-en","version":"1.0.0","description":"A calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","dependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","rxjs":"5.4.0","zone.js":"0.8.12","lodash":"^4.17.4","moment":"^2.18.1"},"devDependencies":{"typescript":"2.3.4"},"gitHead":"8df929c9128c319552df9e57fa435c3adaa492a5","_id":"ionic3-calendar-en@1.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-bpH6kc3FQllpsPhxCAJ7GJc3zIU+xlaG8N2O7FJ/JbumUsc90/rkRfQv/+NbEdDKy5hvdttBT175u+mCsXt5MQ==","shasum":"9186c0fb33072f7269d5eaeafa682c2ec68f77f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCG4cOqfAHJAXlL4VTHGGCINWPpfZ+ACPK9MuQbQ25DuwIgG8o8OfMLAuV1RcLHn1tKNTYaXGVgzsR+dRo4iwMr3QE="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.0.tgz_1512427871347_0.1292537529952824"},"directories":{}},"1.0.1":{"name":"ionic3-calendar-en","version":"1.0.1","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","dependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","rxjs":"5.4.0","zone.js":"0.8.12","lodash":"^4.17.4","moment":"^2.18.1"},"devDependencies":{"typescript":"2.3.4"},"gitHead":"30ad474ea785eefb7f252d081ddcf37c780dd2e5","_id":"ionic3-calendar-en@1.0.1","_npmVersion":"5.5.1","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-cyzWbW66nFkGitLypQQa3rN2DvVyAwkSpmzhCZFlsqFmoI8HaBXKJkyQ9FmaCm3hcJHk5Rrb9FE06iH7mQHqfA==","shasum":"58d164b9cc529c0dce0cd166d5238356a804d734","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCX1Qf1RdwBNJobEtc8+P2zW7nhj96gfneVKbP0HKjtLwIhAPJZuyCWwBz2wkbOPwY4NzgloCbDjBb8v40VpWgW5Hbn"}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.1.tgz_1512748647077_0.9305374287068844"},"directories":{}},"1.0.2":{"name":"ionic3-calendar-en","version":"1.0.2","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","dependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","rxjs":"5.4.0","zone.js":"0.8.12","lodash":"^4.17.4","moment":"^2.18.1"},"devDependencies":{"typescript":"2.3.4"},"gitHead":"790a07930012a49e7c164f97ca7306ffba6b6ed6","_id":"ionic3-calendar-en@1.0.2","_npmVersion":"5.5.1","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-oBghEPzkuR0aEWdHM31h6LdBNlzjfQGYC5Ib9ZnaN9HgNrFElsdPxXamg7F1/df5tnUfEWkUmx5cqZsY29V1Hw==","shasum":"b4aaf32f6080ea6bd49953875b2b981291b1d6f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQSzI52lUsK8MD5TJKCgzhqEHjSd1mgGb6WYwROEivygIhAPtcsHSSFknQfD3GPFVCZFfYVkZiglPIQPGuaObhfpS5"}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.2.tgz_1512749925762_0.6098211479838938"},"directories":{}},"1.0.3":{"name":"ionic3-calendar-en","version":"1.0.3","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","dependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","rxjs":"5.4.0","zone.js":"0.8.12","lodash":"^4.17.4","moment":"^2.18.1"},"devDependencies":{"typescript":"2.3.4"},"gitHead":"eafcc9cc78d7f0c76b4936ff8dd9a3682b422fef","_id":"ionic3-calendar-en@1.0.3","_npmVersion":"5.5.1","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-g7H0ZYYjxuKI+kWVLkirH1r0/44KBVA1d3rgLkQZV0Y+CQB+OXkfWAejwaioXiNW43PoAIFnXTzIwOwsbiYWbA==","shasum":"451a20887a80594eb257eacf0a164946d3b5352f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF+ttbYXYdsvhDUPXpP43XmraaK4UgN2svK28w53zr77AiEAzYo2sB4UGBZ3VBF842FYh/nLomSR4Xt18YvyNbSi5RY="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.3.tgz_1512750055488_0.7736233489122242"},"directories":{}},"1.0.4":{"_from":"ionic3-calendar-en","_id":"ionic3-calendar-en@1.0.4","_inBundle":false,"_integrity":"sha512-g7H0ZYYjxuKI+kWVLkirH1r0/44KBVA1d3rgLkQZV0Y+CQB+OXkfWAejwaioXiNW43PoAIFnXTzIwOwsbiYWbA==","_location":"/ionic3-calendar-en","_phantomChildren":{"@angular/tsc-wrapped":"4.1.3","minimist":"1.2.0","reflect-metadata":"0.1.10","symbol-observable":"1.0.4"},"_requested":{"type":"tag","registry":true,"raw":"ionic3-calendar-en","name":"ionic3-calendar-en","escapedName":"ionic3-calendar-en","rawSpec":"","saveSpec":null,"fetchSpec":"latest"},"_requiredBy":["#USER","/"],"_resolved":"https://registry.npmjs.org/ionic3-calendar-en/-/ionic3-calendar-en-1.0.3.tgz","_shasum":"451a20887a80594eb257eacf0a164946d3b5352f","_spec":"ionic3-calendar-en","_where":"/Users/grant.brits/maximus/perthapps/FitJotFE_v3","author":{"name":"gbrits_0"},"bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"bundleDependencies":false,"peerDependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","lodash":"^4.17.4","moment":"^2.18.1","rxjs":"5.4.0","zone.js":"0.8.12"},"deprecated":false,"description":"An event calendar component for the Ionic hybrid mobile development platform","devDependencies":{"typescript":"2.3.4"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","license":"ISC","main":"index.js","name":"ionic3-calendar-en","repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"version":"1.0.4","_npmVersion":"5.6.0","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-vq2Hsv8u1xepqibsjb8o+Rr0GEpbzUZ2JhNz4DRb+rXxTUAFjZ1S6O6Pgf+dFjKTjd43wsg5u1m2RvIYscamng==","shasum":"85350f3d78c3bd67e550bdddfecd775ffc445244","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDiTBdEuBZGtsS7/4WiLu1SNlyM/cE5nJa7CqEsgYJQigIgetbiH9VPTbr372S8i2bUFr6F2cmBsubpooVcWy0ckI8="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.4.tgz_1512997346873_0.630856917006895"},"directories":{}},"1.0.5":{"name":"ionic3-calendar-en","version":"1.0.5","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","peerDependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","rxjs":"5.4.0","zone.js":"0.8.12","lodash":"^4.17.4","moment":"^2.18.1"},"devDependencies":{"typescript":"2.3.4"},"gitHead":"2dd83cf7950f3ab6ba1959f5efed671b21aa8e0b","_id":"ionic3-calendar-en@1.0.5","_npmVersion":"5.6.0","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-NgRM8CU1/7UDbrJRu9lx3xsYoX2/QBdLifEYZh2ec/T6r2FQKRGtZEvTqWdkWjoO/kXPS/TBCRbP74Xzyu3dJg==","shasum":"e584b277935703e36de5c595a44847d8d45b77cb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICT5tUJDh9Wz3Fge0V47JxoCdEr37a1Z0Jv7JSC04RP6AiEA4/x9xi5efNfIo8bWVwyNDovkgEFdvvrjdlHGh59yCBI="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.5.tgz_1515904807539_0.37983931927010417"},"directories":{}},"1.0.6":{"name":"ionic3-calendar-en","version":"1.0.6","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","peerDependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","rxjs":"5.4.0","zone.js":"0.8.12","lodash":"^4.17.4","moment":"^2.18.1"},"devDependencies":{"typescript":"2.3.4"},"gitHead":"824e21b31bf788e56052f2b3c81229ea0ab021d2","_id":"ionic3-calendar-en@1.0.6","_npmVersion":"5.6.0","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-0koT3zDdXw65DUfN+IJ6B3tXE6NvPJ4EnvlavHi5aTSWaHU5bl9b80Y1Uax2bfy1rY9X16bTJnYrNIvYeyyVQw==","shasum":"3a1ddf91be4c02247277bbe85e8f2eb5a8a1a910","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFwOLxTeaGINEy1KvusIh0cotLRsclaNYDFd8tovSxb4AiAJuEvcTYVK239LMesivp7cpi/26Id7xy3F3E+csHKU2Q=="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.6.tgz_1515905438510_0.3626076939981431"},"directories":{}},"1.0.7":{"name":"ionic3-calendar-en","version":"1.0.7","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","peerDependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","rxjs":"5.4.0","zone.js":"0.8.12","lodash":"^4.17.4","moment":"^2.18.1"},"devDependencies":{"typescript":"2.3.4"},"gitHead":"6b8c0ebab602a06dd13e033477d771e0d646517c","_id":"ionic3-calendar-en@1.0.7","_npmVersion":"5.6.0","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-LGjyrl4tbeuANyReAzeAZk6ebr5KwpuqVywooC7ZtREtOrsNy52XJ13zPxHAV6PjyDFlJXay6je2JlEWE+XG+w==","shasum":"634c227c7e0931fac949897dbbcd0bfce2cb1020","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.7.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDbWh30b/zx/xKgbrT+2rOKKz4ievdno7IdAwedxfMH4AiBFBciKfOHfICM63ry97oc4DpLzwKxoRzIP2MM0VZ6gPQ=="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.7.tgz_1515905857373_0.9934118199162185"},"directories":{}},"1.0.8":{"name":"ionic3-calendar-en","version":"1.0.8","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","peerDependencies":{"@angular/common":"4.1.3","@angular/compiler":"4.1.3","@angular/compiler-cli":"4.1.3","@angular/core":"4.1.3","@angular/forms":"4.1.3","@angular/http":"4.1.3","@angular/platform-browser":"4.1.3","@angular/platform-browser-dynamic":"4.1.3","ionic-angular":"3.5.0","rxjs":"5.4.0","zone.js":"0.8.12","lodash":"^4.17.4","moment":"^2.18.1"},"devDependencies":{"typescript":"2.3.4"},"gitHead":"b237b9dcba402bab61b8d22a1287484bf7825538","_id":"ionic3-calendar-en@1.0.8","_npmVersion":"5.6.0","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-xH+ewcQyiYgTr+2tcXBJBG48kRjh9LqRErnb11/+3oALY9yszckhTMe/AUC/B9vM58v+X4N/BEoe+wOAdpf7vg==","shasum":"6ed3c502d4d01afa2dc7fd101cf7fe328cc550c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.8.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDx0fi8+wOTMc50xtBpLI2PUpnuk6pLFY+tHrxTnoLuiwIgNYIgb5Kf++GDcSL0YmvsHISN11qhUQ+9IwIjENktD3Q="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en-1.0.8.tgz_1515919314962_0.8758646768983454"},"directories":{}},"1.0.9":{"name":"ionic3-calendar-en","version":"1.0.9","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","dependencies":{},"devDependencies":{"typescript":"2.3.4"},"gitHead":"74b5585859c107f637226748258e56085c0da9ea","_id":"ionic3-calendar-en@1.0.9","_npmVersion":"6.1.0","_nodeVersion":"10.2.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-4r0SjCfc7KGUP3Gl0wXjIBtkJ8hN0juADzGx/3eXcXFST8T8jpX4z6wwVIqFp3uhz7o1wgovgHSx3qfhMNuTww==","shasum":"217b71797869b74e56e9381f2d01dd0589dbcabe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.0.9.tgz","fileCount":19,"unpackedSize":143913,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHyyrCRA9TVsSAnZWagAAuBEP/2ZKyaB4i+ty5ZNiT9hp\nv0kjWd1/IXNuqRaR6LYsPG50+cayb6fqV7TOn3Hlm60GkBIlSv4/ZhGfFm1m\nmdm1eKvjCx2u5HC5ggctsKkIxvZaftu4H8PEcO/T3x0qluQ9SPeig3Oq3bO6\n+daG7EynomPOrJhG/C2jqjPYXjsgMcYgkL5K8pAUG2g5kxvW+Eb6mC8bWzh8\nzOseJ++EFWUjOQPR+JdJybC9c+q/78ig2n/zVeQunH/7poQuCp1ZE5TPIr/B\n9ygFwcvSTUPdyXF7ogiiuyTTxrluvBws9Q6Kp3WHOUIgkYSWOEmGvemiHkTG\nreDz9ddFVLUBPdsg1FazZZN2RGHv1gwRPMqZC6s3jBcavpY6L9j3GM3tZjEl\nwGfjWVChHnLxcCYWRf/YcPbhW24kCMFVKzSQOsvfimOyih4nL9Ni5nQWdvEC\nQn7OwQ84UKwf5lBmdyrHwPWylpryDE6aJsUa+nEkBdjZc0QJujGCc4lc11Kw\nhR1+Xpoa+CU5IeSuyvu4GS2GOGcwjhGYlE1Nm7DK+5sznKroyjObfSghwmNs\n6b3/6Ys7hhcaZHUQA06v55M3tQobuayyQkiqzlRUY8xXDASMPcrXmtadbS0D\nWqJktkLA77DUcjNVEoeijVz/G3BbZjVSutNWj9zMaDekyEamL40dUzn52dMl\n0ZRf\r\n=7Yt8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIETLn60UJ0ksQCbRPf4u/EJHDGJ06P1aTprHxZ9/V0TdAiB3zE6aftOy5HfDvs0IXfaQ63bqJGfjWRa0XANfwo9noQ=="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en_1.0.9_1528769706792_0.7167353345878347"},"_hasShrinkwrap":false},"1.1.3":{"name":"ionic3-calendar-en","version":"1.1.3","description":"An event calendar component for the Ionic hybrid mobile development platform","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gbrits/ionic-calendar.git"},"author":{"name":"gbrits_0"},"license":"ISC","bugs":{"url":"https://github.com/gbrits/ionic-calendar/issues"},"homepage":"https://github.com/gbrits/ionic-calendar#readme","dependencies":{},"devDependencies":{"typescript":"2.3.4"},"gitHead":"d8f79c1e8ca90c3eada3b4dda3e67158620c7e7d","_id":"ionic3-calendar-en@1.1.3","_npmVersion":"6.1.0","_nodeVersion":"10.2.1","_npmUser":{"name":"anonymous","email":"gbrits@hotmail.com"},"dist":{"integrity":"sha512-3b9so4vnt+F5mxe//378HO1AFic8FVqXqWjjqZS7t8zQUytgrOx3uAOjvIYQqIZD+s3Y1zEa73yHso/hy13dow==","shasum":"6596b7ba0d589dd3b7fcc98240ef886054fa48c5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ionic3-calendar-en/-/ionic3-calendar-en-1.1.3.tgz","fileCount":19,"unpackedSize":155417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKaGsCRA9TVsSAnZWagAAolEP/2cL9zO4MS5yT0wzD+RY\nEfnNl35wknKWYAQlOBfDdwmay3rbdNbyOFF+JUkJhWEHkGojMlo5euXbBUxB\nZeBlfjbKpqyUGj9NP5sb7vP/4/tEwhkUEFtJqK7kTTFAE0lELJc8uy10he74\nPZFqyyfhmO5yo847p0s+Md2Sy0BufgEOnlYLI4b0uiEserhqXz7lPQu33fqB\n1VnkFO7xQ73y41st4m3eyVCwYY38Uk+7RHNXmNUo3VMgJ9vra0fxmzY+M+Ve\n75DzeAEKLs81SCusf0jiB80fO4Vo+hfXSFYKwEM/lDa5pbSOORSc2T6YhQ1N\njAf1dJUdXFZ9OwyG8lXPgXtxqutEBG67/vPv9exVyM70/uXkd5BphafiJ1zr\nyIIEe//9h5h+x6vPvU4bx05e9+do+mbgb1ipy9TdGkErWdY3Nxgz9Wrqivmq\npoTSgPqIHu2w8NjSYy1HuE3lPVSJMryA87Pr7i/vTLUi/B7QNSSaSu59CCzg\nh3Mlxg7jQMuG4mTFZ9fst88x1TBO1qpszwAhUaAGD24HG1hggbEktFmeMNam\nJv5nZm21Tpd+Q0ayqY5LK+LoiT3rI52EyBw/OqrjB5OE3ODtejJuZ85J3AzQ\ncs9HYGEcOjE+Sbiv18Sa/T86k732+OUnsU9ELrAZyysaqebdcHg8kewu3Z3Z\na2vV\r\n=WnBD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHd4pg6vLjaEHh/6+jqW1aU8h0RQjz0s83MPDh/bbJ8GAiEAljZF6naR8ng2qiFnhAwZVMrZ0/3hMhKPRZrMfJsDpXE="}]},"maintainers":[{"name":"anonymous","email":"gbrits@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic3-calendar-en_1.1.3_1529455018497_0.5385313659094975"},"_hasShrinkwrap":false}},"name":"ionic3-calendar-en","time":{"modified":"2022-05-06T02:47:58.252Z","created":"2017-12-04T22:51:11.503Z","1.0.0":"2017-12-04T22:51:11.503Z","1.0.1":"2017-12-08T15:57:27.209Z","1.0.2":"2017-12-08T16:18:46.008Z","1.0.3":"2017-12-08T16:20:55.621Z","1.0.4":"2017-12-11T13:02:27.023Z","1.0.5":"2018-01-14T04:40:08.089Z","1.0.6":"2018-01-14T04:50:39.123Z","1.0.7":"2018-01-14T04:57:37.632Z","1.0.8":"2018-01-14T08:41:55.267Z","1.0.9":"2018-06-12T02:15:06.896Z","1.1.3":"2018-06-20T00:36:59.346Z"},"readmeFilename":"README.md","homepage":"https://github.com/gbrits/ionic-calendar#readme"}