{"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"keywords":["angular2","momentjs"],"dist-tags":{"latest":"1.9.0"},"author":{"name":"Uri Shaked"},"description":"Moment.JS pipes for Angular2 (timeago and more)","readme":"# angular2-moment\r\n\r\nmoment.js pipes for Angular\r\n\r\n[![Build Status](https://travis-ci.org/urish/angular2-moment.png?branch=master)](https://travis-ci.org/urish/angular2-moment)\r\n\r\nThis module works with Angular 2.0 and above.\r\n\r\nFor the AngularJS version of this module, please see [angular-moment](https://github.com/urish/angular-moment).\r\n\r\nInstallation\r\n------------\r\n\r\n`npm install --save angular2-moment`\r\n\r\nIf you use typescript 1.8, and [typings](https://github.com/typings/typings), you may also need to install typings for moment.js:\r\n\r\n`typings install --save moment`\r\n\r\n### For System.js users:\r\n\r\nFirst you need to install moment:\r\n\r\n`npm install moment --save`\r\n\r\nDon't forget to update your systemjs.config.js:\r\n\r\n```\r\npackages: {\r\n            app: {\r\n                main: './main.js',\r\n                defaultExtension: 'js'\r\n            },\r\n            'moment': {\r\n                main: './moment.js',\r\n                defaultExtension: 'js'\r\n            },\r\n            'angular2-moment': {\r\n                main: './index.js',\r\n                defaultExtension: 'js'\r\n            }\r\n        }\r\n```\r\n\r\nUsage\r\n-----\r\n\r\nImport `MomentModule` into your app's modules:\r\n\r\n``` typescript\r\nimport { MomentModule } from 'angular2-moment';\r\n\r\n@NgModule({\r\n  imports: [\r\n    MomentModule\r\n  ]\r\n})\r\n```\r\n\r\nThis makes all the `angular2-moment` pipes available for use in your app components.\r\n\r\nAvailable pipes\r\n---------------\r\n\r\n## amTimeAgo pipe\r\nTakes an optional `omitSuffix` argument that defaults to `false`.\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{myDate | amTimeAgo}}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: a few seconds ago`\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{myDate | amTimeAgo:true}}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: a few seconds`\r\n\r\n## amCalendar pipe\r\nTakes optional `referenceTime` argument (defaults to now)\r\nand `formats` argument that could be output formats object or callback function.\r\nSee [momentjs docs](http://momentjs.com/docs/#/displaying/calendar-time/) for details.\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{myDate | amCalendar}}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: Today at 14:00` (default referenceTime is today by default)\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: <time>{{myDate | amCalendar:nextDay }}</time>\r\n  `\r\n})\r\nexport class AppComponent {\r\n  nextDay: Date;\r\n\r\n  constructor() {\r\n      this.nextDay = new Date();\r\n      nextDay.setDate(nextDay.getDate() + 1);\r\n  }\r\n}\r\n```\r\n\r\nPrints `Last updated: Yesterday at 14:00` (referenceTime is tomorrow)\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: <time>{{myDate | amCalendar:{sameDay:'[Same Day at] h:mm A'} }}</time>\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: Same Day at 2:00 PM`\r\n\r\n## amDateFormat pipe\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{myDate | amDateFormat:'LL'}}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: January 24, 2016`\r\n\r\n## amParse pipe\r\n\r\nParses a custom-formatted date into a moment object that can be used with the other pipes.\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{'24/01/2014' | amParse:'DD/MM/YYYY' | amDateFormat:'LL'}}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: January 24, 2016`\r\n\r\n## amLocal pipe\r\n\r\nConverts UTC time to local time.\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{mydate | amLocal | amDateFormat: 'YYYY-MM-DD HH:mm'}}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated 2016-01-24 12:34`\r\n\r\n## amLocale pipe\r\n\r\nTo be used with amDateFormat pipe in order to change locale.\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{'2016-01-24 14:23:45' | amLocale:'en' | amDateFormat:'MMMM Do YYYY, h:mm:ss a'}}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: January 24th 2016, 2:23:45 pm`\r\n\r\n## amFromUnix pipe\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{ (1456263980 | amFromUnix) | amDateFormat:'hh:mmA'}}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: 01:46PM`\r\n\r\n## amDuration pipe\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Uptime: {{ 365 | amDuration:'seconds' }}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Uptime: 6 minutes`\r\n\r\n## amDifference pipe\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Expiration: {{nextDay | amDifference: today :'days' : true}} days\r\n  `\r\n})\r\n```\r\nPrints `Expiration: 1 day`\r\n\r\n## amAdd and amSubtract pipes\r\n\r\nUse these pipes to perform date arithmetics. See [momentjs docs](http://momentjs.com/docs/#/manipulating/add/) for details.\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Expiration: {{'2017-03-17T16:55:00.000+01:00' | amAdd: 2 : 'hours' | amDateFormat: 'YYYY-MM-DD HH:mm'}}\r\n  `\r\n})\r\n```\r\nPrints `Expiration: 2017-03-17 18:55`\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{'2017-03-17T16:55:00.000+01:00' | amSubtract: 5 : 'years' | amDateFormat: 'YYYY-MM-DD HH:mm'}}\r\n  `\r\n})\r\n```\r\nPrints `Last updated: 2012-03-17 16:55`\r\n\r\n## amFromUtc pipe\r\n\r\nParses the date as UTC and enables mode for subsequent moment operations (such as displaying the time in UTC). This can be combined with `amLocal` to display a UTC date in local time.\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{ '2016-12-31T23:00:00.000-01:00' | amFromUtc | amDateFormat: 'YYYY-MM-DD' }}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: 2017-01-01`\r\n\r\n## amUtc pipe\r\n\r\nEnables UTC mode for subsequent moment operations (such as displaying the time in UTC).\r\n\r\n``` typescript\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: {{ '2016-12-31T23:00:00.000-01:00' | amUtc | amDateFormat: 'YYYY-MM-DD' }}\r\n  `\r\n})\r\n```\r\n\r\nPrints `Last updated: 2017-01-01`\r\n\r\nComplete Example\r\n----------------\r\n\r\n``` typescript\r\nimport { NgModule, Component } from '@angular/core';\r\nimport { BrowserModule } from '@angular/platform-browser';\r\nimport { platformBrowserDynamic } from '@angular/platform-browser-dynamic';\r\nimport { MomentModule } from 'angular2-moment';\r\n\r\n@Component({\r\n  selector: 'app',\r\n  template: `\r\n    Last updated: <b>{{myDate | amTimeAgo}}</b>, <b>{{myDate | amCalendar}}</b>, <b>{{myDate | amDateFormat:'LL'}}</b>\r\n  `\r\n})\r\nexport class AppComponent {\r\n  myDate: Date;\r\n\r\n  constructor() {\r\n    this.myDate = new Date();\r\n  }\r\n}\r\n\r\n@NgModule({\r\n  imports: [\r\n    BrowserModule,\r\n    MomentModule\r\n  ],\r\n  declarations: [ AppComponent ]\r\n  bootstrap: [ AppComponent ]\r\n})\r\nclass AppModule {}\r\n\r\nplatformBrowserDynamic().bootstrapModule(AppModule);\r\n```\r\n\r\nDemo\r\n----\r\n\r\n[See online demo on Plunker](http://plnkr.co/edit/ziBJ0mftSjnz0SrYPwbo?p=preview)\r\n","repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"users":{"jonabasque":true,"ibarral":true,"wukaidong":true,"unludo":true,"adit.cmarix":true,"amaneer94":true,"stephanlv":true,"fagnerlima91":true},"bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"license":"MIT","versions":{"0.0.1":{"name":"angular2-moment","version":"0.0.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"TimeAgoPipe.ts","scripts":{"test":"karma start"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-alpha.35","moment":"^2.10.6"},"devDependencies":{"es6-shim":"^0.33.1","es6-symbol":"^2.0.1","jasmine-core":"^2.3.4","karma":"^0.13.9","karma-chrome-launcher":"^0.2.0","karma-jasmine":"^0.3.6","karma-phantomjs-launcher":"^0.2.1","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","phantomjs":"^1.9.18","reflect-metadata":"^0.1.0","typescript":"^1.5.3","typescript-simple-loader":"^0.3.4","webpack":"^1.11.0"},"gitHead":"3dc3a449c92d04b5093bb68f15c64708b5c7eb47","_id":"angular2-moment@0.0.1","_shasum":"cc55af6d859ccd67bd324774c9c032a7efc3e87d","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"cc55af6d859ccd67bd324774c9c032a7efc3e87d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.0.1.tgz","integrity":"sha512-m+ihmxB1NtTkANgY65l23eNf9nXEQU/oLZ1f97N+IFMKFJCh9e3VI/NvTWKweKCp+EP4s+inotNnFuCjbQ92kQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBVO2XcY9MUCd0kVQmdqViifT6wxRbJCuI4RLxB/YTnfAiEA0Rnhak+QpS4muC3mujRfNcKB+EawmIwoUTgeye5z3cs="}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.0.2":{"name":"angular2-moment","version":"0.0.2","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"TimeAgoPipe.ts","scripts":{"test":"karma start"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-alpha.37","moment":"^2.10.6"},"devDependencies":{"es6-shim":"0.33.3","es6-symbol":"^2.0.1","jasmine-core":"^2.3.4","karma":"^0.13.9","karma-chrome-launcher":"^0.2.0","karma-jasmine":"^0.3.6","karma-phantomjs-launcher":"^0.2.1","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","phantomjs":"^1.9.18","reflect-metadata":"0.1.1","typescript":"1.6.2","typescript-simple-loader":"0.3.7","webpack":"^1.11.0"},"gitHead":"e8fad6dc76d434e1c2d8adaa3df5c30db15c646c","_id":"angular2-moment@0.0.2","_shasum":"ba93b755e5007b5d99ce780d9494db35399eb36c","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"ba93b755e5007b5d99ce780d9494db35399eb36c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.0.2.tgz","integrity":"sha512-HHIb+wlyIWT985+PSIw4lvuBVqUXjJKMg4RyfJw1kiBQ4+GQMkEXZGSVRqrFZZo7aSDzmtm+3Ux7qLxowyS8wQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEkbgNPFe84I+bR4RCtTY8Dug3FT3xxVlZcecWqZuGQuAiEAwRLSx/9kjn0ohWck/5mkV/7yie222+yZSS+WjKD8sf0="}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.0.3":{"name":"angular2-moment","version":"0.0.3","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"TimeAgoPipe.ts","scripts":{"test":"karma start"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-alpha.44","moment":"^2.10.6"},"devDependencies":{"es6-shim":"0.33.3","es6-symbol":"^2.0.1","jasmine-core":"^2.3.4","karma":"^0.13.9","karma-chrome-launcher":"^0.2.0","karma-jasmine":"^0.3.6","karma-phantomjs-launcher":"^0.2.1","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","phantomjs":"^1.9.18","reflect-metadata":"0.1.1","typescript":"1.6.2","typescript-simple-loader":"0.3.7","webpack":"^1.11.0"},"gitHead":"64da3b49897011a512e531ce8caa7259126a3721","_id":"angular2-moment@0.0.3","_shasum":"db67a1cb48314feacecda99926114be4ce8efb2d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"db67a1cb48314feacecda99926114be4ce8efb2d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.0.3.tgz","integrity":"sha512-owWe6tTJYRVWDqWtxPQCO/rrnPhER5+dHimuUtrOf5w3L67fXzi6b9UhOhRbpTwYswmJKb0XcCg89z8fLb9YRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDVGwQzLzJ3gcyYjkTVYlngszwS2DZkWzUWgMCSufA+EQIhAPbvXCBeYmurxsYUjbcQ6IhmCDDLxuUhPgtnm9BhrtwG"}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.0.4":{"name":"angular2-moment","version":"0.0.4","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"TimeAgoPipe.js","typings":"./TimeAgoPipe.d.ts","files":["TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","CHANGELOG.md"],"scripts":{"test":"tsd install && tsc && karma start","prepublish":"tsd install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-alpha.44","moment":"^2.10.6"},"devDependencies":{"es6-shim":"0.33.3","es6-symbol":"^2.0.1","jasmine-core":"^2.3.4","karma":"^0.13.9","karma-chrome-launcher":"^0.2.0","karma-jasmine":"^0.3.6","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","reflect-metadata":"0.1.1","tsd":"^0.6.5","typescript":"1.6.2","typescript-simple-loader":"0.3.7","webpack":"^1.11.0"},"gitHead":"40b30eb8073f2d37f23adcaebc5ded12bf595b76","_id":"angular2-moment@0.0.4","_shasum":"92f5725224492ed0ea4f9a1294898cb5789ad82e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"92f5725224492ed0ea4f9a1294898cb5789ad82e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.0.4.tgz","integrity":"sha512-7ZXeBtzmUddMp+JFF0TwulWz22FPEaqyf0LrKUtktYvVjQz5p+j1spPGcISmcAgRz3FOBR2GrKxZiPIm0WTnhw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHmuUON6H90zGv12xV1awW0MgyvFQS6RXpRjOTpQeJTPAiEA+ba+LCLQ4FtJiEP1s0aesRG4t8vjUfz7ToAoSSaZAD4="}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.0.5":{"name":"angular2-moment","version":"0.0.5","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"TimeAgoPipe.js","typings":"./TimeAgoPipe.d.ts","files":["TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","typings","CHANGELOG.md"],"scripts":{"test":"tsd install && tsc && karma start","prepublish":"tsd install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-alpha.46","moment":"^2.10.6"},"devDependencies":{"es6-shim":"0.33.12","es6-symbol":"^3.0.1","jasmine-core":"^2.3.4","karma":"^0.13.15","karma-chrome-launcher":"^0.2.1","karma-jasmine":"^0.3.6","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","tsd":"^0.6.5","typescript":"1.6.2","typescript-simple-loader":"0.3.8","webpack":"^1.11.0"},"gitHead":"9d96026049229fa793e35db42e063e75d06aba9a","_id":"angular2-moment@0.0.5","_shasum":"0afc1664f2d68bf2354e6e120329629a019933e0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"0afc1664f2d68bf2354e6e120329629a019933e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.0.5.tgz","integrity":"sha512-iPrg0YkqwuaOsTNmb4GWoPetCPRaiEGA684M0v1MJRM3MF6kQHiAbP0zBDkSX/6m/vC21YbH86J0KPSF7ZwlgQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHLGry38E/yXTRA7JM/YMGgw2N67smn/OZSBN+2HypD8AiEA2Q7QD3S0TyiBRejirjVTdlUvwd66BPh7IP/1sdSXoPI="}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.1.0":{"name":"angular2-moment","version":"0.1.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"TimeAgoPipe.js","typings":"./TimeAgoPipe.d.ts","files":["TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","typings","CHANGELOG.md"],"scripts":{"test":"tsd install && tsc && karma start","prepublish":"tsd install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.0","moment":"^2.10.6"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"0.33.13","es6-symbol":"^3.0.1","jasmine-core":"^2.3.4","karma":"^0.13.15","karma-chrome-launcher":"0.2.2","karma-jasmine":"^0.3.6","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.0","ts-loader":"^0.7.2","tsd":"0.6.5","typescript":"1.7.3","typescript-simple-loader":"0.3.8","webpack":"1.12.9","zone.js":"^0.5.10"},"gitHead":"8e9716916b1c31db23294af9c3427fb450a32573","_id":"angular2-moment@0.1.0","_shasum":"bdd038aaa1a07a2f8ff612bbb965c8bd5a282110","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"bdd038aaa1a07a2f8ff612bbb965c8bd5a282110","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.1.0.tgz","integrity":"sha512-qns9VfBTflxXAPI5MRWAqoxBZZG+rKZglFQB0rBDhyHRNTC3qtq82QnuIA76u/1JTbK2zg9X3F6asc/fXCHcNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE0ay/LBEMEllLkasm9dNCUAWPbor63wjOx84CEEW7L7AiAmLvig3cCDsaJiFxsj4+QIn/vL/vnDfD8LUH4oJo8GMw=="}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.1.1":{"name":"angular2-moment","version":"0.1.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"TimeAgoPipe.js","typings":"./TimeAgoPipe.d.ts","files":["TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","typings","CHANGELOG.md"],"scripts":{"test":"tsd install && tsc && karma start","prepublish":"tsd install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.0","moment":"^2.10.6"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"0.33.13","es6-symbol":"^3.0.1","jasmine-core":"^2.3.4","karma":"^0.13.15","karma-chrome-launcher":"0.2.2","karma-jasmine":"^0.3.6","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.0","ts-loader":"^0.7.2","tsd":"0.6.5","typescript":"1.7.3","typescript-simple-loader":"0.3.8","webpack":"1.12.9","zone.js":"^0.5.10"},"gitHead":"c5b13b6cedd31ae049f4ca3221c85cd01d745ffc","_id":"angular2-moment@0.1.1","_shasum":"28e27a52dca5b577b3027619525a0d55bf93da78","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"28e27a52dca5b577b3027619525a0d55bf93da78","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.1.1.tgz","integrity":"sha512-5x/ZCwAz8rjGSjnwxHubW+ksPyQNEz4RPRTao+zyaO/eM6/lE6WHK0/Zv5Xv5ncTFRaIqJzEmmiavcT/Gcck2Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCf5DbR5M1N5WqVLkTWkyNTrWnTIV9jpJrPiCl6rC/QzgIgPzTU8RLWIIINagLDFczQt92a8y/ivMgDFKC0s5fbE3Q="}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.2.0":{"name":"angular2-moment","version":"0.2.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","typings","CHANGELOG.md"],"scripts":{"test":"tsd install && tsc && karma start","prepublish":"tsd install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.0","moment":"^2.10.6"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"0.33.13","es6-symbol":"^3.0.1","jasmine-core":"^2.3.4","karma":"^0.13.15","karma-chrome-launcher":"0.2.2","karma-jasmine":"^0.3.6","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.0","ts-loader":"^0.7.2","tsd":"0.6.5","typescript":"1.7.3","typescript-simple-loader":"0.3.8","webpack":"1.12.9","zone.js":"^0.5.10"},"gitHead":"20eaa5f3e0e4f6261246b1691beaaa89b83cbf70","_id":"angular2-moment@0.2.0","_shasum":"2d57a9663a328143b8f0f634807e2fa63dad2446","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"2d57a9663a328143b8f0f634807e2fa63dad2446","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.2.0.tgz","integrity":"sha512-cuWB67nQFr4iV640BTOheiDSJx6PSkyMMiYQpvu/jS0uXvi8ZYafcMT+rLNdrqx/qNmeAYQrEkv3EELO7z1JcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnfbv3YCtYlNIXIEenK1iH1FrtP0zQO/dlQ8MO2lrdRAIhAJ474PC1XIrFjLzuGMBEk9Sru8TfDt0warB5hEKd/4Bs"}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.2.1":{"name":"angular2-moment","version":"0.2.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","typings","CHANGELOG.md"],"scripts":{"test":"tsd install && tsc && karma start","prepublish":"tsd install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.0","moment":"^2.10.6"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"0.33.13","es6-symbol":"^3.0.1","jasmine-core":"^2.3.4","karma":"^0.13.15","karma-chrome-launcher":"0.2.2","karma-jasmine":"^0.3.6","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.0","ts-loader":"^0.7.2","tsd":"0.6.5","typescript":"1.7.3","typescript-simple-loader":"0.3.8","webpack":"1.12.9","zone.js":"^0.5.10"},"gitHead":"273bb5e2ba1f93a10eae8819d7314a6778f9fc6a","_id":"angular2-moment@0.2.1","_shasum":"eb54c57290835974c08b7e3902f49779123df8ce","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"eb54c57290835974c08b7e3902f49779123df8ce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.2.1.tgz","integrity":"sha512-HOkH3hPvhwATtSaWiQ/Sm8OHBWinRrH3YGSFzuFuhj4YhT3SCMgcWm9BVMkVLv8Wm6a2QyqdBin/9plxyrTkYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGFUQF0+PgssaBOVfuNNATu37ngViwHAwuaco8iEao1RAiEA0j6GSY3tSUiKdnkFaw7Gt5LkD8zBa4PiYOtVoB4SbqI="}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.3.0":{"name":"angular2-moment","version":"0.3.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","typings","CHANGELOG.md"],"scripts":{"test":"tsd install && tsc && karma start","prepublish":"tsd install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.0","moment":"^2.10.6"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"0.33.13","es6-symbol":"^3.0.1","jasmine-core":"^2.3.4","karma":"0.13.19","karma-chrome-launcher":"0.2.2","karma-jasmine":"^0.3.6","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.0","ts-loader":"0.8.0","tsd":"0.6.5","typescript":"1.7.5","typescript-simple-loader":"0.3.8","webpack":"1.12.12","zone.js":"^0.5.10"},"gitHead":"060630d870a1bc83cb3d9174a254fd00d1dba43f","_id":"angular2-moment@0.3.0","_shasum":"9e717cb048ec39ac44111d4a832d0ea1d03475f3","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"9e717cb048ec39ac44111d4a832d0ea1d03475f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.3.0.tgz","integrity":"sha512-WlMbxP5yXUUQa3b2HYOwQwpgNYXhwbbFW9bqb2+fUDYqBIvs4yQezKsXRCq5Pz3cTNhmyCHxJ1x9+yrRmyQImg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEmVlgZeg50jp32OnLzmLONn6geX0gNIwnda319KbzyAAiB994byt8scahuazguBpD8XPE6Y1QXzyiNaZSxi7tPKuA=="}]},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.4.0":{"name":"angular2-moment","version":"0.4.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","CHANGELOG.md"],"scripts":{"postinstall":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.6","moment":"^2.11.2"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"^0.33.3","jasmine-core":"2.4.1","karma":"0.13.21","karma-chrome-launcher":"0.2.2","karma-jasmine":"0.3.7","karma-sourcemap-loader":"0.3.7","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.0","ts-loader":"0.8.1","tslint":"3.3.0","typescript":"1.7.5","typings":"0.6.8","webpack":"1.12.13","zone.js":"^0.5.10"},"gitHead":"9e6838c1294bc909fc36afb9142453a004254fd3","_id":"angular2-moment@0.4.0","_shasum":"859087fd657ede8f6a724de726d561cf06eee0bf","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"859087fd657ede8f6a724de726d561cf06eee0bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.4.0.tgz","integrity":"sha512-qnw3/E9JhQMoU5FwAFT7Kkyc+ZjJvMevEo6NZuZL1GCc/kwxAKZjWJRxhIZBKIBgz6AH8kdB6Qmd5Bm8XjUNrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFjowanuw77q2gXvtTb63MNY99RJgeNIGNm6l7gdhNH2AiEAuSgaLRmihwYdmb+qBQGlgFnXMoLn7JJUezteHz7D1Ik="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/angular2-moment-0.4.0.tgz_1455632498177_0.14432257413864136"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.4.1":{"name":"angular2-moment","version":"0.4.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.6","moment":"^2.11.2"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"^0.33.3","jasmine-core":"2.4.1","karma":"0.13.21","karma-chrome-launcher":"0.2.2","karma-jasmine":"0.3.7","karma-sourcemap-loader":"0.3.7","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"^5.0.0-beta.0","ts-loader":"0.8.1","tslint":"3.3.0","typescript":"1.7.5","typings":"0.6.8","webpack":"1.12.13","zone.js":"^0.5.10"},"gitHead":"edf57d80a238bfcc79b08c0a8610f7e0523fea7b","_id":"angular2-moment@0.4.1","_shasum":"82fd3163c32b28312b47422f6c917fbfe6d4f2f5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"82fd3163c32b28312b47422f6c917fbfe6d4f2f5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.4.1.tgz","integrity":"sha512-1v/6AoXEmb9Wle3wu4UO6+MxPCQ1isCVofmu0sIpVSjLYEfRDVpqL9+BQY2AvbCJFzooSiKDNLGmMCf85n/poQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCinVw/nZ9BQSqSoZLaIPkyg+aunpJG8rM2GwL+fqLySQIhAPgMLxbrzOAOlZd/fnm1Hps0wZrSlmQQOJbeiYuZYKSf"}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/angular2-moment-0.4.1.tgz_1456088548402_0.5703344198409468"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.4.2":{"name":"angular2-moment","version":"0.4.2","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.6","moment":"^2.11.2"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"^0.33.3","jasmine-core":"2.4.1","karma":"0.13.21","karma-chrome-launcher":"0.2.2","karma-jasmine":"0.3.7","karma-sourcemap-loader":"0.3.7","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"^5.0.0-beta.0","ts-loader":"0.8.1","tslint":"3.3.0","typescript":"1.7.5","typings":"0.6.8","webpack":"1.12.13","zone.js":"^0.5.10"},"gitHead":"75547109316e7f82374bbd3d7248cf4c3b2c4c4f","_id":"angular2-moment@0.4.2","_shasum":"7a844e30a9a7f637c6f52592d7bb1d7099b91db4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"7a844e30a9a7f637c6f52592d7bb1d7099b91db4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.4.2.tgz","integrity":"sha512-bdiMveKPVH7iU7povfTsEoE0tXMUvlIH/qAjUpDdjph+MOj3GYUqHjiGDDR0TgE7J7KxRHYND5ffsiBd9iShIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8Kdm9FQe49qVJYVyN2O5U6u/a6HfakJfb+NMK2y+PsAIgJ/9V/aD0F6/yFqtIYLS3S+hoWnjAt9uLSZhT+wFdyhk="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/angular2-moment-0.4.2.tgz_1456358845711_0.15700821089558303"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.4.3":{"name":"angular2-moment","version":"0.4.3","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","typings.json","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","dependencies":{"angular2":"^2.0.0-beta.6","moment":"^2.11.2"},"devDependencies":{"es6-promise":"^3.0.2","es6-shim":"^0.33.3","jasmine-core":"2.4.1","karma":"0.13.21","karma-chrome-launcher":"0.2.2","karma-jasmine":"0.3.7","karma-sourcemap-loader":"0.3.7","karma-webpack":"^1.7.0","reflect-metadata":"0.1.2","rxjs":"^5.0.0-beta.0","ts-loader":"0.8.1","tslint":"3.3.0","typescript":"1.7.5","typings":"0.6.8","webpack":"1.12.13","zone.js":"^0.5.10"},"gitHead":"88f5ef940525ff78d7f42d54d789b0e90e93bcd3","_id":"angular2-moment@0.4.3","_shasum":"cfe7642b80a53af56ae232f578d8e78e33218efb","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"cfe7642b80a53af56ae232f578d8e78e33218efb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.4.3.tgz","integrity":"sha512-PXv1kciL9Q8petqq/klTi1s1cliCxv2PZrkw/EpkkhI2tWuy8/k/oM3aGfy8fb2ppnCzMC2qNU7KhUNBFNWB8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH2PXySpNI6OzY3wnFTezKXV+bM6VGVfNrokE/Q792iNAiBD/Ar/Hp3sGmDSCu4Gr7AV3NznZONrndlXHWc2bJdtOw=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-0.4.3.tgz_1457273139346_0.44705787510611117"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.5.0":{"name":"angular2-moment","version":"0.5.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","typings.json","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"angular2":"^2.0.0-beta.6"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"angular2":"2.0.0-beta.12","es6-promise":"3.1.2","es6-shim":"0.35.0","jasmine-core":"2.4.1","karma":"0.13.22","karma-jasmine":"0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.2","ts-loader":"0.8.1","tslint":"3.6.0","typescript":"1.8.9","typings":"0.7.9","webpack":"1.12.14","zone.js":"0.6.6"},"gitHead":"7173d22dc928e73cf9b80d7c6c139a2a638118b2","_id":"angular2-moment@0.5.0","_shasum":"0e51963c1b18b8500e43615d57b1937030915dea","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"0e51963c1b18b8500e43615d57b1937030915dea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.5.0.tgz","integrity":"sha512-aObqWS8cGkWGG8ywnKOvQ+CTiTOsVNSam6QHA14cNBQQdlyTsFJZ+XprlHvNWSw42M9nTem0rZC36KP4rJvuag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICPjfWnoP1KTRmGMZLzCpmzuvpjELBXbRlouiyeTByqnAiBMmKgLDutIEsJpy1YPbc9Wi7g1MXVYQh6lyB62pXHD6Q=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-0.5.0.tgz_1460113127321_0.057381945895031095"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.6.0":{"name":"angular2-moment","version":"0.6.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","typings.json","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"angular2":"^2.0.0-beta.16"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"angular2":"2.0.0-beta.16","es6-promise":"3.1.2","es6-shim":"0.35.0","jasmine-core":"2.4.1","karma":"0.13.22","karma-jasmine":"0.3.8","karma-phantomjs-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.2","ts-loader":"0.8.2","tslint":"3.8.1","typescript":"1.8.10","typings":"0.8.1","webpack":"1.13.0","zone.js":"0.6.12"},"gitHead":"660476ca5c597aa73ca901731adaba4517da8497","_id":"angular2-moment@0.6.0","_shasum":"76dc081417582a04e33f0a9a2ff33b2034f410f0","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"76dc081417582a04e33f0a9a2ff33b2034f410f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.6.0.tgz","integrity":"sha512-3i0N/TUe7V5nny2+o48+K9fkPkSEkKjq01oPt0haA/mgZZ9kR6fWnYEmxhaiGKI6bCJgr1FPWcOchjcV89AQkw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXprHu+2xSIrOw0QF/2SKcJ9zGYCRDQSGYWdTIbWBtrQIgJRJRd5InQahxrxbZInvsObRQkJUF5FWTpYz5QiVF7TU="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-moment-0.6.0.tgz_1461835435400_0.6547725789714605"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.7.0":{"name":"angular2-moment","version":"0.7.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.ts","typings.json","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc"},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.0"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"@angular/core":"2.0.0-rc.0","es6-promise":"3.1.2","es6-shim":"0.35.0","jasmine-core":"2.4.1","karma":"0.13.22","karma-jasmine":"0.3.8","karma-phantomjs-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.6","ts-loader":"0.8.2","tslint":"3.8.1","typescript":"1.8.10","typings":"0.8.1","webpack":"1.13.0","zone.js":"0.6.12"},"gitHead":"5e3b4f3035250147b8220b8c5bc30870887eb768","_id":"angular2-moment@0.7.0","_shasum":"98a8d8d2124d5c05fdcabbc2e773148fa0bcd977","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"98a8d8d2124d5c05fdcabbc2e773148fa0bcd977","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.7.0.tgz","integrity":"sha512-sH7QG2cybwv30oJRJZPfsZD0BMRxv9rKbyXTKpegEEc+lPCrKBFoVjke0OyqMbOSrYUPRIYe7wEzThsn7Ghpng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHXtuxM8PX0I5ntUxfDSNu1LX7Zr6U2V1z3ZmJdRWo7FAiEA6EY432pQdok5QljOJnbOS0XjShaJTJnEvmtcIFyLNuk="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-0.7.0.tgz_1462288172063_0.9986221566796303"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.8.0":{"name":"angular2-moment","version":"0.8.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","src/index.ts","typings.json","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","src/CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","src/DateFormatPipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","src/DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","src/TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","src/FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc --outDir ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.0"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"@angular/core":"2.0.0-rc.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"0.13.22","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.6","ts-loader":"0.8.2","tslint":"3.10.2","typescript":"1.8.10","typings":"1.0.4","webpack":"1.13.1","zone.js":"0.6.12"},"gitHead":"8cd7fe27750cd4d0b5a8866a94ddbc806f04969e","_id":"angular2-moment@0.8.0","_shasum":"dbde898edac080db9feeab604f0c63745d357a54","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"dbde898edac080db9feeab604f0c63745d357a54","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.8.0.tgz","integrity":"sha512-77aGA1Wv+mVoFBdtmujODrCpZuVch2kKKUKq0FB2XkEdO97aseuno2WO1C/K7ItiHAca/vnjg+lq73zkI/fsXQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGNF8OKh3/9zdNNlX1XISPksc3xyK4sJ7uALbGo6xyE4AiAFMSYvLI5NYc7145YBzpneJZZXrvGiqwfhE3+QKhrTTw=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-moment-0.8.0.tgz_1463947876388_0.5790337705984712"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.8.1":{"name":"angular2-moment","version":"0.8.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","src/index.ts","typings.json","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","src/CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","src/DateFormatPipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","src/DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","src/TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","src/FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint *.ts && typings install && tsc && karma start","prepublish":"typings install && tsc --outDir ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.0"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"@angular/core":"2.0.0-rc.4","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.6","ts-loader":"0.8.2","tslint":"3.13.0","typescript":"1.8.10","typings":"1.3.1","webpack":"1.13.1","zone.js":"0.6.12"},"gitHead":"90506c0bc3500859fc0188ecb5eb75f1d86f1ea2","_id":"angular2-moment@0.8.1","_shasum":"090e942689d01f6e841ad3a78c1da43ddfc604ac","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"090e942689d01f6e841ad3a78c1da43ddfc604ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.8.1.tgz","integrity":"sha512-0xz11zL/lwFFgWdlXJLHvjMr7kr5g0gDpySYKhFee1TFWe8h2urRnoftrSxndvde03TlwOstWdOECoWFjrKXjw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMJC8Qalv3HqMYmqRRRvGpBqjv3NOcVmMuC93ZjG8UOwIhAJLLyYY6FnkA1rQ7hwlouyzdWOD7oVOlmQkCgAkpu0q0"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-moment-0.8.1.tgz_1467557590090_0.4905412730295211"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"0.8.2":{"name":"angular2-moment","version":"0.8.2","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","src/index.ts","typings.json","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","src/CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","src/DateFormatPipe.ts","DifferencePipe.js","DifferencePipe.js.map","DifferencePipe.d.ts","src/DifferencePipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","src/DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","src/TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","src/FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint src/*.ts && typings install && tsc && karma start","prepublish":"typings install && tsc --outDir ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.0"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"@angular/core":"2.0.0-rc.4","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.6","ts-loader":"0.8.2","tslint":"3.13.0","typescript":"1.8.10","typings":"1.3.1","webpack":"1.13.1","zone.js":"0.6.12"},"gitHead":"3d67595ed8857347518258817e187bc0043fe9a4","_id":"angular2-moment@0.8.2","_shasum":"b930b30ed08dd1f682b782ed6afbdbe1313d72c3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"b930b30ed08dd1f682b782ed6afbdbe1313d72c3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-0.8.2.tgz","integrity":"sha512-mXVaFR8L++d9R3QlR8VqOOd26RxwwE6DvupTm3/hoLoEfk2DLOlRx6D5nsex2QIJBuWff0F7l+zSNkiM3Rdxvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMw82Z6xQgO6EoK6IF/paEoIiYVazlWv+ig5xZGg6vRwIhAMlzxjOA0XiPnWythiwIfzWKBbD6WHLFCr58nNb4xo/Z"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-0.8.2.tgz_1470091918313_0.8778888159431517"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.0.0-beta.1":{"name":"angular2-moment","version":"1.0.0-beta.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","src/index.ts","module.js","module.js.map","module.d.ts","src/module.ts","typings.json","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","src/CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","src/DateFormatPipe.ts","DifferencePipe.js","DifferencePipe.js.map","DifferencePipe.d.ts","src/DifferencePipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","src/DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","src/TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","src/FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"install_typings":"typings install","test":"tslint src/*.ts && typings install && tsc && karma start","prepublish":"typings install && tsc --outDir ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"@angular/core":"2.0.0-rc.5","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.6","ts-loader":"0.8.2","tslint":"3.13.0","typescript":"1.8.10","typings":"1.3.1","webpack":"1.13.1","zone.js":"0.6.12"},"gitHead":"97f9ede47ee75a6685774f458805481985c59d0e","_id":"angular2-moment@1.0.0-beta.1","_shasum":"83a4ceefcebe5e2091a4befc83fcbac84774f849","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"83a4ceefcebe5e2091a4befc83fcbac84774f849","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.0.0-beta.1.tgz","integrity":"sha512-V5xNcd7loEJL6oInShIGIDVldB91wlNC05S0V+SNIjlwRo0QieWZ3heYvyCZRos8TAxJ4UJvYo0eZXN8vg6RCQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDaizRQ9Rj+skUB3cL3aw0e2/nEcD/00UNCkZ2TRzbp0AiBcf2gklNIF7L0/Gf0odpbZCnK5kagqRHJyDXzrpwvTZw=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.0.0-beta.1.tgz_1471363043444_0.07032269518822432"},"directories":{}},"1.0.0-beta.2":{"name":"angular2-moment","version":"1.0.0-beta.2","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","src/index.ts","module.js","module.js.map","module.d.ts","module.metadata.json","src/module.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.metadata.json","src/CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.metadata.json","src/DateFormatPipe.ts","DifferencePipe.js","DifferencePipe.js.map","DifferencePipe.d.ts","DifferencePipe.metadata.json","src/DifferencePipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","DurationPipe.metadata.json","src/DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.metadata.json","src/TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","FromUnixPipe.metadata.json","src/FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"@angular/common":"2.0.1","@angular/compiler":"2.0.1","@angular/compiler-cli":"0.6.3","@angular/core":"2.0.1","@angular/platform-browser":"2.0.1","@angular/platform-server":"2.0.1","@types/jasmine":"2.2.34","@types/moment":"2.13.0","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"4405e6487dc2e1037ff743f3e0a01d39707fc1fe","_id":"angular2-moment@1.0.0-beta.2","_shasum":"3afd3f1050b9557885a85056aa83197bf1acb745","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"3afd3f1050b9557885a85056aa83197bf1acb745","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.0.0-beta.2.tgz","integrity":"sha512-zOILcihx1ad34KY7f/xkyXqKpByNvjvPUVcESqa/6INvCCe2VFMrbSM7CU5gTTrQqve8O6k+N4B7PP+IyB48dA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH5rwYdzMIUMNdzRgolOb1OBPkKXZ7iidT5QbtFrEdp8AiB4bGozmGDBBDpZvVKK3wLR4bLi1ShYfLTRlyN/BEs10A=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-moment-1.0.0-beta.2.tgz_1475358285742_0.9376441510394216"},"directories":{}},"1.0.0-beta.3":{"name":"angular2-moment","version":"1.0.0-beta.3","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","src/index.ts","module.js","module.js.map","module.d.ts","module.metadata.json","src/module.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.metadata.json","src/CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.metadata.json","src/DateFormatPipe.ts","DifferencePipe.js","DifferencePipe.js.map","DifferencePipe.d.ts","DifferencePipe.metadata.json","src/DifferencePipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","DurationPipe.metadata.json","src/DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.metadata.json","src/TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","FromUnixPipe.metadata.json","src/FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.11.2"},"devDependencies":{"@angular/common":"2.0.1","@angular/compiler":"2.0.1","@angular/compiler-cli":"0.6.3","@angular/core":"2.0.1","@angular/platform-browser":"2.0.1","@angular/platform-server":"2.0.1","@types/jasmine":"2.2.34","@types/moment":"2.13.0","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"88ec4df193e0293d5b8044ec253a2d168b554f09","_id":"angular2-moment@1.0.0-beta.3","_shasum":"f0cba8e35dbfec35338bdc4dd01d666f8b27f7df","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"f0cba8e35dbfec35338bdc4dd01d666f8b27f7df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.0.0-beta.3.tgz","integrity":"sha512-lBC21YV57SW0jtscb3ucenXmqTCRyN8Sh79dZ8hnAMInXXe3XhavNRkGLrAb9WC26luPxdYP58r037z5egrnVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFClj4BGgHukkFxEQoxlP+wBZO+4c5k/Kadxn8JtOYvBAiAcsGzyaTdo+KQ68xoB0VwZ32z1TBj+/fQusbVfDyYm1A=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-moment-1.0.0-beta.3.tgz_1475567230248_0.9933243624400347"},"directories":{}},"1.0.0-beta.4":{"name":"angular2-moment","version":"1.0.0-beta.4","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","src/index.ts","module.js","module.js.map","module.d.ts","module.metadata.json","src/module.ts","CalendarPipe.js","CalendarPipe.js.map","CalendarPipe.d.ts","CalendarPipe.metadata.json","src/CalendarPipe.ts","DateFormatPipe.js","DateFormatPipe.js.map","DateFormatPipe.d.ts","DateFormatPipe.metadata.json","src/DateFormatPipe.ts","DifferencePipe.js","DifferencePipe.js.map","DifferencePipe.d.ts","DifferencePipe.metadata.json","src/DifferencePipe.ts","DurationPipe.js","DurationPipe.js.map","DurationPipe.d.ts","DurationPipe.metadata.json","src/DurationPipe.ts","TimeAgoPipe.js","TimeAgoPipe.js.map","TimeAgoPipe.d.ts","TimeAgoPipe.metadata.json","src/TimeAgoPipe.ts","FromUnixPipe.js","FromUnixPipe.js.map","FromUnixPipe.d.ts","FromUnixPipe.metadata.json","src/FromUnixPipe.ts","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"@types/moment":"^2.13.0","moment":"^2.11.2"},"devDependencies":{"@angular/common":"2.0.1","@angular/compiler":"2.0.1","@angular/compiler-cli":"0.6.3","@angular/core":"2.0.1","@angular/platform-browser":"2.0.1","@angular/platform-server":"2.0.1","@types/jasmine":"2.2.34","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"611a1960362fa5de4071176751d2bb5f4ed256d9","_id":"angular2-moment@1.0.0-beta.4","_shasum":"afdd4891a12be25874cb1bf6a84ea0d5293d2c81","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"afdd4891a12be25874cb1bf6a84ea0d5293d2c81","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.0.0-beta.4.tgz","integrity":"sha512-I8uPlntljthTHvn1uLXfq3+a/i9RomEPyNNuqQ49StnvGQCNG8+fC6K0l7DWzfYO+WF311Xwr67uun+Pi5ywJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICm6O1vt/lB8XjFlYEQnoJi5Y02dI+USVrskdhys4LC8AiBSPWyJMlgnsysZdT03WSxBspS6yAtLyzbzLldJZ+4hgA=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.0.0-beta.4.tgz_1475747659000_0.07267029280774295"},"directories":{}},"1.0.0-beta.5":{"name":"angular2-moment","version":"1.0.0-beta.5","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","src/index.ts","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","src/moment.module.ts","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","src/calendarPipe.ts","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","src/date-format.pipe.ts","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","src/difference.pipe.ts","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","src/duration.pipe.ts","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","src/time-ago.pipe.ts","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","src/from-unix.pipe.ts","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.13.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"a9f383924b42a39a89b519e8d1ba203ad3695503","_id":"angular2-moment@1.0.0-beta.5","_shasum":"5bf9146d201deec1bc66c9b311b37bd28ba63b7e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"5bf9146d201deec1bc66c9b311b37bd28ba63b7e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.0.0-beta.5.tgz","integrity":"sha512-Wbm5fuZIH3M/WC9+791Go2sT9J9Z8Oo2jhTFDLhhchRg1Tzy+yZpwRrs50vU92+dx1vLJ88BgUYPBb+tnXBYVw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICf66GoBSBDdlcvSuSScAsgecPTpUCx42ydO9HeBsnQ8AiAqmlFg0Kim6Xtk0hq1A4XJbvUsJQkR++/JvydJujrgMQ=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-moment-1.0.0-beta.5.tgz_1476385536674_0.39674718934111297"},"directories":{}},"1.0.0-beta.6":{"name":"angular2-moment","version":"1.0.0-beta.6","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.13.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"4fea343f3fa357d4d145a559e8d209f1fd3782d3","_id":"angular2-moment@1.0.0-beta.6","_shasum":"0355d57f6169597796581cb9c30495f17cc2d245","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"dist":{"shasum":"0355d57f6169597796581cb9c30495f17cc2d245","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.0.0-beta.6.tgz","integrity":"sha512-ILtBL/L3ik4pjkYDOkEVQ0gQZEJaflR6gQlDdTxvbLKYuBsr7OL97ZR++wEV5iNN6l7zagvSPAFPIocmsuCKrg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDBNy90XNP0YA/bhyy0gt5n+kaWdr+hUJDkd+th4lW0gwIgQV9KxEfiGGJ4ASY4Mlxug6wOVF1tARw1bH6sSWLXL2s="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-moment-1.0.0-beta.6.tgz_1477318431237_0.6958429059013724"},"directories":{}},"1.0.0-beta.rc.1":{"name":"angular2-moment","version":"1.0.0-beta.rc.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"ba20dd26cda1fd44a07dee57779494c8e205f1a5","_id":"angular2-moment@1.0.0-beta.rc.1","_shasum":"d69e5a0ccc39d80a4a91004aa5af04c5b48b2961","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"d69e5a0ccc39d80a4a91004aa5af04c5b48b2961","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.0.0-beta.rc.1.tgz","integrity":"sha512-VMLRCUBBcRCf1OY2Hznt7T/vlnjy+ys7O9eaJM7QIuPbJGetO21dPVjc0rL4XHKYzvwfEGews9RAaA2+0e4GzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICKyjVcxYyxvFONwR+77ePXzZnx7lbVsTeglt3vJ+5c2AiBxzRCz0rg5Rnos9OE3Po0W/N1/KaWnZznnLE8CkBymig=="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.0.0-beta.rc.1.tgz_1478890686435_0.4856365849263966"},"directories":{}},"1.0.0":{"name":"angular2-moment","version":"1.0.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"d968d58b74030f00348bcbd4b3518fecbb50a2a8","_id":"angular2-moment@1.0.0","_shasum":"540ee3bf1e5ee8edf76117dee421efc2cd8928cd","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"540ee3bf1e5ee8edf76117dee421efc2cd8928cd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.0.0.tgz","integrity":"sha512-xTPryCFQwYsAz5sVaKpI/sVho4tQDvy++TncUOnwdxzgGs3e0vw+PRKKNw9z+BvmnnlxnX9PzegGmZcl+tc8RA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDBjlq84n0WJiLgCDpaAyJouOjXHizMTpWqc99xCVY1NwIgJqXQBgFieh4yOcd+At8vSa43oon6CN5oQkbJOh6ZZ6g="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.0.0.tgz_1480593576232_0.8670133270788938"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.1.0":{"name":"angular2-moment","version":"1.1.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"11fe7b7ad3527a19bec01fa9cfa838fa3e045061","_id":"angular2-moment@1.1.0","_shasum":"9514d4abe60d32cd80af7e1cbf35dbe83c8146eb","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"9514d4abe60d32cd80af7e1cbf35dbe83c8146eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.1.0.tgz","integrity":"sha512-rvCHXZQ6XssMa7BzPp0QFFrCWfEqgKbHHXQ3vpQuRfMHViWxYvf3YIacvnVSq2sRn2P0Hw/Qk0PvX7sMtKYzPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICMpS3nm6XIkUrcoCy7ysm2QOKcpa9YAS5Qr3/NVuh+ZAiA5BhOfPCeTEf4Ww8ZjDzDWUQdlX/Bl7fWSrnpUwBoDhA=="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.1.0.tgz_1483953058576_0.9643927223514766"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.2.0":{"name":"angular2-moment","version":"1.2.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":"^2.0.0-rc.5"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"366b065cc66398e97dea9c715f32797303f2e4bd","_id":"angular2-moment@1.2.0","_shasum":"6463afbec233b071788ba4f59d8c932986b7e4a9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"6463afbec233b071788ba4f59d8c932986b7e4a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.2.0.tgz","integrity":"sha512-ZLi7wAKED1g2ow/YShMr9xPhcr6Z8JjrqJCPKS5HetXlSLC4DO9lKHFeK39VJU8NuKlDQoHeuZnWWm3rCjLaIw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE/Q5nD1j3kZNdSP2mroAPWw2qi/sGoYpcnRw6CZDEQnAiBcfGoIsL0a2509A548BzYf4ywfg0xwiCMdorZp1wdVCg=="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-moment-1.2.0.tgz_1486671335188_0.9429238508455455"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.3.0":{"name":"angular2-moment","version":"1.3.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <5.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"90e5dd637ed67580d28a960df696650f479ba90f","_id":"angular2-moment@1.3.0","_shasum":"6022cf279518e0b97fd743c22b5b93961030f4e7","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"6022cf279518e0b97fd743c22b5b93961030f4e7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.3.0.tgz","integrity":"sha512-DFzSjM19qAaIknnjLeQJY9Z9Ms2bYTajkkBAYSvxBzSHI8F8pQza70n6eZG/Fitw/qppiACcw6bfzeO8BuoFAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB/lsp8zpXVjVD1S7RlauHlhQfUF+5KtLzcluRVY34WFAiAA+b6ac7zwZhlduUpI0rDzGxaICuKIDthcBd6E/J9eTA=="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.3.0.tgz_1489192300207_0.7369240378029644"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.3.1":{"name":"angular2-moment","version":"1.3.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <5.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"bb748583fb7717dac75cd90bb5eb6fe2acf0d3e1","_id":"angular2-moment@1.3.1","_shasum":"016e938d06a0feae046bd1ba49c692793b659c21","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"016e938d06a0feae046bd1ba49c692793b659c21","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.3.1.tgz","integrity":"sha512-DwrI98KGeC4fb/5/6Cd5SKCWROv5U+L/xRfj+0hzlEOTPuonqtVNSqW52ab60a42kEvWRYi4yjSCLb2pYzaZEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICsPra9CovK5w4eXYKR5aOHLXx9QVUrSFWsWBSIzftYpAiBjMKpkY0oXxg6srekULmiJW/e/luTFf55HKV+z7MKwTg=="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.3.1.tgz_1489657303482_0.26972531294450164"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.3.2":{"name":"angular2-moment","version":"1.3.2","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <5.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"a07a1c8946e151080c046a3a80df078a7b19242a","_id":"angular2-moment@1.3.2","_shasum":"cc968bfbcf5e0209e74c7d62b542c84beb9637e6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"cc968bfbcf5e0209e74c7d62b542c84beb9637e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.3.2.tgz","integrity":"sha512-NjDe24QYFFoAsFi2yThV/PWSTZc7Ztp2CPhhbPxEnLvhYJIGoH3mP68LPfo8gVna92xGqQ0aR7HlJAO0b/hCNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIACVcUX+WZF3gZjci3SXS0Cl89rXZ4TN5/FGandzVr5cAiEAoXyQYKLmYHTRFbno3S7EbvB1I98JRRyeyaMQrnatz3c="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.3.2.tgz_1489796806914_0.1616207011975348"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.3.3":{"name":"angular2-moment","version":"1.3.3","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <5.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"21c56044e997c0a8cb70b5abfbc299dbf4eb92df","_id":"angular2-moment@1.3.3","_shasum":"569c433bbfa2448d5424f0e10dce6f8c8c9533eb","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"569c433bbfa2448d5424f0e10dce6f8c8c9533eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.3.3.tgz","integrity":"sha512-4zcghE1nO4MyzdaX/QlJiP3loQ/MI7ICPQI+vhIALz37sUNRERhk4WwB5iV+rk9PhgftmU1Ag24FfvljUqEZWg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEVUP28hUVECb4apv4ihuhYS9BwfjRMoqhuyGhbXFy8AAiEAug/j0LGFSmzH2Q6eEpR7IkZWIrqypeoIQmbASPz5kUo="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-moment-1.3.3.tgz_1489865259638_0.287911411607638"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.4.0":{"name":"angular2-moment","version":"1.4.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","parse.pipe.js","parse.pipe.js.map","parse.pipe.d.ts","parse.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && karma start","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <5.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.0.2","@angular/compiler":"2.0.2","@angular/compiler-cli":"0.6.4","@angular/core":"2.0.2","@angular/platform-browser":"2.0.2","@angular/platform-server":"2.0.2","@types/jasmine":"2.5.35","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jasmine-core":"2.4.1","karma":"1.1.0","karma-jasmine":"1.0.2","karma-phantomjs-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-webpack":"1.7.0","phantomjs-prebuilt":"2.1.7","reflect-metadata":"0.1.3","rxjs":"5.0.0-beta.12","tslint":"3.15.1","typescript":"2.0.3","webpack":"1.13.2","zone.js":"0.6.25"},"gitHead":"a0978d44310cc804ca11e1d258e94aa7f646e4e0","_id":"angular2-moment@1.4.0","_shasum":"3d59c1ebc28934fcfe9b888ab461e261724987e8","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"shasum":"3d59c1ebc28934fcfe9b888ab461e261724987e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.4.0.tgz","integrity":"sha512-juqGAFfoIK9TknNAx8dEaM9bqQmLo9/8oCjjqQowZwTzEdwgfp9q4WqIuToD5kslHnJSUz8Kio+hxweKzKVs5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTV+2ed4Pkrw/L5AyzznKZXyNlnCWpi+t0eRBExO3PNwIhAIJzGAiVyjLtTRI1i6DGdCDLe/v9yqhwlLTirl3MggSv"}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-moment-1.4.0.tgz_1497787757146_0.7980513139627874"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.5.0":{"name":"angular2-moment","version":"1.5.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","parse.pipe.js","parse.pipe.js.map","parse.pipe.d.ts","parse.pipe.metadata.json","locale.pipe.js","locale.pipe.js.map","locale.pipe.d.ts","locale.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && jest","test:watch":"jest --watch","test:coverage":"jest --coverage","test:debug":"node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <6.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.4.10","@angular/compiler":"2.4.10","@angular/compiler-cli":"2.4.10","@angular/core":"2.4.10","@angular/platform-browser":"2.4.10","@angular/platform-server":"2.4.10","@types/jest":"^20.0.2","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jest":"^20.0.4","reflect-metadata":"0.1.3","rxjs":"^5.0.1","tslint":"3.15.1","typescript":"^2.1.6","webpack":"1.13.2","zone.js":"^0.7.2"},"jest":{"roots":["src"],"transform":{"^.+\\.ts$":"<rootDir>/jest-typescript.js"},"setupTestFrameworkScriptFile":"<rootDir>/jest-setup.js","moduleFileExtensions":["ts","js"],"testRegex":"\\.spec\\.ts$"},"gitHead":"a4f36e48e30cb1c252b91832266a493a44ac36bb","_id":"angular2-moment@1.5.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.3","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"integrity":"sha512-FFtpvUH3mYc87STdT5XiAzEzbjYFUJTeHnUGxWKS0uRLPeVq4YtyBfKmqR9vb0yk2dCPqOolgrIFoKx5G4E40A==","shasum":"7cdeb1e9335469e5c8f2747e9eb6395048b547bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.5.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE8W2mpIVfLh0zxrh08gExmFucXSeg09mke0CurvPCWDAiEAiEoYgaHmgFqfA3WIX04KYi+YMjFue/9utYUkVuZPvBM="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-moment-1.5.0.tgz_1500043240785_0.4309326836373657"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.6.0":{"name":"angular2-moment","version":"1.6.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","parse.pipe.js","parse.pipe.js.map","parse.pipe.d.ts","parse.pipe.metadata.json","local.pipe.js","local.pipe.js.map","local.pipe.d.ts","local.pipe.metadata.json","locale.pipe.js","locale.pipe.js.map","locale.pipe.d.ts","locale.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && jest","test:watch":"jest --watch","test:coverage":"jest --coverage","test:debug":"node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <6.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.4.10","@angular/compiler":"2.4.10","@angular/compiler-cli":"2.4.10","@angular/core":"2.4.10","@angular/platform-browser":"2.4.10","@angular/platform-server":"2.4.10","@types/jest":"^20.0.2","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jest":"^20.0.4","reflect-metadata":"0.1.3","rxjs":"^5.0.1","tslint":"3.15.1","typescript":"^2.1.6","webpack":"1.13.2","zone.js":"^0.7.2"},"jest":{"roots":["src"],"transform":{"^.+\\.ts$":"<rootDir>/jest-typescript.js"},"setupTestFrameworkScriptFile":"<rootDir>/jest-setup.js","moduleFileExtensions":["ts","js"],"testRegex":"\\.spec\\.ts$"},"gitHead":"2dae7efd544b5f21e26888ef95832ced3c2d0752","_id":"angular2-moment@1.6.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.3","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"integrity":"sha512-agHrkCShavgwYdan32m/Y6/CBPdH+jsahOptlXW3yBJAZIFtC7V+yjk+JdsrxPHZuZ8hMtNd5mYoUP4WGnCxLA==","shasum":"2be11b63d9cbdff8fee06f575c1beee2d863d62b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.6.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCn+YgkrRXHgK4PwZzDDSvbuSSGRlcXZ0708nRONTumaQIgFNSzME/d1Db+0pM/gb6ya4bJ0JSDU9OCN/QDKTT3Glo="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-moment-1.6.0.tgz_1500370788693_0.09380972781218588"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.7.0":{"name":"angular2-moment","version":"1.7.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","from-utc.pipe.js","from-utc.pipe.js.map","from-utc.pipe.d.ts","from-utc.pipe.metadata.json","parse.pipe.js","parse.pipe.js.map","parse.pipe.d.ts","parse.pipe.metadata.json","local.pipe.js","local.pipe.js.map","local.pipe.d.ts","local.pipe.metadata.json","locale.pipe.js","locale.pipe.js.map","locale.pipe.d.ts","locale.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && jest","test:watch":"jest --watch","test:coverage":"jest --coverage","test:debug":"node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <6.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.4.10","@angular/compiler":"2.4.10","@angular/compiler-cli":"2.4.10","@angular/core":"2.4.10","@angular/platform-browser":"2.4.10","@angular/platform-server":"2.4.10","@types/jest":"^20.0.2","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jest":"^20.0.4","reflect-metadata":"0.1.3","rxjs":"^5.0.1","tslint":"3.15.1","typescript":"^2.1.6","webpack":"1.13.2","zone.js":"^0.7.2"},"jest":{"roots":["src"],"transform":{"^.+\\.ts$":"<rootDir>/jest-typescript.js"},"setupTestFrameworkScriptFile":"<rootDir>/jest-setup.js","moduleFileExtensions":["ts","js"],"testRegex":"\\.spec\\.ts$"},"gitHead":"7144fdba235a8b4e18236146b3af4509717e280f","_id":"angular2-moment@1.7.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.3","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"integrity":"sha512-CwCs2KfzVsB2VMtW/eKmd7EYJf8vGvhXpwCgkTUEt0wpRBd4ad4lVdkrqeooL0zgbjxGlCHp3EJuRdEwUGDr+Q==","shasum":"6e620430cc21efc65ed3a68b5c09f3f3ef7a8256","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.7.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHe4yxy8YHSH1SUDp02d6vOviilhSln1DSl6LpW3qK0yAiEAq/ULeF+y0527piAKUpfzzAOGiX2n49QeCOpjq4FtK7U="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-moment-1.7.0.tgz_1503141329022_0.55831323354505"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.7.1":{"name":"angular2-moment","version":"1.7.1","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","from-utc.pipe.js","from-utc.pipe.js.map","from-utc.pipe.d.ts","from-utc.pipe.metadata.json","parse.pipe.js","parse.pipe.js.map","parse.pipe.d.ts","parse.pipe.metadata.json","local.pipe.js","local.pipe.js.map","local.pipe.d.ts","local.pipe.metadata.json","locale.pipe.js","locale.pipe.js.map","locale.pipe.d.ts","locale.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && jest","test:watch":"jest --watch","test:coverage":"jest --coverage","test:debug":"node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand","prepublish":"ngc && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <6.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.4.10","@angular/compiler":"2.4.10","@angular/compiler-cli":"2.4.10","@angular/core":"2.4.10","@angular/platform-browser":"2.4.10","@angular/platform-server":"2.4.10","@types/jest":"^20.0.2","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jest":"^20.0.4","reflect-metadata":"0.1.3","rxjs":"^5.0.1","tslint":"3.15.1","typescript":"^2.1.6","webpack":"1.13.2","zone.js":"^0.7.2"},"jest":{"roots":["src"],"transform":{"^.+\\.ts$":"<rootDir>/jest-typescript.js"},"setupTestFrameworkScriptFile":"<rootDir>/jest-setup.js","moduleFileExtensions":["ts","js"],"testRegex":"\\.spec\\.ts$"},"gitHead":"ce17ece7808406cf098dcac04727bc549a7189a5","_id":"angular2-moment@1.7.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"integrity":"sha512-L4LDHbBWO2+hz5ZTfFPWZdvjStbRQmJ1SkboAqzzhjhg79Z8zrHJXMy/8EYN4gFXWtihbNQwk/4QYyphM7tSkw==","shasum":"bab14d21d35322bacab8ee7548b36dd587abf7d1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.7.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDlUKsSHnPM+J/09jbonQs0gtUcysoXF1L6c/dRWqKBBAIgN76V/ZA5W++kD/ORBSApTVaXmut0xZZVvxrBoUJeiro="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-moment-1.7.1.tgz_1513979251485_0.9519871487282217"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.8.0":{"name":"angular2-moment","version":"1.8.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","from-utc.pipe.js","from-utc.pipe.js.map","from-utc.pipe.d.ts","from-utc.pipe.metadata.json","parse.pipe.js","parse.pipe.js.map","parse.pipe.d.ts","parse.pipe.metadata.json","local.pipe.js","local.pipe.js.map","local.pipe.d.ts","local.pipe.metadata.json","locale.pipe.js","locale.pipe.js.map","locale.pipe.d.ts","locale.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && jest","test:watch":"jest --watch","test:coverage":"jest --coverage","test:debug":"node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand","prepublish":"ngc && rimraf -- \"./compiled/node_modules\" && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <6.0.0"},"dependencies":{"moment":"^2.16.0"},"devDependencies":{"@angular/common":"2.4.10","@angular/compiler":"2.4.10","@angular/compiler-cli":"2.4.10","@angular/core":"2.4.10","@angular/platform-browser":"2.4.10","@angular/platform-server":"2.4.10","@types/jest":"^20.0.2","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jest":"^20.0.4","reflect-metadata":"0.1.3","rxjs":"^5.0.1","tslint":"3.15.1","typescript":"^2.1.6","webpack":"1.13.2","zone.js":"^0.7.2","rimraf":"^2.6.2"},"jest":{"roots":["src"],"transform":{"^.+\\.ts$":"<rootDir>/jest-typescript.js"},"setupTestFrameworkScriptFile":"<rootDir>/jest-setup.js","moduleFileExtensions":["ts","js"],"testRegex":"\\.spec\\.ts$"},"gitHead":"3cbf666b39d4059f8b49435225f92b0c3aee70e2","_id":"angular2-moment@1.8.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"integrity":"sha512-cBppm4FM9sOtZr4eSnodjbIhvn3bZzuw1VIb3VN53/aWKQVrNosQVG7l0dnX5ifdy08i9Yd/5eGYOXw+Lb63YA==","shasum":"27dd83d98de5d5e0f45412d82c89491a6fa245ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.8.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGPtHLIrky6xyCHb2V/LBpCI5WMLFU6Y2q8/weDHgzIKAiBedOBw9y28t94HlyV0Rp/kYW7poGBGyAdwsux6dvsM6w=="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-moment-1.8.0.tgz_1516744341811_0.046734479488804936"},"directories":{},"deprecated":"angular2-moment is now ngx-moment"},"1.9.0":{"name":"angular2-moment","version":"1.9.0","description":"Moment.JS pipes for Angular2 (timeago and more)","main":"index.js","typings":"./index.d.ts","files":["index.js","index.js.map","index.d.ts","index.metadata.json","moment.module.js","moment.module.js.map","moment.module.d.ts","moment.module.metadata.json","calendar.pipe.js","calendar.pipe.js.map","calendar.pipe.d.ts","calendar.pipe.metadata.json","date-format.pipe.js","date-format.pipe.js.map","date-format.pipe.d.ts","date-format.pipe.metadata.json","difference.pipe.js","difference.pipe.js.map","difference.pipe.d.ts","difference.pipe.metadata.json","duration.pipe.js","duration.pipe.js.map","duration.pipe.d.ts","duration.pipe.metadata.json","time-ago.pipe.js","time-ago.pipe.js.map","time-ago.pipe.d.ts","time-ago.pipe.metadata.json","from-unix.pipe.js","from-unix.pipe.js.map","from-unix.pipe.d.ts","from-unix.pipe.metadata.json","add.pipe.js","add.pipe.js.map","add.pipe.d.ts","add.pipe.metadata.json","subtract.pipe.js","subtract.pipe.js.map","subtract.pipe.d.ts","subtract.pipe.metadata.json","utc.pipe.js","utc.pipe.js.map","utc.pipe.d.ts","utc.pipe.metadata.json","from-utc.pipe.js","from-utc.pipe.js.map","from-utc.pipe.d.ts","from-utc.pipe.metadata.json","parse.pipe.js","parse.pipe.js.map","parse.pipe.d.ts","parse.pipe.metadata.json","local.pipe.js","local.pipe.js.map","local.pipe.d.ts","local.pipe.metadata.json","locale.pipe.js","locale.pipe.js.map","locale.pipe.d.ts","locale.pipe.metadata.json","CHANGELOG.md"],"scripts":{"test":"tslint src/*.ts --exclude=src/*.d.ts && ngc && jest","test:watch":"jest --watch","test:coverage":"jest --coverage","test:debug":"node --inspect-brk --inspect ./node_modules/jest/bin/jest.js --runInBand","prepublish":"ngc && rimraf -- \"./compiled/node_modules\" && copyfiles -f src/*.js src/*.js.map src/*.d.ts src/*.metadata.json ."},"repository":{"type":"git","url":"git+https://github.com/urish/angular2-moment.git"},"keywords":["angular2","momentjs"],"author":{"name":"Uri Shaked"},"license":"MIT","bugs":{"url":"https://github.com/urish/angular2-moment/issues"},"homepage":"https://github.com/urish/angular2-moment#readme","peerDependencies":{"@angular/core":">=2.0.0 <6.0.0"},"dependencies":{"moment":"^2.19.3"},"devDependencies":{"@angular/common":"2.4.10","@angular/compiler":"2.4.10","@angular/compiler-cli":"2.4.10","@angular/core":"2.4.10","@angular/platform-browser":"2.4.10","@angular/platform-server":"2.4.10","@types/jest":"^20.0.2","awesome-typescript-loader":"2.2.4","copyfiles":"1.0.0","es6-shim":"0.35.1","jest":"^20.0.4","reflect-metadata":"0.1.3","rxjs":"^5.0.1","tslint":"3.15.1","typescript":"^2.1.6","webpack":"1.13.2","zone.js":"^0.7.2","rimraf":"^2.6.2"},"jest":{"roots":["src"],"transform":{"^.+\\.ts$":"<rootDir>/jest-typescript.js"},"setupTestFrameworkScriptFile":"<rootDir>/jest-setup.js","moduleFileExtensions":["ts","js"],"testRegex":"\\.spec\\.ts$"},"gitHead":"7be235f5e8969a0981b40eb9eb2d8333e97f447f","_id":"angular2-moment@1.9.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"uri@urish.org"},"dist":{"integrity":"sha512-ybPjYizpKVWAI2Z4AqxAS6s3FMkF3+zRpfvxX1wIdSJUFjl83XxQ5f2yn7retX68NSYZZ/JTK9KGnvOzZfrIZw==","shasum":"d198a4d9bc825f61de19106ac7ea07a78569f5a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular2-moment/-/angular2-moment-1.9.0.tgz","fileCount":64,"unpackedSize":97260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa62cOCRA9TVsSAnZWagAA46kP/3Ow66kHszd7GMkOmbxH\nKpyEQQt2R1VyI8p9OJ9dIaE4uPKYIoxWb8C9fXaX9DDCFRvV4j73kMzQfZS4\ngmcuqLOxcZ3qiSNrM0BqkVGge475q1ABfO3559tSj4bsY6wU5hQiOZKTuztG\n1Tm786dFMgOy6ASrgr6EVC+shVwZXqeROvdt8V8vGNzGR6hCNjfoUplKW2iP\n0YsbvI8Iv3oIuuQtAyn0sTdRTqfQ2IxQquQ8tS41obPl/QGSYLyD05dWFExH\n/hNNTileYafi3qL8E71p1b/A6+jcBvzw5eEPqNjn95K5WWVJ+vG0WhYsi/i/\nZkVMRoPYf3ivJySCcZp9MaInqDn9IuJB+0hX92p1cDaCtZyzFcKotkri1NeT\n6ZjVKkdyZztwQ+R8EEpwdA8EZwKwPhvsxm/2xUc5nJgFxFnezSGHCO6sggz/\nkxVsTFXb4cAgczRnBWUwWDxSV3AzXiGyonKaQdpxNbLg2Kj1z1LU4DZDBVhE\nVGml61rT5xXvbZz8M1cGL2gn2irPyP/RosRo7LZejO5ldZXw5opr871FDSO3\nosSmelZfmHcMmmBA5HSLYwj/sPMu0TQRqLKV9CnyxBVuaD26M2UcMTty8uUN\nk0FpLK5sp/q5jXM2tC8bzK4GynujoYGrhkWqZrvTF0jqSVz5Yee578k0Ix7k\nY4jL\r\n=0K4U\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGafC2B/NFmZrOeswfGBspG99nc44BaeO4oGcX7Tkmt3AiAvhqEaNWjO7qDYGz9Ph1SuJxp3lXH2xHjuTRasYt+lng=="}]},"maintainers":[{"name":"anonymous","email":"uri@urish.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-moment_1.9.0_1525376780595_0.5364062490740571"},"_hasShrinkwrap":false}},"name":"angular2-moment","time":{"modified":"2022-06-13T03:01:20.227Z","created":"2015-08-26T20:46:03.917Z","0.0.1":"2015-08-26T20:46:03.917Z","0.0.2":"2015-09-19T00:18:50.893Z","0.0.3":"2015-10-22T16:58:41.526Z","0.0.4":"2015-10-25T22:31:40.334Z","0.0.5":"2015-11-12T10:32:13.385Z","0.1.0":"2015-12-15T20:26:17.782Z","0.1.1":"2015-12-18T22:53:51.042Z","0.2.0":"2016-01-12T23:56:05.049Z","0.2.1":"2016-01-16T23:39:21.703Z","0.3.0":"2016-01-27T21:30:32.198Z","0.4.0":"2016-02-16T14:21:41.751Z","0.4.1":"2016-02-21T21:02:32.840Z","0.4.2":"2016-02-25T00:07:28.302Z","0.4.3":"2016-03-06T14:05:42.569Z","0.5.0":"2016-04-08T10:58:49.563Z","0.6.0":"2016-04-28T09:23:56.565Z","0.7.0":"2016-05-03T15:09:34.431Z","0.8.0":"2016-05-22T20:11:17.453Z","0.8.1":"2016-07-03T14:53:12.165Z","0.8.2":"2016-08-01T22:52:00.200Z","1.0.0-beta.1":"2016-08-16T15:57:25.946Z","1.0.0-beta.2":"2016-10-01T21:44:46.171Z","1.0.0-beta.3":"2016-10-04T07:47:11.788Z","1.0.0-beta.4":"2016-10-06T09:54:20.857Z","1.0.0-beta.5":"2016-10-13T19:05:37.638Z","1.0.0-beta.6":"2016-10-24T14:13:52.780Z","1.0.0-beta.rc.1":"2016-11-11T18:58:06.656Z","1.0.0":"2016-12-01T11:59:38.208Z","1.1.0":"2017-01-09T09:10:58.814Z","1.2.0":"2017-02-09T20:15:35.943Z","1.3.0":"2017-03-11T00:31:42.290Z","1.3.1":"2017-03-16T09:41:45.368Z","1.3.2":"2017-03-18T00:26:48.999Z","1.3.3":"2017-03-18T19:27:40.082Z","1.4.0":"2017-06-18T12:09:18.182Z","1.5.0":"2017-07-14T14:40:41.879Z","1.6.0":"2017-07-18T09:39:49.957Z","1.7.0":"2017-08-19T11:15:30.138Z","1.7.1":"2017-12-22T21:47:33.203Z","1.8.0":"2018-01-23T21:52:22.018Z","1.9.0":"2018-05-03T19:46:20.686Z"},"readmeFilename":"README.md","homepage":"https://github.com/urish/angular2-moment#readme"}