{"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"keywords":["Angular","datepicker","date picker","timepicker","time picker"],"dist-tags":{"latest":"7.0.0"},"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"description":"Angular Date Time Picker","readme":"Angular Date Time Picker\n========================\n\n[![npm](https://img.shields.io/npm/v/ng-pick-datetime.svg?maxAge=2592000?style=flat-square)](https://www.npmjs.com/package/ng-pick-datetime)\n[![npm](https://img.shields.io/npm/dm/ng-pick-datetime.svg)](https://www.npmjs.com/package/ng-pick-datetime)\n\n**Angular date time picker - Angular reusable UI component**\n**This package supports Angular 6+**\n\n\nBreaking Changes\n-------\n - The picker has been updated for Angular 6+ apps. If you are still using Angular 5, you should install the picker version 5.2.6.\n   ```npm install ng-pick-datetime@5.2.6 --save```\n - Added Output Events yearSelected, monthSelected\n\nDescription\n-------\nSimple Angular date time picker. Online doc is [here](https://daniel-projects.firebaseapp.com/owlng/date-time-picker), Online demo(StackBlitz) is [here](https://stackblitz.com/github/DanielYKPan/owl-examples/tree/date-time-picker).\nThis picker is responsive design, so feel free to try it in your desktops, tablets and mobile devices. \n\nHow to Use\n-------\n\n 1. Install with [npm](https://www.npmjs.com):`npm install ng-pick-datetime --save`\n 2. Add styles.\n    If you are using Angular CLI, you can add this to your styles.css: \n    ```css\n    @import \"~ng-pick-datetime/assets/style/picker.min.css\";\n    ``` \n    If you are not using the Angular CLI, you can include the picker.min.css via a ```<link>``` element in your index.html.\n 3. Add __OwlDateTimeModule__ and __OwlNativeDateTimeModule__ to your __@NgModule__ like example below\n    ```typescript\n     import { NgModule } from '@angular/core';\n     import { BrowserModule } from '@angular/platform-browser';\n     import { MyTestApp } from './my-test-app';\n    \n     import { OwlDateTimeModule, OwlNativeDateTimeModule } from 'ng-pick-datetime';\n    \n     @NgModule({\n         imports: [ \n             BrowserModule, \n             OwlDateTimeModule, \n             OwlNativeDateTimeModule,\n         ],\n         declarations: [ MyTestApp ],\n         bootstrap:    [ MyTestApp ]\n     })\n     export class MyTestAppModule {}\n    ```\n 4. Connecting a picker to an input and a trigger.\n    ```html\n    <input [owlDateTime]=\"dt1\" [owlDateTimeTrigger]=\"dt1\" placeholder=\"Date Time\">\n    <owl-date-time #dt1></owl-date-time>\n    ```\n    ```html\n    <input [owlDateTime]=\"dt2\" placeholder=\"Date Time\">\n    <span [owlDateTimeTrigger]=\"dt2\"><i class=\"fa fa-calendar\"></i></span>\n    <owl-date-time #dt2></owl-date-time>\n    ```\n    The examples above are quite basic. The picker has much more features, \n    and you could learn more about those from [demo page](https://danielykpan.github.io/date-time-picker/).\n    \n\nAnimation\n-------\nThis picker uses angular animations to improve the user experience, \ntherefore you need to install `@angular/animations` and import `BrowserAnimationsModule` to your application. \n```\nnpm install @angular/animations --save\n```\n```typescript\nimport {BrowserModule} from '@angular/platform-browser';\nimport {BrowserAnimationsModule} from '@angular/platform-browser/animations';\n\n@NgModule({\n    imports: [\n        BrowserModule,\n        BrowserAnimationsModule,\n        //...\n    ],\n    //...\n})\nexport class YourAppModule { }\n```\nIf you prefer to disable animation effect, use `NoopAnimationsModule` instead.\n\nChoose a date implementation\n-------\nThe date-time picker was built to be date implementation agnostic. \nDevelopers need to make sure to provide the appropriate pieces for the picker to work with their chosen implementation.\nThere are two pre-made modules, users need to import one of them or build your own one (learn more about this from [here](https://danielykpan.github.io/date-time-picker/#locale-formats)).\n\n- `OwlNativeDateTimeModule` - support for native JavaScript Date object\n- `OwlMomentDateTimeModule` - support for MomentJs\n\nProperties for `owl-date-time`\n-------\n|Name|Type|Required|Default|Description|\n|:--- |:--- |:--- |:--- |:--- |\n|`pickerType`|`both`, `calendar`, `timer`|Optional|`both`| Set the type of the dateTime picker. `both`: show both calendar and timer, `calendar`: only show calendar, `timer`: only show timer. |\n|`pickerMode`|`popup`, `dialog`|Optional|`popup`| The style the picker would open as. |\n|`startView`|`month`, `year`, `multi-year`|Optional|`month`| The view that the calendar should start in. |\n|`startAt`| T/null |Optional|`null`| The moment to open the picker to initially. |\n|`firstDayOfWeek`|number|Optional|`0`| Set the first day of week. Valid value is from 0 to 6. 0: Sunday ~ 6: Saturday|\n|`showSecondsTimer`|boolean|Optional|`false`| When specify it to true, it would show a timer to configure the second's value |\n|`hideOtherMonths`|boolean|Optional|`false`| Whether to hide dates in other months at the start or end of the current month |\n|`hour12Timer`|boolean|Optional|`false`| When specify it to true, the timer would be in hour12 format mode|\n|`stepHour`|number|Optional|`1`| Hours to change per step.|\n|`stepMinute`|number|Optional|`1`| Minutes to change per step.|\n|`stepSecond`|number|Optional|`1`| Seconds to change per step.|\n|`scrollStrategy`|ScrollStrategy|Optional|`BlockScrollStrategy`| Define the scroll strategy when the picker is open. Learn more this from https://material.angular.io/cdk/overlay/overview#scroll-strategies.|\n|`disabled`|boolean|Optional|`false`|When specify to true, it would disable the picker.|\n|`backdropClass`|string/string[]|Optional|`null`|Custom class for the picker backdrop.|\n|`panelClass`|string/string[]|Optional|`null`|Custom class for the picker overlay panel.|\n\nEvents for `owl-date-time`\n-------\n|Events|Parameter|Description|\n|:--- |:--- |:--- |\n|`afterPickerOpen`|null|Callback to invoke when the picker is opened|\n|`afterPickerClosed`|null|Callback to invoke when the picker is closed.|\n|`yearSelected`|T|Callback to invoke when the year is selected.This doesn't imply a change on the selected date.|\n|`monthSelected`|T|Callback to invoke when the month is selected.This doesn't imply a change on the selected date.|\n\nProperties for `input[owlDateTime]`\n-------\n|Name|Type|Required|Default|Description|\n|:--- |:--- |:--- |:--- |:--- |\n|`owlDateTime`|`OwlDateTimeComponent<T>`|Require|`null`| The date time picker that this input is associated with.|\n|`owlDateTimeFilter`|`( date: T)=>boolean `|Optional|`null`|A function to filter date time.|\n|`disabled`|boolean|Optional|`false`|When specify to true, it would disable the picker's input.|\n|`min`|`<T>`|Optional|`null`| The minimum valid date time.|\n|`max`|`<T>`|Optional|`null`| The maximum valid date time.|\n|`selectMode`|`single`, `range`, `rangeFrom`, `rangeTo`|Optional|`single`| Specify the picker's select mode. `single`: a single value allowed, `range`: allow users to select a range of date-time, `rangeFrom`: the input would only show the 'from' value and the picker could only selects 'from' value, `rangeTo`: the input would only show the 'to' value and the picker could only selects 'to' value.|\n|`rangeSeparator`|string|Optional|`~`| The character to separate the 'from' and 'to' in input value in range selectMode.|\n\nEvents for `input[owlDateTime]`\n-------\n|Events|Parameter|Description|\n|:--- |:--- |:--- |\n|`dateTimeChange`|source: OwlDateTimeInput, value: input value, input: the input element|Callback to invoke when `change` event is fired on this `<input [owlDateTime]>`|\n|`dateTimeInput`|source: OwlDateTimeInput, value: input value, input: the input element|Callback to invoke when an `input` event is fired on this `<input [owlDateTime]>`.|\n\nProperties for `[owlDateTimeTrigger]`\n-------\n|Name|Type|Required|Default|Description|\n|:--- |:--- |:--- |:--- |:--- |\n|`owlDateTimeTrigger`|`OwlDateTimeComponent<T>`|Require|`null`| The date time picker that this trigger is associated with.|\n|`disabled`|boolean|Optional|`false`|When specify to true, it would disable the trigger.|\n\n\nProperties for `[owlDateTimeTrigger]`\n-------\n|Name|Type|Required|Default|Description|\n|:--- |:--- |:--- |:--- |:--- |\n|`owlDateTimeTrigger`|`OwlDateTimeComponent<T>`|Require|`null`| The date time picker that this trigger is associated with.|\n|`disabled`|boolean|Optional|`false`|When specify to true, it would disable the trigger.|\n\n\nProperties for `owl-date-time-inline`\n-------\n|Name|Type|Required|Default|Description|\n|:--- |:--- |:--- |:--- |:--- |\n|`pickerType`|`both`, `calendar`, `timer`|Optional|`both`| Set the type of the dateTime picker. `both`: show both calendar and timer, `calendar`: only show calendar, `timer`: only show timer. |\n|`startView`|`month`, `year`, `multi-year`|Optional|`month`| The view that the calendar should start in. |\n|`startAt`| T/null |Optional|`null`| The moment to open the picker to initially. |\n|`firstDayOfWeek`|number|Optional|`0`| Set the first day of week. Valid value is from 0 to 6. 0: Sunday ~ 6: Saturday|\n|`showSecondsTimer`|boolean|Optional|`false`| When specify it to true, it would show a timer to configure the second's value |\n|`hideOtherMonths`|boolean|Optional|`false`| Whether to hide dates in other months at the start or end of the current month |\n|`hour12Timer`|boolean|Optional|`false`| When specify it to true, the timer would be in hour12 format mode|\n|`stepHour`|number|Optional|`1`| Hours to change per step.|\n|`stepMinute`|number|Optional|`1`| Minutes to change per step.|\n|`stepSecond`|number|Optional|`1`| Seconds to change per step.|\n|`disabled`|boolean|Optional|`false`|When specify to true, it would disable the picker.|\n|`owlDateTimeFilter`|`( date: T)=>boolean `|Optional|`null`|A function to filter date time.|\n|`min`|`<T>`|Optional|`null`| The minimum valid date time.|\n|`max`|`<T>`|Optional|`null`| The maximum valid date time.|\n|`selectMode`|`single`, `range`, `rangeFrom`, `rangeTo`|Optional|`single`| Specify the picker's select mode. `single`: a single value allowed, `range`: allow users to select a range of date-time, `rangeFrom`: the input would only show the 'from' value and the picker could only selects 'from' value, `rangeTo`: the input would only show the 'to' value and the picker could only selects 'to' value.|\n\nLocalization and DateTime Format\n-------\nLocalization for different languages and formats is defined by `OWL_DATE_TIME_LOCALE` and `OWL_DATE_TIME_FORMATS`. You could learn more about this from [here](https://danielykpan.github.io/date-time-picker#locale-formats).\n\n\nDependencies\n-------\nnone\n\nDemo\n-------\n- Online doc is [here](https://daniel-projects.firebaseapp.com/owlng/date-time-picker)\n- Online demo(StackBlitz) is [here](https://stackblitz.com/github/DanielYKPan/owl-examples/tree/date-time-picker)\n\nLicense\n-------\n* License: MIT\n\nAuthor\n-------\n**Daniel YK Pan**","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"users":{"cripstian":true,"djurdjevicu":true,"florianneiss":true,"diegoazh":true,"daniel_pan":true},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"license":"MIT","versions":{"4.0.0":{"name":"ng-pick-datetime","version":"4.0.0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"^4.0.0","@angular/common":"~4.0.0","@angular/compiler":"~4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"~4.0.0","@angular/forms":"~4.0.0","@angular/http":"~4.0.0","@angular/platform-browser":"~4.0.0","@angular/platform-browser-dynamic":"~4.0.0","@angular/platform-server":"^4.0.0","@angular/router":"~4.0.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"3.0.0-beta.10","core-js":"^2.4.1","css-loader":"^0.23.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.15.0","jasmine-core":"^2.4.1","karma":"^1.2.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","raw-loader":"^0.5.1","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"2.1.5","web-animations-js":"^2.2.2","webpack":"^1.13.0","webpack-dev-server":"^1.14.1","webpack-merge":"^0.14.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.0.0","_shasum":"b9d0aacecbab9283caaf844e26568bcab01fe4bf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"b9d0aacecbab9283caaf844e26568bcab01fe4bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.0.0.tgz","integrity":"sha512-QHG1OItp71g/LOON+amiUxKm4FWlBhPE0nF/aEqcmi+Bg4nTe2iWnwHzMvPFBaptdzMxW8ue2pgM27OxZF265w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC6Th333WhK0WOEHMrBofXysO/jSpwZQ5yEqSq9/h3viAiEAznYvjKTXYDsIPHoeqDOJm0ELvEDw8QUBXYWqakGQbuo="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.0.0.tgz_1491125570361_0.31180150038562715"},"directories":{}},"4.0.1":{"name":"ng-pick-datetime","version":"4.0.1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"^4.0.0","@angular/common":"~4.0.0","@angular/compiler":"~4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"~4.0.0","@angular/forms":"~4.0.0","@angular/http":"~4.0.0","@angular/platform-browser":"~4.0.0","@angular/platform-browser-dynamic":"~4.0.0","@angular/platform-server":"^4.0.0","@angular/router":"~4.0.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"3.0.0-beta.10","core-js":"^2.4.1","css-loader":"^0.23.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.15.0","jasmine-core":"^2.4.1","karma":"^1.2.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","raw-loader":"^0.5.1","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"2.1.5","web-animations-js":"^2.2.2","webpack":"^1.13.0","webpack-dev-server":"^1.14.1","webpack-merge":"^0.14.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.0.1","_shasum":"3957fa6d14dea85f7b4ab338815fbd4f17370268","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"3957fa6d14dea85f7b4ab338815fbd4f17370268","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.0.1.tgz","integrity":"sha512-i5qwkShb0FJHw6efxWI9PSwzqsv87/D0tKrMil43t7qWaVEKzlrlErBnDmciBxlbbnc/k+068iLgqB/uBC/tew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGBb3dP/hT07XfMtQ0uBbJjV9hvF9LLTevzRr9PWdsMLAiEAvp/049kE1fLuhgI0U3g4Zh/QLEOCfcLxKwOTtTj9PHI="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.0.1.tgz_1491131192216_0.20533959404565394"},"directories":{}},"4.0.2":{"name":"ng-pick-datetime","version":"4.0.2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"^4.0.0","@angular/common":"~4.0.0","@angular/compiler":"~4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"~4.0.0","@angular/forms":"~4.0.0","@angular/http":"~4.0.0","@angular/platform-browser":"~4.0.0","@angular/platform-browser-dynamic":"~4.0.0","@angular/platform-server":"^4.0.0","@angular/router":"~4.0.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"3.0.0-beta.10","core-js":"^2.4.1","css-loader":"^0.23.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.15.0","jasmine-core":"^2.4.1","karma":"^1.2.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","raw-loader":"^0.5.1","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"2.1.5","web-animations-js":"^2.2.2","webpack":"^1.13.0","webpack-dev-server":"^1.14.1","webpack-merge":"^0.14.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.0.2","_shasum":"f30430fb088ce58ded75a5cbec4f1e59e5edbd9f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"f30430fb088ce58ded75a5cbec4f1e59e5edbd9f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.0.2.tgz","integrity":"sha512-RnDE0oV8PQVS8wG5L2h+wRerM1UnyokysdDXk48anBneDmeoFIduFoLBF7PKipV3hDXbkTJlFLtRD1533WgJcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDVxFUEkSGC2+yAzjcwGmpWrOkIlzxQPKziqs94EINKbwIhAP6pkCgO+m2HH97/jApYMUBdL7RfcH0AbljFeCK/+nHW"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.0.2.tgz_1491276845983_0.3230967193376273"},"directories":{}},"4.0.3":{"name":"ng-pick-datetime","version":"4.0.3","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"^4.0.0","@angular/common":"~4.0.0","@angular/compiler":"~4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"~4.0.0","@angular/forms":"~4.0.0","@angular/http":"~4.0.0","@angular/platform-browser":"~4.0.0","@angular/platform-browser-dynamic":"~4.0.0","@angular/platform-server":"^4.0.0","@angular/router":"~4.0.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"3.0.0-beta.10","core-js":"^2.4.1","css-loader":"^0.23.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.15.0","jasmine-core":"^2.4.1","karma":"^1.2.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","raw-loader":"^0.5.1","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"2.1.5","web-animations-js":"^2.2.2","webpack":"^1.13.0","webpack-dev-server":"^1.14.1","webpack-merge":"^0.14.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.0.3","_shasum":"12b6e71c947fc626a83158d76ae709a76d425231","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"12b6e71c947fc626a83158d76ae709a76d425231","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.0.3.tgz","integrity":"sha512-XdgdlP9xc4FNoihpPUnPqQCiCFt3eosv4xT4L55hKylb/QmojnF41SnESejgtnQCSWmeKHun5u6WL4TOXr9GlQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGNMXOt4VTLPdNI4AfplZwHgvp1zU/QLfSSdT2P8nnDeAiEA1R++9+xbUEFoQh2mLsvnSAuVYPbygv5CbKs3+qFQfHk="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.0.3.tgz_1491358257032_0.4208174997474998"},"directories":{}},"4.0.4":{"name":"ng-pick-datetime","version":"4.0.4","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"^4.0.0","@angular/common":"~4.0.0","@angular/compiler":"~4.0.0","@angular/compiler-cli":"~4.0.0","@angular/core":"~4.0.0","@angular/forms":"~4.0.0","@angular/http":"~4.0.0","@angular/platform-browser":"~4.0.0","@angular/platform-browser-dynamic":"~4.0.0","@angular/platform-server":"^4.0.0","@angular/router":"~4.0.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"3.0.0-beta.10","core-js":"^2.4.1","css-loader":"^0.23.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.15.0","jasmine-core":"^2.4.1","karma":"^1.2.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","raw-loader":"^0.5.1","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"2.1.5","web-animations-js":"^2.2.2","webpack":"^1.13.0","webpack-dev-server":"^1.14.1","webpack-merge":"^0.14.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.0.4","_shasum":"a189dc50428b7047d4919cda4e4c337933d9e608","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"a189dc50428b7047d4919cda4e4c337933d9e608","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.0.4.tgz","integrity":"sha512-+Hi50C20mho1T+BNhySax5/Hy77xxAkFDTTEMExCgBC5XtLXQXzImvgBQSaa6XCS3lJ0TuOHNc1GVSbEI3GqZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICsOVfeyCgboiV/x4tYypaEHoDyTUzNFr4nx0uTlqn7vAiAIif2xD+pJZ48dLebZIZgFzbY3PBq8WbaxNq0TceiTlw=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.0.4.tgz_1491881585319_0.6355941724032164"},"directories":{}},"4.0.5":{"name":"ng-pick-datetime","version":"4.0.5","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"^4.0.0","@angular/common":"~4.0.0","@angular/compiler":"~4.0.0","@angular/compiler-cli":"^4.0.2","@angular/core":"~4.0.0","@angular/forms":"~4.0.0","@angular/http":"~4.0.0","@angular/platform-browser":"~4.0.0","@angular/platform-browser-dynamic":"~4.0.0","@angular/platform-server":"^4.0.0","@angular/router":"~4.0.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.0.5","_shasum":"f9185ca3b055d745b0c64c90452a400e0704355f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"f9185ca3b055d745b0c64c90452a400e0704355f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.0.5.tgz","integrity":"sha512-60+i8hbQexvoo/8JKpl9+/o79gdtmuj/ZeLa9v/b01bRc77AYB6vyRtx+STntWg8oWoURXJnmJbgFJCnfxU1Ug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXsDqHbmUOBVGZwzm21ybHVA+1Dv4lbPj/OZ017TtfkAIhAIa4rNR7Atit6FAN67RYQ394d+BAA/URGNGZiRNjGFLP"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.0.5.tgz_1492061820621_0.9688213395420462"},"directories":{}},"4.0.6":{"name":"ng-pick-datetime","version":"4.0.6","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"^4.0.0","@angular/common":"~4.0.0","@angular/compiler":"~4.0.0","@angular/compiler-cli":"^4.0.2","@angular/core":"~4.0.0","@angular/forms":"~4.0.0","@angular/http":"~4.0.0","@angular/platform-browser":"~4.0.0","@angular/platform-browser-dynamic":"~4.0.0","@angular/platform-server":"^4.0.0","@angular/router":"~4.0.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.0.6","_shasum":"22d2f42a0d13e40b6bf28f2c949fc889b9f1b5d9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"22d2f42a0d13e40b6bf28f2c949fc889b9f1b5d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.0.6.tgz","integrity":"sha512-zfXB+1AE5lUKc7X9LcnPB3v5MI7+ru1dV/Lr1Jr9GwKWIjWmY4jrjlwcl1X5Pd39wua9FEfn5IddF/wwNQC8cw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBrmpzkdbd0kpU8YzEGxD5eR0bR1nKGUqWkbjXBCzJbXAiEAhofveicuzmDexfIGlIkJJTng4MsfrvF5Cxa4m244EDs="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.0.6.tgz_1492261373881_0.5157453883439302"},"directories":{}},"4.0.7":{"name":"ng-pick-datetime","version":"4.0.7","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"^4.0.0","@angular/common":"~4.0.0","@angular/compiler":"~4.0.0","@angular/compiler-cli":"^4.0.2","@angular/core":"~4.0.0","@angular/forms":"~4.0.0","@angular/http":"~4.0.0","@angular/platform-browser":"~4.0.0","@angular/platform-browser-dynamic":"~4.0.0","@angular/platform-server":"^4.0.0","@angular/router":"~4.0.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.0.7","_shasum":"7f6965534ace9cac29bb72bd24815a2b5ba0fcea","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"7f6965534ace9cac29bb72bd24815a2b5ba0fcea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.0.7.tgz","integrity":"sha512-H57/ClbXL7pmoqZuJKNx+EsTGh1q5X3eFvd+TYL2aa1ctpJOpAgtZ8T7z7W8HHKrtRN425tBmeoLCXrjVpqzvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDpdXDD0J2IOg8EZCbUtngko+sCRB4NOOJtQBnjb3mD2AiAZzlinaBQvkqrFJrNwFIB7NgDE3Ae8DB2gFxo4xQv46g=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.0.7.tgz_1492262207738_0.397262810729444"},"directories":{}},"4.1.0":{"name":"ng-pick-datetime","version":"4.1.0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"},"main":"./index.js","types":"./index.d.ts","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"~4.1.0","@angular/common":"~4.1.0","@angular/compiler":"~4.1.0","@angular/compiler-cli":"^4.1.0","@angular/core":"~4.1.0","@angular/forms":"~4.1.0","@angular/http":"~4.1.0","@angular/platform-browser":"~4.1.0","@angular/platform-browser-dynamic":"~4.1.0","@angular/platform-server":"^4.1.0","@angular/router":"~4.1.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.1.0","_shasum":"0ef331f15f264027db49ce81df7d1b5aa2dd0170","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"0ef331f15f264027db49ce81df7d1b5aa2dd0170","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.1.0.tgz","integrity":"sha512-COO1aWsBSaWkUSbvx/Jj3y0TQiotp5uSYYvI08oBRPlK+lsftGq++KxWxH3epL/YN5MpbzEo2JrNtQmYIdo58w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICQKVwMWcxDwYcrcbPRIBPvrGP6LdYo9ai4wgy3f34UPAiALUt9glEiJ1CySxoInUZexyRlGP1sqVdNAnd9DhG8MiA=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.1.0.tgz_1493362739618_0.47922768048010767"},"directories":{}},"4.1.1":{"name":"ng-pick-datetime","version":"4.1.1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"~4.1.0","@angular/common":"~4.1.0","@angular/compiler":"~4.1.0","@angular/compiler-cli":"^4.1.0","@angular/core":"~4.1.0","@angular/forms":"~4.1.0","@angular/http":"~4.1.0","@angular/platform-browser":"~4.1.0","@angular/platform-browser-dynamic":"~4.1.0","@angular/platform-server":"^4.1.0","@angular/router":"~4.1.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.1.1","_shasum":"478b2206b77ad99996412453582d44136dcf4be7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"478b2206b77ad99996412453582d44136dcf4be7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.1.1.tgz","integrity":"sha512-AkuNIgnTrr5JPWtU8y1WHtdpELSZ37mglKYmc3wZp1EJI1ipNvo6u2DnE7COj6ujiD+WtDa4Q2v+h8XeenL81g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCnisDSwWpkvmZIYH0sC9eAtoynXzrnqgK9QyNf4AGsggIgVyt7k3FXk0doMw1r+K2pSG6NO7TJF+9HEYCOUQkEoiM="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.1.1.tgz_1493626813529_0.14378657704219222"},"directories":{}},"4.1.2":{"name":"ng-pick-datetime","version":"4.1.2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/animations":"~4.1.0","@angular/common":"~4.1.0","@angular/compiler":"~4.1.0","@angular/compiler-cli":"^4.1.0","@angular/core":"~4.1.0","@angular/forms":"~4.1.0","@angular/http":"~4.1.0","@angular/platform-browser":"~4.1.0","@angular/platform-browser-dynamic":"~4.1.0","@angular/platform-server":"^4.1.0","@angular/router":"~4.1.0","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.1.2","_shasum":"2a3883906507bea54e0aa94ba7f5cb9dee894095","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"2a3883906507bea54e0aa94ba7f5cb9dee894095","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.1.2.tgz","integrity":"sha512-oT+9OvF5JaRAQqXCfynZUWi2PMISvQKbSu5NSUzn4cYofNR0XEptT9gSUxVR0TU6ftVO01u0CXnzvs7q1YI12g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEdqG7Nd5/M04ysZntgP+8WSqWwTw12SKJoWqgWQV6mIAiEA3PPsp75Z24qfIy3qiHFtzsJNsZNKO0iTcg/g2oMfp9M="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng-pick-datetime-4.1.2.tgz_1494927056117_0.2683309856802225"},"directories":{}},"4.2.0":{"name":"ng-pick-datetime","version":"4.2.0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.2.0","_shasum":"a9b063b4dc5dff1164e63f5f15b8c38fac131b50","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"a9b063b4dc5dff1164e63f5f15b8c38fac131b50","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.2.0.tgz","integrity":"sha512-/vdJFEMDks7VNDbsfjNCVcrvHu6aeRBQKhK8c3EYSXaTbpZf1ZnuHfkDbJYBIg9ZSBSVpErgEmMLPTXvzD04Xw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHY+oCD3trKnTA4KZKMCThVstxTIJt5gKwCT1OZa1iBYAiArH6GmfpIzN/t0Mt9MAaKLbzGzkvFstY1M3eer3rjyfw=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.2.0.tgz_1498389101767_0.5909721490461379"},"directories":{}},"4.2.1":{"name":"ng-pick-datetime","version":"4.2.1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.2.1","_shasum":"00639b0c2f6921bf7dbdf90bb58edda6f55a535e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"00639b0c2f6921bf7dbdf90bb58edda6f55a535e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.2.1.tgz","integrity":"sha512-Hs62AAksXqUgUXzy8jRSoQMIRfd6uaYTyUHzYXkK8lB71wXERwU+96Q0oGTibbU/LcKfkdYnWcYSUe4ZzSJudA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOZNqXyEDtASEFfV6Y7g/FgadTqt+tA+IUxqd683QBMgIgNZS8eQ35sjwoMANpsaQ7HdeKaWzsaGDArx5UcK69YHI="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.2.1.tgz_1499314399349_0.9043680478353053"},"directories":{}},"4.2.2":{"name":"ng-pick-datetime","version":"4.2.2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.2.2","_shasum":"13bb80ad20b9c113774d961bfdceddced3dde8a0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"13bb80ad20b9c113774d961bfdceddced3dde8a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.2.2.tgz","integrity":"sha512-PSMgiyG4dCY6Wh+a2EVBPttIxSwd41D2qqXxxOhxs3U1LdyNRyNIVx4n1kDPH87Wq1vKQ5UT1wxTNYSR07gipw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOVwYqW5pRQTDM7lYuWwe6KTYcXzKwotpUSF9bqSyPkAIhAPIPeW7yl00LBLSE2BCQqJr1eE+Y0SLjPOIhigowApzd"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.2.2.tgz_1499328159814_0.9395201362203807"},"directories":{}},"4.2.3":{"name":"ng-pick-datetime","version":"4.2.3","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.2.3","_shasum":"e6fd738b222bb6c1e5a871ce229d7773451e25aa","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"e6fd738b222bb6c1e5a871ce229d7773451e25aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.2.3.tgz","integrity":"sha512-X/WIAH/6JvL8Dn9uaHLWiB9IUOqxRZiE4t0naIPkZqzM/tV0RpbWLGgBUZNJN2ksgk9KB9W4nNCqjduvSfRxdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCboURkQdhkganiqgUjoY6OSA8K8FPobEDj+rTeA4uqYAIhALd81WpKxtRZvwNHDKLW8LsQo24lRH1jbX/JCOW/tRp/"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.2.3.tgz_1500274818802_0.2661608289927244"},"directories":{}},"4.3.0":{"name":"ng-pick-datetime","version":"4.3.0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.3.0","_shasum":"9ceb210b5105685f9fe7b900c6e4b85a744595d5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"9ceb210b5105685f9fe7b900c6e4b85a744595d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.3.0.tgz","integrity":"sha512-pZMdCuVFj4pEA1Y0fi3xKae0AQjhElJFkm7xmy3uTKGpVo7GInWFzcohnu1JXjoNLb1qsugFLnP9kxuQ1roUEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF9csyOta2cLr+xK+Pv1BScVT0J5eytgkm8vsE/7P4BhAiEAqx1QnQXGr/N9f41dVz9XWZ1VhffcbfZ/sMy1nYmR6Sk="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.3.0.tgz_1500373264284_0.1012237030081451"},"directories":{}},"4.3.1":{"name":"ng-pick-datetime","version":"4.3.1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.3.1","_shasum":"b85f9f00e744a416cd82abe117e31c1c93ce5782","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"b85f9f00e744a416cd82abe117e31c1c93ce5782","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.3.1.tgz","integrity":"sha512-ihjWDIo/lnIpK/+mVk8HiUEV801q5XZQn0mmYkBO/UFE1ZUZCj9jJGaIyWXt6zkESiVfRFu8eblm05EHWeG5ZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAlYeXiFkSIqZQwTVPk4bKtXQDKXZTnud3pSt9BNA07uAiEA/JlU3blckMOa+4wFwQXxW20b+aO11T+JMan3xoz6VRM="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.3.1.tgz_1501923700523_0.3209833954460919"},"directories":{}},"4.3.2":{"name":"ng-pick-datetime","version":"4.3.2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.3.2","_shasum":"8501d0a6aefe432586bed4e9554674cdd07ede92","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"8501d0a6aefe432586bed4e9554674cdd07ede92","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.3.2.tgz","integrity":"sha512-BQaBPbEN24kC1qazjhV3Po3HCINrkHB8uDYQR6kQ7YPpISCDgMpMX3kDBAoRlcUedisNV5l1TvYVIJAzKjMZ/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHufQO7jERn6gCn5MSKzOIHjW7q6AptHSUFq0pfM4fU1AiEA4qb1oNTyl+IOUwl7jdCHXi0PNZb0XWPknfD+OwcjzEo="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.3.2.tgz_1502516908349_0.5011203920003027"},"directories":{}},"4.3.3":{"name":"ng-pick-datetime","version":"4.3.3","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.3.3","_shasum":"55fcbc487759c9b5decc97b6de4d6c48e4872eab","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"55fcbc487759c9b5decc97b6de4d6c48e4872eab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.3.3.tgz","integrity":"sha512-Sm3z+UIqY6USRb4eRAq91mHu8XQINZhjTfrzxxENvN6Sj9ilIiqIMDekFu1k843wZrBep6TT6Ce+JpLWlE9Skg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBoTZUwTQCkZrGjVf57q5LbfL+0VWYM2ZoyojNvX8O4YAiEA19+HlBY1BRMhTkFujRPHOzzYfDaWIco3elxQJbRYLgA="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.3.3.tgz_1503755487009_0.5247311815619469"},"directories":{}},"4.3.4":{"name":"ng-pick-datetime","version":"4.3.4","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"moment":"^2.17.0"},"devDependencies":{"@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@4.3.4","_shasum":"dfb5543c06ccd23c6c16a52dd1863385c6dc8d10","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"dfb5543c06ccd23c6c16a52dd1863385c6dc8d10","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-4.3.4.tgz","integrity":"sha512-bUupF/gjDUeQpIzNFDCCoYxWjRNHFm0CuIbu/5FVyfYy1RcJmxpuZVptwde+JgMqHOgrb/ALaDAv4iqKWUnGHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDT4LUckSBMc1/WiQ3Q4JwbptUUOg0dt3wJxThjJDpwoAiBqEFuA/F3fc7AWYpFmax2/UX4glJKQ8ik+WE1y4YhfUg=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-4.3.4.tgz_1503757247913_0.4393395557999611"},"directories":{}},"5.0.0-beta.1":{"name":"ng-pick-datetime","version":"5.0.0-beta.1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.1","_shasum":"98c3d4d0d1f38e8970a219bd4547c9a89c407929","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"98c3d4d0d1f38e8970a219bd4547c9a89c407929","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.1.tgz","integrity":"sha512-hO+W2UaxQcQDqfycfA0F8x0swR5QKfco40SgfC+aKQf7WwZZJ8Ag5RDWazwz0IQ1yzs1MvvsmeTI7tBlKWdb1w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDTPZl7gk2LF0fWnbUUn1fJCfNyzEMTO0FduMGo8weqdwIgWOwsuDFKUWaM3c2/3TONtmWIJ+x3UJaaMfjuyKPczS4="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.1.tgz_1504246800181_0.09658234938979149"},"directories":{}},"5.0.0-beta.2":{"name":"ng-pick-datetime","version":"5.0.0-beta.2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.2","_shasum":"9ad3f07e424820373a4c1edc7cb0010484289b45","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"9ad3f07e424820373a4c1edc7cb0010484289b45","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.2.tgz","integrity":"sha512-eodHJqNkp5eS7U/5G3MzUL2Nxztl7ShgW4d8bunEgGtuIAxOdZr3kcEhQufJKZ+2D6Y842pxWZX7oGb7wXIXqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDUI39Nr8PnlAlKldEX5KytOXmWwi5Y1/S5Fp8Q/shgYAIgLk3xjQryX7kZOUykLQ4oMqBZA8MsMy/wec2eA0YyTVk="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.2.tgz_1504247680871_0.8696695729158819"},"directories":{}},"5.0.0-beta.3":{"name":"ng-pick-datetime","version":"5.0.0-beta.3","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.3","_shasum":"54bf4ce70f8e2a4f2f295e8c48b09a35282615a1","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"54bf4ce70f8e2a4f2f295e8c48b09a35282615a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.3.tgz","integrity":"sha512-DD2/aBAg8FRa8iakC1vay4VjLE0keGQ+cTeu3iC15guIso2cXiqt5HyySN/M+qiNBUPlUDt2GMR4d8eA5dsUoQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGOTQpPum6P8+t84WMMwWNPc95/RSx7lzYw9fOP9rcrHAiAHIdbYeOUWnw6pKpJCV6RfYQ/Wp17JU7UzjXxc4CA5lg=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.3.tgz_1504400716869_0.36831105686724186"},"directories":{}},"5.0.0-beta.4":{"name":"ng-pick-datetime","version":"5.0.0-beta.4","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.4","_shasum":"193fa08aeea3e202bbe46994cdf25e8375c6edd5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"193fa08aeea3e202bbe46994cdf25e8375c6edd5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.4.tgz","integrity":"sha512-Kkkqm5E15F7JbJW18l5xatEiN0fucIJxMTjTODBNsuMpwliVco7g+1My2ikrLGMDyXW5Sw6gP/GY4Pq0R1NxtA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFEYCFmEKBCMElzCfQASzL8Q/kJLuaga67zPjdMMiVO7AiEAlFQ7PEI7x2OdKnJYKJVWOVLELrkKvZhTw1b+XBRO9BU="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.4.tgz_1504667789255_0.7363361467141658"},"directories":{}},"5.0.0-beta.5":{"name":"ng-pick-datetime","version":"5.0.0-beta.5","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.5","_shasum":"b75cbc238746a845f9bc29cd868008d5db66129e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"b75cbc238746a845f9bc29cd868008d5db66129e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.5.tgz","integrity":"sha512-DndF2Z+FSfNR0gnwoS3GKP2KE87Dy8ppEVT0VUy5/LJ+OJYzfe3Z4JwK4xiXEvxj21GTMIXN6XEtmXNAs/8rjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDsDBiLG48fo3sJhu7dEiP4qy3cuLZ8K539BnnTz+TZLAIhAIROlcg/gkFVSbizz2paMHNkHxlChGS7yupXkz6UQeSe"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.5.tgz_1505279495467_0.6473817832302302"},"directories":{}},"5.0.0-beta.6":{"name":"ng-pick-datetime","version":"5.0.0-beta.6","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.6","_shasum":"e4e48153bc8385008650ede09f280ce06793fe9b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"e4e48153bc8385008650ede09f280ce06793fe9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.6.tgz","integrity":"sha512-CTpYWUkO8YVtE26EtOo12aZM77Mpy1WWEMQ7QJhRQTLXXEg24f5l4kwbXPnlXv+3+S7TBalsPahTNZHnzaHR0w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD75xOCorGFxQo6DhCMZv5zTj1nrqkPpWFtU9Dl7/QsMwIgeEJCd+E66USjNYNE+1QUJsKmKO1yGFizJ5rOB/Hn3h4="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.6.tgz_1505874737470_0.4389520788099617"},"directories":{}},"5.0.0-beta.7":{"name":"ng-pick-datetime","version":"5.0.0-beta.7","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.7","_shasum":"e9879198abd52fff50181df30b06aa8c9cbc3c6b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"e9879198abd52fff50181df30b06aa8c9cbc3c6b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.7.tgz","integrity":"sha512-SL0Io0Mws/pdkUGXKEALyqmsdTy2v2fL387UU9sfle03davZ51hyWHycsrS74D56mUztKvHMeWnFMBnAuYIZmQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA67/nciFd+CzeWEvgx9XySIEU9MT73tG5cumjMfvYblAiEAqPuo4n2N2a+7Xgf2G5n66XbyUSi4yyy4aAFC5vie6eY="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.7.tgz_1506863041086_0.23489173268899322"},"directories":{}},"5.0.0-beta.8":{"name":"ng-pick-datetime","version":"5.0.0-beta.8","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.8","_shasum":"044ea49f8c9c519193086090f3b2f9fd858f8ee8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"044ea49f8c9c519193086090f3b2f9fd858f8ee8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.8.tgz","integrity":"sha512-n14A9mk74T5wjaE3EdBmyg0GsX6Bvt7+0e0XkWMFsPpZSQrFkzkhVotWb+pfGY2n6Lfe0pW8+iPMcGhduELzjw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD9YZ/lmiMs29lNLLgX5ujGxy4Q+1MDWM6U9DCTMQ8jVQIgWyHR8FDKOCOYOqO6VBoLAC1Ki7kTj6+UZ+CBrcVnBlg="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.8.tgz_1507297498956_0.2991864080540836"},"directories":{}},"5.0.0-beta.9":{"name":"ng-pick-datetime","version":"5.0.0-beta.9","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.9","_shasum":"090ce12d19159306ac7270114c0f67b53d70a7dc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"090ce12d19159306ac7270114c0f67b53d70a7dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.9.tgz","integrity":"sha512-GkYMhKTMHwCUpCHtQHFvZwxmUkPKkCW4o+zNUSqziPO0jaC79/bfyYbF6Koonxg0ZYU3sx2y2nXLLa7pCynY7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBMvsM0KBDX3UJQBkrZPsXph005m9nVQaDHn0ixjXXOrAiEA2v75U7Yur43ckw3t105aXoZZXOM3mkdUkILOwIuFHt0="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.9.tgz_1507298825393_0.19183152471669018"},"directories":{}},"5.0.0-beta.10":{"name":"ng-pick-datetime","version":"5.0.0-beta.10","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.10","_shasum":"9d8c66ea83e956b11cc621f8541f51edfe29c4cb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"9d8c66ea83e956b11cc621f8541f51edfe29c4cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.10.tgz","integrity":"sha512-8LoCyW2wX0qBb+PwJIzAmEQ6wjWBGAaQ6s0KW7fEg+rpexzfR1IlW9Uf4B6KvTyyK2Z84WHfe5xm2nnNCwCCZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGt/Mt1Ib0opQf5gJdLSvTLWddf0RvbSCYhaxVJ82hDCAiBAiLu0P6EmO1mk1GyuO6T6s/34WaCuAM+KqnG8H8Ov5A=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.10.tgz_1507935211295_0.6483796308748424"},"directories":{}},"5.0.0-beta.11":{"name":"ng-pick-datetime","version":"5.0.0-beta.11","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.11","_shasum":"2ce37e50b3f04d038953b6fdb6c0fc3fbc91aaa0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"2ce37e50b3f04d038953b6fdb6c0fc3fbc91aaa0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.11.tgz","integrity":"sha512-Jd3Z24M4ATbNcJlsU1uM3CUHIyJ22ZWZLuqPn8m2F8VdVuAHy6ZmCoCkSAUAApmsNfCM9MoWE68AH/cTsxOWGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDG+MZfIBqmNK82cruu+ne5lHxKWDbADKw+bjx4LE94/AIgH2r0fLnA/CxiFxdprMpGImIpgPDuTWS4C0c7tiskvR4="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.11.tgz_1508374517430_0.6160718905739486"},"directories":{}},"5.0.0-beta.12":{"name":"ng-pick-datetime","version":"5.0.0-beta.12","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.28.5"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.12","_shasum":"81375d9eba54441d716cd9ccee40ceba84095a9c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"81375d9eba54441d716cd9ccee40ceba84095a9c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.12.tgz","integrity":"sha512-P5lsE8mVrcbk2jlEZxCE94huZ5y/73W53/sbtS6G8lPvzEcLH8gmwlE6JsenPFLSPZxBtpOVDCzdp01zumv2YA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnm5yr6NCJDACzi7/E+EGOUslP8Lgxlm4+FTimS3SNgAIhAMpdxYCTYnleT25P+AKoZrpQv/0pL8HXbhQ/MgxShYnh"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.12.tgz_1510571740101_0.19008109555579722"},"directories":{}},"5.0.0-beta.13":{"name":"ng-pick-datetime","version":"5.0.0-beta.13","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^2.0.0-alpha.7g"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.13","_shasum":"c3cb6ae8cd332234412d0a3ef7970f281c7a08f0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"c3cb6ae8cd332234412d0a3ef7970f281c7a08f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.13.tgz","integrity":"sha512-lGFdL7HkmA4ZsjKV+evo6/JVBhP/SiJAf6QG4AF6dq9UcehngUEtSZ1Pmdv1ajB26dqJ5gvJNPu3CiUAQO947g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDKgIpO0PyWpAimcEmiC4OFoTl6wdDAmKDc2zGdamwQjAIgSfLj9bab0QmHE0euUcA7Up0yU675A/HbEkSlvXv9hWk="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.13.tgz_1511821530870_0.13368839444592595"},"directories":{}},"5.0.0-beta.14":{"name":"ng-pick-datetime","version":"5.0.0-beta.14","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^2.0.0-alpha.7"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.14","_shasum":"7397ecd3ab0d96c514a719bacfbfb7ae28b42490","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"7397ecd3ab0d96c514a719bacfbfb7ae28b42490","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.14.tgz","integrity":"sha512-Csg9gkaV426xLTGGfAw1V+rr6RA5/Cr/glG0PL0YraePPO/vAU3IpW3CUi13qzolAZ1+L63mDfA3hNiws0xTCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDpceVAylkgz0eJFo31M0ompv1xVVky5OmpVoI2t2yC7wIgYBhQvLcws/Ti38jlFCWP/78/rItWCQkUfENjmiye5I8="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.14.tgz_1511821981328_0.5076255789026618"},"directories":{}},"5.0.0-beta.15":{"name":"ng-pick-datetime","version":"5.0.0-beta.15","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"start":"webpack-dev-server --inline --progress --port 8080","test":"karma start","build":"rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail","bundle":"webpack --config config/webpack.bundle.js --progress --profile --bail","rollup":"rollup -c rollup.config.js dist/picker.module.js > dist/picker.bundle.js"},"jsnext:main":"picker.module.js","module":"picker.module.js","types":"picker.module.d.ts","main":"picker.bundle.js","dependencies":{"date-fns":"^1.29.0"},"devDependencies":{"@angular/animations":"^4.2.4","@angular/common":"^4.2.4","@angular/compiler":"^4.2.4","@angular/compiler-cli":"^4.2.4","@angular/core":"^4.2.4","@angular/forms":"^4.2.4","@angular/platform-browser":"^4.2.4","@angular/platform-browser-dynamic":"^4.2.4","@angular/platform-server":"^4.2.4","@types/jasmine":"^2.5.36","@types/node":"^7.0.0","@types/selenium-webdriver":"~2.53.39","angular2-template-loader":"^0.6.0","autoprefixer":"^6.5.3","awesome-typescript-loader":"^3.0.4","core-js":"^2.4.1","css-loader":"^0.26.1","extract-text-webpack-plugin":"~2.0.0-rc.3","file-loader":"^0.9.0","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^2.0.13","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^6.2.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-sass":"^2.3.2","gulp-sourcemaps":"^1.9.1","gulp-typescript":"^3.1.3","html-loader":"^0.4.3","html-webpack-plugin":"^2.28.0","jasmine-core":"^2.5.2","json-loader":"^0.5.4","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","merge2":"^1.0.2","node-sass":"^3.13.0","null-loader":"^0.1.1","phantomjs-prebuilt":"^2.1.7","pixrem":"^3.0.2","postcss-loader":"^1.1.1","promise-loader":"^1.0.0","raw-loader":"^0.5.1","resolve-url-loader":"^2.0.2","rimraf":"^2.5.2","rollup":"^0.41.6","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^1.0.2","run-sequence":"^1.2.2","rxjs":"5.0.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","to-string-loader":"^1.1.5","typescript":"~2.2.1","web-animations-js":"^2.2.2","webpack":"2.2.1","webpack-dev-server":"2.4.1","webpack-merge":"~3.0.0","zone.js":"^0.8.4"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.0.0-beta.15","_shasum":"9faa01c9bacc5a01dc9b27cdb3e261325e15747e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"9faa01c9bacc5a01dc9b27cdb3e261325e15747e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.0.0-beta.15.tgz","integrity":"sha512-UnUvwz2PRLPcdmE/FDZN7accIfKlpUCZUi1XVHFV8oxJ50x6PCUXU3Ivu3vx4dXY/yrO+X30C2ywLz/YFY6Ubg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAQedSiSjBs9ImEWjbQOfR5vjJoXD2TL01TlpiOsr9EPAiEAsz2V5XwK9uD9Ivs1hh9epBlsHNQQKQ/nOvo/GRmg1So="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.0.0-beta.15.tgz_1512339215708_0.4593628062866628"},"directories":{}},"5.1.0-alpha-0":{"name":"ng-pick-datetime","version":"5.1.0-alpha-0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"ng":"ng","start":"ng serve","build":"ng build --prod","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/animations":"^5.0.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","core-js":"^2.4.1","rxjs":"^5.5.2","zone.js":"^0.8.14"},"devDependencies":{"@angular/cli":"1.6.1","@angular/compiler-cli":"^5.0.0","@angular/language-service":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0-alpha-0","_shasum":"72a8d4679195b12c481b1e6bb15efba9902d88fe","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"72a8d4679195b12c481b1e6bb15efba9902d88fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0-alpha-0.tgz","integrity":"sha512-4Mu4vCSI/Fai6u6kv8n7sPBwCyR4JV5ZIj2Rkv22D2e7qD37QrnqTNLVJ8gnlNhAoA+XzctBtaFpQCxvcFgVVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBZcGhjBQTvGiqeQyi28vKhrc4CllM88CsR6nDirWGyAIgZYNpLCW2Yb2int6niYocQL7q+F7D6MWvSrUUI0yxLSk="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0-alpha-0.tgz_1515785507968_0.6672085409518331"},"directories":{}},"5.1.0-beta-1":{"name":"ng-pick-datetime","version":"5.1.0-beta-1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"ng":"ng","start":"ng serve","build":"ng build --prod","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/animations":"^5.0.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","core-js":"^2.4.1","rxjs":"^5.5.2","zone.js":"^0.8.14"},"devDependencies":{"@angular/cli":"1.6.1","@angular/compiler-cli":"^5.0.0","@angular/language-service":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0-beta-1","_shasum":"0ae4c92ffd6699d53ca31cf78d15d584c99e39ca","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"0ae4c92ffd6699d53ca31cf78d15d584c99e39ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0-beta-1.tgz","integrity":"sha512-I//d9oTzJZmxQfQL6gWsEvQS2x9N7cT3szEPo9BQDECj4X3yYXMbcatKsHIFfX9Hp9MpML13VlADNWWvaZssWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCqRxwtnRGfEMEc9H2IEFtdcaeA85eJUk1l8i/oFL4YbAIgGRRGqKcfpz3BkDvmKZHkJSbg1FLlAepgeZqyWtJ6Bzw="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0-beta-1.tgz_1515786899917_0.2786071505397558"},"directories":{}},"5.1.0-beta-2":{"name":"ng-pick-datetime","version":"5.1.0-beta-2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"ng":"ng","start":"ng serve","build":"ng build --prod","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/animations":"^5.0.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","core-js":"^2.4.1","rxjs":"^5.5.2","zone.js":"^0.8.14"},"devDependencies":{"@angular/cli":"1.6.1","@angular/compiler-cli":"^5.0.0","@angular/language-service":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0-beta-2","_shasum":"6e66d5e61c52db3fc05542839f253d5fca6d345e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"6e66d5e61c52db3fc05542839f253d5fca6d345e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0-beta-2.tgz","integrity":"sha512-w+9E3mFSQpotL5DQy+UtlL10xrf4PU+WFcTiA7hChyFOYKY32Z5Xss2ZJIYyr85FYFd4jbq2pz61y85gHZ+3Wg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEv7eShZ8RRU51Avl18zyDFuknlwaP4Az8Kx2opSKcJDAiEAtOXKceF9QSNCr55W0/xpWevRUTjsFYtqWhe+7a4Evvg="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0-beta-2.tgz_1515888348892_0.32401492027565837"},"directories":{}},"5.1.0-beta-3":{"name":"ng-pick-datetime","version":"5.1.0-beta-3","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"ng":"ng","start":"ng serve","build":"ng build --prod","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/animations":"^5.0.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","core-js":"^2.4.1","rxjs":"^5.5.2","zone.js":"^0.8.14"},"devDependencies":{"@angular/cli":"1.6.1","@angular/compiler-cli":"^5.0.0","@angular/language-service":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0-beta-3","_shasum":"c6339265957f2eee8255dde121d12ccc3168b1b4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"c6339265957f2eee8255dde121d12ccc3168b1b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0-beta-3.tgz","integrity":"sha512-6usla55vAMlkzumtU6+D3GM/1gElGey5ilqsvF09DPkGgmMF5QI6wHm3ZGllW7zkQzwJzOaHKZXXDE9M6OoVmQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKOzdBDodecm2/+ow4bnWOuqec4T8lydNSnOPEWO6mHwIgbYby3Ww5lDMIFMDQ8tJj6X/rmQ3nXUbiAHqvImU5+Og="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0-beta-3.tgz_1515905572138_0.38294734759256244"},"directories":{}},"5.1.0-beta-4":{"name":"ng-pick-datetime","version":"5.1.0-beta-4","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"scripts":{"ng":"ng","start":"ng serve","build":"ng build --prod","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/animations":"^5.0.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","core-js":"^2.4.1","rxjs":"^5.5.2","zone.js":"^0.8.14"},"devDependencies":{"@angular/cli":"1.6.1","@angular/compiler-cli":"^5.0.0","@angular/language-service":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0-beta-4","_shasum":"0b65262266c4f7ac68dd7511dfe4c1366fecd06a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"0b65262266c4f7ac68dd7511dfe4c1366fecd06a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0-beta-4.tgz","integrity":"sha512-zd/boL3wB1vUHrBMhaWmMKq+F4UdhbXgLjc/0LZp88mqBvYcjFoDB5+wjjCSs0W1gxO0T9UYmfU9Qcwn3wIfaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDLvn+pNy5TSkIJzWX649R4TGSa9iN6BnE8sX/aMkMowAiBxCrH8Doio/RLtvWxoRBC/JH+YV7uHwVnOAYIYkO40AQ=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0-beta-4.tgz_1515906482153_0.997878112597391"},"directories":{}},"5.1.0-beta-5":{"name":"ng-pick-datetime","version":"5.1.0-beta-5","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0-beta-5","scripts":{},"_shasum":"2964c150eb0ff39c7a09073a63b316e47746c2ca","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"2964c150eb0ff39c7a09073a63b316e47746c2ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0-beta-5.tgz","integrity":"sha512-zFuc2Lo8v7ZtBpssKP8Iq/upbJryyhNMa73u8hgU46CRAgWTQlxPcU8ykxUTEvKftLkjeoPsaQy/MOG5roqB6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDWeqMgWxQfqPdVNfd/n1z1YsKModK9EiKtvFY65aUvHAiAPIs3cag/EaHPLnjm4iWMbqpnRoVihpCOrVVt6mFjGJg=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0-beta-5.tgz_1515975426761_0.2591352663002908"},"directories":{}},"5.1.0-beta-6":{"name":"ng-pick-datetime","version":"5.1.0-beta-6","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0-beta-6","scripts":{},"_shasum":"1e394faa332c613b9105d50c4c85c6571a535cdb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"1e394faa332c613b9105d50c4c85c6571a535cdb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0-beta-6.tgz","integrity":"sha512-+H0pje3mOohw0Ce4YqhhtojF+5UFRmQd3wt/M0eppPOk2dVidnOatMVDm7+eT9d7Gxpmee18F/nHy4FC+yv4zw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQ31BppcAsgW3cDQnjUHMhU2fXj+l+8RnNxli7qvcbLwIhAJm0or/v+dFI2fJMq2mmi4lSbq5KIKmjqySfjlhD+U1+"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0-beta-6.tgz_1515979733063_0.054323363583534956"},"directories":{}},"5.1.0-beta-7":{"name":"ng-pick-datetime","version":"5.1.0-beta-7","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0-beta-7","scripts":{},"_shasum":"edbf36741acefad6c38ac58c0c66bd04bb1054e7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"edbf36741acefad6c38ac58c0c66bd04bb1054e7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0-beta-7.tgz","integrity":"sha512-ZRV0aqpRroxZ1RVvKmaUqswS2x2zgVJ32S7rluB4SoPd0CNG8dQRQMnq9rvu76/5CY72zbBZKK608FaCRFOzIA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDlU4ghKXgxJNCd+U7E/GGk9NLp2+kG/cKy+7+mLdQzPAIgbk6IqdZaxy0mqSWcxCswIfX4oGPSvj5avefexWZViuk="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0-beta-7.tgz_1516028504562_0.6372282502707094"},"directories":{}},"5.1.0":{"name":"ng-pick-datetime","version":"5.1.0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.0","scripts":{},"_shasum":"5bf6b8796addfc0605f33a42f2686d98b910a5e4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"5bf6b8796addfc0605f33a42f2686d98b910a5e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.0.tgz","integrity":"sha512-eg6RPOpBdwMe3AplXkjCRP1iDejHIanEDfGWmizC6IIfJf+RnL5nvYWXgiWLFi17d+nKBty4jbchytgFRzE5Rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICsyfN+KBBeg4kELaEOBrwsUgAHn79DlLtJVkfFr9iU2AiAeiqjlF4Z40jFSBKyR5STm6lRrkcVB5fV9jrgWhRJnkg=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.0.tgz_1516156953466_0.6912230227608234"},"directories":{}},"5.1.1":{"name":"ng-pick-datetime","version":"5.1.1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.1.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.1","scripts":{},"_shasum":"05bf810a880210b913902e6a41228ca460f10883","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"05bf810a880210b913902e6a41228ca460f10883","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.1.tgz","integrity":"sha512-hOXx9pZWiJQzCdTHDT0dPcOt0KoRqPR84yU6+tR3kuytiih7poFdo84MWekH73XgDTqFzL9ynfHOXrfJlziY3A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYgsNfl5AckJm023bgzse8o+YF/f1Wi+q1qdcxz2FhRgIhAJOmlFvKwtKdPqy+KMkzFYSFkmr0ifCJ0PzDwr7zDLnw"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.1.tgz_1516857171941_0.9208915822673589"},"directories":{}},"5.1.2":{"name":"ng-pick-datetime","version":"5.1.2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.1.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.2","scripts":{},"_shasum":"e96aaab132569efa8bf6df0308196a5775af6510","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"e96aaab132569efa8bf6df0308196a5775af6510","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.2.tgz","integrity":"sha512-hsA52gZMwBdX6XYRop91DA7IEC3CiVikY5/eBVhC8Qe7b72LvwNLJJIp8sxKuImzaWKOTwaAEzoqiXL0+am4cw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvDXBEWCBgA1rm1IP0WuNAICvVtOaLOwTD3N/Acv9EuwIgaxUv5Eo1OJNL3W67HWapuLZspdeCg1qW8YlAswvjEwA="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.2.tgz_1516882912800_0.9350116634741426"},"directories":{}},"5.1.3":{"name":"ng-pick-datetime","version":"5.1.3","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.1.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.3","scripts":{},"_shasum":"2a8dcddbb4be3cd80d944dd1d9bab6588d814443","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"2a8dcddbb4be3cd80d944dd1d9bab6588d814443","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.3.tgz","integrity":"sha512-KQ908sm6En7EF4HiwcokUXdxTDwxDFksNWUVjFvCOZ3FYUpx9q0kHrtl4K1yyHTxuRBRIF3OP4VNeez5Zcqm/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCdqysN5x4f4wpZmtRIOQgshk5gX6RYkftWxzMKWk3pCwIgNeojUfm7Bcp0Q7w/BTmZIdB7Sc06NjopJ/qfnVewNGg="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime-5.1.3.tgz_1517008528966_0.41121141612529755"},"directories":{}},"5.1.4":{"name":"ng-pick-datetime","version":"5.1.4","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.1.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.4","scripts":{},"_shasum":"6d9b0f4c88bce1c1742c955700c6d7efdddc60d0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"6d9b0f4c88bce1c1742c955700c6d7efdddc60d0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.4.tgz","fileCount":95,"unpackedSize":600659,"integrity":"sha512-0XfwJDz0g9KTWbjpBI21NjoFeEC4cJaxkaCRvEQu8RMCeSE0vcRiUbdNQqb4+Hm85jBTSIyG5vupxu6u3aXD8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICeIZzNxysCWbuGVePC7+UEuzl9643OIO6nSVAJCrCHxAiEAuGh8f4G5abxvzJel0kd+Z7IQtDnrumhNMjeNXlKaJ9I="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.1.4_1517962690524_0.9289712316949155"},"_hasShrinkwrap":false},"5.1.5":{"name":"ng-pick-datetime","version":"5.1.5","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.1.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.5","scripts":{},"_shasum":"0edb96c3330cb9198ca18ad07d731dee4dc811a5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"0edb96c3330cb9198ca18ad07d731dee4dc811a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.5.tgz","fileCount":95,"unpackedSize":600724,"integrity":"sha512-Ixa8BuLI88QHiMl3/rY3PGh6WQ8K1q/cKoieHppIw96xgomMK9e1HFOq0xNDJkViteo5wZm7jXRqhCL4jMh3oQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGQC9PSd07+HIZP5B/ri5AFuzy9a6beJn1sWp7P4lOC7AiEA2Lud0x44Qk0d2EtbCS5HlzZVb0EW2RrtMyKgMZKKz9M="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.1.5_1518092879386_0.47768858612663445"},"_hasShrinkwrap":false},"5.1.6":{"name":"ng-pick-datetime","version":"5.1.6","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.1.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.6","scripts":{},"_shasum":"6a4a866d8030c76f1a3a5c372bebdc4f28e5a7b5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"6a4a866d8030c76f1a3a5c372bebdc4f28e5a7b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.6.tgz","fileCount":95,"unpackedSize":603604,"integrity":"sha512-PAAg+lomHXvxehffhYFOHFv11mW8hurrmjYssIipESe+N7s1orQRR6+kNU32SdGU0j3gYQwAXuVv3FyF8Wr6xw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7USoPf7qhnnqmlWy+sXPFgsBEbSFya6UMlsS+CwaC3AIhALMDOgF2TqYNkGrmy9Qv12QAd77d6wNsZMGi3AS4Aj0k"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.1.6_1518478659672_0.9820574622364555"},"_hasShrinkwrap":false},"5.1.7":{"name":"ng-pick-datetime","version":"5.1.7","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.7","scripts":{},"_shasum":"dda5a516d79d164f04ee55077b4fd07646e3d8a6","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"dda5a516d79d164f04ee55077b4fd07646e3d8a6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.7.tgz","fileCount":95,"unpackedSize":606894,"integrity":"sha512-gGIsJb1WsBqo8L8EzX/rCc2/hmrkPgumoZOb63jvUSiZx9rlF+htRt8diEA7LOzkpOImG4WXFr/QAqsVjuAskw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICeXuXhyLhl9oZmlg6LGdvwQ406uU8eFZY+PTgAGPsKjAiAq1C1svXTx223uExjp9lIpci83oivrZ+7aTBf0ejwIvA=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.1.7_1519384939397_0.9521248020212403"},"_hasShrinkwrap":false},"5.1.8":{"name":"ng-pick-datetime","version":"5.1.8","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.8","scripts":{},"_shasum":"5e9978fa73749dd13b2b8ed0966809503cc71244","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"5e9978fa73749dd13b2b8ed0966809503cc71244","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.8.tgz","fileCount":95,"unpackedSize":615052,"integrity":"sha512-hMlJimmEqs9CUYUSv1P4R+EM/ZR5GOAYgVpxkorWArm98ohiIYYJYgXIZarIEQG/0sF4HqRT2gHYbXdjA3WbpA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGJu4nJVwr9wi4tcAMpSiHU50wSNzNpBszCh7hNkCKamAiEA8DU7VWZZvJRe7b5Qnato+IJAdjbYDPOYBNHi3f0EssU="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.1.8_1520318585731_0.07585833661361052"},"_hasShrinkwrap":false},"5.1.9":{"name":"ng-pick-datetime","version":"5.1.9","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.1.9","scripts":{},"_shasum":"690976bb4dcfb52f938e35332132ed9c9b4a8ac5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"690976bb4dcfb52f938e35332132ed9c9b4a8ac5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.1.9.tgz","fileCount":95,"unpackedSize":617621,"integrity":"sha512-HW/cYkawyGXaVSHGSpqHGQ/hacEwa96IOzuCu5pQMl38cDLn4IeItuo4ar9V9DpsDSGISRr7hwVvNCRfsHJ33A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCj4x3X7XQNMmhSsgGie5dFWh30p4ef3uywkKQIAinCfAIgdNarau1uNhguChBfQu2Avo6qYvBXPcV4bdsBaRCM64A="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.1.9_1520677247355_0.771934194970991"},"_hasShrinkwrap":false},"5.2.0":{"name":"ng-pick-datetime","version":"5.2.0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.2.0","scripts":{},"_shasum":"bc18b5c7d38cfeb8d69ea7a5cbc3ebc36abf503e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"shasum":"bc18b5c7d38cfeb8d69ea7a5cbc3ebc36abf503e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.2.0.tgz","fileCount":95,"unpackedSize":626925,"integrity":"sha512-XWRVubhMprbkP0Kys6mhlW0qGUw1UgWCNd3VDZTBABE+QSKbhpOReYHLBNVxnegdin1IUbkxg25i8ouz5uLRiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB0aRQXcOB86VDi9NeswuQ/9FVzT5wXoAlCxeasit7LtAiEAkGW/8y+k17In1H51qKw3ZNqY9FKAEFh5pLiizV+RDn4="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.2.0_1520736240240_0.6774093313585752"},"_hasShrinkwrap":false},"5.2.1":{"name":"ng-pick-datetime","version":"5.2.1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.2.1","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-yJpJAmCzpTBzmvjPFFOBA3L80Mw0xKtVFFXwdo+poOtwKkk7nnNQzZ9bS1VJpzZvyrVFftSqKQrf3LAjsqJoXA==","shasum":"a1689113bb4a0c997e101712178b2b336433eb1c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.2.1.tgz","fileCount":95,"unpackedSize":627931,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEXljwdkeSBAlBsR4u1hGVjdSt8kHRvcYn6AXSpF4nYwIhAPTLwOTf/0NZIi3ufI8T2ZfUE9+prxOo8MsvpwLk5gOQ"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.2.1_1520972148500_0.6121051512866997"},"_hasShrinkwrap":false},"5.2.2":{"name":"ng-pick-datetime","version":"5.2.2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.2.2","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-KREoQV3nZJZ3RqlKcfD+/7gGe0qA5Mkhg4DT7XSNo7UdwoEp+KNuCQ36xE6BJGxAenLS7qQ7b+XF5aUDUf2woQ==","shasum":"990db962cba26ce089f7a3669a3063093a0432dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.2.2.tgz","fileCount":98,"unpackedSize":680801,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDjN2ZQ2Jgxr+uRJQEHlHjxbsMgZc+hpk4tQSiv/Q22UwIgKZyTPzVLEyPmhhXei4LlUIR4RjQKxPbt0kuFidMjVPo="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.2.2_1521292526163_0.5809266678620033"},"_hasShrinkwrap":false},"5.2.3":{"name":"ng-pick-datetime","version":"5.2.3","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.2.3","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-WClrQgvCXig5JeM75NHoFzNeHDpTcott2CBTGSHPVuRTZ2BqUBt9lMtyk4xxtH20KfXej5tDL86faQ2TYHXrDg==","shasum":"c7973f9ea78c57764cdebdd517295a0857dc72c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.2.3.tgz","fileCount":98,"unpackedSize":683470,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGq9WKNoliHLxoT7c2pMGYQKlvDeiQQFxnOcfPAWx8XSAiEA103o28a/c+5P8ptOIWNyLtBSOYABIuV64QyV19r0vus="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.2.3_1521681787725_0.0744980673082849"},"_hasShrinkwrap":false},"5.2.4":{"name":"ng-pick-datetime","version":"5.2.4","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.2.4","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-Yi2RBPPKDfcn7PmEyJeICJ/rJxEMu+VCZFVQ2ENdeDm8Ea97OIjoUlmUkfUTaZzwX0oSAjz6lGyaRAdfoYTM0Q==","shasum":"22da18c0d0617a07e4b182e3d738968522c2afd1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.2.4.tgz","fileCount":98,"unpackedSize":684130,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDUg8snpUT9APzdp9olLRfOeJokoNoPQw+DPwzLW+z+wAIhAK748FablX/Jet80XjPp//5/YZLTjNEsTGlt1CEZUT/4"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.2.4_1522811956324_0.4151409404522395"},"_hasShrinkwrap":false},"5.2.5":{"name":"ng-pick-datetime","version":"5.2.5","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.2.5","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-mfr9QivAy30A4aQ9v61/vTkQpDx+DZToBdnhlsZ58ebcbWhCpHaC7uygsvLZYySJ73A0dBhA9F2cFo402JST9g==","shasum":"96b47d285a2788c7ce538f2471e8f34983823379","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.2.5.tgz","fileCount":98,"unpackedSize":684130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2IV0CRA9TVsSAnZWagAAkkkP/2HFZOmo6ynxhL0ypMdD\nqXdLDjDecOHjudg3yqdxpspFEuYP2jOV01mK3Ify3aHdrh16r88RL87BnA77\nZhd54CwHSjNHXNbZEiyAuMDFkcsrhw7wqlhjKc6pKLW5R/Y5y0Hxl0reT2SZ\nIIWbKsxtx+iDCfxbeVhvub4A/OCLN89KIxFoNQcMTzSMUVXJl/rLFT/+dbgW\nlIkn+ZT0oHUzD1XlPOV/nlNLSkNJ0q7BMNJO8CEY94aNZJHKLJEaP7x5oGp+\nqydURJ0Jd/1jVvRw7+ogibrY3oU3uLUT+MG1hSbdocbiAuuZBBXd3NByGNnx\nFhKquWMiS07/8MXMXB+odUQ7RKunow2orLc+J83XU9/q0Qemi+ycl13mq04u\nmOz2g8sbYzUJ3Cj0Oup3UxqfiyfxUdsR+4fLiXD12q91BchMDXGkPeFWidKm\nkMP0792JvsDR25b2pmXqmq5pcPZGJz+k5KMtKc8wmBMBm8sNPkjQsRsISJE7\nAfkmSb4A8F3CXwfZ1EJU76pVMLjn9wl063wDgApYLAhQoVhf2bDdo2vS1P3K\nkxHVMEruqkzDKQQVsL3enBvIlKSNxae649FR3KuOyuRz6HnmDx1tyGMk9m9G\n9Amb7pZ+/tgHnnZa3WJOUGOnWNB6OyP8pyWcb7CLV2mXO5kmoRmIEtKqLi3V\nZdpd\r\n=JlSa\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwae3BxEV1E9M7ewWN9QBhM8ZZrWJvMs6m2XVEMdPwBgIhAJ/6n+mYccbRRmnDOdmFBuhe3XuExk3+rwErZKJsTLg+"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.2.5_1524139379356_0.16624368750181162"},"_hasShrinkwrap":false},"5.2.6":{"name":"ng-pick-datetime","version":"5.2.6","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^5.2.0"},"devDependencies":{},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@5.2.6","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-5vXK+qCKn2Jn1GvcZTd7bYkkiNIrpEk147l/wSRlgitZHIiswsNCNfceNCSvZvgrQL2WncNvGKzDX8zM4sXu3Q==","shasum":"a51f3443eefd5944ae41c556d81fad0c141a412b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-5.2.6.tgz","fileCount":98,"unpackedSize":684083,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3weTCRA9TVsSAnZWagAAiBQP/15cXVwNW2qlp+rj87SN\ns7YvbWGV6KqMcnkWnfpgrc8kDqIzH+k+zteikTuegaJXc8++OPfzLYax91P5\n7fCSSVVwQJ9Za/eFj3biur0QdfEUFoQlc/Gwh9fHVwsyS2hYOPsoeuLsUqng\nI8zJ4IsqABZ/HW5jz6GsXBcRtCB/J/OKR8WJBZc8SgioYvL8btKArwvOKamf\n7+Sp1eAK7v6qlgw4F57wQs2D70nionBweayhSYZjLQW6arQOZB1FnsnIWaud\nHM0oHVvsuJBy5Wn6/7iK4xTOrXgFrJr7+DJGIztl2SHE3bjpiza+mH+U1w1u\nRAhMJMWDRkkZtsNRqL1xX1GAhinFxr/mug+KB7CDrTMuMva0a8azL4v+IZzq\nXhtpSLZKr92GDrOW36z4OHVw61nMnOCU31e+tm2QRygHi0KEpykrDLvqX1nZ\nb/MgGsQCM/eT0wHnt45Ss3XnOYuER3API5BdhpNT+StaLMEA+mpIWHiJVl81\nO9eABf7ZBiDVsYauP0OV9R2ZzDANybpLpA+DwUsF9d3bjYtWMYe8w5HAB6Hf\n6JIfJTG6ekaXl8po3cntaJUOsQxt1CRL+0lkcC9UlKihYtrz0NTbAeHeLZGY\ncs5JQX1fNYKBzk6c3BVoy1t6f43WvLKaiEyh8jU8LFZulqWuk0JRVA3li+hv\n7B6M\r\n=P1tk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCa/maGFhekTcfQIez6/+59ZXJfjX2Zgif/uHkgr4JLhgIhAKB0dD3siUUu4ci0LiVx78/g1AX6r0luFJ8F2R6Jb85T"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_5.2.6_1524565905993_0.310616358265803"},"_hasShrinkwrap":false},"6.0.0":{"name":"ng-pick-datetime","version":"6.0.0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^6.0.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.0.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.0.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-1FkjihvDsBJyK9jFB6QeAohqIZQdP7II9V8QA+kmaIzmgnOqJMbnIVG30fSWiF3ucyBeouHXNjxfLBpTPyWfpw==","shasum":"1f81d305e9d35103b4cf9ec817326d347924ff12","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.0.tgz","fileCount":98,"unpackedSize":449297,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7wAmCRA9TVsSAnZWagAA8DYP/27Ywln139PI702ymVTM\nfqH/cDHyVHxs8GORkrG+NMVQjhgWzseMYmGumlCNaPbsAK30aKpqawqOBSL7\n9vjCYT5H7iVHfG2qk+/1cR8IqiwR3QzkJUHpwc3KycLShndmXkmJ1XgcU1un\nKV4TVBS6SPoIyhP85cgYd8UQvwGktHDAFbxzdjfURHmZOSfOGEbrYjTCzTRf\nBFJ/hdLv+kl/JaxHzL74HMe7dAYzJ+LHQwAERUAftk0GCKIgCNdPqWPqd5rZ\nOuTR2wYq+0J253JKcmgD0wCFuqyLl5W5HIptAbIoi5O5vzQZoEpw4vXd5Ui1\nOan/H4JoVg7+DxWVe33l55Gj1m289nsCBU+pSz9UDZr8h4olEkiIsXjZlz2M\nB3mY8Q8tMoIukMOeGcDseFnlbtplHnoFwDKbLEP5TvkXKrEemoUurU8Xme3G\nLxFGYbyeSCbSDSPHIBA9gduugRXqze/UQhP5dtUnqhD77nqAzAIRH+4yARt9\n4eqLB4Yivllfoy2P6M5flkQN0Kup4wNF7w7eJZ58HrwZpDnWJPfjLnfoktVW\nhD8SefY3Unz4U2cjpND9DVEpj4mQIN2Xo/Zy4GRQPNiH8ow38L9IfCpVUjVy\n7ie/RqEEz4aQ9F2yFeJIqal51FLO7es3rj3PqqzJ4sSMV+W6o/ZqnY6Ss96s\n3AKF\r\n=Zi2b\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMTCS5uLoFUJd4Ey2Ig61CSly4sfuYg+dVhxL96gFKXQIhAMHTZdP8rZ1SsPoRebQqsof/esMepTju0ZxniOzOgL2O"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.0_1525612580896_0.060643656225038534"},"_hasShrinkwrap":false},"6.0.1":{"name":"ng-pick-datetime","version":"6.0.1","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^6.0.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.0.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.0.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.1","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-zbb3cPqGY1RA46+E1St61ZsHdVp3MpMOvd8JynfGQRQdwQDP0u4x9UkCq/ABZO8M3HJRuqAsrouharJ7yN1Lhg==","shasum":"99d3c83908ee93c1b78b51a512e0a3a7585259c6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.1.tgz","fileCount":98,"unpackedSize":607723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7xSQCRA9TVsSAnZWagAAC0IP/0l7T+Jz3fPxPEc2OvLp\nca/ca0fQ4cIbO68dL1k4GZ7n0uusWURvidgvEGLsOTcJu946mUzr7ubFuSQw\nPsDFyUQiCm1YizpKVPpKw1DqIUSorDjOVnkx0CDLOOxgp/WJI0QXM14IOfC8\nA7wkrVLrLBtGiL4TZpYVb3/9ebpK5qs29VYhLXhP3YPxUAh4I5fIIZFBmeKc\nWGR/gAfdCFLbE2FXnVp8xFiKQ5ABGk1aDZmNPVpWxeAoHB3JUgCxVPDjhNcC\nTbuDh6t1S7vfohyrbXTssDJ3RJKlqNarM6sSdOJK/fjqiyhbjMWEqJu3jTWG\nAzyIuRE8v3njK0Bix0g9ayrGrWVmsBDZZZ1HSPOQAicRl0/s8aTvQAJ+m1xP\nvixrmoRqrPbyWqUG6RwTV2mLMqtYpTrtOpQYYfwVlthComtdg7fuGRjzSZvN\nv5PGc6qw6NTKLvjPNAkdgg/7naKJrAETa8QSC45xOj5iZQFNYlkOoAmGGLM4\nHpPp8CIupfJTwb54xwomt/B1CsSRfnCZFaYxDAbOTBLUONo9D996yvv3kFFs\n8fiBpa01tquauNSKXYJRlWBSkAMNAFxyi0XQKSGzW8JZ9apFyf8wLF4YKNHt\nmFP7Df2WhTMjNYa9nvUmnyj/7nsLoLrSWVCShnmydVVOcvh5eD6mn22uCjCB\nL+sv\r\n=j2bH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCI6TYbqQ3vX+lp8iHYF1U9WBku2DkNtuQU55zoDnnmLgIhANM1oO/cQH2m5FV2c2vWumi+hhAXRtabPSg0ZrxMCnMv"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.1_1525617807437_0.5630926204055848"},"_hasShrinkwrap":false},"6.0.2":{"name":"ng-pick-datetime","version":"6.0.2","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^6.0.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.0.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.0.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.2","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-iPj8/kH7kp7jOmIILf2Ir82LRfe9fcyGedwMqYxJZQg3Ck4xuSRZTyhJNJuXJi+5BDy16JB/klMvGUdkGUvvZA==","shasum":"66f6ea46aea83157b5a59fe0ce9aa9f62badbfa5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.2.tgz","fileCount":98,"unpackedSize":614367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa99OnCRA9TVsSAnZWagAAXggP/1f6S6yo0uS0eajhkGRV\n3sNy+sxT5V7qyK2htcOXcqCmBq2k+WgayWaURaxMUqzaADOYjm545c/oDotf\nr2lr1Df7N16sVM8uF1XXFqk/TZpderXnaNBnkpxyeESs+Z/kNjBkB6VSU9zB\nXPR6P1GZZOl0Nb90lyfmeTdiSgMreWxHQK3cU2KB8/BBaVYDCSoJ0u1gbiZx\n4Da9JwYj/L5I/rh+H3I08kA7jAQFdGrSQTLWjj2+tI2kW+zV1Ox7U83/IDKb\nCVZ3JiHiG/6IZyIxZukEi2tvcTGYjdrFYshBnWqsbd4GkhmbvJfbhedynH6N\nIVAsn7koDaJcqttuVEndhl+S/9CIhkFmYw4Y5Zf0XzsjGLNMt4Iv0RqOau7s\ne6Z43rKKGdMp0UBMnY5CpCX58STC39Zdh7/E6UA1i1ZVPUXVHjJfm3DIGtB/\nPKcGlrNeQgohh/kXH0D5lZMDq+zVDxoY2fx7Mmcr5BpQ8DmzPJ8hgVHJZ1DQ\nChSM/36yzrPNKCT8bRB1th06zqN+gsAGnDBvAgA7rxPCBVs1gQquNZdUXuRt\nytElHav8xADWocXFPC21e38pc8vEGLeVi8UZgihq0Y2hcS1Mjp9XpfjVKpGs\nYSitsLB08JcwLt6LrI5OhDq/U89HbhZ6/SyZk1yoSLaJkuP21rIUAjOhCHuS\nPYxN\r\n=v0Lk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDnogpgqfA5h4TmTG0NFUnOBQOU01FyPBF13BvAG+wgQIhAJuEDlVVb9Dpo0zihSu0P9gttE4UTMPzi/f04Nuqu/eR"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.2_1526191014064_0.2247985502097385"},"_hasShrinkwrap":false},"6.0.3":{"name":"ng-pick-datetime","version":"6.0.3","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^6.0.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.0.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.0.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.3","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-p1vEjkldgruMzIt7blu+nHPFCQXyB11LGpnuMsDU0gHRHS7KGRqd2SE95uWJLEeHiVVxck02pVr26uRcRa9aYA==","shasum":"da1b141c3155ce148b903270bac6b1ac5c2af600","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.3.tgz","fileCount":98,"unpackedSize":620087,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBokqCRA9TVsSAnZWagAAdJIP/iHkTX/PqwWtvtSRxZmU\ncwzvRQuT2nU09LX1h+G3wPLJCcUj2qyipQS2DLOP399/6+TNLjDUeKXQVihc\niMYOX+IHEVgteaOTiB79w11pPR1JBgtbuPyHI9ZZR0KVzSnkBhZXC4xb1VmM\nWpIwBBRAqcavB4WL/qrdd2iDmOIUaX7i+aEaxU8nm4OVbskrSRuKegXv5Dkx\nGr24vtFxJ+OeWhu5jA9f7Hh2a1yVWtcWitX840DF1zoWyFiOYx4jg7660JOA\nK6z6azllmwZAiHELon9PjAQbkdWbfio0TYdcGsEBBRzPVAGl0CcY5JI4qVYa\n33JQjoTDyZtHiQPpbE6yD8HNctXRhtkpgU+TQaVFDTAXGiUi2hfinTF7KbvF\nrgayQcMb99x/eRRfuZKxQET5TjYqLDnBntXIAfJ26VMTNoDk2zuTreVBsI3Y\neYeXZCe2ISjavsFxqtcRUSmm5d79QlmRSdO8w2HPraBZebcyISDx5OV0kPGo\nDKMsdUDmcriKQzZHbFSAQSaO3ZLkMDrY/1xKBvNySHdFhsHJ78DlvzZ9s/k9\nKgXCIZrChb3l7YzluftgZOgdQlKgDejqultVaE4kQoX3hzFZsnoWR56FJ2HS\nAnNRk2corsBPiDLbNTqZf07PfE+R1LvIPF4O9cY1m7grczQK5Uc2S9vSZeP8\n2Ol/\r\n=kjdP\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0WYtUKpUFTJmK3DY+fKLXTZs/u8STs0vc9/C7aZ+08AIhAJtG1SIDUxHU2JYGABHHiKgYSNdWpy/gvhcYpu3kcMxS"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.3_1527154985841_0.589483995442796"},"_hasShrinkwrap":false},"6.0.4":{"name":"ng-pick-datetime","version":"6.0.4","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","dependencies":{"@angular/cdk":"^6.0.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.0.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.0.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.4","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-jAn+2NKc8VZxDL9fzI1rBKzDGK7JyIeJeZN7wXzIdIE2fJqWVqDIiPr9KtIfd938BbASdWheGihEu+f35kUIgw==","shasum":"df9a5c1eb190af029ec9a01e228811b51134e6f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.4.tgz","fileCount":98,"unpackedSize":620686,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDAMwCRA9TVsSAnZWagAAk5gP/AzgsC05wK1709GkalU3\nh3+Ii+be0m3DXuzMG0qWXZuja9Q1xwXnwJecw6tbxD685goanj1DGtGYryGu\ng5d6co5irSOEIYRur/8FXzg7xSjKYHyECIwkweLxPnGYNMdCsrY1RfzgoKgo\nkSnd+Q6LgzWVLkqL0/V4CBnwhPWgwcaAacASIlf6lttxz7/t449fKLTyk3+T\nnPB1jN+XXBWFlSToyqfUPZjQyygtco3WStQdbPKWZb66F1RKgEEKQqFg3Ltl\nBZhc0UEqYkKX9wxOHqv001nMfVGSZaDHjXneoctKcFNfHyKEbvdKMJgBEy46\nKpClo8rEkxg1OZ8FyRqjF0lpDQuCX4HnH53B0iM5O9bz9XkVemGugnjuSbNp\nU5YrBNr7u9U6XwwJWk3KIWPuZ1wGca/k4nu082jftO5zNeZbLpaaDFaBEr9a\nNkfVYTgAe449IIdTs6C6zpYsjSx3SyR6WGNCdc/IkimOzPat+i9yhR7nNsqR\n71KfU3bHgsRQr4FanMv7Ep0jGQIjl6vDxYCr3P57taxlYeShRWJQZiVhXCto\nz24359CZWLuUj9KZz3+b9/mhoIzBBewbl8YuiMZIE3A+ffCQGZga5XRfztBd\nipIG9qfYpG1itr+gyNeLwKwYUymm2UqbUOC7LAabCFMqUD/5dINX/3JfJdCi\n+ite\r\n=Ol+3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4CMHFQ1dpWI4lPfJ5WpltdE0aw1CjMoOyStA6bnml2gIgdtAN7HQULZRdzk0629MbL3ktn31G7SPhu7PmQJx7Ta8="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.4_1527513903364_0.7510738592169561"},"_hasShrinkwrap":false},"6.0.5":{"name":"ng-pick-datetime","version":"6.0.5","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.0.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.0.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.0.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.5","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-Qcap8fNvLtOGHgajA/ciH1DHd3yOpsGBmiv1/LV1/4E73axgqwIg31r5SyJ3MfSVNrxUX1rL1GRrv3BcRgEL9g==","shasum":"6b0300fc8dc2544a981157a5b5ce4a15ecafb50b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.5.tgz","fileCount":98,"unpackedSize":620690,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGxVrCRA9TVsSAnZWagAAEAUP/j11d63fvLuTiU2ZmQlq\nxvXJpNYAVIIxoxSbVaSlfqL0HjWr5RzAS7JdXKXo/5phvZKZCYfxFnwP3vBn\n726BK52xN9l2IXKRW72wOEGM5shOsRGjs128PoeBEXeMjHNhj5pmVY9fAP0i\nWzTRKqJIhpn0Scc+G/Kv5tsUCBZcLEx34xgQu0yMzCoi2SEnoG//gXBT9mqK\nhbIJ7lsB3LyPGiOlkSCMr7vTB2ll3oIBvb2ydh/f48NwEdmRyHdTuT9l1blt\n2RM1+GmmF0P98MNGA+8K3iIeHdL8T+4AA7FrhRVWq43anBKKKaoaDuS3jA0R\n6DEvAt25bYbbdarInNXykSF7I9tWUNQ5QcYBNOtWg8uG3V6z13zheAqlHdKA\nhQZqaG+RXzqHY22ULNpb9c6Vua70po/M2BPqv365TyDHqpp67UNlB7ZWPU4r\njzLSSJykDn8dTQr1T4vrfJE4VbDx4DmWG9gYIRL02DXHbDZoGDf8qA0r9uNK\nQgLVsujpAbNlUiiKHVi01sQ2WFILacKT3/0zvYKcvmja8lj5SyG9HsAs7MdC\nZ74BjKNFsUhjDILhwwdKYUjthOpIWgwMpm73SRALbkxFYxSAKGYeaXcd0dLk\nKgFuJ2goDe5UvnTg4ILt/A8Gmh/Kac8jxM45otSiZ92ravWs+TiSEUGIPDoJ\nK8me\r\n=OsMV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDsfDIsPrUIaaao+Ojk8omozU6QgUP9xYTp2jp7KM8x3AIgIsaC52adyx6I269WNgkCDKGC3O1aiSat5a5WImhYJvQ="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.5_1528501610752_0.1193963036149539"},"_hasShrinkwrap":false},"6.0.6":{"name":"ng-pick-datetime","version":"6.0.6","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.0.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.0.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.6","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-S7Hz3IcqsbTGqSWRCqqWhNZQAbrMMeUiB60MTbJRE5B6wHa2OLEGUPN0UuXahHipL/Yl9rmbWTHDH4TfyTD/Ig==","shasum":"d1c86573781657238136b2830bcb61492a5ddc51","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.6.tgz","fileCount":101,"unpackedSize":625771,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMG5wCRA9TVsSAnZWagAAbOYP+wZWA+l9sqozieguaD2O\nKOW//nMtmRMroKX3aBQvJmco15zTADdV6L6bCc6l4RH8h7qaHKFC7uWWTlAh\nzPZzzO3KY5wx+b3nAclicMjP8K1oWNNKjtrJ6I9NUFgmMxc8fhcXaG5PFpPx\nX2gOSeHUaox+xKii3Lqxx0ChaVfoYKx8F8oIjChlVFvLH7jdWdTiVNtmNwfu\nCvk/GwKu0mloK5ZfhjtuRYplGEWqOlpDW+Hj7/nm7rAJpp4TiVDF0rGlJtEY\nuN/J6wCIC3lrQ4s296u2oJN4tWroSHEceJjpG15MOt5G3NAt/MTK5lQBkGDC\nNNFPCcmbmvjHcR9ouX0aCVk87MDXomw+GLGPLuDc7vDx8EiT0P1i0EXRgk2w\nIRqCTJ0nJui+0XQmCl38oF4ccjM9TP3MuxMgZuAEan6DftCrXHAJBJDGwE7F\ncA6V7YzOcXszbmBc7VoKHbT5VNG2bQ1LvOWHQ5IgiQkMoIjtY9AC56JFbCuF\ngOMpnYwLGqYy+9hWebkIRiLQ3i7VOkZYBjQl7OWtP9Hs6ao/cHobt9/dY+Ey\nEjBTvqL8gFYNZjuQ2eQffkSRmG56V7nfi8XY80//prSEw8CiwtxcpekYv9bB\njRfMuS3R3BvfKMoVre2kverDbwJNgpjjbmPRaD//qVqDLFO7LasSDfySGshD\nCcf0\r\n=pMpp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDwVx8NKTwpdjYbRaip33o/C35EFQt6Dnjyt3nPPY2sGAiAmHKC1+OBJ97JOfkE+b8Dub6NKtbw/M2j+mUcqZY9oyw=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.6_1529900656284_0.9773167556591069"},"_hasShrinkwrap":false},"6.0.7":{"name":"ng-pick-datetime","version":"6.0.7","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.7","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-UiQC04FBL6QIIYyN503cAC03yFAY3U1bUzqz61OhrXHizFOuq2SPbd5MgsJlrco/jngMS2B9IUotxF0ija3Hvw==","shasum":"a3fb357ff4e5e6b1aeca241297b74ac89eef3a69","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.7.tgz","fileCount":101,"unpackedSize":625563,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMHyiCRA9TVsSAnZWagAAhEQQAJew2zFeNmr5Q/ICADE9\nhWkBUvLWMLIwQiCBaFfWSi0IMuFZwCVA4iw+9tMx8Fe0VOojUiKYUNZ3yqz+\nXzw2eBE/ydMpcLVCeGnw/BNAjPNl7WzvOuSMqd0J5+UNcNq8N29p0wiqEeeC\nGbDvCx8u7nIsuBWpTav+u0bgzoMZlcqYIAJ3EQFqaBAnd5b2bAptG13jcswv\nRZJwyfJpXqel0oilicfiQtBIay452z3pW3dtTtFfuG3rn4MidzLro+VveMOJ\nRe7ZzTuTmq07XCbcArUa55jXwg54CJJba2jIewVIjkBrPdRPtJwls08Dlekl\nsBwegfHnuZo2kLdNIqxedAUNOZxJzoE1ZGRzIbkgxnjKmQDRt+QqfGgbp1SS\nqYS8GB7yM7yJZ31ccGmbVy6yt9IlQ4Ncs3z+Gf7f/zEuhjRu9+E2uX49j50i\ndRITNvNngf8adCUQ/UUMWGGiiqkdVeQ/TnP4Hw+hMTimpWCB3d3dj9JWUIn6\ntZsT5UdT7lhKlApMIPBr3gkLBE5v80UJAzT5Mb4v5CzAdqX/FgYWBFligtBx\nUl3cqBAtwpvcY6CEKmlcAVvxhjZgk02Y5XNvuOe3N/R2O0zgXxa/mK9hQONS\nchiXzhFM99B4Ppxulh7r63HhdoKgVPSGMjDZJc4TZ8gQqruoCm2zGlZ7ruIv\nOoD9\r\n=3pwa\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDeG/SbMQZKABlKdCST4NaN0r3lARqYgUIdLTyf874TlAiBH7VFpAkNZYyMUIxc8HAPCExQ7Hc0BsOIO8qX3mQB4mA=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.7_1529904290931_0.08041339978838646"},"_hasShrinkwrap":false},"6.0.8":{"name":"ng-pick-datetime","version":"6.0.8","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.8","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-OsSKVV2vudg65bcAoVC4CekFt5INrHvMzMzyv6kcbfeuhYiuy+FeLx+wpZWpBaHN+LrMN+qcR/RrT+JZUffVNg==","shasum":"2d43c874b19885de4bdeb7f1402ea16e288c227e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.8.tgz","fileCount":101,"unpackedSize":639665,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbNtKkCRA9TVsSAnZWagAAGLMP+QFUDrIR5HXLLJoEKwim\nOoI9p99gDBzlZ+rW2TCdXFpnHSrleQvZ3LJ43vA8lMXE7gRXq+QI0Xh8f8Yq\nQlkQ/EwoYditRLB+q4g3geoPOtsSdK8j87qK9Qb7keZJJPvMwzKNruM6vC7Y\nXHu/o27uRqj7ou5ZNsV1Gjn3C7iedS60VjENmpp+5oc8FGDPkkqnBEWc7DvJ\nPw2neDK0C1rn+KA384Rar+eN9HaGnzFcTy9eZWlnugVgsTUuO+V9ydLMhr02\nLoqgtP/h2OLDGAsQqB2oR+jz8aZZVS5X6nwokAka30Vr0ubIbZciscb9Qf1+\nNodXfWhf5oDxZ3OdIyqeVGCgXm5YQ2ldMIYqZCkptZIrNMOvp58FvbHq9IYJ\ns1Pe8V639LtVmzl8Kf7uzm5nOaitklO7ocCO75bwtSRiwcuYGsKLmg6hLLdC\njEcxpLwsN3Szy5rSJJEMx8lBW+oZdUK93gF6SrgVpnTOaGPzIshAV4JXMfEz\nWqQx9JYvWmk4rvo5Pz8hDiBTpqgkujl9R4hPc1VdAmYIRRBEjBtDuCNarqOB\n9xGMf5dflPvDW3RnCtvJbe6oXqGuzYgdWFLndEa2Ai3Q5cv/25ntvDgFavNL\ncRCWnquEgw5hUGlwD/ySII7jpJ7gM2yEnRzAl6NlkPr4g0ELpoP1jZ+vHBg1\nXZS/\r\n=f+cK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH7JvRPPxOcWhO74D378gL9Gg1rCJM+ZTkr0ccTHQR+5AiEAgfkhi2mBuYdhtUimwu6zDGUB0ZqYstXT6Rhq/QrRfx4="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.8_1530319524060_0.6048384020655497"},"_hasShrinkwrap":false},"6.0.9":{"name":"ng-pick-datetime","version":"6.0.9","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.9","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-akDunFq7uQ/W37CGCIWKxIndwnIw/OI4AYzwmJLkCsyOV8e8B/yKleTNec/xZCtswuubH1N6iMHVAfRR3PxS4w==","shasum":"5e4fe1011c927941b576480eda2767ce8b83e294","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.9.tgz","fileCount":101,"unpackedSize":640061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPFCbCRA9TVsSAnZWagAAN4QP+gKmaVjrQFsMWm1Olmi7\n+AUaO1ovjk9POLquqSXga3Qw5Rw3IDzclSQJCS+23TPFf82fj6Vaa0DyyGNq\nZIoKFfXvc4Bv/fhWEvgG9WwoZhO8XW72V5w5oJeccvTrk/KED/32xs2NT6c+\n1LnhGtdqTh93gocPOoiGcA5ZTi91dlk3fI3zT829dud/FRTd5c4H8ZCMKzwB\nyLhhqYesFh4D2PI+WQCMD3G6d+ds9MQ2ZPNSA5ZF1ctXSjpjZ+9LurwOeiwc\nisqadp/lGJkJMj3aKnRipW7LSvALBSXfHaS8ixOgTq1KMtQ8d9Jkw1VGsvcx\nDRMmDu1kFXSvCFZDlQuGKyQejzpL15zuZqZuO0kbARFIWJWcnlSxkFY7gULf\noGBTtiVjTtbOi+p4nyZuuBS9Mcw657P2dQHV65nYbeO4Ng9EL6vfsnvW1Xwi\nO2TCtkICKToU1rUsGbr1YoJ52HsSsXMA9q/pXTTK/kPkL0CbZDuhbjSjABMR\nrIddkBnhBRQfxUNiX/FI5oQfKca8vWBwQkyt3k2ShoJxqaMBCK1s8TYktEKN\n7t33FYqypHs1aJsh0+9K/9VEShozMp/CzcBBGmGdSWsXsT/a24qOU18WOJhL\nIoc2Ngudqj0IC6fupGbDSojLqNOXwC2sUVIcNvSyMjH6PGgpBCcfTfrARNdF\n3au4\r\n=YrW3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBVTXtlMSujDEkZNgxNeywRuSxaip1ZO1Vx0ggFd2PGNAiAHyn/DB25fCr9tL7DNhWQlOE+eX2BSfo9G6D5uBEopwQ=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.9_1530679451651_0.8316191677926794"},"_hasShrinkwrap":false},"6.0.10":{"name":"ng-pick-datetime","version":"6.0.10","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.10","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-CrcDyFD0JxlO4Qh+Qa5hFygivQ2UWK7OX8zAcP6BfHJk6Qc4Nb79yNZvY8IUsfF37VeY91IiE3DIz5a1J5T+iw==","shasum":"214ce1c96b956e44b4603de483d1c2fcc9c6a7ff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.10.tgz","fileCount":101,"unpackedSize":642524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPWTOCRA9TVsSAnZWagAAockP/1VY9xr3dAeQnJN5SbbZ\nY2yTCTXhPXG4u6qcaDX3WCe5w0TsUybyTR7DPvbJDDyIY2Jy7Xu3uWK4+dSW\nH+llZPuqaSlOa310ynEI8D8kEAbmP95N0ddadGeagKnTUDS6ZvZZFw2vVguy\nD9o+9UdALDZcQPnBlzDpL1ZG/x5JFrsv3M7XJtJ+/+CIfV+r4weYTU4fPai/\nIY4ZjBKwaPe07xOkFAeAcRqepg/pYA7faSI2C3AzC/5fc/wXYCRtsfZMl+dH\nVYzZ2uxOoT4Ze0q2qJVHbi6mwja/WNar7mS7UiHJnFFWHBFjX7nx1h35zw/i\nR/YIUJ0FlSriMBX7Oed3Ep1mTN3awrL0Jg7T+Ic0qX+OcW0vNqlDn/2HO0G+\naF0e5mPtvN8TOXfKBuwsVN5FqNRheHrA6f1tTybgiXG1WAbdMc2LXe0d2/2N\n4vEBvrVHLd3KOQbqgfOlVLPqRTvgUCAHzj5yVhptiJ/xF8Vvr1rENk18JLR1\n9O4wOm7t1//0cMticj8/s5sHeHI9rpQHlPkkWW3kgl9T9hee/0CM3onkw3+q\ncKmrDJ9YBv9PUQ5uyw9Ru231f2r9FV9Vi/Z1A6yvM1lPZgr58BeXFVcFv2Ws\nbTqHVPVKQZiPs9hm6xBVAV95tJ2Sh0mp5LZxKI20oxIpm3TazhEcc4f0cv5h\nj6Dp\r\n=ExpB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA3D73YtKQ9xaty5AJL6BsGlEYE1YyHBCfyligCxGkqxAiEAxsQJSuPyPA3LPM0yUF/A1SNpjPb01kjwP+9a+SC9lww="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.10_1530750158312_0.506652476885521"},"_hasShrinkwrap":false},"6.0.11":{"name":"ng-pick-datetime","version":"6.0.11","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.11","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-f3EjkFzzOWuH6tJm2C+QsNuciftyYXrnPGQDakY1sokY6J5RvshuSWmwK0LcgWrEmjmvbvLeKvvy4ExMiqEK0g==","shasum":"8faa13a131315c8e694be3f9fb99ade189ee1634","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.11.tgz","fileCount":101,"unpackedSize":643523,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbY48ICRA9TVsSAnZWagAAiv4P/injlKJj+FI+WjZyZm2U\nnp+lu1+Zjjxe+H3l/6+PsUWoWn1o+bd9wYz+gwj6yd325fYkqI8UswCHzYGf\nmGca38xkIsPBx2NJJpcgHbB4z8/nQ2nMa8szPE/sFlzGySOkoXEvE1S9ijD1\n3pCtUIZcyXUeLWpEEAN0Ml/8fdCb8b8GDY2/u5yOSCqavTvwU4asKOkIZDGv\n7lpo9pllbKQFxoNv25KHwDYYruO8mhDEhStWeMk31vyg7Ie3UPXNWbAFT3Pv\nbtMMm7ijUVX19VED7Bcq0ppk4eFW9IMxL0XbsLQmrbvNLbcCxAwAHWDCxdcU\n3BzaGrHAKGOsWYnOdojWZPk7pR5zJ30GPrWpLT+JpsdQl5qGACLGGUO8EtnQ\nuazIDPx+9EDQofyLJ6GB3beY0iG6MqvjacsibSvTO5nh3drkp5uFXdSsOVC9\nYNHVk2d14s10jxe3Ellmu6UF05AU4tML1/WvU+awUpwpbErITSydknNyeqsb\ne9nnFnxR1gKWRSnZNVX6mK5Llbd0uBFVGKmVDLrlFGFyE8PcTiTzmF/4Ykod\nETqkCfzPNu5z1OzFrSJJKIFmciQQZJ4rDqOf/NYM8b81/nUjeK3Qmt2mYxV5\n90Br3rCYIKSSKf2Rh18AXvFIaqJN39gSkVgrOrHTnTguSRBI7n5Bvj523m+p\nvl1D\r\n=6M4U\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzhfgGGkUo3BTLHUlUqvWXVUO/heM3PgIgGsws6d/djQIhANjOPaFeNO8/yD/0NfuBLURXMqiG3VpZRjlTAqfSyQ4y"}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.11_1533251335694_0.6186924937098011"},"_hasShrinkwrap":false},"6.0.12":{"name":"ng-pick-datetime","version":"6.0.12","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.12","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-9k24te2jDbVjZtwFsTMRjQrZ72D4UWzgHDtgf7AWhM1g2zA1asv/+dQHCb0qYcCDu201siqg7p+4HDTv2+iKHA==","shasum":"36536275073ef30665d5611d3b5972fbff28e495","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.12.tgz","fileCount":101,"unpackedSize":642922,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbY/tdCRA9TVsSAnZWagAAL9sP/jAMYpHYypGQNqn3zlot\n0Uzyc4DpOknZdOmDiQpmGue7l2kOl/fRfDGx4/l460hbBqM3a/Bm1l/fslZv\nzm1Tr0RuBcA+gv0rQ5EOZ8ME3ZcbJ3fnHdpmxAZkicy8yx9p4WsEf1OU9TGH\niPghjUGcR56wxpwqvRx66U4ntTjPzi1FQK6LlwOuBbyewUWO5LyBOa04wEjX\nZOKD4wj6UOBCfmqCy9zaI1bo/yrFVr7UBT1obWF6B4nMTZhgldQitG+VVGEB\nZQ4i0ob7C+cFKOsKF4ud6DsPubdrtdcFW1jdFezEClY89ZFfnt8p87hx6B4T\nYFbFDjRw687emp+RL6R0Y69yG1sPYYaQtCTsPIYIWrsYae1O28ZJhCmzZ0Lf\nS5pBUvedbiOn+HRYGMUPK4sLfwZYNcxypKWxU9frj/9ZbRJNF/sRy3HazI3L\nQhWDOpaTTZg35R6W5VOgLGX4vpXUr86xBeXrmcjQaYLlmmFHGC2wMYl8Hn8o\nd5x5lcppZtVtzESYTyEUoWt6V3CtGwPbxEizcCs0gbZG8yn/AZiNGJ3umyFv\n3CM/TNaMVS1fnfZ6IKWRu+YCGOycN28Es5YiqQ1f24Xr1VSyqn/caykmL2ID\n8Big3SWsiC+7FKnFU5Urp5ySMKFEPsm1l9xE74imUyJN477gZAO+psX52tgF\n5t5p\r\n=jlTz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDSVWlrRvJQhzyzjm+/oat6K31QZBaBqf9fhTbgOfos0QIgXa+9G5dDsPFdxv95qhuhY7qUukxbRFvSl4roFH5/iuQ="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.12_1533279069024_0.7338669957102164"},"_hasShrinkwrap":false},"6.0.13":{"name":"ng-pick-datetime","version":"6.0.13","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.13","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-s4jTZIaK8/XoCjfAUMmNoXscjfYK0hBtiJ9+Ej0GxuDIgJ6XBj2kTTQXvQ9AIRv5G0N7dbn706fGy59FdtcARg==","shasum":"c131fda5f38b13af0f13e20bec776bedec530509","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.13.tgz","fileCount":101,"unpackedSize":643280,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba4xuCRA9TVsSAnZWagAAi3QQAJjoRk1xcjE45rnXen5m\n8PLJT9Fzmwy5Ns0d/Cj1ZuAqLHmf1n3VjfDGlaWbu8AGdEUOncj3NHrNz3rh\nn2ktT1NfNh9FtiEzrTQXYut8Hl8MilkSie6jdFxihJod/8ohmERULzsC54RJ\n+Rp0fnjb9gMi+Yi5tge3EJb43Wjzlnl7XRYD/yqZ6oFDqu3p36mDFHfZyxWk\nlnJhax5HPuWt2PIKnCvexScHAjVDBewbukiZU24ME+L8oG9OOiDPgSDyx0rS\ngiLGwzlhfuJ04PeTyjrHk2otuHBlLK5FNuDy7k4aouR/5gcQZtbVRt1QuJHC\nAJzPZ8wAhSZQIy3kVCf6O1IUmVR6R1ff1p/wyFrb07cDMbOHE+RkxNQv2LBJ\nIr1hd5wpHoMgRT1f/dcEzNwCKEDbghlhOGU0ftdOoZ0Tq4bJbyCc/Yc2aOPU\n9p+pEndYCqZHqHWERstWRor3OSRATfrJfricaPL9LrXdGnDIv5L8cufSdlH5\n5zXW1wxk93dKUX6Hy5XIl8iYiS0a5LuUtpwy6YGdm/LkOis+f9h0eFANJgbW\nSW41ZnXIkvwy4bLfwZs3YHZaDOjUH3QJsHnc/o+XN3oVougaZPW73ZvdlZR1\nRPZFTo9Jy21Xbbtw5dLi9H75bMV/j/zoGhJuyv4sj26NDjFsz1+L7ljmXDYK\ni0sP\r\n=I8a6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGwrrh3aNDsJdn5Dn9UqaO4KL01cJS3PmYS0LyFMLZ05AiEAxmcKZC0TXbG3AlYxBJJ6BTgPtrOVTadDZf1X1yY5lVU="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.13_1533774958745_0.6351202586042084"},"_hasShrinkwrap":false},"6.0.14":{"name":"ng-pick-datetime","version":"6.0.14","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.14","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-9eBu7BHlcbcs92wjQtyy1RxVKMxLicQ/YUAWvWCl6c+nfGNh1Arfj2cU4FnRZbkKKs83GkY/gpPdNLnc3Ko6Nw==","shasum":"40d7757a92100554feee8538ddecec3905ad7b26","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.14.tgz","fileCount":101,"unpackedSize":644058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba5gICRA9TVsSAnZWagAAiawP/0H4mv32wpXSiB64n82V\ntBm8C7K8i95p/7r4RP6S+CsC3IFSBNq6+JcpUNXDEtpeZQNyU+Os1DIWJJYz\nc5J+W/j9AWRjNwkq32ypLCdB5Z7/FdxTIVy8rEOto77C/qtBSTGCCErRMlLQ\ns6NjXcsuM5Gb8l09YfTVHFYV8sQhJHKZY7PzxFtPdFQRpbCAg7XFG/Z+4/uO\nDxm36IE2Mg32MFLGFAwI2Vm8Yi8tixtovr9h8Hjh0zKiif2khM5taUwZrsV/\nDXbFoT0k/8ITGtvmynq35n+IVAY03K1t+0xAKsda3sc5apHuFMnRs0/4axNt\nHnwCgBeFgUKyB3Y2EhCKllstpxNzzmrv1YShOBrInfup6fHv35D79pzNtXzH\naY2qPbNz0nvi+dhhTZq0Z+PwYx2A4IQh0TzpsMoH6L/6ru3mHuvpZe3xWDwn\nByDeOnTe25SLl8SsHCekFFxh7AcirtKZuxQkqVovXMwRma8UKVTzZwNchW5c\nTmOH7op4HxqOvaPFQ+aD9ziIbjPAG3q7iVypkZOLEOSFa7yLYl9+bZ94y4pg\nQnGv1SMowTWarkAVZ4CpMXu4WEdmWyQvY+bmaZJdRQkvPpDVOb04vzjivpo6\nVCQxC8NwQ3k3inEeZD2WHs7WShAG5XqglJRN0dEhZM6dHnf0VY55OLLrxk+S\nghwg\r\n=46Uf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFb9FEK/RKLx4PIp300kxySn4O3uPq9iHanmn7eod4lnAiEA4ruDMlcDfokB5LakRNqXEL1PNtVvBOGHm849qb50t/Q="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.14_1533777928037_0.008623538324947999"},"_hasShrinkwrap":false},"6.0.15":{"name":"ng-pick-datetime","version":"6.0.15","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.15","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-WPojOzRTsVXsBXnXyhG4orLpiYjqj691oRwKkgRcEO3mclc7FLVOPm/hprgdPDlKeArABd4hTZpQ0G7j1jYIPA==","shasum":"441ae75cd292818b8ac9e70edd99ed10b0d39a08","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.15.tgz","fileCount":101,"unpackedSize":644205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbDJwCRA9TVsSAnZWagAAMWoP/0wm7zr7/T5G4gkXMxFe\nd4dJ0Y3Fsy0AuR5IQ/2Vq51Co0NTnlF54htq6vBKKW6z229sbATOvWl8CwmR\nlHw2gAbnjSEF/HRr7hS6vNBOak7OZypOsMA+N7OJpPdAN2Xm2E9V5XGK2OZ6\n3M2eFkNrZYuF5vBAB0Y3f09nMJSmb4H/QZrIM/vatDmQMTcUYPL2lrZSPuI4\nXXirtsnqQfynqkepeJW/v+ARktuqBPLs/yKSRctHdnVqt/gsKVG/JrjCnndS\n8Lel6PlPeKjx2Vv8lFTFzjWBpYYKgSxfX43LEyHwvnnQox3rCNxjbnkvd4Dn\nXDrohMTu+fM2wz9ajJfCnhpITfXpnrBsZUO99zH78irsBOu6S+Yt+6+/6L7q\nuDxNab57WpH9p/YyLcXtTqyhIttRNxEKfxP11kl3X/4jVr7X4rkOCVren3s+\nMAHf3mTnzeVPyM6YJFRAX3uCwKc1CrodDbE/yS1XlyPIhWkv4k5PpECtUMNv\nWuZ9H0oHOuSbHgtGRPvH4j3H+x42lE8x6a228wXmURLUb3pmVCcRrVAGcq77\n+G9XRAZ3QBz7WQPiuOwHHh0burJZc0XBL7IB4qOUaqpGskYFWhONzhJP2H8M\nlAm4pUUShgaIXl9pyptp4+7oT2DZpbmv7ILX8oULkn46r5f9mROLX4aszT8J\nbNZH\r\n=o7+J\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC/pem6yod0xpiRLf+Kzya/Qae4YM8wVyGclGRJdLueVAiBdny7a5Vqm24r5++1RNPqw1orI2pUj6x6spwgktCJwCA=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.15_1533817456251_0.5216101630051453"},"_hasShrinkwrap":false},"6.0.16":{"name":"ng-pick-datetime","version":"6.0.16","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^6.3.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"6.0.0","@angular/cdk":"^6.3.0","@angular/cli":"^6.0.0","@angular/common":"6.0.0","@angular/compiler":"6.0.0","@angular/compiler-cli":"6.0.0","@angular/core":"6.0.0","@angular/forms":"6.0.0","@angular/http":"6.0.0","@angular/language-service":"6.0.0","@angular/material":"^6.3.0","@angular/platform-browser":"6.0.0","@angular/platform-browser-dynamic":"6.0.0","@angular/router":"6.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.1.0","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"2.7.2","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@6.0.16","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-96rHNg+tGXmzJHvGoH2O8dF+MF7N4rKIehsi8Px3IZUOZM4qA6PE1w8SQzDvHQTIp/1NpiICvmt6BZK5IaDsFg==","shasum":"82a400f0aba5cc905bb443616f5ac4b9bfcc88e1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-6.0.16.tgz","fileCount":101,"unpackedSize":647576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhimnCRA9TVsSAnZWagAAd7UQAJ9PQp3/DY+TS3hh/v0Z\nLcN5UTbWsnYjpZu54tr2NnUH7IVaBRBu6Zc2gecg7B5Fg/HPs071omk4C9Hh\nlYB497STFQKy0Ct4P/rwmaJppTMOLFGZWcu4YsOfK1Z7yv/B0ZiQVzb53xb5\n/VfTObK1zg7S6HgQZ7EydekJUG1kPYy2+5CP3kKHksYhaB2AUJRRg1ziHe+m\nyzUm50Xl++AQ13LhMMXR61BGDafKQTizlKkw2tx4FVfUD27eCKXPVU6Z1jTW\nXfr1l/h5E/NRFaXxohIrY0U++oKZjEWSlF6TVB3DwBBqAcbkFvxst+r9tYOq\noo8kGuRUORY2mbxMI7BkcC3H9Kqr+PVZBOVyb5Gn8DRea9JM5Ro8T0o2M8k8\nvGVGaLMOOlBVnnPbT1q55Am0P2o7bvfOD1f1YJG0YH0S/6OSjPgjMmqiCUyT\nVD2lTAmFKLKFCMpaXBQxoy1nPKIYGrYduyj1RRpqM1wBypn05ZTLQBFgHQ6Q\nkjLxKfqiLeHC2Z09uR+sq4abjlwbLQTfbwZUfOu5lcqpdfT7l1bL2u3kbVrT\nmbuuv0pBDSIX+Z9LY7n6yP09jwOKPhV8L1Gw/ZlK7Y77yW9x+SAFEpoqUAcw\nxO4RKrRUzCClcT6Mfm4zvZjjcxVfOCBs7ECuX4RwmDdry8bbLQO4t03v3J9D\n1lv3\r\n=agdM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfLD1cCBrpyQBQkXH6jfT+CQuFKfdx/A4W6RQdgg6EEgIgWYiQjqM3vKN14lwQM4oK9BgP/ezA6lcTNvQ+S5gL8NY="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_6.0.16_1535519143259_0.05372011372753538"},"_hasShrinkwrap":false},"7.0.0":{"name":"ng-pick-datetime","version":"7.0.0","description":"Angular Date Time Picker","keywords":["Angular","datepicker","date picker","timepicker","time picker"],"author":{"name":"daniel pan","email":"myron.yk.pan@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/DanielYKPan/date-time-picker.git"},"jsnext:main":"picker.js","module":"picker.js","types":"picker.d.ts","main":"picker.bundle.js","peerDependencies":{"@angular/cdk":"^7.0.0"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.0","@angular-devkit/build-optimizer":"^0.6.0","@angular/animations":"7.0.0","@angular/cdk":"^7.0.0","@angular/cli":"^7.0.2","@angular/common":"7.0.0","@angular/compiler":"7.0.0","@angular/compiler-cli":"7.0.0","@angular/core":"7.0.0","@angular/forms":"7.0.0","@angular/http":"7.0.0","@angular/language-service":"7.0.0","@angular/material":"^7.0.0","@angular/platform-browser":"7.0.0","@angular/platform-browser-dynamic":"7.0.0","@angular/router":"7.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","autoprefixer":"^7.2.3","codelyzer":"^4.4.1","core-js":"^2.4.1","gulp":"^3.9.1","gulp-clean":"^0.3.2","gulp-clean-css":"^3.9.0","gulp-flatmap":"^1.0.0","gulp-htmlmin":"^3.0.0","gulp-postcss":"^7.0.0","gulp-rename":"^1.2.2","gulp-replace":"^0.6.1","gulp-sass":"^3.1.0","gulp-sourcemaps":"^2.6.1","gulp-typescript":"^3.2.3","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","merge2":"^1.2.0","moment":"^2.22.1","pixrem":"^4.0.1","protractor":"~5.1.2","rollup":"^0.52.3","rollup-plugin-alias":"^1.4.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-uglify":"^2.0.1","run-sequence":"^2.2.0","rxjs":"6.3.3","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"3.1.3","web-animations-js":"^2.3.1","zone.js":"0.8.26"},"bugs":{"url":"https://github.com/DanielYKPan/date-time-picker/issues"},"homepage":"https://github.com/DanielYKPan/date-time-picker#readme","_id":"ng-pick-datetime@7.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"myron.yk.pan@gmail.com"},"dist":{"integrity":"sha512-SbS+zKX6gOlYpgH8zDSx2EL32ak0Z0y1Ksu1ECP/FiwVBM2mHgbzdfyDYhMmKFB0GKn5yCwXTandR1FCQXe62w==","shasum":"c78d1cfaee183691a4a44cd4f39c98f9c1d1595f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ng-pick-datetime/-/ng-pick-datetime-7.0.0.tgz","fileCount":110,"unpackedSize":734661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJby83KCRA9TVsSAnZWagAAsrEP+QGfpX2DYr5qJYs8mmPK\nFfmDC56iQzCYMb/k5/ETZEeK4rf40Jeij3jaC96fcXYl2isE+2AiUek4DxdR\nHfHkFMarJtxx/gwbOCG7WbhN2O69ZyUjHR4eF7GpEz2kxxFlV4Xy+oikHVmG\nDtvFOW8wnd0YL3F3cr3ks7Ba1aNquWUTjI09nKKnxMR6NIYsgW9UYFm8/QKZ\nlS+1eNXMRWgagFN1BlWRaPclBc5oeRxZkM0XRg1WhhvwLSAoOC50C6swFUG1\nWOC9CqTQhK47nuZrXJvJedjtjbUZdf3qTFABEs6sRPuiXy0XwL2sXiMRBigz\nCcFqzpaSbX4STMiFcBhypHQqGqDm59M1nFokD8ahhwRn7EjVt9omWHuoFpB+\nIpDZ0gIsD/7tHxkYU6C8VswIpN8+FrmG1AeheNol7b8dDogBm/65zgYq9WiK\nfpS7MCu8+s2zHI+hq6uR4yvi6VTsl5B8YbOK3mwCfotpaMDC0GgdEFTJFygI\nHjdJ3fu9XFXxdLeKCd61e2j1fRlM968quT0DjNVxCAz3n369Fbxuy1A6rA07\njheHh9dvmdUVyyuxIwFD9Bkwz+O2mi72jKHPn9rBEDeREJ2Ta+NIAoIJIMYc\nXXtah1PPBqKpQ61pm0+uL3s4/tiaBQBCHy3KYKmz6iNA8G1ULF4WYaGTgy3o\n33y9\r\n=UtL3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEd5kx8xfYSrhACsCduuUl0H3z5lV6//b78nbiRGf8L5AiAfxzn/Ub42OXOOfzsJTdFPCVfqwWg9L/Zx+bMwri7fMw=="}]},"maintainers":[{"name":"anonymous","email":"myron.yk.pan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng-pick-datetime_7.0.0_1540083145391_0.4174323874742727"},"_hasShrinkwrap":false}},"name":"ng-pick-datetime","time":{"modified":"2022-06-21T04:18:14.637Z","created":"2017-04-02T09:32:50.603Z","4.0.0":"2017-04-02T09:32:50.603Z","4.0.1":"2017-04-02T11:06:34.153Z","4.0.2":"2017-04-04T03:34:08.012Z","4.0.3":"2017-04-05T02:10:57.285Z","4.0.4":"2017-04-11T03:33:07.290Z","4.0.5":"2017-04-13T05:37:00.854Z","4.0.6":"2017-04-15T13:02:54.206Z","4.0.7":"2017-04-15T13:16:49.889Z","4.1.0":"2017-04-28T06:59:01.764Z","4.1.1":"2017-05-01T08:20:15.477Z","4.1.2":"2017-05-16T09:30:56.366Z","4.2.0":"2017-06-25T11:11:41.894Z","4.2.1":"2017-07-06T04:13:19.492Z","4.2.2":"2017-07-06T08:02:40.128Z","4.2.3":"2017-07-17T07:00:18.903Z","4.3.0":"2017-07-18T10:21:04.368Z","4.3.1":"2017-08-05T09:01:40.601Z","4.3.2":"2017-08-12T05:48:28.912Z","4.3.3":"2017-08-26T13:51:27.223Z","4.3.4":"2017-08-26T14:20:48.011Z","5.0.0-beta.1":"2017-09-01T06:20:00.268Z","5.0.0-beta.2":"2017-09-01T06:34:41.047Z","5.0.0-beta.3":"2017-09-03T01:05:16.943Z","5.0.0-beta.4":"2017-09-06T03:16:29.352Z","5.0.0-beta.5":"2017-09-13T05:11:35.628Z","5.0.0-beta.6":"2017-09-20T02:32:17.550Z","5.0.0-beta.7":"2017-10-01T13:04:01.167Z","5.0.0-beta.8":"2017-10-06T13:44:59.074Z","5.0.0-beta.9":"2017-10-06T14:07:05.575Z","5.0.0-beta.10":"2017-10-13T22:53:31.411Z","5.0.0-beta.11":"2017-10-19T00:55:17.551Z","5.0.0-beta.12":"2017-11-13T11:15:40.187Z","5.0.0-beta.13":"2017-11-27T22:25:30.994Z","5.0.0-beta.14":"2017-11-27T22:33:01.530Z","5.0.0-beta.15":"2017-12-03T22:13:35.785Z","5.1.0-alpha-0":"2018-01-12T19:31:48.092Z","5.1.0-beta-1":"2018-01-12T19:55:00.067Z","5.1.0-beta-2":"2018-01-14T00:05:49.005Z","5.1.0-beta-3":"2018-01-14T04:52:52.818Z","5.1.0-beta-4":"2018-01-14T05:08:02.264Z","5.1.0-beta-5":"2018-01-15T00:17:06.833Z","5.1.0-beta-6":"2018-01-15T01:28:53.148Z","5.1.0-beta-7":"2018-01-15T15:01:44.692Z","5.1.0":"2018-01-17T02:42:33.584Z","5.1.1":"2018-01-25T05:12:52.049Z","5.1.2":"2018-01-25T12:21:52.966Z","5.1.3":"2018-01-26T23:15:29.053Z","5.1.4":"2018-02-07T00:18:10.639Z","5.1.5":"2018-02-08T12:27:59.450Z","5.1.6":"2018-02-12T23:37:39.745Z","5.1.7":"2018-02-23T11:22:19.540Z","5.1.8":"2018-03-06T06:43:05.865Z","5.1.9":"2018-03-10T10:20:47.414Z","5.2.0":"2018-03-11T02:44:00.329Z","5.2.1":"2018-03-13T20:15:48.662Z","5.2.2":"2018-03-17T13:15:26.272Z","5.2.3":"2018-03-22T01:23:07.845Z","5.2.4":"2018-04-04T03:19:18.316Z","5.2.5":"2018-04-19T12:02:59.586Z","5.2.6":"2018-04-24T10:31:46.275Z","6.0.0":"2018-05-06T13:16:21.023Z","6.0.1":"2018-05-06T14:43:27.689Z","6.0.2":"2018-05-13T05:56:54.236Z","6.0.3":"2018-05-24T09:43:05.909Z","6.0.4":"2018-05-28T13:25:03.432Z","6.0.5":"2018-06-08T23:46:50.823Z","6.0.6":"2018-06-25T04:24:16.372Z","6.0.7":"2018-06-25T05:24:50.981Z","6.0.8":"2018-06-30T00:45:24.134Z","6.0.9":"2018-07-04T04:44:11.765Z","6.0.10":"2018-07-05T00:22:38.496Z","6.0.11":"2018-08-02T23:08:55.811Z","6.0.12":"2018-08-03T06:51:09.113Z","6.0.13":"2018-08-09T00:35:58.889Z","6.0.14":"2018-08-09T01:25:28.113Z","6.0.15":"2018-08-09T12:24:16.378Z","6.0.16":"2018-08-29T05:05:43.417Z","7.0.0":"2018-10-21T00:52:25.651Z"},"readmeFilename":"README.md","homepage":"https://github.com/DanielYKPan/date-time-picker#readme"}