{"maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"dist-tags":{"next":"7.0.0-beta.1","ng4":"6.4.1-beta.0","latest":"20.0.5"},"description":"<div align=\"center\">   <img src=\"https://raw.githubusercontent.com/scttcper/ngx-toastr/master/misc/documentation-assets/ngx-toastr-example.png\" width=\"300\" alt=\"Angular Toastr\">   <br>   <h1>ngx-toastr</h1>   <br>   <a href=\"https://www.npmjs.org/package/","readme":"<div align=\"center\">\n  <img src=\"https://raw.githubusercontent.com/scttcper/ngx-toastr/master/misc/documentation-assets/ngx-toastr-example.png\" width=\"300\" alt=\"Angular Toastr\">\n  <br>\n  <h1>ngx-toastr</h1>\n  <br>\n  <a href=\"https://www.npmjs.org/package/ngx-toastr\">\n    <img src=\"https://badge.fury.io/js/ngx-toastr.svg\" alt=\"npm\">\n  </a>\n  <a href=\"https://codecov.io/github/scttcper/ngx-toastr\">\n    <img src=\"https://img.shields.io/codecov/c/github/scttcper/ngx-toastr.svg\" alt=\"codecov\">\n  </a>\n  <br>\n  <br>\n</div>\n\nDEMO: https://ngx-toastr.vercel.app\n\n## Features\n\n- Toast Component Injection without being passed `ViewContainerRef`\n- No use of `@for`. Fewer dirty checks and higher performance\n- No use of `@angular/animations`\n- AoT compilation and lazy loading compatible\n- Component inheritance for custom toasts\n- SystemJS/UMD rollup bundle\n- Output toasts to an optional target directive\n\n## Dependencies\n\nLatest version available for each version of Angular\n\n| ngx-toastr      | Angular         |\n| --------------- | --------------- |\n| 13.2.1          | 10.x 11.x       |\n| 14.3.0          | 12.x 13.x       |\n| 15.2.2          | 14.x.           |\n| 16.2.0          | 15.x            |\n| 17.0.2          | 16.x            |\n| 18.x 19x        | >= 17.x < 23.x  |\n| current         | >= 20.x         |\n\n## Install\n\n```bash\nnpm install ngx-toastr --save\n```\n\n## Setup\n\n**step 1:** add css\n\n- copy\n  [toast css](/src/lib/toastr.css)\n  to your project.\n- If you are using sass you can import the css.\n\n```scss\n// regular style toast\n@import 'ngx-toastr/toastr';\n\n// bootstrap style toast\n// or import a bootstrap 4 alert styled design (SASS ONLY)\n// should be after your bootstrap imports, it uses bs4 variables, mixins, functions\n@import 'ngx-toastr/toastr-bs4-alert';\n\n// if you'd like to use it without importing all of bootstrap it requires\n@import 'bootstrap/scss/functions';\n@import 'bootstrap/scss/variables';\n@import 'bootstrap/scss/mixins';\n// bootstrap 4\n@import 'ngx-toastr/toastr-bs4-alert';\n// boostrap 5\n@import 'ngx-toastr/toastr-bs5-alert';\n```\n\n- If you are using angular-cli you can add it to your angular.json\n\n```ts\n\"styles\": [\n  \"styles.scss\",\n  \"node_modules/ngx-toastr/toastr.css\" // try adding '../' if you're using angular cli before 6\n]\n```\n\n**step 2:** add `ToastrModule` to app `NgModule`, or `provideToastr` to providers.\n\n- Module based\n\n```typescript\nimport { ToastrModule } from 'ngx-toastr';\n\n@NgModule({\n  imports: [\n    ToastrModule.forRoot(), // ToastrModule added\n  ],\n  bootstrap: [App],\n  declarations: [App],\n})\nclass MainModule {}\n```\n\n- Standalone\n\n```typescript\nimport { AppComponent } from './src/app.component';\nimport { provideToastr } from 'ngx-toastr';\n\nbootstrapApplication(AppComponent, {\n  providers: [\n    provideToastr(), // Toastr providers\n  ]\n});\n```\n\n## Use\n\n```typescript\nimport { ToastrService } from 'ngx-toastr';\nimport { inject } from '@angular/core';\n\n@Component({...})\nexport class YourComponent {\n  toastr = inject(ToastrService);\n\n  showSuccess() {\n    this.toastr.success('Hello world!', 'Toastr fun!');\n  }\n}\n```\n\n## Options\n\nThere are **individual options** and **global options**.\n\n### Individual Options\n\nPassed to `ToastrService.success/error/warning/info/show()`\n\n| Option            | Type                           | Default                        | Description                                                                             \n| ----------------- | ------------------------------ | ------------------------------ | ------------------------------------------------- |\n| toastComponent    | Component                      | Toast                          | Angular component that will be used               |\n| closeButton       | boolean                        | false                          | Show close button                                 |\n| timeOut           | number                         | 5000                           | Time to live in milliseconds                      |\n| extendedTimeOut   | number                         | 1000                           | Time to close after a user hovers over toast      |\n| disableTimeOut    | `boolean \\| 'timeOut' \\| 'extendedTimeOut'`  | false              | Disable both timeOut and extendedTimeOut when set to `true`. Allows specifying which timeOut to disable, either: `timeOut` or `extendedTimeOut` |\n| easing            | string                         | 'ease-in'                      | Toast component easing                            |\n| easeTime          | string \\| number               | 300                            | Time spent easing                                 |\n| enableHtml        | boolean                        | false                          | Allow html in message                             |\n| newestOnTop       | boolean                        | true                           | New toast placement                               |\n| progressBar       | boolean                        | false                          | Show progress bar                                 |\n| progressAnimation | `'decreasing' \\| 'increasing'` | 'decreasing'                   | Changes the animation of the progress bar.        |\n| toastClass        | string                         | 'ngx-toastr'                   | CSS class(es) for toast                           |\n| positionClass     | string                         | 'toast-top-right'              | CSS class(es) for toast container                 |\n| titleClass        | string                         | 'toast-title'                  | CSS class(es) for inside toast on title           |\n| messageClass      | string                         | 'toast-message'                | CSS class(es) for inside toast on message         |\n| tapToDismiss      | boolean                        | true                           | Close on click                                    |\n| onActivateTick    | boolean                        | false                          | Fires `changeDetectorRef.detectChanges()` when activated. Helps show toast from asynchronous events outside of Angular's change detection |\n\n#### Setting Individual Options\n\nsuccess, error, info, warning take `(message, title, ToastConfig)` pass an\noptions object to replace any default option.\n\n```typescript\nthis.toastrService.error('everything is broken', 'Major Error', {\n  timeOut: 3000,\n});\n```\n\n### Global Options\n\nAll [individual options](#individual-options) can be overridden in the global\noptions to affect all toasts. In addition, global options include the following\noptions:\n\n| Option                  | Type    | Default                            | Description                                                                                                   |\n| ----------------------- | ------- | ---------------------------------- | ------------------------------------------------------------------ |\n| maxOpened               | number  | 0                                  | Max toasts opened. Toasts will be queued. 0 is unlimited           |\n| autoDismiss             | boolean | false                              | Dismiss current toast when max is reached                          |\n| iconClasses             | object  | [see below](#iconclasses-defaults) | Classes used on toastr service methods                             |\n| preventDuplicates       | boolean | false                              | Block duplicate messages                                           |\n| countDuplicates         | boolean | false                              | Displays a duplicates counter (preventDuplicates must be true). Toast must have a title and duplicate message |\n| resetTimeoutOnDuplicate | boolean | false                              | Reset toast timeout on duplicate (preventDuplicates must be true)  |\n| includeTitleDuplicates  | boolean | false                              | Include the title of a toast when checking for duplicates (by default only message is compared) |\n\n##### iconClasses defaults\n\n```typescript\niconClasses = {\n  error: 'toast-error',\n  info: 'toast-info',\n  success: 'toast-success',\n  warning: 'toast-warning',\n};\n```\n\n#### Setting Global Options\n\nPass values to `ToastrModule.forRoot()` or `provideToastr()` to set global options.\n\n- Module based\n\n```typescript\n// root app NgModule\nimports: [\n  ToastrModule.forRoot({\n    timeOut: 10000,\n    positionClass: 'toast-bottom-right',\n    preventDuplicates: true,\n  }),\n],\n```\n\n- Standalone\n\n```typescript\nimport { AppComponent } from './src/app.component';\nimport { provideToastr } from 'ngx-toastr';\n\nbootstrapApplication(AppComponent, {\n  providers: [\n    provideToastr({\n      timeOut: 10000,\n      positionClass: 'toast-bottom-right',\n      preventDuplicates: true,\n    }), \n  ]\n});\n```\n\n\n### Toastr Service methods return:\n\n```typescript\nexport interface ActiveToast {\n  /** Your Toast ID. Use this to close it individually */\n  toastId: number;\n  /** the title of your toast. Stored to prevent duplicates if includeTitleDuplicates set */\n  title: string;\n  /** the message of your toast. Stored to prevent duplicates */\n  message: string;\n  /** a reference to the component see portal.ts */\n  portal: ComponentRef<any>;\n  /** a reference to your toast */\n  toastRef: ToastRef<any>;\n  /** triggered when toast is active */\n  onShown: Observable<any>;\n  /** triggered when toast is destroyed */\n  onHidden: Observable<any>;\n  /** triggered on toast click */\n  onTap: Observable<any>;\n  /** available for your use in custom toast */\n  onAction: Observable<any>;\n}\n```\n\n### Put toasts in your own container\n\nPut toasts in a specific div inside your application. This should probably be\nsomewhere that doesn't get deleted. Add `ToastContainerDirective` to the ngModule\nwhere you need the directive available. Make sure that your container has\nan `aria-live=\"polite\"` attribute, so that any time a toast is injected into\nthe container it is announced by screen readers.\n\n```typescript\nimport { NgModule } from '@angular/core';\nimport { ToastrModule, ToastContainerDirective } from 'ngx-toastr';\nimport { AppComponent } from './app.component';\n\n@NgModule({\n  declarations: [AppComponent],\n  imports: [\n    ToastrModule.forRoot({ positionClass: 'inline' }),\n    ToastContainerDirective,\n  ],\n  providers: [],\n  bootstrap: [AppComponent],\n})\nexport class AppModule {}\n```\n\nAdd a div with `toastContainer` directive on it.\n\n```typescript\nimport { Component, OnInit, viewChild, inject } from '@angular/core';\nimport { ToastContainerDirective, ToastrService } from 'ngx-toastr';\n\n@Component({\n  selector: 'app-root',\n  template: `\n    <h1><a (click)=\"onClick()\">Click</a></h1>\n    <div aria-live=\"polite\" toastContainer></div>\n  `,\n})\nexport class AppComponent implements OnInit {\n  toastContainer = viewChild(ToastContainerDirective, { static: true });\n  toastrService = inject(ToastrService);\n\n  ngOnInit() {\n    this.toastrService.overlayContainer = this.toastContainer;\n  }\n  onClick() {\n    this.toastrService.success('in div');\n  }\n}\n```\n\n## Functions\n\n##### Clear\n\nRemove all or a single toast by optional id\n\n```ts\ntoastrService.clear(toastId?: number);\n```\n\n##### Remove\n\nRemove and destroy a single toast by id\n\n```\ntoastrService.remove(toastId: number);\n```\n\n## SystemJS\n\nIf you are using SystemJS, you should also adjust your configuration to point to\nthe UMD bundle.\n\nIn your SystemJS config file, `map` needs to tell the System loader where to\nlook for `ngx-toastr`:\n\n```js\nmap: {\n  'ngx-toastr': 'node_modules/ngx-toastr/bundles/ngx-toastr.umd.min.js',\n}\n```\n\n## Setup Without Animations\n\nIf you do not want animations you can override the default \ntoast component in the global config to use\n`ToastNoAnimation` instead of the default one.\n\nIn your main module (ex: `app.module.ts`)\n\n```typescript\nimport { ToastrModule, ToastNoAnimation, ToastNoAnimationModule } from 'ngx-toastr';\n\n@NgModule({\n  imports: [\n    // ...\n    ToastNoAnimationModule.forRoot(),\n  ],\n  // ...\n})\nclass AppModule {}\n```\n\nThat's it! No animations.\n\n## Using A Custom Toast\n\nCreate your toast component extending Toast see the demo's pink toast for an example\nhttps://github.com/scttcper/ngx-toastr/blob/master/src/app/pink.toast.ts\n\n```typescript\nimport { ToastrModule } from 'ngx-toastr';\n\n@NgModule({\n  imports: [\n    ToastrModule.forRoot({\n      toastComponent: YourToastComponent, // added custom toast!\n    }),\n  ],\n  bootstrap: [App],\n  declarations: [App, YourToastComponent], // add!\n})\nclass AppModule {}\n```\n\n## FAQ\n\n1.  ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it\n    was checked\\\n    When opening a toast inside an angular lifecycle wrap it in setTimeout\n\n```typescript\nngOnInit() {\n    setTimeout(() => this.toastr.success('sup'))\n}\n```\n\n2.  Change default icons (check, warning sign, etc)\\\n    Overwrite the css background-image: https://github.com/scttcper/ngx-toastr/blob/master/src/lib/toastr.css.\n3.  How do I use this in an ErrorHandler?\\\n    See: https://github.com/scttcper/ngx-toastr/issues/179.\n4.  How can I translate messages?\\\n    See: https://github.com/scttcper/ngx-toastr/issues/201.\n5.  How to handle toastr click/tap action?\n    ```ts\n    showToaster() {\n      this.toastr.success('Hello world!', 'Toastr fun!')\n        .onTap\n        .pipe(take(1))\n        .subscribe(() => this.toasterClickedHandler());\n    }\n\n    toasterClickedHandler() {\n      console.log('Toastr clicked');\n    }\n    ```\n6. How to customize styling without overridding defaults?\\\n    Add multiple CSS classes separated by a space:\n    ```ts\n    toastClass: 'yourclass ngx-toastr'\n    ```\n    See: https://github.com/scttcper/ngx-toastr/issues/594.\n\n## Previous Works\n\n[toastr](https://github.com/CodeSeven/toastr) original toastr\\\n[angular-toastr](https://github.com/Foxandxss/angular-toastr) AngularJS toastr\\\n[notyf](https://github.com/caroso1222/notyf) notyf (css)\n\n## License\n\nMIT\n\n---\n\n> GitHub [@scttcper](https://github.com/scttcper) &nbsp;&middot;&nbsp;\n> Twitter [@scttcper](https://twitter.com/scttcper)\n","repository":{"type":"git","url":"git+https://github.com/scttcper/ngx-toastr.git"},"users":{"cedx":true,"mrbgit":true,"jaychase":true,"aquafadas":true,"attacomsian":true,"jiangshanwe":true,"vivek.doshi2":true,"svijayaragavan":true},"bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"license":"MIT","versions":{"4.2.0":{"name":"ngx-toastr","version":"4.2.0","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@4.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3350f2020936a4694e226517d3a2dbde59a1db08","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-4.2.0.tgz","integrity":"sha512-xrgG6ttKKqTLspjbUaqe5WDyZNxs559kZMw2MCSe4UHDK4hBLTBF3yvueny2dZoKOlwxU15/G5QwKJ/goMYcLw==","signatures":[{"sig":"MEYCIQD7iNJwoAYXoMR0hM/zsHFyCIz0OyJTZ/HLaqgIktOoFQIhANEL+R2jb1zJVAso4sHTRSoHWhUUd5r4gB1/YRObuAUV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.js","_from":".","_shasum":"3350f2020936a4694e226517d3a2dbde59a1db08","scripts":{},"typings":"./toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.1.2","description":"Toastr for Angular 2","directories":{},"_nodeVersion":"7.5.0","peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.4.0","@angular/common":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-4.2.0.tgz_1486622986363_0.22629886958748102","host":"packages-18-east.internal.npmjs.com"}},"4.2.1":{"name":"ngx-toastr","version":"4.2.1","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@4.2.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"1a2da50506d6f56224ce670270204a1b76d2ebcd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-4.2.1.tgz","integrity":"sha512-zRyHXYOP8aGU0MGmOb3PEe0FiYTjp1NpUE1FE7Mrnx6bdVFG8LgObiSjpPB0XB9tUe0uyjvGH0UAH622OpkepQ==","signatures":[{"sig":"MEQCIBgBqXzxHFNJjGZ4jDDVev0HquUk07/dMj2cn3Ng+IteAiAu5O259bLENBrtrrNg5ZJN2f9sEFeC6yc6TcsV/WQ14Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"1a2da50506d6f56224ce670270204a1b76d2ebcd","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.1.2","description":"Toastr for Angular 2","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.5.0","peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.4.0","@angular/common":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-4.2.1.tgz_1486654123152_0.17896301322616637","host":"packages-18-east.internal.npmjs.com"}},"4.3.0":{"name":"ngx-toastr","version":"4.3.0","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@4.3.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"188640382d19bf4ed348910b5bbf2018cc8731ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-4.3.0.tgz","integrity":"sha512-uUvvxQHBS9zLsCn941znDVEOpjLzuBoIWVCAVgr97gzqpRU2us1AD4uzh668tHL5Ilr4X272zTlX5Lxew6ndVg==","signatures":[{"sig":"MEYCIQDx+leUBq76kvIJ6UOTeKy6yVfpy5KYh1RISVnDJGnnGgIhAIWyjBrMYvO9077NUMKKb4cLaDB+vr2uC4GDwdeY+w1S","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"188640382d19bf4ed348910b5bbf2018cc8731ae","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.3.0","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.5.0","peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.4.0","@angular/common":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-4.3.0.tgz_1487720289522_0.07141516450792551","host":"packages-18-east.internal.npmjs.com"}},"5.0.0":{"name":"ngx-toastr","version":"5.0.0","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","angular toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@5.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"8940ed4c88e68e56c1fcbf4337df2853e1bcef27","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.0.0.tgz","integrity":"sha512-1uBpiG+9n1j67ddoNEoNokIkMvnXWOWBse8ZJIrUhEhxb/3fvPY89SyWtz1q5wOuOy9vgUPl6+2D/oGBfeIfMQ==","signatures":[{"sig":"MEQCIG28W20azMYPMXNKCivrfdDKS+MBdw+3+pONHk4X4nxoAiBBi7T0tQRRFF6WQy91dF8vu5JaDmH6Vp7qM02lhC/vKQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"8940ed4c88e68e56c1fcbf4337df2853e1bcef27","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.4.0","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.6.0","publishConfig":{"tag":"next"},"peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.4.0","@angular/common":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.0.0.tgz_1488484658418_0.5261984921526164","host":"packages-12-west.internal.npmjs.com"}},"5.0.1":{"name":"ngx-toastr","version":"5.0.1","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","angular toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@5.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"a725768b0094bd87fb2835980669f85b4e88a1b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.0.1.tgz","integrity":"sha512-sM50/PkuzAuW0juZ4zxUGSvVZCqbF9EPgT0WanzDumZslgGBC7qyY7R/XK3GCPLszEK5KCHHHEXq9Fxs8vCpXg==","signatures":[{"sig":"MEUCIQC+hBlikFqKCsdsXQeu8H2VFn/rdFxAlzY/OfyZdXobKwIgXj2ojhpvM/QKBn+d0SE8EGm3XJ4Tyl7TIf+iNCD1NcY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"a725768b0094bd87fb2835980669f85b4e88a1b5","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.4.1","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.7.2","publishConfig":{"tag":"next"},"peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.4.0","@angular/common":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.0.1.tgz_1489206349173_0.8061937103047967","host":"packages-12-west.internal.npmjs.com"}},"5.0.2":{"name":"ngx-toastr","version":"5.0.2","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","angular toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@5.0.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"e073cc0d3c009eb37c1a4e26ef8a8f708f3a2215","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.0.2.tgz","integrity":"sha512-PT5hn1cOApRe1wELTeBRZjYt8gNDsIrvlRAIixBopu0iDg8FiiIdI5ja1CY6m0dkMr/hhM03EsWSeBk33RRMtA==","signatures":[{"sig":"MEUCIGTQ9wYM+KJyTdZ9pu2e5ORzTciEnqaAI9+dhbvKOP0DAiEAxTX0ws03AbOk6CQszAP4RE9IHVtCI2KDe9kug9cxMEs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"e073cc0d3c009eb37c1a4e26ef8a8f708f3a2215","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.4.1","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.7.2","publishConfig":{"tag":"next"},"peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.4.0","@angular/common":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.0.2.tgz_1489206383527_0.21836414514109492","host":"packages-12-west.internal.npmjs.com"}},"4.4.0":{"name":"ngx-toastr","version":"4.4.0","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@4.4.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"dc92015e6b744f14ceb2ac1d7d9adc71b5278456","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-4.4.0.tgz","integrity":"sha512-lPgQ6/pRr4QtUtyY7jUWlFki3vACnG7vRWpl0IwPpytnA0WcuapuR77Sop9AqicJPG3NCym9evAeVe6gGKwTlw==","signatures":[{"sig":"MEYCIQDcgXHHTJnAhSr+KGws6EzG/0Ap80wJf3yWcseZ9hKnzgIhALHw83Tf3HNT8MhhxrgonGQziTPxYr2N4WBaQ0hHiCw1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"dc92015e6b744f14ceb2ac1d7d9adc71b5278456","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.4.1","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.7.2","peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.4.0","@angular/common":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-4.4.0.tgz_1489506659598_0.4806953426450491","host":"packages-18-east.internal.npmjs.com"}},"4.4.1":{"name":"ngx-toastr","version":"4.4.1","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@4.4.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"4e986697d0924762b315685e108052f38b0aeba3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-4.4.1.tgz","integrity":"sha512-WRiE+xMVIDDu5w+/SCTkXXPbTuF7YC97iOqO3gpf3LclLtIEX/uSvcZGEkKFU6CjuEK1JP2e1ZTG2kgWbIst1A==","signatures":[{"sig":"MEQCIGu3ukmTj3+z8R5/DzjJI7G9JZ1X0+8GVCT/7VFMw+fGAiAdJzFd85zYOdiEcvOAUvHJUrSAWGBj69ySx42J8POJ9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"4e986697d0924762b315685e108052f38b0aeba3","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.4.1","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.7.2","peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.2.0","@angular/common":"^2.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-4.4.1.tgz_1489510361800_0.49014000105671585","host":"packages-12-west.internal.npmjs.com"}},"5.0.3":{"name":"ngx-toastr","version":"5.0.3","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","angular toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@5.0.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"1272048b1355909c14b7c6c570c7ece9cb9777d4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.0.3.tgz","integrity":"sha512-M/r1QO+Ef+oXFrmrbRaxVwIKXXbsyJW7h81UHoAVWW31F0sh/HHZTeDtb7MqOMUcb8l1TOalRAhoY1NGoAUllw==","signatures":[{"sig":"MEUCIG5v4fzEUjJe2Ra5SPrJxQ+GcohHvpGlcNI3fVw8zlMmAiEAi9e6mN6yU0TXpU+8K8Ifc1zY7w7KWYI3HqLSJtRnUqU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"1272048b1355909c14b7c6c570c7ece9cb9777d4","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.4.1","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.7.2","peerDependencies":{"rxjs":"^5.0.0","@angular/core":"^2.4.0","@angular/common":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.0.3.tgz_1490329738197_0.6974396186415106","host":"packages-12-west.internal.npmjs.com"}},"5.0.5":{"name":"ngx-toastr","version":"5.0.5","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","angular toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@5.0.5","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"171525f136713e3d4aaa4fa8b3ac01bceb1201e7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.0.5.tgz","integrity":"sha512-bKdvCGhgbvUp9g8pggR7xBe91WWNy9U6qnqc9aoI0vM9CEQ3mERDT4Qsz1uXc+gMeM0cpwuZg73ul7PTqjaRDA==","signatures":[{"sig":"MEUCIHvHu+JUEZXDQ1eBwL2+PrlqS+SimVE4iuxzTKK+Q8pwAiEAmjaBV/NCOvNv275UjS2uyook8fFIDwAu6l5JQhy9s+c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"171525f136713e3d4aaa4fa8b3ac01bceb1201e7","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.4.1","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.7.2","peerDependencies":{"rxjs":"^5.0.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.0.5.tgz_1490393745145_0.5000255757477134","host":"packages-18-east.internal.npmjs.com"}},"5.0.6":{"name":"ngx-toastr","version":"5.0.6","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","angular toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@5.0.6","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"dada0ee278aa3908dfc4d191755f75e7b5b0b490","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.0.6.tgz","integrity":"sha512-QVYfrCtHYQLSwW70y00I/7YN0qianpDPl+nfduURP0VEcStzRCgpegdGoBt68Np1QYpvvKQGkapEfwggb0ebIg==","signatures":[{"sig":"MEUCIGGAqHSu+oTbZDPzAOoL/oV9tNAzO8t1FqqLwKrzayZBAiEAqyTFLPaPIXExoKIr+7hxsPlKjdp8ryYHO2st6c48Sns=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"dada0ee278aa3908dfc4d191755f75e7b5b0b490","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.4.4","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.7.2","peerDependencies":{"rxjs":"^5.0.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.0.6.tgz_1490856105555_0.8707499953452498","host":"packages-12-west.internal.npmjs.com"}},"5.0.7":{"name":"ngx-toastr","version":"5.0.7","keywords":["ng2","ngx","angular","angular2","typescript","alert","toast","toastr","ngx-toastr","angular toastr","notifications","ngModule"],"license":"MIT","_id":"ngx-toastr@5.0.7","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3188bb35719deedea3ae30b0f089d4e71c253b8e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.0.7.tgz","integrity":"sha512-7QGUS0RaSfamEm8xnvPRcTkWSUgxEuL/tDjTUMNqmSholR7aDkpg5xCyoRyl8YiTM5PdjTGecyX9W0oQn2blqQ==","signatures":[{"sig":"MEUCIGuTcng/274TR4sp06I7+yKUP2i3gjh7WrjmEM4u4gDmAiEAnR4TJG9hMMqPneNGVrp3khZa8rg2JQ3dZ1snTnULhQQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"toastr.js","_shasum":"3188bb35719deedea3ae30b0f089d4e71c253b8e","scripts":{},"typings":"toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.5.0","description":"Toastr for Angular","directories":{},"jsnext:main":"toastr.js","_nodeVersion":"7.7.2","peerDependencies":{"rxjs":"^5.0.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.0.7.tgz_1492316504573_0.9588649540673941","host":"packages-12-west.internal.npmjs.com"}},"5.1.0":{"name":"ngx-toastr","version":"5.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"4f2dbe372ad886d625b30c6d5c86c6b0cd076d35","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.1.0.tgz","integrity":"sha512-1FF81EzPSBCdCWqloL3whAZSH5qE9gxIJQcnn4XgxzmSMwWXr7+kW0wvEWWy6pVT7Gd6d/TTI82bZja8FQgzPA==","signatures":[{"sig":"MEYCIQC+gC33N7SIz64EQUJCUD+fEYEvL69bpewc8chGMwvvpQIhALpW9kRLVjxlm+0nZOBIRDg76iRpM9wbP6X6Zxh5yWfe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","es2015":"toastr.js","module":"toastr.es5.js","_shasum":"4f2dbe372ad886d625b30c6d5c86c6b0cd076d35","scripts":{},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.5.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"7.7.2","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.1.0.tgz_1493492469272_0.2551587789785117","host":"packages-12-west.internal.npmjs.com"}},"5.2.0":{"name":"ngx-toastr","version":"5.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"b9a3cbc9dad5950d9471f28231d14461ba82cfe1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.2.0.tgz","integrity":"sha512-9JGpoYleNnJPmVWs64sxpRkPje3AdlAWJyZLuvF/rcpCFBtwJ6Go05sUkyOTUFKvlHG98cjeykAOGTaEYGZodw==","signatures":[{"sig":"MEYCIQCU09gEongKQI6z2h0383ZF7YbrOxrK6cIGrulEbthJMAIhAOvOwUzIPoMiULKvy5E8qDFZAHJvgq8sg3Phe+RSLLOq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","es2015":"toastr.js","module":"toastr.es5.js","_shasum":"b9a3cbc9dad5950d9471f28231d14461ba82cfe1","scripts":{},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.5.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"7.7.2","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.2.0.tgz_1493738973923_0.39060901547782123","host":"packages-18-east.internal.npmjs.com"}},"5.2.1":{"name":"ngx-toastr","version":"5.2.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.2.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"8ab71d3778c4be16a2478e5bb9b22bd383e3f76a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.2.1.tgz","integrity":"sha512-31mEBCxcBc8ivXxE6UmDQ6k+5JMHgibUzySOm6r20bVrkf5L0ucpN1vRtCsLJNarvl23cMPNZGRXKf22E6BpCQ==","signatures":[{"sig":"MEUCIDT+2wadh68TEe40E7IKcbHAkPXPcmi+D9JuObymtiLoAiEAg+fP7n4Rq1uTVi0kpWQmRAm/c8Eyb1vrnyQgZP+zhq4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"index.js","_shasum":"8ab71d3778c4be16a2478e5bb9b22bd383e3f76a","scripts":{},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.5.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"7.10.0","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.2.1.tgz_1493926028280_0.7592822958249599","host":"packages-12-west.internal.npmjs.com"}},"5.2.2":{"name":"ngx-toastr","version":"5.2.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.2.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"bac99f6fe658def4375ac4a4f0234e93f5d75d83","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.2.2.tgz","integrity":"sha512-4VkS3LWTG+k5Lz5V0dLAqNuLfQ/mTqVlhzL6KtXaKgiw7WLXmfNgSVu/DG1NsLnqi45imphey8vSNfegttPgCw==","signatures":[{"sig":"MEUCIDaQFOVc/JGf/YRFTaRlxWyek9JJS5mDaXJN2aVPYxuxAiEAxOf75Vf6xXSpcZYMfgBX4mGf36JwIUfY06smA05Xb/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","_from":".","module":"index.js","_shasum":"bac99f6fe658def4375ac4a4f0234e93f5d75d83","scripts":{},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"4.6.1","description":"Toastr for Angular","directories":{},"_nodeVersion":"7.10.0","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.2.2.tgz_1495657148994_0.5433952016755939","host":"s3://npm-registry-packages"}},"5.2.3":{"name":"ngx-toastr","version":"5.2.3","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.2.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3519d18884f9838d863b6bc1479e2598cb10736c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.2.3.tgz","integrity":"sha512-ChC9VV+H1fEjowwN9nvTzDKPQSURHYNCDeUfj2FKEW2y4NVP6HoAqjeMpuKInaLk0Bjz4lFyX0/5iCKvVZNoFQ==","signatures":[{"sig":"MEUCIQCeIgUvGRwtV0sC7Vs4703nHCwherbQ7+FlbSNKuyU4yAIgb/a3/wIrvXF/fIE2Vfybz+Eut9ICJleq277RnNQaun0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.0.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"7.10.0","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.2.3.tgz_1495824337621_0.9623977488372475","host":"s3://npm-registry-packages"}},"5.2.4":{"name":"ngx-toastr","version":"5.2.4","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.2.4","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"7ad53c9a5b3afeaf03d0532a0a21f0f266ee9abb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.2.4.tgz","integrity":"sha512-IZ0REydrehm9ervie7wCWSiFSD6vCbJVKuzL+TMqWfeXUsaDIKqGkB5kY7614t6OmaEYUZva/PQees6YBEBO+w==","signatures":[{"sig":"MEUCIGWwAV9u26HjZ8mPtiK4crGN/n5EK7O/DHdRRqPlYQF9AiEAvBS79LiMr0J9TxF9c4zcU9QvBu61tGqGnwpRqHifldY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.0.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.0.0","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.2.4.tgz_1496248540207_0.6395699225831777","host":"s3://npm-registry-packages"}},"5.2.5":{"name":"ngx-toastr","version":"5.2.5","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.2.5","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"a11e59f7f124c7338bf5ffa3913d41244d7956f9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.2.5.tgz","integrity":"sha512-3NQ/jxg9KZ7tXcnkHgn0tN+qCygp/GwDZCNb5o4LmlcQVLZjc8QaII7nWyEr6dflPT0PxLreGkV/6MvCxxH8RA==","signatures":[{"sig":"MEUCIHI/c4v2bhyF2wdiS3UQ4xeStf84oycn9hvbKt8cPCU9AiEA4vpBjO0z4rrxepWzwDdXjRkzNX7TP96P7bZjQL2g/V4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.0.3","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.0.0","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.2.5.tgz_1497713704609_0.3103717057965696","host":"s3://npm-registry-packages"}},"5.3.0":{"name":"ngx-toastr","version":"5.3.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.3.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"892f3be954d90c044a06c712bd03679460c902ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.3.0.tgz","integrity":"sha512-rmAGpa8tCkXlQrjddEyBVyf3V9Y65YUeRET2LJCpFqaln2y6tagI9+FfJZIJARgTYpkzwep3XvH7v/ufZZUJ2A==","signatures":[{"sig":"MEUCIAx2bfHZz7kbRJpQdoAf3DONE69+r438qKtVnZkIl4nwAiEA1ocVmXOEAfOMdcm2vTXDjPKQDx9/8BHDFexB68gTKng=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.0.4","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.0.0","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=5.0.0","@angular/common":">=2.4.0 <=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.3.0.tgz_1498855327825_0.2252759006805718","host":"s3://npm-registry-packages"}},"5.3.1":{"name":"ngx-toastr","version":"5.3.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@5.3.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"afcccee06b1fb178edc83e7add214c3d57d93b9d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-5.3.1.tgz","integrity":"sha512-lUAlklTgutDkyZrT9WeDP7FDzM/efNbFyBkzVtBUqqpA0HWCwQgrHgS2YDEMLsAGGDHeAcfMc7uDER1BqTYvKQ==","signatures":[{"sig":"MEUCIQDWiEuiwp5N/pyTHnTtPX+wgondK3kB81XdQ9bs32nfawIgbuw/lYDycRsSKkPxODMM3md4XFq9CvX2JUAQGJPPn5E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.3.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.2.0","peerDependencies":{"rxjs":"^5.3.0","@angular/core":">=2.4.0 <=6.0.0","@angular/common":">=2.4.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-5.3.1.tgz_1500587015043_0.9033371016848832","host":"s3://npm-registry-packages"}},"6.0.0-beta.1":{"name":"ngx-toastr","version":"6.0.0-beta.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.0.0-beta.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"98c477f79596dad7f93c77774c6595e31038d506","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.0.0-beta.1.tgz","integrity":"sha512-VTleWoD+IPqJJy27v3C1B7voN8grGHyAKiGHowb92nbVNoDKCXMuYiCkfh9KErWllAZa0c8B6MkP0Hwz8siUnQ==","signatures":[{"sig":"MEQCIA5NpWWFJet8PZ+IHZHzseY03fc7BAq5qgM1qiTXLB2RAiBx4Ve1V/QDorm0jZcezeh60jkKkf/L2vDEWegDcUt0MA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.3.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.2.0","publishConfig":{"tag":"next"},"peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.0.0-beta.1.tgz_1501611881624_0.4726985492743552","host":"s3://npm-registry-packages"}},"6.0.0-beta.2":{"name":"ngx-toastr","version":"6.0.0-beta.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.0.0-beta.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"00b1122c8a9d2450d63d50d40fdcb08d2d0d0fd1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.0.0-beta.2.tgz","integrity":"sha512-z3V87tnjyKdN49eyOjrKXcjd+/nYZFwOFRxXHCPSOqWiWkd6Qnzec15yOXtued3qq3H/tZQyfr4N5uAfkoz80Q==","signatures":[{"sig":"MEYCIQCELOG74nnntkR2brOf7a5o7h+f5JsEuA9ZV4mHgvYpbgIhALOulq5q/ZclqWKnCQtRhzM3p2at0IE9P90n6/H9mYb2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.3.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.2.0","publishConfig":{"tag":"next"},"peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.0.0-beta.2.tgz_1501613442199_0.4733605617657304","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"ngx-toastr","version":"6.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"318a254b6b924be139b211d676a648acfa2d637b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.0.0.tgz","integrity":"sha512-xExtRUUJNnZZD6OGdvkkzYRF35kNduK/1z5sWBeL0YbU2853G1qpp28uI7uiz3PW6CrxZtHLAwn/z28iXJljfA==","signatures":[{"sig":"MEYCIQC8NiErz3k6Az+89ElCGqM9VWXTtEDUB1tfiKzGbK5MxgIhAOND+YBg6zz5QinVKkq44x0OsstMHIJ2KADLRKJUBT73","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.3.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.2.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.0.0.tgz_1501704655759_0.5040593582671136","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"ngx-toastr","version":"6.0.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"2cc422e659bb398215e44fb35d39dd062200e323","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.0.1.tgz","integrity":"sha512-/llpK6KGsaqVAd82rSmthyGa36ZUEkSNy8WmZO4o9hoV9sSJ8vYVkKuT4iN8CCKHWg1wXmaRjda13qNcliO42A==","signatures":[{"sig":"MEUCIQCp/AbXQVKyYlFIClio24j5TxCYz6Yj3zbRkE1GVMxenwIgLHTKzTufiUZYUaElBeV/dP4j+74tyXWJuQMVUvGt9q8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.3.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.2.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.0.1.tgz_1502231699653_0.17503376258537173","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"ngx-toastr","version":"6.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"292ec59b0d514d1e01559f267dff6bff54d08d4d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.1.0.tgz","integrity":"sha512-wh2fe6PA0qSOjm9lhJ76k+7jzUqfjQtnVUoTX/0KW4wbQE4GDHCFxVi6VrdBhZlEnksRLUIl1sLkzrBSsWTqjA==","signatures":[{"sig":"MEUCIQDdbQRAawO8sEa70bvMixHoe4wtS1TfHf1Nu4tT/XDo2gIgSrGcmNcKX2gD/fJZz0vASWieS8WZPu6TUDwSRaj/3aM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.3.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.1.0.tgz_1503728502138_0.5671801709104329","host":"s3://npm-registry-packages"}},"6.1.1":{"name":"ngx-toastr","version":"6.1.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.1.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"4837e856e09fcb26d341794406e9720398704048","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.1.1.tgz","integrity":"sha512-ZR3aOsHWAQbEMai6jxr3ibQdKXE0O4hNw4fyLmC11oXmf542bYEeTWSOyw2zKhNkxxW1Ra3b+qqdapMtl8kqaw==","signatures":[{"sig":"MEYCIQC6DtgfoGFEz7WIyVEZYsbTlID/G2HfjsZTxwo8MHNPzQIhAJccC4MA42puec5z9HgToKgbN1xSs08S1idCn+Ap0r4H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"toastr.umd.js","module":"index.js","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.3.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.1.1.tgz_1503762201531_0.14726251480169594","host":"s3://npm-registry-packages"}},"6.1.2":{"name":"ngx-toastr","version":"6.1.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.1.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"d865e17bf8009df9b46bb7f052b71c38c3d5c199","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.1.2.tgz","integrity":"sha512-cESr4jcw+Mh+222tw2FqKaxaknsbvJzwnZYFvuhEWte9+u63JWlqvkiDkvmNBG2Cg9EhwXuqw4LLNBG5FPvgOw==","signatures":[{"sig":"MEYCIQCuHc9qKjDJgtOO0U92MEB6nqv0ioYb3zZX7LoVcEsmxgIhAIj40QE7AHrGSyWct969EXih/CuZQ4CwJpgitG/5YxP4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bundles/toastr.umd.js","es2015":"./es2015/index.js","module":"./index.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.3.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.1.2.tgz_1503798820689_0.013202048605307937","host":"s3://npm-registry-packages"}},"6.1.3":{"name":"ngx-toastr","version":"6.1.3","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.1.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"527a5242d640faf52114554d198654f2738d64f9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.1.3.tgz","integrity":"sha512-5J8ingwMnmkkEybi/kempDYGEpH6YWxdRuy28kwPJ4groQkDtC8YEN85CWHXgtsVl7n/orNpx3UDDakSc54D7w==","signatures":[{"sig":"MEQCIFVLSFrxEPT/0u4r9T7zs8cYd1sIY47GyITN93/r5MSPAiBSe7spk9OZNMtOT4DSrkBN+P6T/uIQxgHwrTGhneoWcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.3.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.1.3.tgz_1504393650073_0.9011719613336027","host":"s3://npm-registry-packages"}},"6.1.4":{"name":"ngx-toastr","version":"6.1.4","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.1.4","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3a736522d42f84b686ff2ece859cba1a47a23b03","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.1.4.tgz","integrity":"sha512-m3LnPcO5xFzCvAEMhu4GbFzYVGbg9YEL3DQOJvkrJSrag2W3Z+0AYPOAR0Co4tL54J0lA9VN7d+u2Loc3VDERA==","signatures":[{"sig":"MEYCIQD/PjHUAYVZwoi571gZsLM8dRrKjnBCG1lwfnDZ2KI8cgIhANATl5o76nB3Br9Vlr7cJtBqgKSHZEi6/j0p4XoBtKTV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.3.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.1.4.tgz_1504394048140_0.31517486996017396","host":"s3://npm-registry-packages"}},"6.1.5":{"name":"ngx-toastr","version":"6.1.5","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.1.5","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"a1559ba0dc9cf79bac66421df857f386002d0277","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.1.5.tgz","integrity":"sha512-/SlU9KmfXugDaxnJVxOxhkKfWFToTZFtWNT0aD9YT9pM1+zFBV6l+eYMhUCwBqY16i0tjc0NrUwqc/2Oj6b2BQ==","signatures":[{"sig":"MEYCIQDran6BqAgNYho6UC+hief8344J7/s4x/YUugRIzS84FwIhAJ2xV6eqgRzh4MDa5W4TgvXIIIs24gGWKzcQs1yXTPwX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.1","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.5.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.1.5.tgz_1505408249838_0.37009177962318063","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"ngx-toastr","version":"6.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"75f0a422f4727a9e5524d3021eb842cfd98132ad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.2.0.tgz","integrity":"sha512-oLrBLSJ96hluOEQQnbnKG5gMAsjg8H/ouzNUUFrpsp/a6oqNQZVbnu4elOx0jRs3PJKmBfRZj2tXUKF1ZaC89g==","signatures":[{"sig":"MEUCIQCDqtLn7kOfNHZtTjpNmbfTO29EOJmKQHK1W87Qy2Gw/QIgUfwXQuRJiZD1ID8oMNN/c4AeVyzBnvJscTYyP9dqmio=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.1","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.5.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.2.0.tgz_1505508807605_0.3859835737384856","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"ngx-toastr","version":"6.2.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.2.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"6d04e11b67574c9bf9718c9f4e298e36157cd8c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.2.1.tgz","integrity":"sha512-jnzM8RcVHl6e/tpRTdqZJ9c5CZN7M0xPnuBRWx5Vz7dgTydmqNvdDEkRMPxV7auQjTM8HM9uHAPcM3NuURH9Sw==","signatures":[{"sig":"MEUCIHBlBW/aph0tQT6zaAPiCdyZaFAeV4B5Xlg3Fzzj/VyCAiEA7JtNLWl1iIiLHy0mqI9/NzU/QkiwFk3mxX9inYBdAOs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.2","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.5.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.2.1.tgz_1505972558809_0.06804594839923084","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"ngx-toastr","version":"6.3.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.3.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"03860ceeb189d51e60e49ee74157296b7e102af1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.3.0.tgz","integrity":"sha512-oLCNJGQcwSg7lm/JoagXxNU4EBhWbo45gveUGFtxE/BSyp6ZTw/8W9zNZqsV+s6UjaWs/+Faym3m7/LVM1RJbQ==","signatures":[{"sig":"MEUCIQD9wlfoBzR2JfycgudNIpPoLVfCgBIKnlzFNIO73HcoYAIgdHfY9AYrK6lgmgkSItCvDrZ2ZdR9Rr0yeBbJL5F4XAo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.2","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.5.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.3.0.tgz_1506283560573_0.24478327156975865","host":"s3://npm-registry-packages"}},"6.4.0":{"name":"ngx-toastr","version":"6.4.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.4.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"6fd8aa16499862676786c8bc20d352afa1d4ef5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.4.0.tgz","integrity":"sha512-GSYzdWgFZ3t/6GCxgHKQNzTPtXis0TGIISpRRshoocCs8SotC4an8KwYDKv5iCPLo4gZUgVHesOwpLZjcdBp6Q==","signatures":[{"sig":"MEUCIC0MesvX8B/mbRc3L5VhzrakKvXRazamc5hQAGlUQfJwAiEA+jSva9oc3RQgyWkVh6vLkBH5Ig96XGXcRIt+UMK4hBE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.4.2","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.6.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.4.0.tgz_1507309140005_0.9901261406484991","host":"s3://npm-registry-packages"}},"6.5.0":{"name":"ngx-toastr","version":"6.5.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.5.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"d6a528b3229bf3a4d570c0e7523a3391b87dc4ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.5.0.tgz","integrity":"sha512-7aJcNShznNpxNOR90JutJfab6QhDFqMWPe5mREeLdxZVtGbYGWJebuv2LZOg4Qh5wxOzNGNsozzVH6IO2WsK9Q==","signatures":[{"sig":"MEUCIQD7BVRtnD4hieTmBmCXG4+Gf9rRSSkjSQSJ7/LNFWxkEwIgXgytpQrwKsqVBVg6egTM3jwUho4S0QyfLC4hP7YIuns=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.5.1","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.7.0","peerDependencies":{"rxjs":"^5.4.0","@angular/core":">=4.3.0 <=6.0.0","@angular/common":">=4.3.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.5.0.tgz_1508949091628_0.9532596298959106","host":"s3://npm-registry-packages"}},"7.0.0-beta.0":{"name":"ngx-toastr","version":"7.0.0-beta.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@7.0.0-beta.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"f9cd8b5775a4c0c7b01b436455dfaf8b6763633b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-7.0.0-beta.0.tgz","integrity":"sha512-J/Vbz5Gth/QhdAUG14aUy/oNdDj5SD//h4NQKEIJTUNJXSbRjD/GNmEzymTWTmCRgb51nCrwTypl8MJFi5vbnQ==","signatures":[{"sig":"MEUCIQDfT76djlN7XfYhgVEO5GMjgDKp2166xgskZbUFwiRnrAIgKJ6Q2skz8Il/kNOhG341zstMJhGXFPAD1G7ngWx7KZw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.5.1","description":"Toastr for Angular","directories":{},"_nodeVersion":"8.9.0","publishConfig":{"tag":"next"},"peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=5.0.0 <=6.0.0","@angular/common":">=5.0.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-7.0.0-beta.0.tgz_1511468505500_0.40830505988560617","host":"s3://npm-registry-packages"}},"7.0.0-beta.1":{"name":"ngx-toastr","version":"7.0.0-beta.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@7.0.0-beta.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"ffec722f25c62b368bb4e61f0974b539b5cd464e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-7.0.0-beta.1.tgz","integrity":"sha512-8Tm8Kfz3ENUIZHbIT8Qwq48xN19XznDZVK18KO/5swsnUv/Usf2VpY7iCOhi6uDWFUCdkzZkNsdnyqKbpo9FFQ==","signatures":[{"sig":"MEQCIAsLA36VT+Y1XjepTf4H1ixozmiQdhQNsoDGD6ZHyTYKAiA/uEt96x+uv0KZPwj5pWsg5rxkNHVzaD8Z+c/DljuRJQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.2.0","publishConfig":{"tag":"next"},"peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=5.0.0 <=6.0.0","@angular/common":">=5.0.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-7.0.0-beta.1.tgz_1511917671622_0.5806853787507862","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"ngx-toastr","version":"7.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@7.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"a4a3bb7a1902aa8038a4fae04dab21b3289a511d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-7.0.0.tgz","integrity":"sha512-uzIN7tk+7uhQCSjareCDjHejNLQym4ke8A3S/GrAAJAoFxB5A6e0BBtjaOu/piFrmeIXvuhN5jfAefb2S7qyfQ==","signatures":[{"sig":"MEUCIQD+19SgP80uMGkj5wnpGHgRbs5C0sHFN66MzL/Xxw6TXQIgYZqHG/2qkTl+l25RN3qLs+sePqzPDip0g7/Y8O3G10E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.2.0","peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=5.0.0 <=6.0.0","@angular/common":">=5.0.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-7.0.0.tgz_1511978986835_0.6620546886697412","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"ngx-toastr","version":"7.0.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@7.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"dfa2b22f9c0f853c9a91fb1df8c8dcc33e74024d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-7.0.1.tgz","integrity":"sha512-/Ka/t6o0S99ogJCOVV19qYtQo5UGDxhVAsfHXk4oCmcMDrr0n0Rc7ECNeePUwEMF3b9HZopYT1rIO11nMj/9iA==","signatures":[{"sig":"MEUCICD+4Z9xRIb+9HawAiLUg91dJRY92CADdmxzPRn2+LMnAiEAzl2sJTin1fQN00sa7QzeFFZd5g0zNlugIlXcwH8qHc0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.2.0","peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=5.0.0 <=6.0.0","@angular/common":">=5.0.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-7.0.1.tgz_1512101910674_0.8743248956743628","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"ngx-toastr","version":"7.0.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@7.0.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"ee1b51739bda7a6ffb5e711946762b9933565345","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-7.0.2.tgz","integrity":"sha512-eMWKjaCBpjjzyRGwTpsr2C/ba+x/2g5Qyf28wXuNEJCRFVmS/CxLGZFruNBX59uqTJwoDf/prF+8Pon/0JQ09w==","signatures":[{"sig":"MEQCIGsUSfLVk9x6JzJpXVz2VH7zlD5kmIBae2qO+k7Jo80tAiB67rlNDJM+m6HvEOw4BHeolGZ23G1o00e108V9vBbDgA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.2.0","peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=5.0.0 <=6.0.0","@angular/common":">=5.0.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-7.0.2.tgz_1512111852854_0.7558211556170136","host":"s3://npm-registry-packages"}},"6.4.1-beta.0":{"name":"ngx-toastr","version":"6.4.1-beta.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@6.4.1-beta.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"a69add600930d40ac6796b9ba92a9e3db0ac8a38","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-6.4.1-beta.0.tgz","integrity":"sha512-WIKfJmVtFgPempCyYX9tixQC1QpifPXHOJ+FuYNtQtuFp5Nggwq8YC/mKh3vvQJXV1mXulznklP4WjRPzJW91A==","signatures":[{"sig":"MEUCIGkuRjZ+jrMFQOqbh05yuXmdwkOeFgiqfeDqh6BZ9dj+AiEA9iTyLOYoOg1h1cyvBywNRXNB6/WHjSu1iFrdPj9Jvfc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.2.0","publishConfig":{"tag":"ng4"},"peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=4.4.0 <=6.0.0","@angular/common":">=4.4.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-6.4.1-beta.0.tgz_1512161730461_0.9378985201474279","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"ngx-toastr","version":"7.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@7.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"175909a7782552dc8cad92053f69acb88bf1d36f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-7.1.0.tgz","integrity":"sha512-/f5R1qUxfIbh8sfu27FCma5b+li8SoShY+F7NpuEOld+KFD+MCRRmBNtknJ49B3o3u3nBXWeOedtyx3DU3KHig==","signatures":[{"sig":"MEUCIQCf3ZunNeEiS5JvxmuZ2tS5l6mGxqQhN4ttD0vVVsClzQIgAh1fQyPLtG4LAIYm1Uofs+zjPlCaRbdbrgWNMHL4F4E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.2.0","peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=5.0.0 <=6.0.0","@angular/common":">=5.0.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-7.1.0.tgz_1512514892915_0.11121654533781111","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"ngx-toastr","version":"8.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"f3bc53146b2f7da3eabf3daa1b1bbdf65cb49697","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.0.0.tgz","integrity":"sha512-PhSOrkdwQMpZNUH/aWES1mjq0M14/9LE3AWjBujX7/1Q9bBxMZtahvwkxVUGEGgMB6KFn4vGcT6OG4m9W4jsmg==","signatures":[{"sig":"MEQCIGqv0zzBa6OW2VdUPKDu067oKNM+Q/b+Q2+eIHKF4pXFAiBB5XsP8HPjfXyU6C89AiCB9+1Eq2C9nOUCreHL3dJGNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.2.0","peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=5.0.0 <=6.0.0","@angular/common":">=5.0.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-8.0.0.tgz_1512594700792_0.7036726593505591","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"ngx-toastr","version":"8.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3a0742e62895f88e232607843d61373d6f0d44d3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.1.0.tgz","integrity":"sha512-asgeQsjm0nf6B9COL7v5Dm4p9GbIjce8eMpvMzalxAJMaWiuryngaG+72TnrmeM48D/vwOUEasvJgYVRZ6JPMg==","signatures":[{"sig":"MEUCIQCjUpkWZBRcbM/7v4TLGvepSUTPra8yjwkY6xkbZFVWXwIgDz7ul0X5q1SpeyPVF3rvozqGW5kCGCSSjKd+koC30lU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.2.0","peerDependencies":{"rxjs":"^5.5.0","@angular/core":">=5.0.0 <=6.0.0","@angular/common":">=5.0.0 <=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-8.1.0.tgz_1514487288944_0.37414179812185466","host":"s3://npm-registry-packages"}},"8.1.1":{"name":"ngx-toastr","version":"8.1.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.1.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"f34a57c8dfadf49392978bfb37019247700458b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.1.1.tgz","integrity":"sha512-0CEnwlTnzU7rjaXNsgDng6tyLgLJ1YLGmAbudy1m/u6SIixHmRyJ3mBetTxjcj5XXstP3H5UjWTrH64WlAF4zQ==","signatures":[{"sig":"MEYCIQCjJ2E8MAKQPHqCCar6EYh1XCd0rjDFaZdUT+kvv+l+tQIhALvub1giflaPDtDns/lj4sV8jNRcSaOLwDCfOo1DEsf1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./toastr.umd.js","es2015":"./toastr.es2015.js","module":"./toastr.es5.js","typings":"./index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.4.0","peerDependencies":{"rxjs":">=5.5.0","@angular/core":">=5.0.0","@angular/common":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-8.1.1.tgz_1516384247053_0.3145229702349752","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"ngx-toastr","version":"8.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"cb77f2f13a42b8f5b5323230e9dafbe06562bdf0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.2.0.tgz","integrity":"sha512-aZZCeI8vl50vrITjd+Awll7fogSzIkX4BQab4PAg5YtgJLhaneYayzHSwqW2etBKwLD68TSCCouSl5t4N+2c8A==","signatures":[{"sig":"MEQCIBrdbvaw/Vao3W4LOLr6kblHI50wLePfHy14XVweVahMAiBEnwi51AT4bLcgxU9uzsXmKrc0PqvPVXUNcTc2ifRN1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/ngx-toastr.umd.js","es2015":"esm2015/ngx-toastr.js","module":"esm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.5.0","dependencies":{"tslib":"^1.7.1"},"peerDependencies":{"rxjs":">=5.5.0","@angular/core":">=5.0.0","@angular/common":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr-8.2.0.tgz_1517903228962_0.6377570740878582","host":"s3://npm-registry-packages"}},"8.2.1":{"name":"ngx-toastr","version":"8.2.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.2.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"86cffec666a9dadde5f8a37f2a8fe2ab527b3dde","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.2.1.tgz","fileCount":31,"integrity":"sha512-vJARehZEcPpr3tZj/rlUEzeRQK43wZhxQxlYtt3zbFCUTRPdjTFCrbNw0JnPgL5buRo8N7THahm+JC+emsX8Aw==","signatures":[{"sig":"MEYCIQDuZfpDnMP5rFXlfQv8SJKr/NtGwWDL5KjFGfbLfnQd+wIhAMRjEovdhFkEmw2wEv2X1riLVUqPiwS7Wg6OZf69ngKx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":478464},"main":"bundles/ngx-toastr.umd.js","es2015":"esm2015/ngx-toastr.js","module":"esm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.6.0","description":"Toastr for Angular","directories":{},"_nodeVersion":"9.5.0","dependencies":{"tslib":"^1.7.1"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":">=5.5.0","@angular/core":">=5.0.0","@angular/common":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.2.1_1518111298053_0.9702024698406035","host":"s3://npm-registry-packages"}},"8.3.0":{"name":"ngx-toastr","version":"8.3.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.3.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"4f79df590484de1caa2e29f9bee4cbf2c5aff097","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.3.0.tgz","fileCount":31,"integrity":"sha512-a17S0G1RLctEmUD1SfzesZHsC1nNjIGgIJAlUHQiqErNbjo9oqP88pNzgRLx3SX7x7+3NEFlHn5XQaRA9rKaOw==","signatures":[{"sig":"MEQCIDv61KPWtf5S8b1rCQD1czfzmJCS2NVb+A8zq4mEzEkIAiAYgjBe51LT+qXVjjxkjcPKCQ4AeDUSPa0/jvHHs9IBig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":470241},"main":"bundles/ngx-toastr.umd.js","es2015":"esm2015/ngx-toastr.js","module":"esm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.7.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"9.6.1","dependencies":{"tslib":"^1.7.1"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":">=5.5.0","@angular/core":">=5.0.0","@angular/common":">=5.0.0","@angular/platform-browser":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.3.0_1519932576315_0.046640450162638514","host":"s3://npm-registry-packages"}},"8.3.1":{"name":"ngx-toastr","version":"8.3.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.3.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"2c41a70d2118c16fe21e9def5a5d0d86dff7f452","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.3.1.tgz","fileCount":31,"integrity":"sha512-Z2kBJitzG2rXzeeHz0jfi09vBNgZ9gXc/1qiDsrOQKdnnJOPraDSEkQHz2+tnJsgOXhtPSis/d+3gwfUAYZTXA==","signatures":[{"sig":"MEQCIB/Vn58KM8izMiFukNoryI0FWnlDFdeaB/I/I+zwHE5iAiAmo0CLmpFiRWBHtWuANZ/xaFK0VR4A+3jGvcHCHykmfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":470264},"main":"bundles/ngx-toastr.umd.js","es2015":"esm2015/ngx-toastr.js","module":"esm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.8.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"9.9.0","dependencies":{"tslib":"^1.7.1"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":">=5.5.0","@angular/core":">=5.0.0","@angular/common":">=5.0.0","@angular/platform-browser":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.3.1_1522183312903_0.5719153153048335","host":"s3://npm-registry-packages"}},"8.3.2":{"name":"ngx-toastr","version":"8.3.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.3.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"f1aadfcad2c59365e93c68c3f872c863ea2f2cb0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.3.2.tgz","fileCount":31,"integrity":"sha512-vs01t5Om6Syn2OmhC++fTswa67PU1RoCQ6EgNWARWBD3UegEIBO6sfbwkVjMHqWaXT1d2mPLoLglcEbIUdzisA==","signatures":[{"sig":"MEUCIQCGHccDXCocWemMAo6aVY5tLzZMSTGuIuR8aEmEjOjIwgIgDclgLIFL3W67FpvPH9GvQQyPuGlNy2ICdgpnBYCUEX0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":473155},"main":"bundles/ngx-toastr.umd.js","es2015":"esm2015/ngx-toastr.js","module":"esm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.8.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"9.9.0","dependencies":{"tslib":"^1.7.1"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":">=5.5.0","@angular/core":">=5.0.0","@angular/common":">=5.0.0","@angular/platform-browser":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.3.2_1522207680907_0.1393461236480713","host":"s3://npm-registry-packages"}},"8.4.0":{"name":"ngx-toastr","version":"8.4.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.4.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"0fd73b66ab9857cb9eb9974ab259070cb4c458c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.4.0.tgz","fileCount":31,"integrity":"sha512-vYNcOsMn76900tqnojvkMI/T7rqXN5e2OuWwcB6UOSO0S5QeHvIAKQI9ZbyHyW+2e08mW8gT7hbrii+Jy0umFw==","signatures":[{"sig":"MEUCIE7X2aUBmUcmRcgIMBP2Op7vHcLpCvOAMz/HNmJOioFDAiEAocxP/Zb7tXtHFqesNfe3jjLr4OjIVdwcC3ee6HrrVyE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":474093},"main":"bundles/ngx-toastr.umd.js","es2015":"esm2015/ngx-toastr.js","module":"esm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"5.8.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"9.9.0","dependencies":{"tslib":"^1.7.1"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":">=5.5.0","@angular/core":">=5.0.0","@angular/common":">=5.0.0","@angular/platform-browser":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.4.0_1522775116897_0.08458792497401313","host":"s3://npm-registry-packages"}},"8.5.0":{"name":"ngx-toastr","version":"8.5.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.5.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"57bb19c3cba1b2478a37e47bba7a1d939bb61db7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.5.0.tgz","fileCount":95,"integrity":"sha512-HiWwKOXVzR2lU6YkM58s+bc3jIS8UjZ95gKZrjAZwfo98RDOTR6jyA5I4+iX6Q+xWiiNPX4A5Z5bYXFGeq9X6Q==","signatures":[{"sig":"MEQCIGnH3e/s8IaVi+gHG0uHpSb9dHjipkzOXq3t5oeNi6+oAiAnviC4HiW14/4T/PVLfc+C5KyqUR06mfZ9fNw3OsA7XQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":723068,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7MAeCRA9TVsSAnZWagAAHd4P/14EBin1mCc6tca8EvPU\nxqC5Dn29+7ZxtS9ux0Z5gRnHRQ7ZCHJH7DCC0IzEq08v4nvB103L9Wbpl2JX\n4Xxobz/+LoLIIPc3/Iw8Eop1PG4EiGLpal+KEHB7CDSXYrpm3w3kyR0QzZ2s\n6zlOL6vFugKzavZF/yekPS5ak0gral8xjcB/EqBDv2YvvA8BaOw5K9x8M5ig\nlhOYaDjrslQP84LRgCBNxkPXivAaQsdysTw6xYFMUAC12cuwf7UD4CnoLvLQ\nt/XJvPhG+WJyXz5X7ClG5KtKdH1HYdtie8rtgvzQ+AkEcjTfs8VPihMiGNm9\nOa0tOL67vujnRipkRkHm/kzQRBmdHBfu2sDBISO/xHS3sJiJeGI2nCqMPtlM\n0x0h+wubFqNd2o4xzQD7vzbdIMcSDkFtm9Eef1Rt09XNhe+qDPbVvWqYO7Nx\nLWn6pypIfhuEZaZi8PcQf5sL9WIiGBO+IfdZwec0wtV78k6UZ3Eh6f6vUpDx\nod3Bpqn3xajKIJaxRGEzY0D1w7LSddUD8knDE1+3kZcclQDLzQxO8fQSOMI1\nXYXk8Y5WT9yhOv+nfWvhigb67cTd9U3dUyaVtwNIoBmrakQ/uCkSJ8KYS+Os\nDGKUpbH4KUIxVXTRVqnlrEH2maMQhfCbmwbutYeHF+aBblBqc62uMDP7/Lcl\nU0Yo\r\n=Vdx7\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.0.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":">=6.0.0","@angular/core":">=5.2.0","@angular/common":">=5.2.0","@angular/platform-browser":">=5.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.5.0_1525465116864_0.41248120447618786","host":"s3://npm-registry-packages"}},"8.5.1":{"name":"ngx-toastr","version":"8.5.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.5.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"a4b6f9377f762a7361c228228a752341abe09b4f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.5.1.tgz","fileCount":95,"integrity":"sha512-2XXC9CA/+p4yd54pdxyLgw8zrwb019liiRkyjqJMdjuRLTVakChyw6p8CmhialIq0I7e70SOHSsDAGQTtFXkkg==","signatures":[{"sig":"MEUCIC0jneuKTd7IpQQdta7rExB3yrF/xmljbKRLgfT52qgGAiEA25s5JeFwsSaEGWe5+RwRs6ES9+44E9OV3STez4DFrbU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":723146,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8zNyCRA9TVsSAnZWagAAS88QAKPbOwrnsGyq7+Yny7E5\nG0nJx9+Y8Avi5yUq2Ps4TIbCYCYkkllQ1KG6g3AnBH6rCLIeCKhZOCaa9Qlj\nvMpZ2cOK8aLRmL26HZyoH9HZ1zMQpCekS3c7Dng5sYgJQ258Joa/PNVrA3aG\nrNqjqr7icP55pHZwSC/QX6CNqNUZfb+K7vpmSNOmWKzPYE1ud4xy1qHeyDwk\nx0+hqS0kLQNZQsN5M9pnulmEh27/CljYfwkFtQ+cu9c8x0Oh+n8Hh5xcYPZr\nJsedwBRX5MMwKVzFFrSXJfHoXJx6eTgSOGMbqvOAKOYFuYkfCjeMTCidGMU/\n9K+xzew/BrTWUeZkiAtLf51YLsGAkmajR3O/7qsf9kMFkjVixBFpZY+fP/Xs\nE1beuHfPlD4dWia5hf9FLWO58MtW2RDSnqDHtrPYhZHdwec+4Sq8yRA2n175\ndC4uEDTR6FmUBaCIN0mHOvS0c30/9gdxM0a+UGW3gnZiE5lqN84p6Dq6cPpw\n5Ee+Cw/quMbyrz6rHIMOmNExjvJ1CA5iuGrye9HuEzkGtwxAcaZoC4LcCKXI\n4yeqx84Uq9ARMiKpPGTgflQ8nbkT4N3LjL9L+cFfEzczwwmLE3b4tMegpZ5t\nwxoV5Gt9EkJPJWWuc7b4RXcTYdSaMz65/MBKNs4WyJk3DLFN40FSPsoYUieu\n1+4g\r\n=Xe5q\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.0.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.5.1_1525887856520_0.6421894429491231","host":"s3://npm-registry-packages"}},"8.6.0":{"name":"ngx-toastr","version":"8.6.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.6.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"4ec28edc07352f83a21abc40403669e79d3bdc73","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.6.0.tgz","fileCount":63,"integrity":"sha512-hju3heVviL1nTvX/wP/ZVmySSk2QhRj7u7M9ejmq/8u53IbdNbQlatHFS88LBWStH3/GtpzOHUBiL1rMeZr3hw==","signatures":[{"sig":"MEQCIFJDZfxzGD6hPpf+kQ5GOqtRQ++sG09zF5MLDkHeY77oAiBcHydSkIxf7jExd6yJsDY1egh7rldWV10C2Berabn2Mg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1048998,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+fPECRA9TVsSAnZWagAAM90QAJgtgbEjC9brjRxqLU/x\n6tvbhJ6qdORZCbK/9j6yzmM6VbEfPkVuIFtBHqPYmDGG1uiKWrcsZgcTJVW+\nqt4NhzkG7vEY6dfsxGgeep68TxcPTtnkWlDThev6MaRV+hRjgfRPywcwRNO7\nG4fZ00PMzQpaG7tRqGSEhxyUgOYnop9oTbx0x8nFUoHaVrPllB1sb5wPGigj\nsAgeZLnkkWMik4b9p3TNl5mfR2xNvtXUkD1BBOKEav8d9imVKFWgW0Itu422\nKY4mPLi4BfBDS5MQ47SfEn33KsSbPNw4cnpxG1Lk1/Ju3yXp8r1AmBxGxrog\n5W8n9WmtbY+etDzo0A7fjzscKTouJPealSpto8JA0CH/eyzol5/jXv5pSmmt\n0IwIuA+OqJl18fVNBnyCbjBRbFbP/oGCaCEKp49uj3LbECPb/UEBC5rc1yLe\nPsNzAJ3Mdjg+gKiTGrHr+DasQMeRv7eYb+mhUXAdGP9l9+e0QwMmfcXgKstZ\nk8QOSmCfIKIofRquAQq+BhMk9APwZn4GSHIalo/6998BP4x8LkBGN2ePCrEV\nZeIc6fXxd68fXlYB+3a6GBGJQFaRn4fP8yhT2MHMuF7KXrCklQl5n0nONb1L\n21XSm3yZ4Q/9EXqYqPmLeiaLvN6torCfbdFdQGefZiuE1FjUy/sEDYE94r8H\n7L4Z\r\n=78wJ\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.0.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.6.0_1526330306921_0.47000649951415574","host":"s3://npm-registry-packages"}},"8.7.0":{"name":"ngx-toastr","version":"8.7.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.7.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"6d4e71ad46dc072189f46e667106f7ebb7390949","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.7.0.tgz","fileCount":63,"integrity":"sha512-aUrABYezrVh/lIgrOO/tHgS3TJUr4Z0xbevsVoFRrkhPyCMF73cXjExiItAQUX/+x7/65aZHvxjTI9RBrCwhXw==","signatures":[{"sig":"MEUCICp6wUYs/5fA7ZTdhvmSaDj/ZNZyMRrLj+UXLOyggIsLAiEAwOgyD6E98ntSUxQARsBCNCxJjqnf3/2QvkSCYwtbPa4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1047409,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/wNRCRA9TVsSAnZWagAAzKgP/22SE63aLpU6WK2BvBrC\nx2i2nRlh+ViTnO/XD1nITYoOlBW8HrwJE82C8H/agAfc+4oaoxD0DB8zDfzQ\nU8U4minDCFJLzvl4Z1TZylGCQ+CSqSyC1MZLAwvwDQW2ez20PPuYDFF67SE3\n51+Okbgysa4UwAQY4g+0m87ZDKco7fJmHw86YnhgiyT+XI8kHDJKiUjJYV9h\n1LIpDyTO+jM/J9JCZuvtl29VRz21qcJy3bakBIW/rMD9iH/ClYTrmuxUdgJk\nXi07HVKo459U4KrWieTR96SL27Ct+1ev28Nw1BEFnvD7/8b1E1CydpJSmEGI\nCCwgDmNpThL+sGsbZtfo3IsqUmASi9JV912nvlOIwcx0PkWfeVT3aWuOX1vl\nF3uYdVnf4PIT5KeGw7wH4Q3R7lupHk3QJkdydRGAOxt2qWhIBoD3WcGyWn8y\nER3lof8W7Sye+ubyz20GVOS09/0blfC9d13/ETCaWcMdgHgL5kIgFzH5VjG5\nWr2lYGjDi6hQVEvPfC8af7WJ7NHnyJZfTMGSOhgRob1aQL5Xjea7RX8OLoL9\nGCOo06U3WF8qiYGSm25QE/enZKVWZ3NDFnlKghVWDHt6rjMDNp6z7dkyQqDR\nPrZza4dstDxy1VF9oI/Z/lXdsODDrWasvYmog9PTzeJLDpJCgT8Ypsckkd5I\nKlHr\r\n=cu4P\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.0.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.7.0_1526661967448_0.07445282766092687","host":"s3://npm-registry-packages"}},"8.7.1":{"name":"ngx-toastr","version":"8.7.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.7.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"1cf2d369369e1673c932f74174a416be8a0250b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.7.1.tgz","fileCount":63,"integrity":"sha512-fAwKo3NP+9XtVCpKRlIRQWl2DUZqzWK64ybYikgUqaA4Zoz5AXWGg5Zq8fclnRIWtWQjZ9aUGNhqYV4oYAR6QA==","signatures":[{"sig":"MEQCIHLL9q3gpDGjoRC0Og3NPdeCJJKL/DnpWgXffNU+0b9EAiBNrq7ZiJxkJGB8132gBat5PkYWcG30VsElbKcQTCMHug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1049061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/wQZCRA9TVsSAnZWagAAWPIP/0PbIcgH9ZUfO1CZD0U9\nhuAF8uYv9BMIeLZVLKwN5kAcRqVpd7S1qy27GRJPLABkvaPT9S/duCagoHLn\nSbNW8LX45RTFsFruIVrqoBmIqKMIo86TxMYiP7Zj4Ej53UsRdcuQ4PUsAKDM\nzhm9pCbT3v2nULuz9QO+1b5IP4f0p401VJFVNTQx5k5G+21/0/b4RITCC1zG\nsDehHs+iIopXFWgX4AOsYJm1IYLlvVk7W2CPc5euxTSyA2oy/2uqLpytbzA8\nrFam4CarVcx/GqTdHC3+cHXYhET3KCGIH6ZSSjGSs4na7r8bK8YjZ6ddLtz9\nKAsGHUYnt30C48qM8JFueXimX7GRCPwYXsMD+5Izp3AEz7l0Ohk+PXQ+Ls70\n+y7wowub1EfKiC7OUF2MysvvtMnf932eZrSZsnEuyDde3EX/ZgQQVCKOb3X9\nY7QOR+oiCAxSIQx3grWPQ8ApG0Z8HUXUWFcveFrpNhtCDiEoruvqTLcMSPYD\nOdsbTpT3Q4rwc5IXEX6YMdgaoG79W/DkcJdWe1IJvxM5Mp8hIzG/F48cYLh2\nK2ezQbzMCS3cJbaRSDNjped2F94KRyP0Po94OVVSLKx6PCP4w0LQvSjAEzXk\nHGbT4+Vy/du+iFi2w0XT79cbt6kVC2aUGyN9ONAZ5JR3d5f9WMmRDN/fRutD\nuDHe\r\n=XfPv\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.0.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.7.1_1526662167723_0.19487866775362006","host":"s3://npm-registry-packages"}},"8.7.2":{"name":"ngx-toastr","version":"8.7.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.7.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"fa10abfc0adbcdd18b105875f93938f31430594f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.7.2.tgz","fileCount":60,"integrity":"sha512-Kmdj0DiFQWo7l3Eob/kF5A7K41YZsIiYIHXuxb6NiXN1QnhdBnk4/P0pF1Bt5Gbg8rUpvEfl0yy+m2kbW7ricg==","signatures":[{"sig":"MEQCIB7IqDRGaga9zlG5JdjH2510gjnm8+ucjaydTCvVQmqCAiB3tBGcjGAXHXf5bOie+Rrar4vOzazKfB5aax3xqZCm/g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":884472,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/wV8CRA9TVsSAnZWagAAY2AP/A37h0SxUaBB+ry1GIXf\nmxRkekmSfaeSLWpXIVilRzPYmA/EtlG2U6NqzKLwwRTq5e+TcTxd/Cy4jYeW\niCjWhQww5FaLII6ItXbl+sldRwbhtscxJUJWZJ0rY3pnV8sBXtIJ+2WyWQHB\nDlYeIj2Ztj8A9HQdcCiTpMCOyqJ/wju+2ZWoA66eJmIiWv32kfAJyTu4zVj2\n9e9kgA6A17W88/t9QIXx9Lh4t6FNwenLLhSbKFSK/UUNs2FTsh2P4IQqtLFJ\nYYs97wBYUiJG7EZO7C+4/SPqaFu6X8s83VSGvO3qxa7igGuPJPB/OIah2C9j\neUGY8sM8JBS3jAhqw9/r48ko1Q175J9aLRcUcTVNxH9NrbWr3l9wH5PNFYNb\nnAiabrw/vBHpprtcjZQPBpmOz+YLUExBfLbSO4TkYcNvW/RjJvkS+GNFvwHD\nzyGwQpCdHHZg9dGqPcXM1qFCONxIcOJz+tfsG7yVdbQQNFdJ7ipKHx6u9fvQ\nfZOtmBV5CnNhA8eIAz9ljLbko7hcQCsiscHeO9VvIdltNjVYF+cbeAJly6oF\nBRjyEIdUAKv5UcogcfmOytGldSIsnPP9xbiKKO1abH93P1ZpIzZtJF8rVH6+\nexOOGi1RtPgSP4N6foBKlIbuF1OBmaH7/yMWjpPSuuTYO45GcookUpxKmhS4\nRF8t\r\n=fQsK\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.0.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.7.2_1526662521974_0.6232419936092763","host":"s3://npm-registry-packages"}},"8.7.3":{"name":"ngx-toastr","version":"8.7.3","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.7.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"d3b7a8077ba1c860dd8a44779ccad38c5ea15c92","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.7.3.tgz","fileCount":63,"integrity":"sha512-xAdFoKAZ92oc4cX/Jjcypw05tELmp+EhFet+OBovW7wXiKJK2N1qyT15bmk88rx8xASts/5Cos4MQc4TIQ1Eow==","signatures":[{"sig":"MEUCIGnE47OZ1Bjqr2Coxe5EtL6AO60gOw3/ZGYTYGdAUEX6AiEAt/mUmmyb5EGhyGjaaEsKAGC0bz2c4u43eNrKxNKcZG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1049061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/wZ3CRA9TVsSAnZWagAAswEP/Rd2wHK4f/crSGSAunqc\nRPJkUOTbAuQvrs8PNXF8DCYfewqlfKDPWC5dUBxZhs7uBYT+6rsRWpfWVdmS\nTUNCresqFkl4ecMG6zvOo5ABCrzFoQT1GSexQJQQNfOIXoVbYxzLKF2sO0x9\n3iLL/F+1pu8pS5knTXQBGhMGQ1g++SWvxwIxxbQsHNgzjeC8xr+drF6NaaWz\ndQWnZQPbN7/DkJ8+CQVMvK3STBbgsvgmbcgA89R3ehuvwxjVTevh7yimJrvs\n8hTcquv4Qy97pR3pfcMIVvWRZiclsirQpPEntDqjN4mQMsy/1f6ijpRovqwJ\nSeZKYG8xc8CB4fYcQJSAUQ/lg6AmyucGjz7t0EOUrRVIluuhr1td7ALP/lmy\nNQmZvX39nsUBU9wHj+/T0IrRK+TRZVrEX13LdRZHxsrP+0/qp4quUti/Qc8u\nkquhI8b+EemknusQaxlOxzTtx9t8DyF/52uNuSdnOdRufYdREE5b9apD3v+R\n70Jr3a5zP5HmHtiThsr1fEjkyXHYARHj65wnZ7IzYALQw84JUrPK8JSJaq0P\nM9MEtcM6Lz//19z9jtUV44eCZ3294rdu5ULlSuSG3mEGaDW87vgYtJkDncX7\nEKVXp3iNQ30mE4N7gM+Yy8Nz/WfyrOkEtq1m7MaeIODI0Ve1BeDHKIBKKi6u\nOFUh\r\n=1rD+\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.0.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.7.3_1526662774303_0.46515864970521825","host":"s3://npm-registry-packages"}},"8.8.0":{"name":"ngx-toastr","version":"8.8.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.8.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"69dc4a174f14b16eafefc19e16c923357fd11de5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.8.0.tgz","fileCount":63,"integrity":"sha512-b24vSJaMuuuLUNT4Ly5GF5xoC2uWTa+VfNdHAkW9PkqsKIlTzecHevQElFSoYsVSD7sHtes6QyDS6eKje3jq6g==","signatures":[{"sig":"MEUCIQDlKsfmYS1FJelN6As81RmKz4hbKCZb0lDo+GuLgR/JwAIgWk5eb2axACyFS3mWlaOMtomvp1eE5KDgUku6zhbKhSI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1086027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGufXCRA9TVsSAnZWagAAY+AP/iyk0lZfKmZpN4e9UuZl\nXB13AKSPjU+gQhpyCUYGdC2tLCLwX7jG8348IzVSH7f6QzxBFANeknFZNPus\nnuVxbnNQjRkFcwtyGtxgDFxnS/lFUHRv23+Rdv3WB3kHaLLPcq7pUOa3wohv\nQWrvM8dYCXP9pXY8AKTkPM3tHYCrTaSQX2ZOLyEvVj+iDiMQDN+xkl6CLe05\nI8M37QcmpWSIc5NHf2vMjoHW6wBpH4Euh/4juvXMX8FPSU+zL2Yj6C1hZzdj\nHZyQes7/j2WRKhD/qPvMzgbyLbj0TZCMS/hZnARbpvaJ+m5PJgQBHyFnuI4F\n4EDFsPBy6ufPxUiaCbrPmtOqQ/RZLif0z6l+OtVNTSZeLm9ycpfKwbDQYG2M\nt9B+RUCUuqTqckQlkot2qvu4sIGoUXaPEk6a0/8K0HSg8BFXS4c4D/lK8Q+l\nBv1/o6uTLbEzebEceHnLahcsBtQaCFhlRSV1eTX4fZei1YGR/CHI52IjuXmx\neo+fsSwV3yzl1DzSJ0iZP2/nnsu4o65d3HEbw2LUk8+OxFQ9otpItYn5slm8\nhkL2FW481WSry0LLmZfs2KwicF3b1Z0mx+iABUc1Ezqn50We2J8UNC9vDKEr\neocSk/P617iZMrE73x+Q5L7arTIDdD+0unkz5tAeZ8a1a7Ow+4n/66BLwrCE\nYP0M\r\n=FcIU\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.1.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.4.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.8.0_1528489942566_0.5891914104657501","host":"s3://npm-registry-packages"}},"8.9.0":{"name":"ngx-toastr","version":"8.9.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.9.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"abadd4915da7667cc3511f5838115568bccef9a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.9.0.tgz","fileCount":63,"integrity":"sha512-q3xOCuPIfNYXOFbRHhoDSB5kkFjfFk4xRZ/fCfWwvhJbiLufRRwIJ9nhMDxUYda0I7t/MdABSf9Zzs7gN11nLw==","signatures":[{"sig":"MEQCIFWgP6xJK9+ViZ1nAZfWxQ43b+/aY7qrGdHFFAutB8GVAiB+8vHAiuqyCwK4dkefEWvaVsPLgYHOGCWjksr79OkViQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1152780,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbT9FwCRA9TVsSAnZWagAAQHkQAIWs60EX1uFjZZlMkn1X\nmXeinZlUlNRtvOpPtphVjdV1doX7cAv4uaSxTcy1gaT34KEUdow9OjIFqj8r\niTnzHRYrRfjNXoqM7VFiQli3AAiOvJzGAjxfcn7OULEFfTAcO/AbjbLup0Q2\nvoZ4N4JBhn+vDBOVUHV4ri98rDimkxbSlgaiImQZLa3juSMeMPSwOZGa9Irq\nHb3m/ESM7OpNLfWxGT/XAvQ4OBdximeiPxwXqROFj99OobA25QCROt0cKCHP\nWbXKiS8PzKSzT/aBGYRgcfPuznSIHKHmgCDc2mWB3tUs1SDuGJhfOOJgwyS6\n5Tns3k8MIMS0WzqrCpT+yXJ78nH4h0psNUC8HaTaFTh3djmYUx18OXQWhljY\n+PHgBtzg4jW5NP3tqO7V/F0UdlnrGlL1Rv2RIE4LiXemMqmyztqCkVuaMX/E\nF8ZuzxWRMS422m9OhtpuYcmuZABOErXy6+tyGa5Yd+vZvTSUg4a8/aiCHXfu\nTrdSGVNrz+IRb7JbUwQjnG6E0YiPvWgN3zdMMmUfTNVMnkNKP9bEVvrqjONZ\nfgHIk4NWrRzWv6igeEpQ0X9HoM/sPPI57ryPzx4earkELrtOlPwVz5Ux2q7u\nRtefBW1YyADOGzNupADXJHsYyBVmjv5NVzA4AEzTGiMsxg9CiV2ZyZqwbWOd\njVhD\r\n=0dhm\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.2.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.5.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.9.0_1531957616827_0.41073136464409954","host":"s3://npm-registry-packages"}},"8.9.1":{"name":"ngx-toastr","version":"8.9.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.9.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"7ae6f22f3fc95933f5d3cf335549905c9d5fed20","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.9.1.tgz","fileCount":63,"integrity":"sha512-YryKLmZNFv1IljRE6lz4k6aTJ6Iy62LhJlPrXot/3neyAXDv2o7xJVhSjNyiXs2IEe7rPMtDH+Ps7BTSpshwDg==","signatures":[{"sig":"MEUCIGHPE6rGPrf6RqxzQdYJvnug8vf0VLD8nvcMh9py4w6MAiEA2L1Ht8p5ywDGjo6Cl7BMcKdAWL9fyEpp5tA97xmpjKk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1153589,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbUif4CRA9TVsSAnZWagAAWUUQAJW6GAbodtEyJTvwlVVn\nijqidrYwYz/BuWZmK0a21GIT4XNXGEZpaKiRaeDoPu3k/w1G/jXekwXCpIDc\niSEF6H2XoGG+XDDliX487iMrQl30aiA/2E3VTSzXeStAyFGOjmuFxUiioxdx\nO49s7GpYsWbazLVpzkIW8RrBo8BYmbXSSBUWpzShNinp1P8Yao8MeR1SWBjO\neu+WTszjVrbf4IEl510wSRrasXxZzgh9+GOYuaqOC3TaZLoWlGrGLX8kRMfj\n7+RtqnjE/y+WVh4UrZYGywGLUfx0BdlEXKu7bd/t93L0OZvx4cSDZ72Z8p2H\nljbGuFvfNn7IPOMD+I/Fan4s4VSFAPX8ijjhbNAgTfiKX5UwrEwsfsS8jlIA\n3xgGkwMWjHxKRGRZkJ7uw31eHA78gOA85EWRKGOKIm3Me7hNnbRNA397Oj7a\nxzlYbkJNzVARNoq1d2xdOKGO/yyiiLWnoA5tc0oRbKPuTkv21oq36FS06fpo\nfPL7oYXdSEId/NkqiNrbasXFUmR5j/BadfXYUIOqBIwvBaUroRsrvSJ9KOSb\n4Eu+Swljo3c4d5J5rXo0Q16C+8DajLM2j5HfKuAczMSEl+MqlSzIH+R3glQD\nyGkJMsA6fkpOrTcvpmqSU4SG1ApK1HS/+cYDPNXfnRMpg+9Y7P4cqRjYF/qJ\ngbOp\r\n=ezqj\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.2.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.5.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.9.1_1532110840746_0.5111534671967053","host":"s3://npm-registry-packages"}},"8.10.0":{"name":"ngx-toastr","version":"8.10.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.10.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3b5b5c0e766e8f17540e9d6d08d086cb3acaa35a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.10.0.tgz","fileCount":63,"integrity":"sha512-41JWNxr5HlWbLMIQPsrzMkqru3T8t1dMKs9wbqaxPwUXBu41IZZw1kck0mfhAw5IgjO3YeD4k4Y9D50DC+FpkQ==","signatures":[{"sig":"MEUCIFP2XirSINPoTap0nsgcf14aLdVEdmNEQwdX7ESHLp9NAiEA/F3SkUHOZskzNdIk7jojDbRlZhyH8MLcnmEbLMm7G/g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1159861,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVnH5CRA9TVsSAnZWagAAVeoP/0MnrlTA0lOU1q4VVMeb\nEHuK+nBGDB9fV6WXUYg9HIqCkjJ6UODYR9E7gpsSK2h9qNIIB4RsdbrGL7gl\nEthJh4BtH6perBhtp4HESVS6rb1pGIazjQD2cl8DzB8rZf6jBctyLyO9WbZ1\n11UEId81HyUW6+ay0EpiYRzcCd6QaKWNZHdIgNFFirts6RIMBnY/Y2WMUyNQ\nTmdrUS2ci9PI+q+/7bjuDx2MbcytZjxuoE9DlOLcJur8tvOUXYSdi5fraFHc\nsUN96DbhLmH6M6A07Hm5zUSf0cu/CrkqwoyuHNPeCmsW1YNCrB0m+jomz1jo\n8scMHUqDLdBBV6n5LxwN86S6xBrCzi8wEDtmIBaYXK0DcHCccEpjFxCN4q5M\nGiuoexQA8U3C1oMdFpy69VIVdZSiygtQQylZjza+fnjPIx+znL5o4kvtnM/7\nYORxUNl6Vnt5NdyIgJJ0liAGbqEmuXDErWhklWquU15fNoyodwICGtLD2B5H\n9Odhr1IsKaYYpK7+1huW9bdgQkhLW8OKLGsbLfmUCcJ110Zpf1Xhw+o73v/0\n37DiTyNkiRc0LTxmoTw/5cY/cM5IbtbDgZ/1PpkIWelWJ14tXD6kHAURC9X3\n8+gyDx40RLnPEve3hjrmhe3om/fioPMQ3gt6kF2OkfyeOy5irrbACoEiN0RZ\nq5QF\r\n=oMAO\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.2.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.5.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.10.0_1532391929354_0.36966099624538074","host":"s3://npm-registry-packages"}},"8.10.1":{"name":"ngx-toastr","version":"8.10.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.10.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"7c5848687b11365e7a6f2cc0ccd902b69f3df6cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.10.1.tgz","fileCount":63,"integrity":"sha512-wAwzo7hciVstxlbBWeEQEDeu3NrMaj5gHuLqlF9RBL/VGFk1W5UMtVK6tcyKhmSNJLV6EyADtWJganqVPtnG8Q==","signatures":[{"sig":"MEYCIQC9Ls/l0wKBTv3CuUSbDgFTAIu78hgCcYYmAE4freLPCgIhAOLXFlc4hp7ETz0t6XejCM5anEfJzABn746fIfJAz858","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1155461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbclyBCRA9TVsSAnZWagAAkHQP/j5TCb16mZqzwgA4xkYA\nLHUkbn1dcfcEWgV/+5/G1XtAfyyedCLRevGdhEvFBq9ETZvyT69Vtwv4Rav3\nV2797wcwNhKk/6aO+7iSsOVd7/mvXcqufPuadhemnFjlKoMWmmEzOXdLgxHg\n7uvALpXmv3ecVM9PA4Wcc5YQc1xLejaYznoYChy7XlWUgjCFfqDYQ4dqHKqz\nhLlHRklF6VEdez9UDZErlEGq43qCCn1o7DWXy4MzFnsnfdAZAQQwszu51/zL\ncyspc/SFVaTiR6joCQUkIck75bNhQcxlXbMgPM4sS2L//Ehy2qzn07n0KCbp\nrg41BvOVsX7bxtreOqRtSBsWepaN11BMvjDKNEtOKOwFC0/tE82Tf9b946G8\nZ7QZFx+Gztof9SOiB12oPBnWkK/OMVMwBqsPundfI1662+zdgzOoAmwxZWlD\n9XVaKa5YoaUgpHmWIitw01fYwt1v6M1FJqj1ZaRFeEc33dmLEfOrxDM+icPb\nj9aVdQqE2wPdGmDtvoclIA0RrD9wEza7NwqW9Iomaa/TMmJhlmcJstEsXNZO\nYTfF6wGKwQJ254L70QFqnBlVx943ZJqUsXcn6u8BPfZOdeqsmTULDAZqJgva\nsEFBmh1HzvGKk/iVPaPSlkoUbwQdP4DxXnHZmqJdh7US4KIpm1debro/s/2e\nLOBS\r\n=7CoG\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.3.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.8.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.10.1_1534221441021_0.8092611086222878","host":"s3://npm-registry-packages"}},"8.10.2":{"name":"ngx-toastr","version":"8.10.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@8.10.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"08f7d392a76d3d5c87cde92f55c81d51ced64e74","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-8.10.2.tgz","fileCount":63,"integrity":"sha512-sH1/CWRJgiMu+092ml+rLKhMi0YqCJfQ25ZLoT8YyNI614Dgo8YRI6hrm0JtMyVaOKZipX1xwPRM/S39aqSQPw==","signatures":[{"sig":"MEUCIEuWNtfh5ni/kOrTgZyNAF5Rp/eC4eHla+MF31LTZe3DAiEAzQKtL5Xb1axz4Q+dPKZJZMRi1s6mAseLogjXdOcimfE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1155187,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcpOZCRA9TVsSAnZWagAAJr8P/A21fNxd7BSXHctlPKVE\nhSpyu6Y5OQErbuQ8pJPUgDNtd3SddJgeQgGX8lOIYyGS9hwPFt/rsOx8gUWI\n/vku7tr88FN+C6SfUAtALp508SYDuASh8ryiez7aG/GPl8EHyqAgkowHD8t0\nBTS68xL/CJ5tLJV5SkXiRRY503Mc79ahcVugSfoPcY0zby5mi0WXrSiGLojx\nRbNgmbBcMiqDZspCFqWxuGNAWXN2Lc9s+fUUGHfzHxtd0qXqQnxy6/JjjyVj\nrPpswdYymXuaeV7LUDfjk8SsA0JI9FUAyuEDWwwxjZWaKEKpWFQI70CmznP8\npfBJ/Hu6bYV7aNb8XJK3blb911tnmJd8JJJYuWDQjnbuNDz4quKs0hdNAvBh\nH4KiCOBj3t/RUrXEntQrxpkx7zUo95JNipUxt/TS8xgz7c97s10Kxm0I3uRh\nEB5Mq54P2tW8hQtRAzpQQ4QPT0VaBXT1ppirpAYK5IR+NsmCWmEIdbqGThrb\n3C4DPbrNEeRBsLpa+CIx33pqN8KHDOvMKtRfbbRX2DZcFaNV2IMz8CGMcPyy\n4R3sX5kqFmowkswu/vSWQXIy3ELG9BqeSS7CMpA1d/TOIKDi3nrnDp+9OvFQ\n4hti5RWru7jSq41ZsVxqWT+a6/sek+FfKsbiLsa97eypdpPooTwIoFqHXKy3\n4cvb\r\n=/JCb\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.3.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.8.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.0.0","@angular/core":"^5.2.0 || ^6.0.0","@angular/common":"^5.2.0 || ^6.0.0","@angular/platform-browser":"^5.2.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_8.10.2_1534235545065_0.3925810922785886","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"ngx-toastr","version":"9.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@9.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"ec7b845299227372f70280fdda7889398fd57751","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-9.0.0.tgz","fileCount":57,"integrity":"sha512-u1r27f1XcKJbXvJyos8QNHx6a7vD8TGvcKsPtV2TKaMdlV5D1BWxLyd0hpmjs7y0/z6dwVS0I6gfYXqkYdWUcQ==","signatures":[{"sig":"MEUCIQD25TPax1vIh7BaTscxT7jlDXQ/oEu9ecyaPK9wdVyEmQIgCcc3FQiJ91xwccrXsldrbQefTfg5HBpa0MgaMY5eQdM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1189177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbc2YGCRA9TVsSAnZWagAATaYQAJTuzyn2JcBVIP03UBm3\nLN24NMRrc0XVUu06NsG0e1ysXMbpA3IdDOlU4pVTjT7bF4kBE7r1O92oD+/t\n1cBl9lYlehh9NfckB136Fx+JOnBLNAd8mZ1vKmRX9BuEjVlntHGclTrCmInB\nFudNqhFI/Rsjc/33vQ81bOu6HtTdUfrjckv6fmSFHVwbkcSFkJ2CZEihj7AB\ndK/0LoFT+19RhdTdwgp6pjl27R9NRJLTrrl+c+nsebY26Droc2au3J/sDIAY\nw4W2fPnH959IlYa5fx9cBYYiqvQOTzONR4mr9Z6e+t26ZgySq+X9y9gDW+eI\neAydTTS+1o/9UfmI4Hi29DV3O/9ISXhI+YVzGzly8caJ6zFJUq1y5WNU37EW\ngwfK7cCkyTfbjmJEOnkmba2pykbbA/klokZ66aioAEwWsJ/25BOJl+QED9fy\nROSuw2Do6EjhxghJx7llP5HtfPeg0N5y6yi69CJPtry8E1SBZhVxjf9ZsiXo\n8b3eRCeF0LoXRMfoFcd4v3eJn5rMOAjEIOtD9vBU966fvtyLlXld1SNoLmED\nThpwVQ5nZPGDweHjm5LuFK8woDrHJdeeh4U8ogfuqrAIEMjOGilA9EiM4O+o\nwiff81HVFLgVuc3qhgbU0VWWhK2B+Jn4QFJ6dgF8DM2COsajpmKmjBiW8e3w\npC0M\r\n=OhEH\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.3.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.8.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0","@angular/common":"^6.0.0","@angular/platform-browser":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_9.0.0_1534289414703_0.6033908396873622","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"ngx-toastr","version":"9.0.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@9.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"e7290c5ee0da820306d9a2c50fe253260d53ab98","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-9.0.1.tgz","fileCount":57,"integrity":"sha512-rzcXkOQnCptFfed3TF5gUekDPX+2UtWq5L6oc6XU8egdM/rH/UUYOmdNrOfIBt5oc//F+OaAyObP8Ha9NjXM9Q==","signatures":[{"sig":"MEYCIQCZHalYM1ncTRJpuQN3xjn8gECL0Mxhhmj6ZY+n/nsMoQIhAJk+MndTrfL38bPVAwjUYZ5NV8tjWNCEE2tzHfP/t6cv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1187277,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdE2zCRA9TVsSAnZWagAAZn4P/i/n6HKCny4Jz/luTV89\nyG0pqVIXIEaEMHFh/0PknsPCslr/qkFf7pVeOZyG1i557FiIMeHHJfED51kr\nrXcoTBP5wQbae22a5LSc4o6hmRPGKc8tC+AfrRQYVaYYfc3fqg90zAQ7WTKN\ncGoph6j3AlKtHfDwwabIp+/rd2Mb7HlLxkcZGyiI1M9MJAqqr5sUz9nDcPJX\n8Dfia6BRv5A6szk+oveL/flaa9pS6l5UT+bMgy4JyRp7vi4lIfwyRQCNQfLT\nzo3GMfD1/c1sFOZXPsU9aFTk1ndsf+JJ+4JQZ9YijZUTeWmEBgshX/4jqxUS\nR+sa+DKSo2moScUBl7sD1im60cTthbfu2B522Z+NI22BQzLCvdsu27df+oNz\niYQj5Bjy1hn/1T4dH0eTqAH5iE4qYcDaktFPE8uDSEy640moeFDB6zTSoGFD\ngCz8yEL1qVjPKGFgCuY5Z2MYNMXc9ZhcreO4xhRsflKg5s4TkcXzVlpSZRrC\nvogcrX0IWkLX2QBWnDhhUqERvem+d5w3V68lHqoPGQysuzSerkBluY2/e3gn\nCSVyxMCs9Fb34lINfxCEFaYktftXvETqxqINkaIgkSMo+vzcXUlehFzxWHqx\ny7/6ca1iE+jfUrD6MC6/Eks5csR9qtaj5f6ps9Rr+RUIHhPOYadfuqRiz+i4\nQWz1\r\n=ckC2\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.3.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.8.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0","@angular/common":"^6.0.0","@angular/platform-browser":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_9.0.1_1534348723492_0.9709869134196645","host":"s3://npm-registry-packages"}},"9.0.2":{"name":"ngx-toastr","version":"9.0.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@9.0.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"e1b31daa6a9ae1f6782f0b0eeae8c3783c8779b9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-9.0.2.tgz","fileCount":57,"integrity":"sha512-wSc1Oh0dshJR0TaZUu52YRiAW3JIjS1SZarZoj/B1yK8zSp6G+a4ueD8qCY50qLpQ3SddT19zz1n90sp64jH1Q==","signatures":[{"sig":"MEYCIQDcEpwAY0R7RFSAH8zSZkkI4dN/VAO/dvD4px47dHVf4wIhAJFzEKFTlj7uoQDl93nQDstsmxPy7bGP6fkhSsO2vk6I","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1189534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdJSaCRA9TVsSAnZWagAAeikP/1iJBVDnY0WBTInwWyD/\nxD+VkLOKk6ssQRVjxJ1kEs08vGTI/0zNTnLR7Uynj//Hve3CwC1hIFwi4nWV\nUnSSsJDvb8tb7GVLVtcrm/6+hUyf1Z216jv7Jw3uA+NwK74fZvsxKCqG/iQ1\nn9YU4ajtqFYwjwKVVbN6uBR3pGQ7j2zg51H4dHN4q0hEVU2GixcF3Td2rAdr\nhRpIfOdEi/Ins6er80Ke3yby9qlBTidl9e6lPJUfq7PulCBPoCV/v8oaE4bU\nGDhj80J0/3sek+yRRwhzS6sNkt9PAqK/waUJzgPY8m5BkDF8WaVauP6KHAP0\nEdZLj+FAAjcDYJllZ4j1LMKjMLZqRnXInxquDWhZkPihtx10ONqMRGMHBDLh\nuifdpmN6FWqEke4F9ahjC7wCMvQfSEzu7CAuN3ApBEmU5jXdMD2YJmzqqTSz\nF6hk+a8VmIw1RvXMJfWkwJaHQaIYMyuSEMwXKK6zAC/RxsN/Sxharz4GCLQB\nbMz+k+6O6zxNBGCTOJmlsND7f7XCnajfNGZZEsTR2SLVX8Bte6ysDG71JSZ9\nLJB9SajawZUTzNuI+3L6sCW7er37CggMMmNImEt0kMTWhxn3/yYkmSyr/32B\niRicr7d5nlcABNc78rqB0W2dNSFKLt520TKKYGqFbJbBTCotjkuAwshPclUv\n0lj0\r\n=eQAb\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.3.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.8.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0","@angular/common":"^6.0.0","@angular/platform-browser":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_9.0.2_1534366873955_0.27049314197004626","host":"s3://npm-registry-packages"}},"9.1.0":{"name":"ngx-toastr","version":"9.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@9.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"643801f480e95ede16ee01aad5fe9982b238ea2b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-9.1.0.tgz","fileCount":57,"integrity":"sha512-F9fdYAcoCbnk9PgIYgBs/qgc1+qgmu9j+dGi0Qsk7QN1fXna0XBnzgxI7eoZt5jAm1Q6ZnIWOd5OfOSomtcNvQ==","signatures":[{"sig":"MEUCIQDFf9nqPXc/nZ3aD+M1o3gaTKruYqBxwm+5NiIkLg8eSQIgXTEJPmVSeZNB62Ug+lja7Xk3Rr1tYDUJhQn6MtjoRSE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1191681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbooAOCRA9TVsSAnZWagAASNgP/RpL3NG7KOFkAjjihhl8\nML9a/MrjH+WwLxvtvfc+MMiKkM/pfSJwyGnQTIRWq8fD8t8j3pJ4II0To0ya\nU8hocuESc82gpPmkZC58Y8q0NKz6mlluw7ZlwID1stVWitpr3LDlVMIIGr3f\nB1aWIPXRNmzTGN1SG7eRkEXnNE7NJcVq8imBHBOEVnVNCQAnQGVIl+ibX9MP\nlfL4qk3bGcHvGTei5nH0BqOAkc29lT+jfmzqvVcawqyis/+26MgIWkgH9gOe\ngwN7YhIBIt5msErk9oTtMvHucLE0Kx5b5QBrSFNnMGiqikz+B5p9ryXaHsld\nNFUHi26XFvUVNt517FB5bSFZilUTbUTmimIodQ4gtBA2BZnL57lwLO7VwjWo\nrmnMjM3Rf6BarkOb/MYJHeLczrxL8b03bqThGgE4MhaCKVgEuA7mw+5hh2lt\nAtJZU5QkoKbTXf6IG6QUNZsafo5WrRk2CHjvOZsn86tv7yjqHEBCgHfaJ8/m\nKz5WBB20jW2oUFWu+gVlk8jSsdzrYBTRIe9J1Cil6oSTfudx2N5MaVDl+qCI\n8UtGgxWgrP30cX7Yzr0QTswLUZ2W8bg3wpqDjlhdqGKqb4ZaHn3+3gTTZKAp\nHBa2ih2caeMY7Cv3qG0HRVHrzUZrfV9CFiLp+Tn2RyhgSju3q+qsgRUz/Tfk\nwrDf\r\n=qNba\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.4.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.10.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0","@angular/common":"^6.0.0","@angular/platform-browser":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_9.1.0_1537376269612_0.18674109777355463","host":"s3://npm-registry-packages"}},"9.1.1":{"name":"ngx-toastr","version":"9.1.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@9.1.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"c7ec0284d13951422ccf47439a387372ddccc768","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-9.1.1.tgz","fileCount":57,"integrity":"sha512-v43BmIXPmwMRx9Uv0ru2UaPQLA14gTsqWgXrO1DKC8RXnBGGoQEE48cVCaDX1GhaGM5GSzVO2s0o+nb688zsFw==","signatures":[{"sig":"MEYCIQCoo6hu0G3W9ipdunV4XDJPCpsTy4U/qQr44KZ8p+5KiwIhAKcLZcejXeJ+Bp4grJbS2QcMdDZ1RU5yI7ajb2K7A7wx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1208319,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbyWjFCRA9TVsSAnZWagAAH40P/j/XxOlXW3sbWC9hnGgL\nz045YOC6fJxqU5GAXnGzs+csLUc/HmIAtU7z/7BUsfxzBOhpVB/cVqm3qfpX\nVUVvAyfo5s9pPUMlw6eVXOLuSaf+QxtNfNArBg/6m4PcE/8wYUncuKhwsV8Q\nr4bjm/S8qKZanFkMrjmg05zgF3hUbAy2/DWvUKHHzcmj7jHt2C99w767mmB7\n92uVfGda3ei/QwkGC/88DKnw/GIzz96r5xtVvencbYy3blNUutsaY4OjoYRH\nBywJSGrwwK3mL5BADiVbcB02Qka82Hg16oCBqMHL2siOogArI/S6zA9kxlqR\ncjFvnPTyt14S0QWG+7O+bITvRwHJ7hrUnPUSiS+EkUkw4nDmtrqXYQ1Y/rja\nDLZ0yegVsZ+WPHj/zRNUdKZWUJpo2kqHAXAUPigA9h6YKNCleMmI/sMkojyj\n4sD0vGgb9HJT3dedLOmXcUqSMroE3N6q6Gs4fSxyGDiAfXJIG6CMyLQF9hIK\nXHqbXJLv4inQG350e8u+0NpY2Tu4WVKrlgM2LUoBxF4mJswvXLzarbGRN0ds\nt8arjkbzMa/dMal3Ysvdi74O9KL/7S/9rGGnRJNXdHWhgIpMxppcTWNEDGwO\nHDJUbf6xNrKeZ4wZt48O5/Xr9tPNFCBKSVkmjkI7xET6HQaVmPTkJooHm7fh\nZBb0\r\n=1CUJ\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.4.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.12.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0 || ^7.0.0","@angular/common":"^6.0.0 || ^7.0.0","@angular/platform-browser":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_9.1.1_1539926212799_0.08391799866181571","host":"s3://npm-registry-packages"}},"9.1.2":{"name":"ngx-toastr","version":"9.1.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@9.1.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"2e59cfc02255f94556cfe3690a36c57a6a209796","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-9.1.2.tgz","fileCount":57,"integrity":"sha512-XhK3xA73ueF+YZawtqKs6+FQ1OMdx+EzCPihNTMSSXDthglfcgzDzia/OMSGjhx0h7/AK4N/BAbFau9L5RqVDg==","signatures":[{"sig":"MEUCIQCX8fXIyiDePim4OHrj4PxVOCnX9viM3+6bDnUaz+ffbgIgepCdqit3wQ9ecxKNTjLnRWF+19JRhyJpSS/vXE8KQ7E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":931056,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXSwPCRA9TVsSAnZWagAAA1gP/iQ/6vkqZP13fE0FvmDl\nFdBBXDWQmIgB9acATr0vQRWuPZx2WQwc4Cr4oIxVyinAR20s9lLeE0IOo8WE\nG0ITzqyewjz5njvyqhR0L9SO2vxncLdrLO/iOQopttKRjHaBIozFfKC2aVKi\nTah+QCkdjiKyyVdXdFyevsicMK+7R8xpVKZzIaJAS0VFjIeifCZGdWmE7jip\nF6YC5qRvfzZmAHNZ/Zc434im4OJ98UeT6HzWEs/Ktgind40wJa5xWh7z7vVh\nYFd1RzJjao2yEMYK5Dk/jijzZ0KprgBBw3KaeNVRXz0w1AKHjmigGzYLChRN\nRiI4D48T0YfyD/Ei8kl53KeWYybZ7BeO28IRRkQcErCs3gl4Cl4LWvrs9eeQ\nvzZounisB07tKv1BeEsTBOth8xJnGEHxYhuYb8+R+c6nqCIiJPeJdWtvowZY\nGVyxHjMGxEzLo/TfMOoCSvzSxv1HVUV17PIAi8CVNhg9EzlcMofQAhlgc44U\nKnkRurMoqFwqi1YgmfX+o8O2oSG8UPafIdbO/b5dtmf26oQVuJ3d2YwbeBUX\nu+P8QcJMgj65+b0UK0lYy5AXl5730YHRslXVP8EgyRKrizJ3kgu0iRapwujU\nZpEiGDXjTy+AWwRAFsxP+qW+ENBPm82FmxS2N60wHti8QbqfiM+W7g621CAL\nG/ym\r\n=1KtV\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.5.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.15.1","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0 || ^7.0.0","@angular/common":"^6.0.0 || ^7.0.0","@angular/platform-browser":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_9.1.2_1549609998600_0.6785869178637416","host":"s3://npm-registry-packages"}},"9.2.0":{"name":"ngx-toastr","version":"9.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@9.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"cda6a95d87751eb22030e40013d14f890e5bfb01","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-9.2.0.tgz","fileCount":57,"integrity":"sha512-wa9gmcLMMthnvtXOgpHQ9yJUsFe2A5Nb0evl85Qib5N2fg2UEL8FZbYSHooXT5k8vs1D3gLQzYpNAQm+5brmRA==","signatures":[{"sig":"MEYCIQCKGJ1UbsswKMZlvudy6tY9UhhKfUQCrlJNLa5MWx4CDwIhAKjN0CdkaToRF5V6j+QTL0n4PQcsfqQDAtQMttYorAGy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":936467,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJch/arCRA9TVsSAnZWagAAlk4P/jtTl18+mBXxJZK4lSjJ\n5dlDEl8USgjF0Y0AnrF4qQk+cuwaksNWI4hziNfIl1QttvidYPbJNd4Cuqp8\n2bKqxtJdCUvKzs3Zj5P0BXiAQ6MrnVq2iySsEufczEKdiixmw+MV0xiQhOOG\ng2dRce+YQFm6sEWTH9ZF/O9pb6msK1SSDVj/ako+qQiq3wi1gEH5XGUt+p5S\nQ/sNsXwpEq/BXPhDxhoNDzJ53SqmD77dtVjummn//dPT1Ig+IgU+G5Eiahj/\nH10yjj9jIHCuwOb1kx2vGt8MFTxVCNSeKbi4gSBqyHg5zijsxQJ4WpzL2W6A\n9caRKKdQrgrJ7PAfPviGDFfIvKBAwjcTHcccrbx3JEul51+6DTxSyWB5JS90\nlOzckr9tlX/XNuQAnscD4ebLAadUzO8Tyhf3yC0mxp1cVmf2hFW1ycgJbp0s\nxURc5cTnrLy8UFZ0leDVJwleAxPX0BcaPDJbjwZtyzR0Xush6MVqRSSYsD51\nK7tG7W9c2YbVq6b/m2zSqtsddr8pe0J232FUJiV+avPHT6gTXbsFf+Vw7kcU\nmqvhH6lgkL7Bl9LTC8KO5WUqaUaakVB5dQXLgH9+F97xmlUguOBIQrxee/U5\nvuMYvgMc7A7PWSv3f1f47mk/sXBgt86yTFbhOPNfnL3h95IteGutnDtec0Cj\nrNuL\r\n=mLOW\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.5.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0 || ^7.0.0","@angular/common":"^6.0.0 || ^7.0.0","@angular/platform-browser":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_9.2.0_1552414377887_0.6125119811840432","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"ngx-toastr","version":"10.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@10.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"069528da5ad6630825b9d0e4618d49af814dc517","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-10.0.0.tgz","fileCount":57,"integrity":"sha512-BSeB4JsZRRmWpaXkhbmmAP7P9/RYJHeBVlnQ9TVgAVISsS0kSPV7/mh/5QVbHLs726l8n8tqo3vtzqtd9EdMHw==","signatures":[{"sig":"MEUCIQCvobsUgFQEK2x8a4M33dhI4m0MHjLxhAtwB/yBomCNvgIgGluqHqxlznr06WMvcSxOxwqVVSA0TEzzfefBfmh+VSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":957004,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcifISCRA9TVsSAnZWagAA9/0P/1MZ+eKwh30ONN10JLtA\nFJH+2oX7xaiiFeIpyIVvkg3IZa82TyH7fDuvA7Mzl+IuyMyxTCkCvdUHFVU5\nJmIyzCYnTmqHCk+pWzrs2nSvM8WdbGyQIiYFp9cih81X10LJpYkFLHIZVCRy\n5qN+pV5APzfgpQQhznDT+xffJv0q1UU80/YKHY4aFKaVVREme9zkV387jaJS\ni+uwKititKoSrbh1PXFRp2Ge1hsdM41Hlp81dI23czoAit35bYexycNEZBj2\ndw+YN8R/visnXEPYukVdKqOhVntelWCz5ofnBFxck0hU+hlrJIAmmzPoGKMS\ndqCKdCgBDaq5DBAF5jnMFTKxsadRMCYrmPtU5+B8Dyw0RWY4U34kRzr8FoKg\nIuvonPhpcnSnG+FXNr634X4DxDGhvhVhpdEjLb+XON8geumKfsNsnC/ZQX0p\n5fJUaCjQnX+QP76ulqybva/TxsDkNer8M/cCy6xshV+rCKjCK2zYXhb/Sk5G\nESB//MlFxW3NIGCftx5vuCSpvlVwh3a/96acKqVjaR4tl4F795umXn9pacXY\nDu4ot5HQ7CKIa9KJEsVkZ3nNqdknhwWUISa+NtMvCxVUThi5pTCeUE54ZXfI\nzhRq/lPfjpZavF9nSCH30xQairW0s7aGJY2aSCJMfmUCei7HZHpYP5WxPkdc\n3F3W\r\n=o55V\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.5.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0 || ^7.0.0","@angular/common":"^6.0.0 || ^7.0.0","@angular/platform-browser":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_10.0.0_1552544273518_0.5935198992861188","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"ngx-toastr","version":"10.0.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@10.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"17d7ca80b7e2fa7e83b21b62b08f816089c7ec1b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-10.0.1.tgz","fileCount":57,"integrity":"sha512-/1NcJYU1kVbfH5q9dIQKkSTd6kYYJcKv0rzAMXNIa4nhjymcBpGEG+h1ibqx0xIOqWxTTBnMvY184+ASg9SYpQ==","signatures":[{"sig":"MEQCIDZ9PdUcSbDuaWmGcUqmaccJRQzQJff/iC+khEKgibkoAiBaeiIjFA+Ljy6A6QD8TIjaO6W82k49MQ6L+GOtj9/o4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":957029,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcioF+CRA9TVsSAnZWagAAvlMP/jCS90ZpRBzQQjwm5yEp\nSWUddvU9W2k5jEC2Mik4XoE2KlZrdy9vbTMkSOa1UBYdBp03beZueja7H9Ly\nakVIFGk0ubFQfFYTNheabmyQ5Ils+CnBKqNIUIP0T6vFNW0v256AYvQDQfpa\nY0ExK42gp+5llQuZs2jfw+eX817q1bhUar5o8ZfKpXWjUewAcRPlrQUiFYeu\n1xLMUW2C0T8iMkJ/1uPyg2+DIRriuldU0TMgyeFem2ug/vdknVUpVuNa1SQm\nB4V52MAs98TuVIXsu8CfR/35vWP0ffrl7AUjhmGTpPTIgXEJt39wXu2OJXPS\nbtS3+cmTIOIM96kiTtHMm/VjAxjI9a2L6rsHZqWHKYX9lbpOcvobuMWe2n5t\nc135EoLdwXFa9de7IN3BNHRe6/NKZHUY9Yk1o9NM6mDEZjdIfVkMcV3Wd7cX\nQVRxVpKbKInfNE8zlW+vUhqo8CFgKPvE9dc+f9PGL3nF00IgoHPIVmRliiVf\nJJFonDcAkAWDMRvChS5l0sdLDv1B8O4Dm+Px2gORWxboH8lg4am5uHI72UXx\nvgmf4+JHqWrtsIhppJfPu5yAK6IE37wr7w5l9ym8WIYltpVcAq+fdqsNvTBa\nBuhGOp1L+PSyIQ/uowaikSP9UPnraCS/J44ul1vimGJawWhDyzTNfqsLt8DB\nNH5b\r\n=rPzc\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.5.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0 || ^7.0.0","@angular/common":"^6.0.0 || ^7.0.0","@angular/platform-browser":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_10.0.1_1552580989685_0.6237889796728633","host":"s3://npm-registry-packages"}},"10.0.2":{"name":"ngx-toastr","version":"10.0.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@10.0.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"afc51eba792fb569f82c1563fecd5c34dc0968c7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-10.0.2.tgz","fileCount":57,"integrity":"sha512-sHlVAzRnuGYPR24l/C8+ftgWQuAJQ7XFNY55xCrPzSK8+jPg4ZViY6xSEQ5Aw0OXmjsa5aeBqWwAg5CVb1t7cg==","signatures":[{"sig":"MEQCIHru99dyRjXhGW3mSmC466Dq2sGqfMwlyPPXAGQ3MJC9AiBVZ8v4qmNqeCqP874vDAWohtCHs6X2uFMH7jqTq/3osw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":957043,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciu8VCRA9TVsSAnZWagAALEoP/ipEB1SVAbloxikQT+A9\nFFfXHmmg9g0Ih5SW4VhZjyq5/49HAnaWjtQxDSYHLSIhXfYIqNh6N8/pg1bj\nxgTd4xAylHRuAj5e88qXX0BLq/hT0m4WU8fXwv3BDw+DhORhDMkCAmSc8PO9\nedNB88juVcR0199fMa4D9u49hX41+eSuIz4FpbGLgejDloSRe/yo+MEa3RCq\ncTxMLAs9tmyzpVHFi9c83ZzKx1ix/ly4eTna3QAChmE+LJDmjgAGa+iTzw5D\nHLWgtHTm+3JIKbVdCw+kZqKaekIom1dgewpgZGo0BPEP8dsEiNJARDRNeUGz\njRh7JHNw4SzEDdiNMzPNMtrcKB32J8pyQdMheM2DmN+ORqcN4rfW2mZ1CUwX\nWroI+vPJajfEXQMwiOpiY5KzLu8PeqG1S67v2y1nv7uwmNXCcxT8SxhlvM25\nnHrL7jOg0wIbCmKW7t7O0+f4w+3umSFCdf3DNljcOWOZsDOBFiM+8O+0ELeZ\nJP00P2ZRH3UnqVitZnxMA1SW8xhPB4H8PlTWoY4dEl5HDuMlarvzn12GccIS\n84jlr69VPhhGELXKKa/b8wh+GLQN4iQOZNZPjwZ7axkCRw7rwrBLiME8yory\ntNV+G67W2jx1UGZ5woHt/Rg1gSOyE5thUZ6b0G9gcj14wFcQDr1eTjp0CaDw\nr7JO\r\n=hj85\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.5.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":"^6.0.0 || ^7.0.0","@angular/common":"^6.0.0 || ^7.0.0","@angular/platform-browser":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_10.0.2_1552609044921_0.7107559084278774","host":"s3://npm-registry-packages"}},"10.0.3":{"name":"ngx-toastr","version":"10.0.3","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@10.0.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"a5a22e2da24c49098393a26c54fc1761f1baca16","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-10.0.3.tgz","fileCount":57,"integrity":"sha512-bkTz3caMsqwH1nWcwaqoreQ90QMQzQHzh3ZFpbFEfOim4JHzV70rvjUXyZpqsfDNnWqbXkSNF4s5A6ZljbSUJg==","signatures":[{"sig":"MEUCID4F80s+pKOVW+ChV8f4O3vy4gjB01zb3xi+ZfNxx6AWAiEAuV3//7GL7mfJxIDNiDw3Fy6JwQHpHbUDNxD5oUZs4NU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":848661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1jRwCRA9TVsSAnZWagAARY0P/3zbM8VcCTCNRdWQoXGd\nap0dChZKEg9VPgZ7FVi7XxOWoADsKdeGZk6IcYWI0nycS1MQcpWit8fwFYAK\noNd74a9LXLVvVIuBbYC2dgweNCQ/omxlqaSl+fveJoEfKzO+gexou0fRJIlD\ncZ3h6INVePRPtfP0QvFLoy3t0YHMjZ/WrmmQG+Sg/vKzmISCrbeoBZpCZ7wL\nsIyqWF3VRQv2ouLQto6hOhr8Z9/pr9ydM6XwQ0wYztdzuUppIg1BnQ4vhwue\nF0yKM9kix3Y6jMF/ck2367nJRBX9DaiLLfiDiqdMFOQ5hjdU9oO/r4IsqSdT\nD7pg7tlzgN8d91dDiXjvVxjyyaGFLORRMZeOveMOYe8kSVahHsNOLreDD4SQ\nSBblaMZjCmMIypMBZPQta7mRnrgtrTnGcEnyVc0oLAQBL6xqtCsycyh+IpUC\n5lW7BBbIG3fw42PhYp3TkiQNjamboxlw0qIkEePQ8FyI1uGDf6+tQQT5nO6t\n6MvDAFNqz6dhLBcPXc7gHhbxVj1cKmPhCnJaLpHvi4LVyZ2Cyz557BQ0GIMo\nAexUlFiAhJjLmKC41McTlZyH53bThWmUslaJwM4KHxGNzzfVgEtTd5bNWPw2\nwvldosLq/8FMuR1u4Xn4DQAyxyiJrlcFN82WtvLrceHsERQk4/2vxlmdNekj\nB8gt\r\n=R2hj\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.9.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":">=6.0.0 <9.0.0","@angular/common":">=6.0.0 <9.0.0","@angular/platform-browser":">=6.0.0 <9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_10.0.3_1557542000007_0.8976015373516231","host":"s3://npm-registry-packages"}},"10.0.4":{"name":"ngx-toastr","version":"10.0.4","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@10.0.4","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"cbc61b8d67d748194ea7a28542b01e39bf1fc6c2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-10.0.4.tgz","fileCount":57,"integrity":"sha512-iN+zr2Msae5wV334c1dytRhSYNdUz467jwv1NE91lMmllsMkpUzZlu8VdFCeTFt+/R4TWzz19xBRqhpp+OAuVA==","signatures":[{"sig":"MEYCIQDdbeu/jIQDczSS8tqZD/r0fid6WUhxU1pQOIc3WHslFwIhAO0T7uFP8p/4ck2c8CIyVOHpnsUpChOuZ4UhJXHRutIH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":848666,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1yHqCRA9TVsSAnZWagAAl08P/jT4bRK4/7tBSCF3O4N7\nPltJpEnU4qq9xqaBgzPk7msSKZVAJ9lnYG1aKDmb0tl9JW/dXZ1EgpkBQgM2\nmZ6cpSiEajDN/xK9SEwbmubjN5PNN1aMGFk8st4lExt15klk6xqQnOm581CR\nwMNVF5tsNZVQknkY3K2NBzJjXo0V155aAETYaqtOFA15uqzy2xdzGBOAy42l\nKGwGw8WCXRWQHqwwKLOH4CcaZ9afdMc4vsdVwFKShK6IlpXyEZeTM8Vs9yi8\nhossn5fWF6P1HCUNfcUNObc0C7yfE+b0aWkaZD1EQjiGh6XXlXRhk2a6MYOs\n6V8iOrkfRadq2cxudPoZyZ8HdXPeQB7ho02aw+9fVaixYp5EbjZPgL+MKG39\nDidAfiuAy73RZLXsAf2/zUwcF+KdsGlzJ92xVPxHfvlhYdzzVfzUkswxwi5K\nA/Bsu6BScxWYDaU8mD/dKPrZFhTAAnZiZzqB0uf2g5mI6Ecvil4kDbdtuEYV\nt1iahgUm7sfP4gdW9ASUrmWGS76Bk81cUQgl1JWSRTGrQeZMTsL4OOJpYKLw\n+rA95oX2lph0B188uzSQnY4Uqb9UWV72x4VKOSM+CmyHKJcvG3/1luBB5lXx\ns0S1f7eBiThRavX6MbgprzSVhsNmgYXjZ4ZcyuGsuWDm4f9Ltc76gz8YUBiB\nzqsg\r\n=7Hul\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.9.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":">=6.0.0 <9.0.0","@angular/common":">=6.0.0 <9.0.0","@angular/platform-browser":">=6.0.0 <9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_10.0.4_1557602793143_0.7809001062184779","host":"s3://npm-registry-packages"}},"10.1.0":{"name":"ngx-toastr","version":"10.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@10.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"df6e578ebac1348e68d24b11d243653a401d17e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-10.1.0.tgz","fileCount":57,"integrity":"sha512-LXGL8jKIm0SGklkXytNKbR6VrF94all35SaUfgd1gOUzgllTW2ldqORDZlgIaiMB3Dcybaald8p3boEHvfjEIQ==","signatures":[{"sig":"MEUCIQDehFnFCONStHMn0lhhPtgWGJHRAG0kpxa/LUfKhZkxwQIgLTU3hGEiAuZA9Hew4UpkA0wI963H4gq69vSxnSYLkHA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":851161,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdWcJCCRA9TVsSAnZWagAASG4P/jq6s1zYFWjajo1zSHu5\nnfZrf1hJ4MXqYGa1aRSQW/fwnohEXLOM2Wti/tOgdKZAZZ6QTw6i4UibSXqy\nCFeFwN42oeiU8SG18V4YBpHry19TaTYtZcbREL3fEgTOhQKbhD0TLWLwwgPw\ns4efl+AP3gedbh+oRcCxiBVkgbcSm4XqsWeeYR2vBJyrxq3a/lb062acl6Hu\nE0IJi7eT49dHtaPE9kFG30cMFbGldjsuJYLgpZh6HrXPK55TLpeRfBQokhSG\nscJKb8Og3BVqHrJA6/Dl6lCprN6V+GLyKjSbuf9hg+pCPCkB3X5+SYY2xXh5\no8iQAg8oLG40dkRoV9iIuCEoedMfYrOf0RI9GaqiMSXluv8cu8AQmK3LANg1\n3fJMYgf0WLQXwULMNmLtCzwQBn/d3dk1Ha0mr2md7vw861us/O/7PfqfG473\nC/NEzndCK8yAwK4m/I2EcJjVgqH9QfD9KjFe9HnHuRIJ5lomGKPjqE7CJNj0\n0PlFugXBumx9n7Jp/Hti0187/6PfTpyYfhy6u6noB/B+7QbSHM0HY9mGmClc\n1qrCTebT4pfAhJpuiZTBWdhyfzb3FxDWTsBLkYMFJBbBdKTIm36QO+va7GwO\nwOFZa0rEIvpbFUGHiLv8RW/dp+eQ1x+nH+MmMgYqEj6QOH5YtGyyXdYtj05O\nna8c\r\n=ddXK\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.10.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":">=6.0.0 <9.0.0","@angular/common":">=6.0.0 <9.0.0","@angular/platform-browser":">=6.0.0 <9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_10.1.0_1566163520643_0.5913249510814773","host":"s3://npm-registry-packages"}},"10.2.0":{"name":"ngx-toastr","version":"10.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@10.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"8a79008de0b1c013f90120a53e0355af5762e969","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-10.2.0.tgz","fileCount":57,"integrity":"sha512-6ASr5bcvQmtNKb4D2VEsQjCXyROq6GwberBWO0bVt+xcBYPUea4aRTgX8in9apX9buaTafzG+h3HlnIraspoPg==","signatures":[{"sig":"MEUCIQD7AAjlgWVxJ4pxOT/k0i2Y+ofXZHJBWLFT1qCQnUlVGwIgdxRpcgd9xEw6OgFagU/VgH+ASv9oJ48YKqbG+6HMoVw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":850276,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ+mSCRA9TVsSAnZWagAAn0oP/05s6GnV/Tv+twIvKSpt\nFY+qD1m1RORvyUSH7eKCG0jmedmZ0aiN8pb2xSUVkV4e3XsZJveZqim4DnkZ\neRiMUdBuyNLb1E7LUQrUs2QVwSpDLK4Q+st4htJcIavarOiLROGtR1GcCuDF\nO2KljRflea+PKawcVZC4x0WZdk9vun5A6vzJZAYviIgeM9q9GQl2tMvdFPcv\nPG8rDDLbjKLnFontT5WZ8wq3A+jspd/G2kHuAMVnLSfQinxYM3uYP+BYfTW3\nFUT+ZgRnw2qNigfixeNwQfk2V8GHhngX6Le+No57XArzbG5w9pvFUA2HGZno\nbpHz+VTiXTBWQutf3daJALieG9SvIJMzEyCQRf6TaYxrREBbyldwDlxXJir7\nzE8y2XNcZiSwEbVgJLNTFt1VOeH92m++VCjQOYFGXjf95DU0Za+kXb5gDnUn\ns65uRis+rNQIuEqUv4Dz8X0dJ7GV+Emcbwsz4S/7K9c1ulEmFwJXW87ypnnT\nH3BZaXYdAUP248bJUnb0bC+m1/y+cpfqxIOXx6oYN3pt3eqLZf+nL3Y94ocS\nqkiG4NAF1i6fdLazARdEe+IBMh7ExIQyKUGNXGArqA7HUoVnHORbA+q5lcG7\nVkUCaOZCk1c3XN89SbA3qBUACiX9AnQVG8/VPszomVZNxkj1Qo7o3j9jrVGx\n7CRh\r\n=PjF+\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.10.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.1.0","@angular/core":">=6.0.0 <9.0.0","@angular/common":">=6.0.0 <9.0.0","@angular/platform-browser":">=6.0.0 <9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_10.2.0_1567091089508_0.035976912215431645","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"ngx-toastr","version":"11.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"dcdad7846267ba51ad88e89a73a6d17348ae8978","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.0.0.tgz","fileCount":57,"integrity":"sha512-WO+dVaGufn+kAtBnHl7s9ruDwDdJ5+vLJsaZO6tMKwavsgPLycl2iymVgUkQssEsRUYUKBix0Af4pjN0JZVOtw==","signatures":[{"sig":"MEQCIAkvCjtb6XSjKRSRyEA/qMemYdsx50K9Gg0cSgau+Ku1AiADrjt72CetOmlJLu6mtuy2dnLnzM6qc+Mv6sgZz13fvg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":877583,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdiwNiCRA9TVsSAnZWagAAEOMP/ibBRqhOi9Ya0mdVj4B+\nu321g93XHu1AUVBM/HClgqz085wXhKrcERmOJApKhUNNdVnR+rYsXEkSxsRr\nXpyWASQGo6eVMXSAWVitw6ATmSIDdBHbvubKVBOslI62vZZwZV/yEgK2YrWZ\n0tsxgwUEhlYYh5iWawuLlng6Mkq1/n90eVM2eJ/MzteclVw5at2CaNXaVQYd\nju9TSqYYx2b6XqopPmNtFi3FPRz0+J2sjjWf957OCUhYUiIWByljZwLYlEbw\ns8oY4/NB7QgttiFT6MYXdi9+1fDOMTYFNmKbQbnZ3qWubgXj5kem4wghjvHh\nDcgH0QWSRuAJANCU/mpdJCbNXDZy/HasSG6XhVQRfSHCmE73rAHGrsNalnt1\nhUKSyvlFA290L+O3OxJHdIUnigxjtLQNrrVwscChu9cNdTr82/o7Sqs5jykl\nQpnvLJkUTE9OUjQhRmypzI+vyfZBLltGJx33CjZEmdmuY3f3a8W0fN6yJbMv\njKc0M736uvTK30Vp4VlALhFxVqaXtt+SJJFX7MKYrJwrUyHR+mmnA3ZxpY8D\n0unRfq13y64Xj5kiN40M3W9+GFY/TZRV45t2ThUSXv8YovOnaxFGHWArXpC8\nD0nSSYown72zY9jyVbNJhSOdAYoVm1+J5QsztxR5dRh6qEVfZvN06AJQRC7o\npC2a\r\n=Q0pR\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.11.3","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.0.0_1569391457348_0.34926391520020994","host":"s3://npm-registry-packages"}},"11.1.0":{"name":"ngx-toastr","version":"11.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"b001ca7f2ce398faef728e9c30307375a4049c8e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.1.0.tgz","fileCount":57,"integrity":"sha512-eJ+Szrs7JPPLGGbirZULFX3XTfW4Nh16oWaMObpwx3hGX6R6//LZXqPASCZynupoextqmaYXGsFGY0pW1k6UMA==","signatures":[{"sig":"MEQCIE45IqzK1sA71SMrKoyx6V7O6TNDkoZC9EE2aPjMyAsyAiAyZN3iQU2AeI9/ysX7lF0BUeQVNNrDkF/UVel/JZUDCA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":882362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlCpVCRA9TVsSAnZWagAAOoQP/1X4gGllIsnpXTbmQt1V\nqQ6hrvsfqdk8SmODgKW9SGrjkEyOl0fua3B5wbgi4bADrxkhVUKZJORuoXVL\nKjTPD0wKDsx7Q5rbm/r0HPFAWPMGqPrUXNkfsmcQrmPNczU3TkYAylKsrC2B\n/YNQ3MleozvWmuQbbw7hytJnv94l9RtkIkeCe0p40GiKINcZ8Dez0gaAKCZu\n74pRrXFpKOLPWolQ+QrbZpcciUYvJydJdkyy2tCLhP+Su6x7tTROBv9TERS5\noCn6DwTmBziw67IIKSXZHWqxFhFy2TlUcwZmvnr8Dt21qLzx7C+Zrj4ZH9TJ\ngsWDwbBAqV0GfX3UaI0qHniESlndufvHxm6Qt+b2FxRJTVkOhvmD61zPo7xV\nMhR6lW6F4EUXeJDdqwOEjgwJ3bIOxH2AEPLz3JHaeMkAeYKerz5uH1KGYH69\n8PvEOD6pnVwkj2/0y9BR+0Cwc9trWlX4DvkL9OPnvvc5waJiXtvkTLvNzPm2\njswVE+siwvytBrEMZaI8cSMpm3SfZogn0ciagKnG82D+FaSUHuvEeRjCPIe3\n/ya4cm/hKgZTSR9NdiTmWZZCqM8fNNCcGwXkw0dtTIiR/2GXdzepuKy3GoU4\nGgx89oGzLjEWR9SKg7wQAL67P839j1DZLP2l3JEpkcA+A/KWtG6z8kzwiNk2\nBXqc\r\n=kKjB\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.11.3","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.1.0_1569991252638_0.4706974865803266","host":"s3://npm-registry-packages"}},"11.1.1":{"name":"ngx-toastr","version":"11.1.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.1.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"f3a28a335dccbc11ea1bb371b19e2b9f4323f7c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.1.1.tgz","fileCount":57,"integrity":"sha512-scHY8TXZ9Boy7ldhCNr82IhVwPkwSO9sJqTpp8sgCMz0uG90MDebIBWkzpKx5lTz9xPk+LouWu0BHSFX1djj+w==","signatures":[{"sig":"MEYCIQD7BD+nCRrpjzSTx0q2fpVX0Zl3qzqbCxo/Fie/OXLhsQIhAMu1/BpK/tRjCUQznjfkCjelw4aOyHULgyRUgFQNjeOw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":882388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpd8bCRA9TVsSAnZWagAA/UcP/jnkTmOHhOl4yI7y6vrc\ncRUqFdUkJ1wVwe0VfBo6ozUrKZ9tqSl84hNQhiTa5SMEFEyQWnSYf/BjaOe7\nxJlKPRDQlF5/AMQRUvBYH9YYXjkU5jD7l6bc4kHYObdUaI1+M+FpAsGIljMo\nFstaNuFt8SQTHScv3swJ9QG0SlV8/5JoTGl7c1fNYSik/AS9V1bxfNrrq3Ye\nXzMkCPCwCErY4C4fa/a6dnkUqqiPxz6Nomzzp7KiIJeeyWtGdTnBNw1cGsUY\nmRDBMi81E7SHdFpYoMrOtAfNCgWUkmp9ACKJITxpJ8fZC1cRNjPqfgceKr47\ntCBQvhb2qHeNVskTAS5+EqCPCe4mEAiJrhkkNkx2iJtnj4MIib54OSIA1a/u\n/8VSvGVGrkzyR9d+PPsQ5vIC+xdUfuOp+z+gDYPFS1o7E6BYINMv23AY8cN+\n7oFeifgyovyL/V7zxFTMMw3SktXGCFVY88b+ppFGsQ7fpuA990NzPDVl6AW+\nYe44pEyLXM+JO36Ac9kNq66pYF9fde5ip6BRaal+8WcuggtsrKFWtWInmUdS\nmYrORGVMPJ3kDrA6otf8ZsslAPwmVO75YCPqIL3+sGMfPz4wmZDsrf1BQG8H\nMlrR33R8gM6AmcL+CCgX3yIqrQK+PCdo9+i/c9qtn46JV9ZfdadveAaWO8K/\nXJDa\r\n=8aJL\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.11.3","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.1.1_1571151642745_0.14559294728427985","host":"s3://npm-registry-packages"}},"11.1.2":{"name":"ngx-toastr","version":"11.1.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.1.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"d2713fc307319c56bfe9bb7021fd7012be7692b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.1.2.tgz","fileCount":57,"integrity":"sha512-P9yWCs5KYRWTObTTmSBHi3XusLN2j4YDHz0UvS38d0w9e+g6e6oOLxFBqsjSG2CnMJ5UihzbiffM1N0QfpKufg==","signatures":[{"sig":"MEUCIBrcBuJb6aOhF7uF5mTWqijwEX2NE85MtYXPkv19AFAmAiEAzN+0qw9AFwtBUyHJvOz3wwKijldqTYeJPrP6nuZE9n4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":882414,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpyn9CRA9TVsSAnZWagAAkP8P/j3L8B4pjFIXfNhMgMrM\nhsjK3KnsXvkiu+bcBDJVk8NUOWG/HLtAUqOdQrGaHp7QrAOv8a4nOc10WMF1\nGk1kV7pe6iWBiQTel4rSOZQc8k0xQkspFt6qg8cq2I0/pcGdZcxclIwBUp+1\nz6AmDGymVuPGukplgEQSISfCyajX+oJzbuKQIUNZ5NoPlmsK8fnerwnUYsGr\np5JII/YGG3YhRzsHVUd6VWw6k9hg5lVlIAgULATWoutwPkZqVDVvAabmY32A\nV8yQXfZCIx4UDDfeUzRxegDFqG+jWGVK96QftqnP+/d8ol1GC5eUX+RysqQA\n4B89qJ8eA5S3LA9WyrgAhXh/nvAQWLkfk/4TCkNokd3eBgOBFcxIJt/npjEV\nxIWsiu8zvCDrsfKRBkL9WE/19tHQxXkQAuWhd/bwoT9rjwTMCQXVVwoSwXEk\nwKyvONTHlVxeg8OjoAIjuH9nhlOy4yliLAnFr9W0wZmv1kqEAGmAB4S3JqKw\nY2bfzD0H3TnF59gDmbeTUvMm14GcyeRhRUZb9knf//qm7hb4JcverWEZNUNW\nqHiTjxJPVVO64RQPMsSmysQd1feGQnPABh1KwnDLB3GTymUVLAttmwgQX+0T\n9MS0pcBv4tY47jiHqK4LFqnjrCkPPhALvu+3hJIYbWoGM/bUNu6kZlu4WK26\nfif3\r\n=hOJI\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.11.3","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.1.2_1571236348727_0.25317670960996996","host":"s3://npm-registry-packages"}},"11.2.0":{"name":"ngx-toastr","version":"11.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"261bc60bfb72ae6d18ffa78b755c2619119622ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.2.0.tgz","fileCount":57,"integrity":"sha512-f3iqn9PGxbSQv4DwGjCwzIaCC2iBlhb5C4BA/KXQaf3V11oPta39u/hE+W9d6lRmEROOD/h6/Jlli1F0s4wA1g==","signatures":[{"sig":"MEUCIAFMfu/2jBXY6DH/NpYc7HwmGXDYBId9APtYRdUe09T6AiEAh8oCcDt/c5s78wNJHVgPBqS65izUmz1cLAIEVwdgz9o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":870137,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdubdFCRA9TVsSAnZWagAAwJcQAIIvgLXPGfG2ati39gMA\nu5vjUVEOf5CLJ26G16jBvTl11t3cAsCYMty/80ZkBEBNn0Fytrtsd6Aevz8W\nr3AP4W4CUasxi2cCUMcUVLcRG5Wbg5LSOpJ4HVZkQe8vD0Io4h2AEzVwg+dg\ncjx9wXI31m0z++YyQ2ERHaZKlROznmnwxSkD2B36o0ZdU2g9hdx0tEDAJGGA\nJzTaJ2zyTa9C8jhzKe2bbDBsHEwvZwF5LpHcVCZOnfktzSvEbBFAtBgzJEf4\nyRkaSXXMWNGGE0wOB00HTRYcMVqNrfHGU6T04XhJfiWncTo1O2UyzbwYK3iq\noC2eEX0hQRlRVTQHyPDizAa1s9RsdkPUiQiQMawUDy3YKnQQHGBCXWXPcAxh\nC0qnfK9mJeBYemw1jambz1kvAWYaiSwfAjfeugb8FSq1Jlt3E7L090tkIRY2\n/C5pBYKUhrXQUd89wTp8Jg8P2KT+hKA+Y9KMnX5zCEggNzHn9LgDPzwpEVjx\nkgB8m4JaX3j9vAFd0GefbQBpEAskzfh3QdFG2fnE1SWDoB3fxLBubY7k6cv/\nNARss4OHq0MvFou+vc01MEg0E2bjZzzsypAyyt2B95jVHfzbhBjZI7EnLlem\n9eIT9bSPYcuz4n9+7bfDeH+sdkhDIqNBrakklkV3JAm5QPWYqQayp8x/Oi36\nKINA\r\n=Ib3n\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.12.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.17.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.2.0_1572452164421_0.045522909869077255","host":"s3://npm-registry-packages"}},"11.2.1":{"name":"ngx-toastr","version":"11.2.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.2.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"130dcb416499f4419b18c39ad9cfea2e7790c7c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.2.1.tgz","fileCount":57,"integrity":"sha512-qLZA+h1lIGLQ1HAJpx5JJ8i87PAZPAN6MnexmrWipSONqrK4fRh+nUKIxqmcckIiD16dgu2O5SNloSJymTKUAw==","signatures":[{"sig":"MEQCIA8mdd6BHLFOMbXOKcln03db6e8J9U3Z4N3MNk/DbiMAAiB59ODgTmSfvY3TlxplCSSnm6KlWlxs/ddweRXSM5bbWg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":880702,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxD+6CRA9TVsSAnZWagAAo1MP+gPce9qjP8OdwZwKTz+E\nP/9uRHLmXO0qFQ1hzipYtb9DagG84ooEh5PkvfJZ39WP7shDMY1pW6H6Q/w5\n1158O2MrNZKYnHRQmf/9456GbNqfLyxMzFR5Mbg0jslpxt87M+Vxyqk6SJN5\nCPQLv7ObCy/GTWeR3QqcqyE19D9lrg4xFkEfJlJvcfWVrqtnF+E+EL0PFUl9\nmb+bWcIZ+ojHIy1CMPybLWkhH2nJOKIwvC8p4WTFu6K9vjjVOtxc1l0wcrng\nW5NL8RCqyBGhwxl3J2clqUYpK8Dzmme42ELV1sa83Ty9jvUhH/pVQNikaank\nZbKE7/6ulCyrGdf6JzIKD/ykwwQ4NixswQc4daCjOlHlrm5WgADC6uLFihDh\nrvOTrB0m6CglD5i7oz9eebL7m3WkxBRf6sKVLaR8PAo516+D55O/Iv7vl4i3\nL+l3M3Ty5qTTSlGpOoMf4Hbk6FX7+iJKsLgg5SXrW9sTjwvZ9A6HxIxa5e9w\nFhWu3WqWsfn6XDc6UlCES84SbDybJsASZFFo67GCNmJFcXvHqq/bbcmE36gV\nQqRiDfhPPVk430lz1uPlfymaYNtruonGQcSu6byjRXVJFKvPHCs3mz/hwevu\nDN3KbgeGFQHBvbnsnLRq20oIQ7u/LqH6TZjgWYPYxB8LQIl3KCQL1jO56vH+\ncm1K\r\n=TiQv\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.13.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.17.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.2.1_1573142457302_0.7844869706175537","host":"s3://npm-registry-packages"}},"11.3.0":{"name":"ngx-toastr","version":"11.3.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.3.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"364574b31ecf7b5b76815fb74756b24e953e2aa1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.3.0.tgz","fileCount":57,"integrity":"sha512-GsrDO75N8DjNefUaI6qUqFfT6z/vdsQjcQqqiYMcXpr0GeaPF6eAlnNKLtLHTltjZ1MFRgjufoPDPLy0JiGB0w==","signatures":[{"sig":"MEQCIDC2o0lTojzCfhKqNHxaWDS3ElZpdj4oWnFBL+xrFYaeAiAbc6YSJ6ota9eHG6reoRJO1EJrxpYUZ3+zjjrXI4TGTg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":879990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeF4lGCRA9TVsSAnZWagAASUwQAISXEwHWeLxICNk8latz\n+fTzS3VdCExOYUnjSDQITFXKTuWY9NgMU32ml1R/d3VRx1pxreSfasn9VhQ+\n+h0IHH8C56v9GQeBBdDVUh7CIGHIkkIolUWAzHU99gwtr+E7WqAyo/fQlUD1\njAygXwExHj4Zptr4nn61AdCc/QsV0cLfLUr4Hw0gxsj0YkyKv3uqJMsFwbSn\ni5dUKXUyFG4gkfdUIB71iEggDCGXayNfPYhuBwjm9jkiF+CsIDRKmAw646Cv\nrH/18tOtG3xAZFIVBIDU+HPbWdjhPTgzkwOoMuBrY0BVEEphbIwHNMM3SBjp\nqRyHgImaGG1ekYPU0VyeDChheWTAJvWOsDqlukDNiVm7yPNjeyvHBhHY4vkh\nMn0yxSeUs3uUMyHkAL1QISns9sLfjQjAbSRNyIOQfUZskBDJU3TIceCL6/P3\nzO18x/SV1hxvDfdCP671qkv+Yw2nYYgALjOJnPRXp2DPVrycb/VXM35P2NQR\nMlAWdFsa+aF9Zy2BKc0nrOoYtISpZcEzrwgfScu4lVQtwe520PUEKrXmhlTJ\nrDEbT3loTd5OEdkkRhZF+9Fogb+I7tuRxVA/wl6g/4odEbFcOtYWpdj3qbPU\n0/H7hfpkb2dlP2ZLG5E2lNcO9hjT/J7y2GY97CoPTcEHf/7wfD+Kb7dq2Ucl\ngq70\r\n=zzZT\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.13.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.18.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.3.0_1578600774194_0.9913833899037332","host":"s3://npm-registry-packages"}},"11.3.1":{"name":"ngx-toastr","version":"11.3.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.3.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"99f28d1fa6421a19d76a6e94aceb0cfccfe9f88c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.3.1.tgz","fileCount":57,"integrity":"sha512-YM/4oZsW3ngHrfLngC0bokSBRGlCbpgOwnplC9uLPdLRZo74DrtC72OHT2mc81lg1DeriyP80Dx1cdx3CmK3TA==","signatures":[{"sig":"MEUCIBP8ysIW+7Qbus2QCBqc1JAYMQOq4xi5fdk2cB6By3g8AiEApqr7cywntIAGJ2VAVC1Foo3zlwIavpZ6FsX+GTNCMCk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":879889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeJLPrCRA9TVsSAnZWagAAhYYP/0JutcOLSZSCLEM3cS/S\npWWIHeNZm7taWG2t2YWfRPT9SRpAsXdxQ7/1Km3IJ5UVzv95aJqLnohvILEP\nvbZYn/xFCZ/kfr6G4PMF63bAkXfOefL10acXsAz80pl8GBzixLYTbA7eR2bc\n+PQ8KPt0gf1pTKmx7FRFmcIdgkyQdJCzJkTBZ4vf60MaL/OmEBXdMx9IejXV\nMKLxPTRXq6v5Jn7G85NKU2Mu0USh6GR+Qw2X8SYZllY6GN6EV3Ve6XAYdCuY\nlNQjv6gWoYHgLDm2hppfaeQBSR7tknBum/gPxXexdwONYtXWWbtBbXCHhOl8\nNDPUncv/OUdoVA/OJAMPW5Mbfyuvt5ZncSc8A+N4iseYypSnXyisYNSh4tRA\noEXqb2TuytyAa7A1ur4fS+0/HBj6aIXFbI0ck70Q7Jzjrf/m2VzoOIFnftPf\no/RggPzQGUVyIm5C5SBt2m9Dqnet7GQjLh8m6AXwfk5hnemXWuIG84EH4+//\nmSMTPybEWHNGrmL6QenZLMFv416P0FwyGeKQPS8eJIl9ATs/b+JOHHHgrHAV\n3xqwbCNoTe004Dhw7ITu80NA0g6J29lZzMQXtkgl8EiC0k5Gbk/Kx+9ZJvVq\nlZwulMaslHPZFhwrH42YdOLRnzQnlcpNcOuP7VbJ8akXBfy5Qf24RVkDKecT\nuW2V\r\n=pWzX\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.13.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.18.1","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.3.1_1579463658396_0.5215327166729815","host":"s3://npm-registry-packages"}},"11.3.2":{"name":"ngx-toastr","version":"11.3.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.3.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"0e18aefee90fc273c55f912254077fcadf92740f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.3.2.tgz","fileCount":57,"integrity":"sha512-2gWZEjK2gnwoWkR8+R2AD9IaSbRGPwQcRSmepieRwsRIYBPSEYBE3X3xiSKLD0K0XG6zgGgg4Y9GTda8ijeObQ==","signatures":[{"sig":"MEYCIQCTJkRxrA7pKyAy8Vf5xvnvb2aC5iYC5ecd6KHfI39s2gIhAJq0t2IrhJhIjmwVZXrpUZXbgxTuyUq4iD781waczN88","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":881732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeJLp+CRA9TVsSAnZWagAA/HAP/Rip29JIWe9XB3b53yA2\npRKHXXMdAOZIbjsH3U5cpK7hCH/SinU4dQH4lHna1Bc6tLyBOXicEHov3hSe\nzRs7ETwBgYri4ZhlyKjChas31AQB5a1roXLztPkcg8gm8FPxn9+drL2wGj5v\nR59iVzgcM/Lbf2h96Un9OQYrRiA+wva7bTmk9SCQ41y+3nP/rFOnwlOIX8Rm\nBpwdmdJstncP9zQZVugxbm1JZ09iQlJGMyhRV8tVFZ95x2bmfxw74o1SUYQH\nET6FxrWh62x1hP9Zj1t6RdZnn5U6aBf9SmoNwah7LVbgBiHSX1OvOkxJmXvY\nT/9Et8an8T2Pib+h+zwTlnfxj1WkWGIgQ545f69/cuH5ewyj7VMucW3Y1Y5w\nLjH8llpZkWWAdeskXpwxBdyfTSctcYDR32EwVP6Yb/KU1E7ZG/x419aWtNCx\nN77P7hGOY18c9SG0KYQsVr4dxynoTZY1HWIqe6mmKgF3dh2yQQXqk7KSJAoK\nczTLbD/5uXAk2TMVyHz2LisU5/YQOZ5xzk3teQDzUGyuAmfzw0IqGgf7nSlM\nSRMveSHn3An7Du45G+j+PiCevScUKh/gpBAm54Njrhas7sZqZoqTFfuv1VvV\nb16fR88xO7u60wEfbQmC794rAsCEZIUhs9Bo4duOo8E8255OY5NVBzMY+uKo\nNYzE\r\n=RXJz\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.13.6","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.18.1","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^6.5.0","@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.3.2_1579465342205_0.8300546032995892","host":"s3://npm-registry-packages"}},"11.3.3":{"name":"ngx-toastr","version":"11.3.3","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@11.3.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"d360061edb2bee0a045e6b3bf832754007ac7b3d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-11.3.3.tgz","fileCount":57,"integrity":"sha512-DbLFkSZHsVPuuIIrsY1ziEhdkFUQ0V1yG1N0+1nKXGI5QBVesEDxLUVtntjzxJcWw/uUV+bKApo//tGHHORabQ==","signatures":[{"sig":"MEUCIQDvkIEWYIt9mcBmCP7OeNoJ73tWmLPad58hb2jw6dszXAIgZ/2sQfqeTR95zjXbgFD5mfij+r5BoFADMl9ktSmmZoA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":881710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNOVLCRA9TVsSAnZWagAA7PYP/A9Ip5LABDVqdsmA1Ed3\ntrGf8HOm/FpQgioaZEEyU0SOKeseEjGj3qTY9pjScKvdv1VzU+6ARP5+sxQh\njtN04Pd8LmX40AOqtWvZGLasDOmgt2x+P9FvBaASjWpaGI+y1EgeDK5+K/UM\ny+LN95Ia1RKGMAURUKYXABpL872lhl9WveUOasA21fM8WI1bx6MATJvE+9PV\nNGdBeOkUs9kULkW5vtwjAU+w6L2+EE1m8ghqly7Wg38qzDQ39Jxiwm96yhSD\nwb4/qN1dzaKMr0MZi51JTaQANz2ZNlALCtQGzwXUp6stZZCGTjQVitBAWtbT\nwwRRoxaclDKCHSogL1HT9OGTZM02uogVSiaFax3QwHTMcR8iZh2qflCQm7Eu\nY6ZemFoyXJ/3E+IEDTB0jHiWE8kE9GqAGqy2MPH2bjpUzgBFb2WmxsZRGbSF\nlNyBw+wEGyAwL04dLv7d5MyW00PNG+v1zbvB4uaMWkdYTBldO2hY41433Twq\nddpr2oEn3BwpA0VVTQmBQiCzh0p3k+QvykZ32u2V2hWKT1iSDjR8kwK2/Swl\nA1YZ14tTxfB0SASfSF911F0t+8Mhd4T7CzGygpFxQYvmaZ36Ic3aj8eBnvKj\nEMDF87YHnibd7jeHSTI/znm6EAKByAh1TTOduZvMmLqaSX4rSgophtCkdj2i\nwXlS\r\n=KwBi\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.13.7","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.18.1","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=8.0.0-0","@angular/common":">=8.0.0-0","@angular/platform-browser":">=8.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_11.3.3_1580524874780_0.0011335862134149721","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"ngx-toastr","version":"12.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@12.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"1b35a4e5b785246c558e091c831a26ebf211cfd7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-12.0.0.tgz","fileCount":57,"integrity":"sha512-J0mvGXH9cLlP3acoLJcuYhsQcL+EOAtkS1Y5tFKzrw2TYqY2HNffMVPvK+KP1LDJHiIgRpYg3ZELw1raAl0R/A==","signatures":[{"sig":"MEUCIQC7MGAfvcme88yC0q9szilCjLbiMnZhoNbWNswaUkYo6AIgJbgPmRQ5PBK2uLK2YoBPzY9KblsaUHFsIfLwDxjrqsc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":870238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePj65CRA9TVsSAnZWagAAzKcP/1Our8Lz3rCtfIz+mxtH\nOnyGS2aGf1yE3HWZ6fY12CRvGPv5a9DPBf5V9SFpb5IkAzTtZ+HseVkSQedW\nhic9MWF5bAF+fuhSwqlefWu/I50jOWguVwIroXSxVWM02L9/eQnKmCcgeZty\n8ZtN/mHFihnVPfRryLsTixs4MuPxkb0n1huMPeN+dK/P4CzlIOELf5x+sWwb\nEyHPTF8RVMgN4Dr2NQopzUWlcAh5SKk3FUM1tyyUOOAi43emccGVeLXDdIWj\nAJX1LyOb+NDiXJRNHcvYJAIyKtGp4JzC3g5pD5ez0m0fTe/ZaCykSjQoEnhA\ncGzjjx0C9uyF70nJSfosoOcAEUT6SG8EAM/HNR51D4QJtjY1TTayp0FNbz1C\n399QqeMHe36TPqOPnNyF2V9/dUhMJE1uoYGiz23NP418KhAx9ACKWBdwYydw\nApYnWqZW4ztAyDjoJ7IYJIcaMKGdNYTKVOu8l80v7PHGuNVjPS7lHls6l//n\nHOLT6g+2VOv1HVoBmvOEP2oz2aXO8M2GBHq6GgGcDqmgeaAPvlcsUIMjkcsE\n+FkhudwSCFk8hC6vO2t5k9tYFbehq3Xl8GMnoZrnW3V+zcXzImdHoG6lmYSt\nGkeNSsH/pCcBdxEMZPQVOW+W1IY2ARjcHwlD77pgDv2ljFowh2VeJYgeq0iY\nVkQz\r\n=9yW9\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.13.7","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"10.19.0","_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/core":">=9.0.0-0","@angular/common":">=9.0.0-0","@angular/platform-browser":">=9.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_12.0.0_1581137592580_0.5290170068875841","host":"s3://npm-registry-packages"}},"12.0.1":{"name":"ngx-toastr","version":"12.0.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@12.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"288c8ef505f1216aa4952cd2a8c6fa7c57a54ccc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-12.0.1.tgz","fileCount":57,"integrity":"sha512-PABtbn2dyHweVSbo/py1W3veXzcmZO7uVItfTW9AykSSeAUju3gOCgauAw89km0aJ9EBcPOieaoI+9tAR7Pfug==","signatures":[{"sig":"MEQCIGYMK1ushND1CxVr0lRF7Nf4soLdmdBjTXfSSPVFUHOsAiByYw3ZHh0PI92uvC6uNgsCk5T4qAQc/SrT/KpLlAEnLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":873060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJehB+KCRA9TVsSAnZWagAASxYP/0pNl2fAXnUTDkbFaZzK\nfGSkEQRduBu42oy85pS0sBN7vPNGI4yfRe9j41RwWdjkWPqe6HIm20DTByRc\nngXn3guFrNDtcbJzuqhQ5lrtc4UbUvLOg5KdMBlLBPoW5tD7FV3oX3qEUG9E\n7tLD1nErE4umh8dey6qPDafe7Od9txYRm61C9hZ+P7oRafebHli+7HsRtMg9\nq0ij2BRy6Lum9oBgu/UHGdU4UIfB30o4OLzZKQtTzU6Tl9lcMi2AfJxWCNZl\n2k7g59aJu8DOTGxtWnsZFfHbCcorXWEL7Z/7xannk7DqGreUcYoyQShjf1Tj\npG+rPGcG4lwdzqUNEAICAgFYn0C3hBMnHPcyq7zzDdptr/DGZx+THcTj1BUt\nyOSBOGRSqkP/KeQx+5/qCFha3526BXi2wK6vVwAIdWVYWnlB0hE1+I6u1FNt\n3xKnRP6EQpWD1kkbQwD/nG82WgSjQtXS4KdEXHNM4+BVNbGINfPOAkmKbHZp\nAOso86wsaprnPyVvQ+yW4325aVETI5tSqIsSIzDk0kEX+hm23uFY04VaVfbi\nmLmHxiJtZAGhLppLD/MIgNZheFoQiYpyGPWhhhIUMLOzuurkSGGjr/nOdp/1\nxaTdpltJWkZewm1ZlQ6BA4FxAjHVxXSE/7+kvSM/HGhSjDd5OnMd+GY/ShyI\nsuge\r\n=0ftx\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.14.4","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.16.1","_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/core":">=9.0.0-0","@angular/common":">=9.0.0-0","@angular/platform-browser":">=9.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_12.0.1_1585717129512_0.2610198742940879","host":"s3://npm-registry-packages"}},"12.1.0":{"name":"ngx-toastr","version":"12.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@12.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"50f6eee4262f4ba342918f06f98a657f223194cf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-12.1.0.tgz","fileCount":57,"integrity":"sha512-rytCRBhvuudj614Kfj9GoIVQDrFuLvHSMP1YrMwTmR1SNkNJZOpGKmaSDCCBrNDkSrGouzMWBlFbl1UDBBsiqw==","signatures":[{"sig":"MEUCIEpoxS6fYp1NCW4MGH+Xi2zP6NNMdA8EXkqqO2zSIx1dAiEAsK4tz43USx6miZuf3idVMlucrM2hBxXJuE7qcj+JPOg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":872998,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0BawCRA9TVsSAnZWagAA7bMQAJc4m9nN1/LoZDDreUUd\n3Kc3afgEVbuvQxuXR3obm2rjFCyLtAyuMNXQi6HfIseYC0OdMvHmz3WOgPFP\n/aufPUKOVWd42Jf9bE+Yi7cC4wlZPa+xqzT3m/M/8jEt7/sYkFMn6UYs1ixb\nXYuRm3sd7a7l77KcubZYkPHswHqP1U4PtrVgDl/ppKCH6SV3hjlIloRKKuxM\nDiHIC2Ddt9ju6AOweHuFRBy+e+jtkYfLOa6XxrvcnTgZGhyL8DHr5hIN1vPg\nUBFKyDqyCYSbEUU1Vnfc5O8kr8yVVjBwxANWvm9yng0oGFfk2voD0tNDfXzy\n4gGdBxyD37te7yuK17X1qgQypc/jFooyqGzV1CGPYYf2+Sgq+gYI2tPT+n+V\nZzUNGhb18yy9vUn2NZt/qXJDFuyWNOl6xX2kNEFsNUHZx2mYW0GM+MdtDj7U\na+GH639O/zoKiYwUSTlW3/CS+sVVdQT3KQP6ioTbJKhRvi592fbzzl4lsoQf\nuhtWxN2kJhIlo6OgkeKAiRiffcql9BmL/03Ao9I/mCqGhx9NZHs4SR6XBzs4\n4stRlt+xP217PjKGuys6aWaKCl9HgF05NZtbih47fQbzEWBvOtgfzgYrBNnV\ngL7QoANibDchjuE55L1PJP1PHYC8RIi2oJ5Y9FJZMqPhEuZnv9K/CuvTHlVa\n4Gx1\r\n=9FLv\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-toastr.js","main":"bundles/ngx-toastr.umd.js","fesm5":"fesm5/ngx-toastr.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm5/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.14.5","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.17.0","dependencies":{"tslib":"^1.10.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=9.0.0-0","@angular/common":">=9.0.0-0","@angular/platform-browser":">=9.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_12.1.0_1590695600034_0.25602502382686687","host":"s3://npm-registry-packages"}},"13.0.0":{"name":"ngx-toastr","version":"13.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@13.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"7d011117c4352d824399de2478d2aedeec5c9391","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-13.0.0.tgz","fileCount":41,"integrity":"sha512-p/isNGkuCTCrCaUimrHzmR/OFP9u0HomkbqBJDmbIzpUNdCGILfRF6FiuJKhb7X9XQsFAKDe3MK3PejFPRCyrg==","signatures":[{"sig":"MEUCIQCBrjn/MhuT2aAJXDN2OIej/8+1tYads8S8KflyJdXVZAIgBlsC8rY7MrTYP1+j49jVZ2/ge94hGoZO9LucGP/HnsA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":594280,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfC+qECRA9TVsSAnZWagAA5WQQAKSl4iKdmv9g1XvkmxPR\nyysD3VJdivLOQz+/xduXgsEZTclzSueWlwhyVAkjd0n0aL3JFtApHXkw2tHk\nuX0K8e68wZCoA/bHZYCaUJ1SqqexiUxirEp4ji/BocDAGFOOhhfkJQR1CVHf\nKcIcA+rOgWRxD7ugtFbG1GK4aO5swlqXJAhUWmsPgo5W3fuK4feDOYAkLTg9\niS4MERpqj4xYv1IfUYXRJB+94/KRX82BvhgzazuOJ7O8MoCd2vY6kSZUJp9g\nINJtxH+dteEr4bsoP4wmb5mhrnPWWJyQ3P83MliiXsEao/R4GaoaHfpTuDrZ\nSjs8cWDJphg9JO2kwn6r1YI2DxAFf9aDDdzMIjNkLkS7MwT4ZVKe99x363rl\nlGneMMPbH6q+moggFItEFOqi/XohSchZlIYNM5TkuMjdfy78iw0ePC+HkycE\ncf6ROkqgY/PweV1vYMTqJu/exF7+61jyssrxE4ewHUE9bbW7zLZ1jBcJcnZt\nr/I4m5l01v6dNLTrckwBmmgVk9/UKN+4i0ZD/rcPJt53fUHow8GSOutg3hcA\nxAC7K0crefoceUZ2zwko9bTEWhXSDDe1by3BK3TeVx/1D7paPJnBHHUsPd1H\n4Zmb2tqXKqztJBzkQf0IyLZo31XQDam6qN/RRE+FvIAU7GJ0B5swp3ThrqmL\nVV3z\r\n=ucD7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.14.5","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"14.5.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=10.0.0-0","@angular/common":">=10.0.0-0","@angular/platform-browser":">=10.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_13.0.0_1594616452473_0.13731793088074817","host":"s3://npm-registry-packages"}},"13.0.1":{"name":"ngx-toastr","version":"13.0.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@13.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"acc2a66b80a5722a87d5983a0922d40f924fef2c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-13.0.1.tgz","fileCount":41,"integrity":"sha512-kjSzER2EILOe/hPCp/PqMbENtO8ZBO4gU1xf5m4IyA+j1RGS12JJg83hi3+3chokj2UgKOyyQPCYFQNp9/6KEw==","signatures":[{"sig":"MEUCIQCneeVSxxG+RJCXJzUCf1aD/lk5/zBf8nwhqbP14Ezr1wIgSj2slnEuIoUKqlkAlLS/l+QTEBgFAsgFYYjxvLuPfbo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":594946,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdg1dCRA9TVsSAnZWagAAdSQP/2xyXUBTbzdkgGIxmvXA\nUslJ/DUFycv+vqU5nqbkUZ694e2kBAc8kRJ7yroGT2VjQxogRHeikP7CRfYY\nGc/jqjDxQhMPSuE41D8i+yISsyJECMbEOrefUFVDFRxUP68SORcdrTAf/X1Z\nPFxk9jNc6wIOquTfPhOCgfgQTM0ywJbk1WGiUgSvgeoigNX+n6nSSGi+UBZM\niWhGZG3PSj03fariJeveDMQrQjHzHV748+6wIG2ssZaK2wxDCDm9P9xXwVx/\n/F5EYUboUnlOqoUvm7fxYJarsTA7LNThTVpa+yzSCgjgvRlI0hzqbOTgy49q\nq/i6EBGl2M43sQ1ysBCqSEh5WWFit5SM8SpPkePN12xIHpsN3e7gZgIq8fTg\nF4EduT0T6ySXfEzIM8wUPgUbEYCJ31nZaCxCazU3vIgOCKMWV3hK++HZgkmB\nUFADy/4LlXoj1tktQwuHMRgZcll4cB3HdbpSAa0yfIGLh91JdHmUbEVGr/DC\nqqr0i16giDNarOTG/oj5Rnx4CnrCd0R9CmD8hbv+/w6HyD6pLe1tmz9GvCur\nx70g1INO+kbEdDHuiBcpNKPu3AhnQIZx5zY9JrXHNgy3Wb1C4iKf0Rllql5+\nG5Z5x9SDmSYyKNl3x1mgfvd7b5YlGOicMSSN73n9b7rD3a4GaVCrM7ZvGgmd\nNTT9\r\n=hwcG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.14.8","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"14.11.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=10.0.0-0","@angular/common":">=10.0.0-0","@angular/platform-browser":">=10.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_13.0.1_1601572188399_0.29786548184376693","host":"s3://npm-registry-packages"}},"13.1.0":{"name":"ngx-toastr","version":"13.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@13.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"1ab4c03b1042ca51c41b8e2722d6f9056a7b0582","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-13.1.0.tgz","fileCount":41,"integrity":"sha512-TS4rIfg/oPmmjKadsXLSNIN/A9LktcYPZayGhqLpzcjMud7XLLubLqbrmnH34UakMrUq6QCXXYYiU0QTMW5Qhw==","signatures":[{"sig":"MEUCICXQszNUlVBtkfz78caWlIZ0yJYcedxgQ2QZDgzxICzaAiEA/LE53T0PVO79IPS1CY6Q2HgLyxOPFbmfO62b3fkkODQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":600290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfe7dSCRA9TVsSAnZWagAAvR0P/1z0eclZqXieoh/8A3iN\nSJ/tfCaLYEbmtFpYv3k1znobSKv2HTAjdNRaqR5WgRr7k/vqU+zX+wBtMyBJ\nqkCAcaLHrvNEX7HQsgVQAxko3mueCH7XsTWI+zU/8nVQV+5uaUvniHCLExYv\nh7LGhDzBdVnJeizKABYWDWd9NlSwICJB5D0+HVFfaSZAbKgFH6ywWkibeHo5\nPwaw6SY2cuhc7Sw0aMlx9hnDpcMFSMqA+6RpGin8UTUYMlVIAHX2+zSIkhDq\nUrpHBaeEnazot3Y1VzRun1gxw3Pn3peYS8H8pzqTuqzAHaFWkH2hXwroH7Ap\nUKURGaOK0m2wXU+dkttW+5grdsBhfI5JegYtEfkfO12Yv6HvWWl/Y5PwtFQF\nlVCiIWwAQ2bBDk9AOTzo2JS9jgpn5B07mIcN7koJzGfzHMoWVmP7FCZ2ErDg\nV7EHpe0Q3fl8R2lw9wxITDQgdzq7wPD+bKF5Kom+HeN255QWv6vf9YdSVWsC\nJZy5VUqwAv6tMLApqPYdKJSn7SYEMdvwhs1rZuDVfmklt+sS23jMWBde01TH\nfG/eRkgL04152dug2NIP5LDvX1CH9qPP4WWx6U0osyO2LeNgIMJ96D7n3q65\nk07/yFQ4fyQ7XeeNyD91X7CHvwrSkXkBXsC/mWdszZnFD9BMQ1tRnJSTtZxJ\niphn\r\n=tVw4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.14.8","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"14.13.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=10.0.0-0","@angular/common":">=10.0.0-0","@angular/platform-browser":">=10.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_13.1.0_1601943377887_0.5793195171739385","host":"s3://npm-registry-packages"}},"13.2.0":{"name":"ngx-toastr","version":"13.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@13.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3ef047c977a7d0fb67fed9338b8f5add3c87b356","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-13.2.0.tgz","fileCount":41,"integrity":"sha512-XU+wACX5hxwOJ4BtPMAUExQmYbjfvH3C/R4vcC9QK/dX2Zw+2w9tS9m4W6TUFyR92xZ/tGLBtsqRdrDRn3fJCw==","signatures":[{"sig":"MEQCIGZNx7pylrlxcptuFOl4cSryEvy3UY3hru9EEpRsQFk2AiAGK11a2glH9wGQ4eoxmG9yBspKotvqwWXMUKuE4SeXag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":599864,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfybXpCRA9TVsSAnZWagAAjMYP+QGUGEdpDqjYVITszwQF\nbSQSxGhcut5Y7if4Z6Eebh1MWelGLkYmf9yDI2YVuvLF/q7e67lmxLc0uc8C\nDYYT7t+p2QYj5wOxH6JFHtNUdaEmCw7B/6aCEkKgEs/PsnRyUmeDPxT0Utqg\nsef1CeM/g5Z6tdGqS8D6fMtx578kGIsgi6/kNdsBJnLPXiIS/SlsX1mjsIMc\naar+8qM5YuVxuJyOJODZPoBvokFUQGvFGOjwfQYWj/oUnDY21jrKGiEc+vF1\nTezC+a6wuPsvMCOh0yjoqpO8/pcNT5OeLsaMvKbll2PvFYeLE5pdjBzvyU9n\nL7bK6++Rz988sxnRRlbyYSG9hqltWvGBy9Mlvf2oSOIn+3TT17QrOuxtDNVW\nC3esKT7kZIgl+4jRSva1J/aktSL6pAeo8RkMxHuEyBzZk0WSxfqnDAS1HHVR\nRCvF42akwYVczLaLS80GEL5SbkNjxfaVa7o94W2o/wQxsnYewqYJJqhkdfCT\nLxIMJJ8pfa/mgF5sv/N2UbCcQ3fWSYbxgiS9aNu1zlCswTXWy4Th0awQsciz\nmkQhOuI+ajStXe2em4IywgKHAfuIZkm3Sz9RUXbMSJGui3HRYfywsfqVKcvo\ncErz6/etJacI5goKzR2nTHnDcYzC1qZOzYSggUaMvc/7SEaQsi0ndbcK8Oqg\ntDRg\r\n=H8u1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.14.8","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"14.15.1","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=10.0.0-0","@angular/common":">=10.0.0-0","@angular/platform-browser":">=10.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_13.2.0_1607054824989_0.7495677306552375","host":"s3://npm-registry-packages"}},"13.2.1":{"name":"ngx-toastr","version":"13.2.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@13.2.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"531bc7da6a524a861e0409bd2749878b3b3f8a3f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-13.2.1.tgz","fileCount":41,"integrity":"sha512-UAzp7/xWK9IXA2LsOmhpaaIGCqscvJokoQpBNpAMrjEkDeSlFf8PWQAuQY795KW0mJb3qF9UG/s23nsXfMYKmg==","signatures":[{"sig":"MEYCIQC0dX3t29yBtr4qnBoMJdPlaJTt+ZBkJBK1XojrgQ3JhgIhAIZ80obmt7Sqcvl2Dd9q/JYPdW5nF0FRNyTeZm1dQ4Ac","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":601729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgS5C0CRA9TVsSAnZWagAAIocP/j4yyDA9p5kDINeuKPBb\nAXwv2PgbkN9+03KZrL3m4MsYeeYa5Aqh8gZ9S5S2IWose8q14eMyCEWo/3l+\n6fguinL+/FQmFYbYTLuhyhfwcMLbdIoO+X5NlEpokjMxXwxnhgBcc7UMsL/c\nrj3XKlC6REDEEzxh8XoqcjaMRDOi+FaTqjEz3+IeiqVjjMnLImxiSMabMy4s\nI2swpi741Nc9c7DbMVFPbPQuq1a+I+yf5SwGLrnDqxUbScPjw6X/NsexrESb\nydDRw9FvdzqIcNM3llcAM8oppOrETE9K1V1M/rqfeyCdSVp59BRLstxlCWgy\nJXXLQ7gm5WnU5fCGuFw3SB/EibdfIDkhSTM+rEj/l5YEvLK/VGCHHtLkOI6c\nbrtYrBNVj0OuMttGIroeOWFHFKmdTjbIqP3fMWyvKELSV81YfFKnyKbi38AJ\nl2CxxDcLVcf2U6ewSPGk70o9ZuO2STCo9OzzBJ0QIASigQTQknb3y5aVCXdf\nYOhqYcE/i2mdbiUB9Bv11wLGDYsoMfLe4GxRMZFbUgEV+rERTFqBsqIrMBmk\nRnbsmzXy3TnSrEBcFz/rnDw6SytrfMNK2Bi3wTH2M0ds4UnAELEjyxA/t5Yn\nuEego1yLP3ZIbnR2B6dVOzUvQF4u/JK+1mux/gTpm/foEYE7eKq1znd5a5FJ\nlL+w\r\n=ys+Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"6.14.11","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"14.16.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=10.0.0-0","@angular/common":">=10.0.0-0","@angular/platform-browser":">=10.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_13.2.1_1615564979609_0.5464189827091941","host":"s3://npm-registry-packages"}},"14.0.0":{"name":"ngx-toastr","version":"14.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"20e4737ef330b892a453768cd98b980558aeb286","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.0.0.tgz","fileCount":39,"integrity":"sha512-dnDzSY73pF6FvNyxdh6ftfvXvUg6SU7MAT3orPUCzA77t3ZcFslro06zk4NCA2g67RF7dBwM0OJ/y0SN6fdGYw==","signatures":[{"sig":"MEYCIQDhg1JqR5IK+k5H0Sd3dsYUeZ/WM/ZWyr1njaEYYmb7FQIhAMYUOHc073/w7g3aGqvXwxScvvt4RLpj6acaFJYITKot","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":501689,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgowUbCRA9TVsSAnZWagAAQ+oP/2dF7V0HeKNQ70l3nRs1\n3IiPW8pPkvemlb/5H7rAQfiTOafBZ6K7ShjoE6MJCpbl2JKE6qKaEddXXiz3\nFlRSwGhHpp3sRaFmyiEV2akxhOexbcRMDQKkkJIfbvLAikLVp9mSNfTFjkJr\nWcSoZGGdWiMIvMV8bF+7aUKMypL9WBvHUKgSARiMTsdKUwCsyiF44xDgo3Nq\nP5shVmah6oYfS03a1GzAFNReBQvjg87tWVTGme5UqqeUB8ILWu5AYGS3SfB+\npotTHPAGAK85L8VX/RLAbkr8Npy2HoK70RnMY1pz3FAweJrSU0agIR47LDDw\n9C5FKe3i+edKD9DNpn7MYZDklA0zcR045e5VxomOQ88Hr09crip5gbqRQR7p\nlzY8OzFYb2ZDZETOHVr5FmatNgLwkEZni3Le9FF4M7Z56B3/BXtiAnDRu/Vf\n+NCgxZQIPj9Iov8gJ53O8WVV8Z0VS4GbJNFrl2eecxqftjT/Eo8Ef7BCVTk9\nOo7GcEwAfVZ/XI+X3fTUqszMK00PI2AK7gf0FPyrj93MiXQdy3p+YPqhT9Cu\nqwcTHWDOnGtLTTeOlldgHr0BgyE5yuq28wYP5iur7FaXzDFaGBNcuy919gqB\noP1oxFH9iVVjNehg+Gt1MV7ibpaFXmTqbT6n6ySvEhSmBoEHp0WefPe8WRcB\nNw0W\r\n=y9zO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"7.13.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"16.1.0","dependencies":{"tslib":"^2.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.0.0_1621296410936_0.7864308309399968","host":"s3://npm-registry-packages"}},"14.1.0":{"name":"ngx-toastr","version":"14.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"b2607e358b04481b710d8f5a88179ba233ac4851","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.1.0.tgz","fileCount":39,"integrity":"sha512-bDdgM7cJXGvJCEU+aggsZ58Fc4x87oH0mjsjGAPQHqJ4K6gYCWaB79i1RxVBPmoXmTGooNJeeCsSZYLoHIo2Bg==","signatures":[{"sig":"MEYCIQD39Oi0ghJfXg86GCDJdNTEnoc4DEdBP1LWN+3qUKuSFgIhAMzo0/Qv0+K87y7WzJ54eYBiOatIp4LDJSTnkmWDoMWZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":500371,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhC4SECRA9TVsSAnZWagAAQfUP/RntWrMXmaeQ/nWy7zKS\nFbQkjntyxVbQpene8nchLHMT4dbjTJFqyJVqZYrx/zrPsFG7QzFOFl7Ia44Q\nY+4HPOAMs9qkh39W7admpzmHJ5Os/N/8ryUtF5rsSVdA5gdYW0+FVY1B+vDd\nXPtexsMk2atC90qdCWTQshFFeoopL4inf4ueBtp7/hVN4NcL2u4htdaBwBiE\nxXFTsvguWdWK+HkVadu5aiLFiY7O3lJuJEi0niSaPaEZrWPx/Q2dJQ80tSsI\n6bmoxQPxhGWiNi7vgnKKljr32XH95pEp29AIbYpxyGlRx+Yt5CBBXKnErDnf\nzVOfI6h53cgdL/NV5mcNFPSihVBgDA0JOzICTzg2v4ScwxJTRFumC5cJL9rb\nEtKBXRmIbrxuPbq177/tLwxE8Pzdu9PSmO5VUbKAJxE6yP9SlPyZwaGBbc3M\n7AAT5k28YhgwnpdrmuRldtQUEhwYOWLfC/KWH3dFa8Iv3CblC0p8goyyUyAE\n2LBEpNVGzUorse0jELQOTtu5iSXVHqdgdAyYOBaYQVFD/I7iyqAKvPjnyphv\neMzLK9IX4nITzGGaWLq9uIVwiGghO3uEQvjf4h/xw7qb7huHrwdI0JuzPjKO\ntuMS9suySQ/bY2KeO5XjBku6NtaNS19QG2dKX/pV5mjTST9MCiSUmsmbjmTr\ntXUl\r\n=a1kS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"7.20.3","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"16.6.0","dependencies":{"tslib":"^2.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.1.0_1628144772018_0.17513320269131127","host":"s3://npm-registry-packages"}},"14.1.1":{"name":"ngx-toastr","version":"14.1.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.1.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"d12f2a454d96a54e6366cf8b6d18e294e232df95","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.1.1.tgz","fileCount":39,"integrity":"sha512-ZfldGplwfw2eFMswicrad6laBUz6DcaWFhuRNngHd9VWPTOBwVWzGhQiptuaomN/6Nc4sCNMCOMH+AE5ML8TVg==","signatures":[{"sig":"MEUCIEZ8jHEfgPtqWUuuHRkSa/71OWTqLOIe6ldZL1Xdcuh1AiEAwK9JW0TBlt7EFnIwUQ+GtsGaJ78GHYDcy9NlanlxuUM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":500696,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhODJ2CRA9TVsSAnZWagAApAoP/1dKpJ7XBP3RqJj36azb\nq1C9/LbXv6uW3fEIxToDms+o3J852YbZpEjDi87Xq+1i1Bbq3Xmp6C9GiHpA\nqerzYg9N0Sr2ecy7J+UEZ+sZek37c2xMFVCZLo17m5zyZIH19pDX704bfBAK\nRiu+C+Ifgf30uzmnEYOR0F3Sr4+MTsbmvltnM7FR+tuQGavcU4O7CogjrjK1\nfjFDt4n4gofoBeoAK4tTEPGSTr5xmvnk41b1FZ6phYrL8PDjZY55pFiCcZWx\nVHtp1Y3zXOPaiER8YKPTk7upJI+nHqf/O3OlWyuJzgPUBqlw+lXqo2Qsg6KE\nDp0GPbUndh7qfAhp6ty+aby2JXw7cBRkfak8/k2/Le/y2aCDicGJtmHTbbea\noqanOSIAFofzIRq01EBjj8zmyKu8hT+Q4c/QgOxdum7JPeqoCUJ1ifV0EzlA\nnyAixvQGG6eHetjIEJ18KxOWhtQFjLOX/FArj4kx/WbsgPLpvLD/gHHSHVyW\nj9tOYHqqsCSxFwdY2NaDDH0Ojb5BsFY/SzhwmX02kuMyuZXp6jzCA/1km3L0\ntp9CFjH4jQbr8HMq4A3sM+H6vGixh+woSkC3lHGbUtrzu7C6/2Yr/xUkBPo6\nHEaDWL0GG254r3l5ETqlQRpSbEeIDfFUUkfFvRT4vm/apzm9sPv14WTfAr1+\ngP2+\r\n=xz9S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","gitHead":"5b0ef6aebb4c783651bb9c658a7fb6aea1780593","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"7.22.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"16.8.0","dependencies":{"tslib":"^2.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.1.1_1631072886457_0.9302860695166144","host":"s3://npm-registry-packages"}},"14.1.2":{"name":"ngx-toastr","version":"14.1.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.1.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"f055ff30c75dce33776469134a5607fccd102bde","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.1.2.tgz","fileCount":39,"integrity":"sha512-tHai+KlIOyedHLRdY6zmgvVIVGSVxbdHwBVZ7X6YhutxtKsRQMcl6fkLh57GJI0yWu5UsSqmxrN4dSQ9U9REZQ==","signatures":[{"sig":"MEUCIHIzgU6JlVvZM/vbK/xaPRMqwwafZGzSKdmb/P3Zv2rRAiEA4KoCbPK+nlu+cHc1+dU+BDYtPq5sGjOKvUs7wZuxRYc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":501288,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhONzKCRA9TVsSAnZWagAA3xAP/3szVtLaatkWNRVlQM7M\nd08FSZN9GgYosUUulJFawBS+ZfOI2UtuFfjqut25Sc8frhuIzXa7h9r5is0G\n2sXSw/Hf3selmV1NeP/2ri2nLhwifDryAw0oS/rIGIAgYvb0aA363y7CEvjH\ngzgjd0HpKQ0ffEWvoVmExmIsuNh1v+KxhNtoin55iMtwCVucBSK/fawHQLCa\nEpjdyFzmBBP5aaGry10x3R96Z95FOv6HQzIeqqK82e8gjbS3C4ZUxp0dLf/Q\nB02+PPyskG+F260wmzjczS5/vG67q6vK4RADUPozPtHZRzRD9cmxonNJPgdH\nSbDR+CPcF+wu1q8yRoNYdW2eXYYZUDmcHFZfPDPiMNAzIAi/mOfjsJd/Cew1\nyxbdVI8ITqbYOJsu7T9XnhpD1mz/Yc+cChuJudmmvgKOZsVzGiSmtQFr7Ika\nHkLeVE6+dOdBrAooj8hUGh1aUbORpHpQyRrmAA6znlJNoSG1xzROERZuSe2V\nT8RVUm9fvMwQ2n6H5VM4Q1qvctCfND3oNxoH1WIDj0CrJQKDbHQrbEFeyOJa\nSl5KTJ8PieKRQAZjXF3wh8Bv7/VgvHHHkhbn3y9tKewENcAELn2/F2tnQP7n\ngqQW6FNsYzjyxoafiDKtgzTfQYXjvaYWvSO3n/tPIIQ2i0xNok8fy4YcCJdw\nGxB2\r\n=konV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","gitHead":"900974c088737c94dee2f132345b62135b19f09b","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"7.22.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"16.8.0","dependencies":{"tslib":"^2.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.1.2_1631116489792_0.31438287603357806","host":"s3://npm-registry-packages"}},"14.1.3":{"name":"ngx-toastr","version":"14.1.3","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.1.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"93b45e8893e454b636e33ea7cdbd786942441086","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.1.3.tgz","fileCount":39,"integrity":"sha512-UzOl3xqhd0t1CcCBNZZ5GzVOOAFuaaEcF8KdQ4CgVp2CY1sdmUdJcnlAvjvL2Cjz3G0sSVVYtF5UdPa+d0gzZA==","signatures":[{"sig":"MEYCIQDD1rHNgIcqpnOs8abBmbWbvgvokuHFfgf4S8I8r7SUCQIhAMo80doNo3IRq2p1ZoP6o6cl/91HMqJHpxCV4qAZKNVR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":501300,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOQ2BCRA9TVsSAnZWagAALdsQAJiWVKxMNleU8YYcZbUH\nO56mX1s9EDWUQED6TNLH2c+1zThIk4EVEa/hwoOY1gkSeGbvuEXzcMDQyiAC\n8uGYld1bSqduTBXbm5RJVNxqo/jJsjlVp5oXJElORydpPjBO28FlryC43oQw\nGDXp2Y68lveAq2QGarQm3u0JPIakfDZe9Q/g+EUqdv1rXJ3fPMUZK/+imh58\nozXCD/wYxo8ylWaE7+WYBQiha3FbkMZpv4TTfaeXDcZcnic9UuEbnvlaGS63\nNMXdMFlrC2AWuoY2xMMOWXuDPuyH0rz0Cgd+6DAZzTPxzpHmdvqLXwrSD2Q2\nLECQvC4xDNzqbPSLPYYo3TS6tsELugKMutKCjO08uAt4LNQBtb5HBO1+QSkN\nOnn9q3NczVH4C7q06FBJKPqOn85wgrZfrqEFL/x9fp/k4mr1ArbrMXHL5jB5\nYbSfPUS+siTl5f/EMM3OAhSKzeztUasHVKgKNu/fLOOchvz1dKxou2LPZPJK\nlxB7wSOt2N22I/DzqrIy/hnaLDwWdoSipQklgDh6FYgnxmLvIAA21/bg5gkQ\n7t7FOuzIkbghi2GCMWB6X7SEETpj6mFHAwZFqcgaPFknwo7eMae+8T7DOhIn\n+KaOdTrGd6s3rkG7MZeJazRs6YBhokE0wvbXk7r9NPwu3kD/yAweKmMGTsqz\nAKEh\r\n=tbJu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","gitHead":"97e13cc86277e35bb72d7b50c26fef79237e546c","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"7.22.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"16.8.0","dependencies":{"tslib":"^2.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.1.3_1631128961529_0.37104949864986647","host":"s3://npm-registry-packages"}},"14.1.4":{"name":"ngx-toastr","version":"14.1.4","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.1.4","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"80b9d3d3663e35cd11e402ed2eced8a29310b050","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.1.4.tgz","fileCount":39,"integrity":"sha512-t1/9r+pOXm65LIl0gevvFat6XIl0g3tMA8UOArFjI4ta/nGwDe/14J/f4cZvOBDcomedvjvGAWi+d/2URdSTBg==","signatures":[{"sig":"MEQCIGjVDu+aUuu8A33XRzncnBiM09x5JM6yBpGs70UL87dyAiADdoTK17fdiRC+R4I36dkld2H/g6Gx/ZhMbOxZgcdXZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":501925},"main":"bundles/ngx-toastr.umd.js","es2015":"fesm2015/ngx-toastr.js","module":"fesm2015/ngx-toastr.js","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2015":"esm2015/ngx-toastr.js","gitHead":"2b8fe58c2456a835e3c129482b32e7cff8c89b78","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.js","metadata":"ngx-toastr.metadata.json","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"7.24.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"17.0.1","dependencies":{"tslib":"^2.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.1.4_1635187164270_0.9106666392429221","host":"s3://npm-registry-packages"}},"14.2.0":{"name":"ngx-toastr","version":"14.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"06692a228cc30bb50f8f823879ae417a77bc7f84","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.2.0.tgz","fileCount":38,"integrity":"sha512-LdxJDTCCYj/UvMUW1ol+P8vOaJsdsWnqmRX5iXEPQCdDgs6E5CePSUMBsnQ3ekfy99eQvmwIJ9q7C2RvN7aAvw==","signatures":[{"sig":"MEYCIQD/elp3djTSNkqAJqV+u24Im5En0XfClTuPXYKY3ZA6sQIhAPTjTDaJvx192aGJZuTWPmkVH2yIVzaErMwaZ7C2YcB+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":455948},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./ngx-toastr.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"c26c13553e45a0daa2c76acad3f1f1fc5bb751f7","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"7.24.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"17.1.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.2.0_1636763044140_0.5020540520501668","host":"s3://npm-registry-packages"}},"14.2.1":{"name":"ngx-toastr","version":"14.2.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.2.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"2899cc6e69af607aa89a2de807c32b46fdc035f8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.2.1.tgz","fileCount":38,"integrity":"sha512-1Kq//y8tTgglUYKHIziZwpo4R7fe4/neidcxfbAXzXtcViSjT4Z21Vgqn/inoBlwoc7E9qXQDuZoJr2lanCgGA==","signatures":[{"sig":"MEUCIQDawRRDVlvXePWxXlEhCzmft3u0YqjO/HWjwN+M99+7RwIgDpVdMzSw9bw5JeIDEqafOcoLCUmFn5Ry2yH0oDR1COU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":456148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlyj1CRA9TVsSAnZWagAApwEQAIOC6ex2hG723bjCRQid\n3AvzCbO0tzdJt6MdCh+oNmkIfV45KMymUhMrlFIDqGEV2E333NKE2MFrW9hy\n/0iDunPYRAhrCOau75rDuXLhEfCqrlkEe9cy/njCFw8Xudw7uaHbKhutTRXp\nuvynlP14rJq304xnR5IUkRVE7cpzELzjcyz+VW6V5HX3UuMgNO1YahF7tlHX\np0hR975pobmi2iAvc0JuV5RXPqCPT0ANLn/i3dC2ENnG7eBKsyZyqmrBS/fH\nUhxzGMXpAGn+0U4QwMx8dakMOrbcuLOEjZ3JhY6CMm2u1JVtL7cI2cqh03p9\nWPFn6Pz4NplRyUxbVPGb7CYOjAIAAtaxxJ+VUnkn9dZqgouF383+xT5rPQ4Z\nr6CPc7oLI5BkdwCspeRygDaMSs7903B3M+F8o7XTUoQB9kElMjRnkTk/jHIB\nxVW1C24dtNTOJINz9rjJAQD6utAkONbIkZ/JNDiibFuadwiF4nRN6XYIq8aa\nVZ7DapFG+dSV4g2jf5jeewoyEvKQ/zU/GBgv6ZxO2Z4dG954BqS6IFCTefd0\nk/Q8HIinEwQE68/Tbs17E9az03g4ArvCHfGR8r6EbkhhMKWFYVbTi+wvr+en\nTGCus4voaqMcE+ynAl+9E5uFqf+5wtcjb7YH++JlisFdI4Glm99Fp60eOT3n\nVjq1\r\n=9vaG\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./ngx-toastr.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"21d92f72c578ed575444b226be349a2a9d990e4c","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"7.24.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"17.1.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.2.1_1637296373283_0.7224455852977851","host":"s3://npm-registry-packages"}},"14.2.2":{"name":"ngx-toastr","version":"14.2.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.2.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"19a144e96a18523d8a196c2aab2e319ff762bf16","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.2.2.tgz","fileCount":38,"integrity":"sha512-/Ajr9E0llr51Zij8WgnxQpe7a5JK+k1n07/uWJcQ112OBH0GCktHi8M8QfGvw5Ih67hG8iowrT+aHXHS49gZcQ==","signatures":[{"sig":"MEUCIDO+24VXMfelXrQXIlqf2Jxnp4gA/XftpofUDn1ZE+4VAiEA/lq2TIaJ+gF2V7ahRAM70lKWs6x3+WotCaE0Wb/mToQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":472551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIwFtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqmGQ/7B2Fmd9T0etA6VWxoS+TaWXH+BMtAYZ8R7kzlTDHTFav8EMq3\r\nUgoYt49tXRKHqOl0uNQGCwS09ApkZRGjhx7UyYISJtffIB7C3wvlZYM0Tkmt\r\ngw4YJyoEFuFrGoDD3UJzyu6FeN/uPyVxNM8fhOqaLZT1zAyzg4w/MPvl6kyT\r\neE1RPCCQPtjSJ4LpmJ6H/Zb3cv3L1DlHuHx5Atg2sqw5S8ihWjERPagg7H4z\r\ng5J0JgvCE5zqj6Uw18FPtDk50M5n3DL7wW7WU0MRonRnl7NsBROQdA8DlwCZ\r\nOlwy1CilN+qbWJW29TO/l8DfVmnnSsketGSwLmQyBlRXCn4HPZTmJfIrCOK+\r\nZC8yHTv6DQcOg5RmnruLEj5nxkfi0BZGLzd73H707fKzYNZqapl+nNH8Mlan\r\n22tchkL16zIIRwMtZ5Hn4que3E58LykGnV7oSZAj34G4aBQwJ4eKytdDkEaS\r\n5RE7ZvAnjDD7ZQ6X+lqIpqXsVDE1gZMNSVDEod9EfXGO90r8YojFayvcFEJY\r\nu+JI5EZCfe5UvM+zCG3IhWVYwDAVD/PIoeWUqORQ6iMUnypKcyuhDflIqc8E\r\n7hwjV6sPlS/7Mb0gyAJb8TXF1b0S4xaUbZLA+OhaRKPB9ylD6ECHqtCEmQ0H\r\n5ZpxUxDrhN5D2yCn1j+VM+a9sN9f1fYO1WQ=\r\n=XPWG\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./ngx-toastr.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"6994d250e8807d7fbba08ab44b60c9ffb5e44528","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.5.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"17.6.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.2.2_1646461293183_0.025413562043346882","host":"s3://npm-registry-packages"}},"14.2.3":{"name":"ngx-toastr","version":"14.2.3","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.2.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"cd448fbe283e15d7f122c5021fd6d221426c0bfb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.2.3.tgz","fileCount":38,"integrity":"sha512-vFQqDikI6elnNq2b0LJzMUFlKcHTQsgjk8ImibHbr2jvSHdSS7oCWaDoxwFcqDCqyFIt3+qYKy8K3aY47kaZRA==","signatures":[{"sig":"MEUCIDpzFbi/kNmVWtGW4fC2kkU6YDH87z4thZ/DTlqzk0vZAiEArdnnu9IfPLT9tJpe90Ilp+ahqSvt5m3/NAxy9TyopT0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":473132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTH52ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmppZxAAiSDz7RVK4jNitXGB+ot4A9haHbK71hmuMtPIZ8tkokMDQ/nO\r\nkpIB9h5hUSS1AI/Vm4U/xMsfQdpWFWVodOBy8h21/kL6x26MjWqkVAdoxRE7\r\nhZJpjrvJ78Nt11IhVQXblhNWiwkt1D9sJRvNSJB2z/UL7Cc30Uz0oPL10YIT\r\n0ggeQSWACw1k5GiyeRJlIFz/gg+W5wbBuiiIJIhmsodxIsLUCxzuYdE8utJn\r\njptsEQv/DOi6/WJoh8OLW6XwA9oCbACKN0mGltyMUPUYVSn0H1LselCqYTzW\r\n7EdcyjIPm2fNlVZmlXb5t67a5b36WWefyWsqdXMbN+BbjHdZpfSPH6KhFAnl\r\nxyor6N9kJBlaoHNtLftoLDfU0Oup0fot8WKrcsZlrovTaTfRbdHoNmdf0UW0\r\nhkBpMZ23xdFPHVJi/xv3WAmugZER6fniP6lPRzU41ZZTG4WkY5LpXoqKY54m\r\nLL9kYqw4zp2J+wA4N34ueqox36jm+3q2RSoE51mjrerOLX90iJ+wuphiGiqR\r\nTFRJCOdX5d6wbz8sWmBoXTMAKqotiKR/nggxwqC1n/ZGUaNNbUptTuH+wJTG\r\n1tJ/f3YvUQTqE9qNjb5la9ZrbvfatOPUHtAFeK4R5SEwcIfBMoypTn0HNKjl\r\nUbG//Q2X58DZUEsSiSSvdSK8uygrTi2RZzE=\r\n=sNfN\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./ngx-toastr.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"1d96d321b6f90fb261cb92e56ab39ec612d4aa3d","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.5.5","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"17.8.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.2.3_1649180278480_0.8938085884364098","host":"s3://npm-registry-packages"}},"14.2.4":{"name":"ngx-toastr","version":"14.2.4","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.2.4","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"d6152fc6d7d5a1ae8c151fb46cbe960399bfb591","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.2.4.tgz","fileCount":38,"integrity":"sha512-2sOUhfQ1b4pu59KqD3o+XbR5KKCdDRDBiL+SiopUJHDpUxabWcvmmQow2uV0cLeUPp92eBNsIVWqZU8u2Gbm3w==","signatures":[{"sig":"MEQCIFYo74jBckbtLQwSMT/rAGltRTmXI1C/LY4f0O6zsiKOAiBRTYXFJF+s/lWX2zmqZvYwEkJi0AS+yKvSfpu0iNDnfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":472551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVaFOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLUw/9HOdGsERZd19rzRygIBuA2uzWsQLK0bsDcWcwSkdhwfWrGcUD\r\nQ12+rNA5y9JB+o4cuSVZrPa+AkFcyR28j+ZbWsv4aQqNI3yoDo1CVi9ypMFM\r\nqVRPgV/gtkOvE6WznXbePy+cFoV48df+/s7ASuCWOjvq5+s5Q6TbaGy3/u8H\r\nNHD/2tAKs3XttNalpr9jOUjT8uB5TcP6OciWMUjS3r2e1da2epHOK99AVTVo\r\n0XqPG62IOJVwzZu9O/tKXW6D7kEsGnvPQxNSLMRVcJoUrlDW7BfdYdSj4YXG\r\nYYBc3ziKAZ28nHxS6x9IxsfdBpdkYAjWgPDmRR1CzNGb1a9zpW+BNGAfv8db\r\nJYq0cpaNTi82eEAToof2/WtJXLiKBdBHXhiGwkKdCQZZ1h/NJmhxZAL71oWv\r\njs11z2WxMps2sIkfCKJi+Ye17M7jq+2blv8DqtdOe/DTlYCzPr9nMWBQFkXO\r\n78xkiHa5tFFsBx0u/OlWuJOFzzcbEyqrXWXbPwcEZfvh9LM1Z8LHhFps95IX\r\nwWVAFCd2ilNGv7LBKcRujIL0BPj4+j+p2sppGC2pTnej4S4Qgdc5cgzyLNBc\r\ncVMNtq/ir+6V3pZWeeZMyexy53Xo66Eyc9JoMuckzWhxCnfrjOC8dHzrHxSa\r\nFekxTdqETXmci96lfiJIrMUgn3nNoeW1s+c=\r\n=UHJQ\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./ngx-toastr.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"8a90dbb02636a740c4247d98f78608c4513cd855","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.5.5","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"17.9.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.2.4_1649779022412_0.5055356791400301","host":"s3://npm-registry-packages"}},"14.3.0":{"name":"ngx-toastr","version":"14.3.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@14.3.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3c366fc5ef8aa1ca8f97ae46c468cfcdf44e620d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-14.3.0.tgz","fileCount":38,"integrity":"sha512-d8j/sOr60w5U7rGlcKQ0Ff4u+m2NzhqU5ZdJXn7QW3aR3Zf/rY7/Fd14BmUindTOWVr2NeTYcQXCjLpir0ldpA==","signatures":[{"sig":"MEYCIQCMLcaH8zgeYYOQHp47gve4BBJiz0oL91TfRMr6q7qlQwIhAOKFPSJZIuil6Zu+o1/b2QGXFIQjfro0Qam4FukW9ghB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":472631,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXOzrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpZhAAlCQ6A8dadYtrnGhebIaSZqgWFTko1Xot0Bb2dMCOeH26URrW\r\nDmh/4FGvsjKZldchrI60TutLB8CunKB8s97OEb4CYo3GqyXJ5zemM4sRsQrD\r\nuXX/hwyiwbKInTSqHVpIXmJ+ay/L/6BXXH9Z+5wogHsn/ftqCNDmeSud58dQ\r\necZn1cZVrlvDdWclmLng9JFOMGOh2tIcAzADK4TUoKb2KXV91CC291H8fcvZ\r\nYjxJV4iq0CFwzMKJre+hzW6mLCKtod1BoQBEAgrbNuVd8GCBnPzvEWZRHUub\r\nI1aJ6vTcIUdRQQ1qcy+8P00as8jo6nm05UAShcHGZhtzWQAvF/z/8OmXKKG/\r\nLq6eJ3l3vvIhWbsbWlDrs/AOKmRkyCYPMqRXBwbqMJF3DP4iWML0ZEZDp8PD\r\nP+DMs+nbsDGAHtBvsJj92Q5gC6s3/TCg1PmOoWjBEHYyBZ1MRXZgfyr+ZWTy\r\nOpAb+QmF6oRJiiswNEQ36FYDZ2wo2+TjO/ZmTpFWQM4LFq5qL6aP4Jq2mtVw\r\n/W2Jv53zi219uqeXKF1D1j/Fw03e7CZiFculGARs/2RG72nYTaxdnaWD/UNi\r\np6HS3Q8YwIWu0cXdGqVs27QgQyy/mFoBS6DiN5eJVZNUHGg7AXEDGSRGsCuF\r\n3Xw7YRhTcAktdckLEV2qHEpOzHdnYm+RlbY=\r\n=Sj8x\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","$schema":"../../node_modules/ng-packagr/package.schema.json","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./ngx-toastr.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"2fc890b3316d839390912463ac84049fc0ee9cc0","typings":"ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.5.5","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"17.9.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=12.0.0-0","@angular/common":">=12.0.0-0","@angular/platform-browser":">=12.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_14.3.0_1650257131715_0.17411728354508993","host":"s3://npm-registry-packages"}},"15.0.0":{"name":"ngx-toastr","version":"15.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@15.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"7d9d664a264b8b39d1bf762bb0a124bde5be8f01","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-15.0.0.tgz","fileCount":38,"integrity":"sha512-dseyONSYcbm+8hQUCzzyP6CnHGa8WAOGJN7dzGqgBV4sHCDiv5eZ4x/3uo7Fov2OR0O5T47keP7ND3z7tufXeg==","signatures":[{"sig":"MEUCIQCSEOSH2o8clusTbkhIACsFePgMX5vU5FvPXNLioDXn1AIgApeq9f83j0/17E2m+lZLMT4uplN+Tf61UCoYiPVWbU4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":472374,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirrsHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpa+g//VYYQIWFvxRZYb6lpbgzWSUSl2TxlXloYiiSAtpPYo+K34yzQ\r\nXSUX5JglDUjSlh0MYKULJPQHftmMwKtWo8EK/YQnHu9A8ASam5bVH/htrQrs\r\nV4BDO4IBeJ1FfkMaebW2vNB1iS7jlKGqhITRToug4PYHSsLozayifiwDR7Hz\r\ngC4Uvp2dHOyTBzIijVkey0kN2JsO7xojuNnRTuYYtfe9fsJIQ/CEiGEXYHm8\r\nMRxjpw5gLaZb+RoAzFbDmy+bcZLRCPs2P7z5l9LPVmkk1V8gX/ky0YjbWRkj\r\nQ6Y11Ofr2xUDXUmAsTV7IUx39VUL/l7RWOIl2zzjufYCg+iWgidsYi1/EUhs\r\n+T7HEJnqEfgIzqIV6Ob598zf4/P4Yz4P71l2vbYVe8a44ocnPS145ZLsWk34\r\neJQBiJutEFnCDHec0qQ1aqd4YHBsD4triD3ycdv+4qYdEL5xp0OliEkBt2oe\r\nWvpibjtAHDzQk+VpLt2yTpLqJdCmLrpS4myomIrsoWTVFRKiWMb8xlRMplYo\r\nR+gnNaR9uIB5bV2G7njnS9KmFBDTt66xdurGymMc8mj0yOHdfzq+/KSFRY48\r\nl0iJjkMfbSekrtQWmxVVD95IC7iWC5r7kymTJe3kuTEKb8bWlDg8ynJxnPcA\r\nHWn0mXWxIJ6lgbrPDWjFJdnUxMJ7J3Te7MY=\r\n=37WX\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"8a0a9bfbb044b12b7e269ae023e9bf285bdd8f5b","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.12.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"18.4.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_15.0.0_1655618311458_0.24971146361993646","host":"s3://npm-registry-packages"}},"15.1.0":{"name":"ngx-toastr","version":"15.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@15.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"4748b291d389aca5fc0dab16c7c16056fb9aace4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-15.1.0.tgz","fileCount":38,"integrity":"sha512-4HQyaQ85DyVL9CUpxD/M2QKk8WCpdSXDN0HUQey3u71SMjEs4bdUv5lfz+0dMIy/qVuD7SnEysWJOUVcFDr+wg==","signatures":[{"sig":"MEUCIQC/rfM9U4GwiRfy6nwpRel6OTN9j9S2AfsKnronLykNywIgVn+WWkBhdllKAZbrd+5NdvszB3tmhQJhBJW1k5U/BA8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":468537,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNIatACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpXAA/+JBvuqhOKc/AWMnYSL+r1O92rW+EQEgumndp5iaOByAm+LVUU\r\nDJ+OgdsG8gH5OHt8sqjMPrM5oXxYauxZ+EQhmUsTNRbBjGSFNYnE59V2sotP\r\nZBZrRvWl4wQLgrwosSUuTI81V83RRSW7bPi2naHE3aKHH+sNqMOxFsvtRlIk\r\n8QQJfmYvQgslP1/4IOIBVI9QaKMvs36f8zbuBHHMr9RfCg0bykex7y44Z+qq\r\nMLDXQY0aDtmBy5xOg020tOjcI/TWGfMJEj/CbFv814BZAkoNDWD3SBfNS1AN\r\nRMMaNK6Cp33z6JWxWne7IoZ1I9yJkdhZiGX9kOxDsYg/Pk3uiTeg2h+TTlBp\r\nBNfU10/K0HCCnlydyNNN2ZCAR0djuDHeVmj7lWyU1gu6n0rZs0y+P5TdvfU1\r\nPXDDkdJEPPWL7jEPfj0T4IqB5p6g4IQ/PptbYqjhETRYrJ4SpECXOvgnsz4N\r\nbR28BFxpGg7F7BlmNAsixyUcAEXWF4G9ax/Wj4XpJyKSMoCXagPs6CzVGyz9\r\nRE6snm186M5vyI4zgtlamVaUMtB/zvosMH2CuK6NphOh5kTQOheILkYS16t2\r\ny9R4L3f+2oir9jo2ucCGV4Lus+5DoDRdfiL+huqftcSZUj/EP6oazo6a5dBu\r\nc+ByHeD5yLBaMfFd/9TGGWc+DrrxyNPHFB0=\r\n=hBsq\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"b765833dabad737a3bbb501ed12f46f2eb394fe0","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.19.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"18.9.1","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_15.1.0_1664386733421_0.06624633631084809","host":"s3://npm-registry-packages"}},"15.2.0":{"name":"ngx-toastr","version":"15.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@15.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"05ae9bc450a22505bcffae1bcddd880c600c184c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-15.2.0.tgz","fileCount":38,"integrity":"sha512-IrDWKYql3O5yPhmaWu78QilB/9j+J78tyfS/mMoX/yCdVc0zmLsv73OHvckG9XgEhVuQjuxz0yIGVaWff91m4A==","signatures":[{"sig":"MEUCIQDjjCeHHLDg8RT+ToBJ6HmgN9sGY3Xa6ibPRvFuqls5JAIgXzar5bhaVFq4JiTvJPUIY5lvrjRcIVDPUTY89BLlF28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":468430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjOwH0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYww//TtmwwVJwa0U9O15L30bdA2kdzHC54nbUnQep0BBgwiBszbsj\r\nzHeN83u6iV5hR/Tx1mZb0hHeojTkBswMmY+8v2vV5Akll6Ni68uOh5BkwWv5\r\n6uCIrOOdDPRDBTUfRkh+ZAuTaAd/fPUUUz1onsPbT744XDvGi0gkAARFKzs1\r\nGFCO1oY1FuoWlsNIp0tP178GGoVRFTwoWcfujSB/49Q3+d5PE/xTZzY0yOna\r\nwcZ+lRnKf2bv9HYljeudEcuYJB88VYD64pKRGdjDl/sKkjtxPbGqaHjle2AE\r\n3KF0yxr4ByA/xy7dmw9GnevBYUyzqkLzxPmocGTSiwVsZwdG3yjGg+A2VGuH\r\nD7eONzstm/69Ty/7/3wnBp9LJcdUQbbxQ+7dUoCi+fI1UhZfat0MYYvbc+Xl\r\njNZ4JFPKKDYA0f3xT0zVlxTHpDDEpszLSpHUdUqvIapPIznBfxon8sbob0mq\r\nq/ffDnkLiL12bPExfTowSQFQR304M0nlx6hCSHuRDRLr7Gna+DdmhgboMMTY\r\ng6SWcKl2N/Xdz0cac562uroDE2M67h9xR+u+ykz/I5I1PkFP0ensIX6aMPQn\r\nV3aAC548Z0Fq3TZ3D5OWMQWRrDnZ01l/m7cABm8BebRNzgu+Htxr6WxYn8Mg\r\n9jkaXaj44iQNCa1iKu+P6D8ubWTXKzJmUNY=\r\n=B6nF\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"c86b7a8ad3697e5c5eeef1bb894edb943c5845d7","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.19.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"18.9.1","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_15.2.0_1664811508359_0.42273230471081513","host":"s3://npm-registry-packages"}},"15.2.1":{"name":"ngx-toastr","version":"15.2.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@15.2.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"011100db480c48107a9424296f267cbe26ac7b1e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-15.2.1.tgz","fileCount":38,"integrity":"sha512-Fyik8+sTbmX4NftVWWd3SIaeH8qlRU0emAfpey/AXsXuUEXgOOXKKnVPLmMAK7XL7xLy0c/+UsYBwlPK4TJcmA==","signatures":[{"sig":"MEUCICFa/Sc2JceklDXGYkNUAPN5+qVfh3QvCJwec7lNdM2bAiEAugn57ZrIeBZToynmEg2a/hhMPP8x5qkAqoGaEPoc7gI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":469227,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTOnEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqjsg/9Fz9eiHozP0N/wOVS5fCqVURaVRz9t3jiIi69BiEkGW5qeF0M\r\n2SqK7a8VPggturcWDi/r4juztg94wjx1PCKbsgaAmdwtvv7yDYK/U/67/80q\r\nfJsFZ10Hgnt2Q+nbGV7Kr5a9l3jR/+mXkHnwCs7e/rCz9Nmai8uq9PaUj5wq\r\nWt27jXCgGA4UsxcBg+e3RlHtG5G/hM6ztRgGEqZmKbRCZy8dpMu1VvvkgYpf\r\n1q/axNK4PkslFgGaVwApSVUpaIwXTTkFYN4WqoYQXhi8w4Eol5yyl1pZO4Pv\r\nvZ/X2i8ovm1BTjWILJepfBTBxoMEz+veKpusxVoa8EdTY4vC36WEyc56ahtm\r\nj3QTrMvTykty675BUWIrOEIt+EaDr0X2XZQC4pU2XNntKiPAkOFZx1h6MDGF\r\nbhcVX7Lq7Pz4vhr/634xeTKT8hAlWkOiMdgs9dQNVZG4sfAk/g/ITN8bScnW\r\n0Ea/qMKopxliATFQTBmkozyNrWoVN4dVWK3LA48npCMrlYMHLBs2QYE26A+d\r\nv9tswT9IgJnKHQ7bqNZjiywVpPcq0rDG8a9j1TDWro4Lp8mnwn4M+RiAIT9D\r\nM26cqxXWrehj45b2nY30K7/3Fbc+Su4YRBkT+2PRJIRXaOW4SZfYrNwAEsD6\r\nDjNSUPtjrzdfTdqThbCWTSxQLoT+45gHMMM=\r\n=kfGA\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"1a0f6b8aaf17c93cfe840f68b63f82af8b54435c","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.19.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"18.10.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_15.2.1_1665984964637_0.6685666255264311","host":"s3://npm-registry-packages"}},"15.2.2":{"name":"ngx-toastr","version":"15.2.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@15.2.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"8df1e880e6b111ede424350add200d97bb2fa524","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-15.2.2.tgz","fileCount":38,"integrity":"sha512-srdxKKf1+B/7z11M4Ty7bnkme2xjdUcnP/t7mNG/2gRM1h0P/7Lbz71FIQHuKZOCdnGdXjsT6OXU0dRvNyrkyg==","signatures":[{"sig":"MEQCIGfq+fcB/KxAElrXI2E+3m82WTW9b97nnOqIA6jG4J/KAiAQT0sinc4lNYqRawkBOXXaRAW1i+VX5D6eFuF3JBlF5Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":469462,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcnoOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpy0g//XSY8MqqyWWMtqLvUW/s8b6VIMFnC/scKcrLD3j0Gm3aGr2cG\r\nH6Hmm065TbXe9lh/PsaGt3YqfJ2/CU6DvY0HLAtgCJ1HCP6p1ESHR4yx5PLM\r\nHFJIQolMI9L53dVp3zUSuZIMDyiGVfJ5J0+tJinxeonL723oH0sz2grZm/g9\r\nZltKA+U16Vw7WAwvhlY9Sz8Xzik2IQas+q/baI+UO79wEtx6FGgqhqtME+Ar\r\n6xE+4AXxHrZchKLBrdCZinRvBc+oQnCtkOamNYh37m6bN25oJ3pQ1sL1FnJV\r\nA+OWVh9udJs2XNY17ZG3VKgYs59iBKaH+KRcugFRdqYJ4K3JXWYEDNrJ/u9a\r\nqVf0dIpO95GL5nEEDEJeC3+f1A5AtEhnBHpoaEbp7vPzouDwoW0GWzS6yQIW\r\n7HmuNyLyb8G/JU4CMngusqYswM+uMkNnVx1XJnjrCaWSMC+1nBwg+qnE3hfR\r\n2yu5bGjOyKIWxQHDpW6O3q3WbQCLMg9XLghexd+GXyeiBQBubXID1JcGx1rg\r\n+0y+ztwyhlBA+fPNYmMZWWFEHC2Cmqp4VtgfjqaGCgoTvCWKheIdhW6Q+wXc\r\nEZ653lGuUWByR0b+0k7Pc3Klp8bmKkOaB++oF+MzpKDffHcJHTjgl/fUnvOz\r\n3mRVvhpAZMWCfVPkPcqQrKXA8qfRbMVfMls=\r\n=+MoE\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"}},"gitHead":"7dc17456742ff5d9fca266314f83298363f86f0f","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.19.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"19.0.1","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_15.2.2_1668446734405_0.021798901294834305","host":"s3://npm-registry-packages"}},"16.0.0":{"name":"ngx-toastr","version":"16.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@16.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3e56f85676d54db8ec42414b3ff9801de452597e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-16.0.0.tgz","fileCount":38,"integrity":"sha512-7lSUwTTTeUIFof01+vHabPgY9oD73IMmvlVvbQKka8cB+fj9pOlyIYNot1kdjeW/Uuuej3V8PSD6lJIjztYeKg==","signatures":[{"sig":"MEUCIQD25Om0krrZiITXkG4JdRNd47asho3yPESF8MLbQgSqbAIgGvaEjbpxJD5nqkR4IgVxc1Hng1tc7kBkaXLsvzTI3YA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":469623,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdeAlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqSYBAAnqqq0sJ3XLikz7xQjPXJAIRmfI6nVuWQFLxExNzNIcTMhN8M\r\nSkWDGyppnebzwPRS8BaNhFIhmDFsKQQmsn/GaYlfdF51nfmWeRFgHTjQRGCn\r\n4YKnptuNT/7MrKIRQ1dR371R26DP2FwVa1wJlv9Nduc/eibRcoeWhlBOMjRi\r\nUXfvE1fCKr0TIw2uAVr+N5fFDxBZX4Kz9aJpktssvGu9Vg/FAt2GGS8RiC86\r\nFuvXPYmMbjqa4Agi4Q8qBwZVwSsZkHO/+MhOUNkKQOknNOdRhV9c2QNxm3wJ\r\nAU/D2SOOTCgx/lmQTyJ4Po+UA4LYV68LvataxPzCEUoQ06/KYPNoQZN/1FtS\r\na7xby5OLtP/83QsBr9XDoFNN4NeNoFCtIJNmX+zXNyF/m6rd2T9ofBp4UvIj\r\nFKnH9CLzSIkfn1JqP+uQLcRuoB85MEEpBd59aNuoze1qwml3cw4gH6BTkDpO\r\nn3yQbfmL2gFiYZ65ZmtVnZUOT+Q7BPQH7oSmr7DEmsxHFHfMwUjM7NLHQIzT\r\nA5gZIiNfpkk4BzM2BOAlcP7sJXi4z+Nb68OS7QqPOrjdUk2ySZOZPfda2SG1\r\nb1ZAvj/5pJSUuiDipukR8Uouf5T9EFpKZU6aFnG+RIrPG82LvJD74sappYg2\r\nc4ycqqSUmXQxW8a9ddh/Jj74Bbse+mV66IQ=\r\n=jN+S\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"bc776777a2a5e519486cf7049e0c4320d41b61f6","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.19.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"19.0.1","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_16.0.0_1668669477107_0.5630537498250519","host":"s3://npm-registry-packages"}},"16.0.1":{"name":"ngx-toastr","version":"16.0.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@16.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"0432549971daaa9e26d2fb50980941e244940eb0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-16.0.1.tgz","fileCount":39,"integrity":"sha512-GpGPQcNqB2m2i5yhH73CkGV6D6DlCJ0+aXZvUoR7OMxlJTlM+73FUePVYUnpWUHXR2IVMS+1ce8WwcTXJzGJxA==","signatures":[{"sig":"MEUCIHd36cldUI45x4NoEwWHbgwFZeNs4bhRRXCcou4hgaepAiEAreEVO3EgxiLBEwg2Caljljo3tLSwZLac1VPxlZQJJTI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":478117,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdmKrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoNUw/7Bf/FyCLrUfr6zFDZ1J+BQnBPVkED4CC5sEZD9XuDWt97LeNq\r\n40ckZoM7vCmxbjWGshmYSKglYGXSeqzV9dwLmz7co8wlJ2Cr2sWj9fCVTImV\r\nyQK849LrqRxh+XbvHQ8rABp8+eHCGOVK1RolDzTAIZemFz5YD0icHUz9Oldv\r\nKjCe37jg9E0vLqnG7VmqgXlGFhJumEjcKCQWtbD67eqHpPmfQa2ooHjd1gbx\r\nORWtpe9G/dr7LPWvbqwx3zdcLnDFzHAy5XgzkAyry/ztFySNn6/zzq83PQc6\r\nju2jtSpf0xGVW8bYadfn5Znod1G8N4NaUzaq6dNxlqkPYb9Pk3c9cJtgbzLp\r\nZeDBVWkp1p1rCjlViyPh3JIkgBdVhHpe+soDaDhT5DRXSn+xzXKkdPiXQVpu\r\nBr+ypNjOGwsr69DPsuo1kSvv8KQdpOtgvWXwgYX1SfPRJQKHyBDXmOaP9EFj\r\nTko5DoQOjBE71ER+FubxOMrQHiqY9x4l2TimltYuQiJ6vbvU1bXyTSQQA60h\r\nsuUo2IuwPHClFurGWmO7LfV9oe5tqyDCm8WB+goVqQshvAHwiKmaTnKKw1FU\r\nzjTLesI2/BkLbdAkAQlRpjFsVXdroaG6Vj2Q1+w+9aj6xdKhsWtwyq4pvI6j\r\n0F1c8JVsgdAUTvHYFQAyiW/IcmsNPr11Nj0=\r\n=Uo2k\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"e007ca3bc70b10d61eda1a5144a1b0570a67f654","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"8.19.2","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"19.0.1","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_16.0.1_1668702891680_0.5822430939660281","host":"s3://npm-registry-packages"}},"16.0.2":{"name":"ngx-toastr","version":"16.0.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@16.0.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"349068a16a73867111c6feae68eedb89a638a33f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-16.0.2.tgz","fileCount":39,"integrity":"sha512-J6SueNCaGwm/gpXdsG56UzMEAcuayYWEW6NmIrNoe5iP7lOUohg4xYXWipkbMH9wGWmLPD9gU8AufUVWMplCvg==","signatures":[{"sig":"MEYCIQDvmuKv0nOLw16dLLGBp7j5xLpGCMb0tD4uKqYtF2C03wIhAMSrrXoBrl06k0LrJe6B/SubJWm+hL8A1cl/T+5zJLNw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":478423,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjtfxaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqyIw//SLsnd0ldqdgnPBVr+XteqdrG4wLt/9jFsrhHFHWCU/6pkk1U\r\nIHsKlJmTtp44FArfbQ7HQSAHGVcS8KI+H9UEM9l4aoaKSRomh61X7ozUT22L\r\nGC5flDNtHfgbGGYyoz8hLEEv2yWxRX+JfL1z878D9Ihv6ziykwE4uyq8Fe/K\r\nUyHSLNYx5iT4kFnAuFtp575crkphZ6qTy7IYcDm4rjAoujvFrEZhxyMvBxwY\r\nVjYk0bqmjije3Apbn5IT61dLZA5qRBvS/bqQhIijkX74VW9ZRMCtYgxDbj9G\r\n4HwX5ZEYL1bzCflo6S0BPTMDb4E4zKez+vI//+hluXERJW+ed23AqOdALbEI\r\nOThHQxQ2S1uquABP69NOBUAgYhtf0GnIPHar932rlyS9p15EEXkNGNo8vkbI\r\npPUaV8nxOplHLwtWLD/6roJXc8sr7YUIYkk8yCn1BKS0ePK2bMlXoiQDKgGy\r\nZstzWEjaojqjdiUEJ0AnQlM3/+i3UUQI+/tWpC7A7jXt+sKPt8i00yg+YILc\r\n58PIYzoo1QGX/q6F8+VM5oIbzIKWh3OuEngz7N74tuF/srqOVjADoBuzNTZz\r\nRnkRkbWk6arbgIOlQXiSPdNZKogx+kv5IwCWXPXDWiFI2/25L0Xi53wnMYQs\r\n6jraFePPPqaS29UBv6Ne3nUaLv3tXW/ijS4=\r\n=g+vH\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"efaf809a05d56ecb3b7d6a9652aa0fd2ddb2dc9c","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"9.2.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_16.0.2_1672871002304_0.9305372945254424","host":"s3://npm-registry-packages"}},"16.1.0":{"name":"ngx-toastr","version":"16.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@16.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"cd0264e8f48cddc802dafb6e8413a10465df6b01","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-16.1.0.tgz","fileCount":39,"integrity":"sha512-jMnkauggRE8264vR4NtOgK3QI7zmufO3Z7wrkg3j7A7ZVpkCKDXgklsAZM9aiHxDyttM2K+Na6a6L004uPeRKA==","signatures":[{"sig":"MEYCIQDWyRAJ5gz434ov02hIOW+dYcpK9d7WpgP2rhdLJ7v+nQIhAJx2A14UHsk/FJ0jmxwmfKVlIm9HUZEBD3BtpVNvFJgG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":479414,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkAWb7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo9eRAAo7UYXfQRb3kRiX/bEm/yhST4uNZ8h7J0r8NrE0C3beGHoxgI\r\nwliyvFBDc3gUzENX5WrtafbsB78HdQbf/zyWEnIq9EdCkYcITQN8T0jztOGn\r\n8Wzu592eHWJxuoU/RZ1VNg3ss4qlqiUpH5sIpp2RGJogKVP1yZfqZsNb8HC1\r\np1/lrmTnydlzwi3D7c+i4r8FuD1vO6UNmPuxjJQ0M6Un4hBonca2GNJHKcQt\r\np+gfu7iXST+lc+KoZcoB60fdJrO5jnqyRIcWhkLctMY2yEXIhtER9pr51IBy\r\nv9uQTW+qlt25lfDS6FKcHYMT8F/q9/gNsV2ZeD5eVe036QPD9i8+wBjlJ5ls\r\nKllXBqW6j381alZ8Ryzpj5kkkmNMMEmFiJjmzxoED5HaYg5p4JCvK9BaQGet\r\nHJmulUOudw46d9LT8wUYaMvZrP0IIOvaJyqsl4Ye9ACpzik4oJqaFr/SQci6\r\ncyzJwiq12xFFmcuITnOZ0yCWX41UE16dGU3reb4wnl4433yCsI2FYlJwGRiq\r\nNQhnsiM6rNVMln18+IOS5zc50mxEodNdj0nUhV2YRMshsthmXa4gbWhzGI4N\r\ntmAmcTUjTj3GZ26jT5i0BWxhBzGsLBPPPtI9jkNIemPTq85kzP5ZCSAxELeQ\r\nLZax6zaYgrNlJx60hFJ1HOBFjLqRgBz3IqU=\r\n=kE4v\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"815e1ddd8ceb4f42d53a49f8bf2b1e3fe7136e70","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"9.5.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"19.7.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_16.1.0_1677813499485_0.08090040823575473","host":"s3://npm-registry-packages"}},"16.1.1":{"name":"ngx-toastr","version":"16.1.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@16.1.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"ef7907db71523126b7d10b32dff3e142bb650ac4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-16.1.1.tgz","fileCount":39,"integrity":"sha512-obUGE5RYC/62/AYiZvZcVw/mMBSI0KGJH7VhdiQQ2jsysp05m8nndI1shGhm6X1t/6/z/qj7NFpvSuUyhdweNg==","signatures":[{"sig":"MEYCIQDbcYCzMnV+CvVrrOf9tAbskcu0lzMJFAwBufqtLEyRAwIhAOpMQjqD9TcTIMcsBSI+toZFS7m8F5zYL20r9hirxOj4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":479399,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOZMJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJ6A/+OZ+mc7dNu3u2vKH8rbolynEcApHv8Qp2WHubbl0rtFwFtzL1\r\nrWSEzbppo61oSR3wIKa3fGyRu5DeXtRYuBG1Hlk2gSPVIEl1O5nwXjVK4JR3\r\nqDF6H1doU20yimHets2N0BxDEifcjg5Vcolxo/ClGCxa39zXMM6CiCq8+TMU\r\nmMBAr4mw5NN9ru/1kLz2+7fUu3tuzUN336ERMFLiE8Cevd3wx61jNKsODY6V\r\n47vAPYqcwAQxZbAUK1PDEaDx9QvYWDOOITRL0Vgkh8famKuarg6yNL99EpJM\r\nCXzjOVbWcc2LsIie4vNUgHg/ak+sPCHSoX/CJ624ls9c6bsZEvQ8kkOUbu7F\r\n+ue9dcWPRykfgyz/fUnDNtbzrew+F2MJOkwIsbRawTE1KDr1VGahSrtn1eJB\r\npmtGSTyOi2AeMlV8AyfiwSUddJ/E43uCiEDdL+eOrH6m7Hg2OFF+o9TdZ6ZU\r\nVpPOmb25UQ7tHY8sFG23lxrWErstIsnZlL/2PpGRHqL5QGGJZBqbJDTHRu7e\r\n+xiMvzpseYScTibjvDbrNvUeB+ht109ihzuxBqQBp+fRjp6t005Xq81ClUa4\r\nY58afKgmVyIKCmygbhfYl8srPPcR4K+bcaV1vWbxV7q+PA93yJM0ygYObV1U\r\nLb5xM8a6lWSOzZ2pKWgUciKGZpZ6/7piNic=\r\n=qudA\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"ca20a917a4bf34087b3ea7f2b71b1695e480b422","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","ng-update":{},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"9.6.3","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"19.9.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_16.1.1_1681494793362_0.19160999541404","host":"s3://npm-registry-packages"}},"16.2.0":{"name":"ngx-toastr","version":"16.2.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@16.2.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"f138c31c3b6960a1059aeea7133a44e4db95db79","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-16.2.0.tgz","fileCount":41,"integrity":"sha512-7X6UhOKiaUeC2eTOsUqctZH0ZWKG8VlzDxWJhdEF1N3kPod46SU/Vn2l0hbt8EDwTjxHKfKyevU2idkYDoZYog==","signatures":[{"sig":"MEUCIFXdapJ77aHN5uRvwjdMLjcOuQMuNmcXICIcL8ME4l2zAiEAx6RoJSypkcJ+DjwhsiOpR5IFdn43HD52wMt/Fvzy/HE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":477501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkU0b5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmozEA/+LnR9SGVKn/aQ0hjW9thBK7KWOkEJA1tDlyISwUV6kIagFfbH\r\nk3XBcDooaKnRxwP/ip8vtIfvif+y6OtCJ3a4d37RQfT2YNTMFkeZM+1yiSbU\r\nO347n5RHEFNLS8AKhxZhlDDRyfwp9Lob8Nwyd200QHVsr3kDW6g6HQSIXBw5\r\nwryMrMB+AbhfQl4ewdqsJOO5RW2pSn1JlGvd8TcIyQqZ6AMlbXHskLx+ENmo\r\ntEyPPw9SeX6kUGfqVlO0b5UwaX2FaK/EhrA2O9iqIRM/VJ5YKUbzyA19hnms\r\n1cJxiKNfh+EZfAgNHiyBvz8QHV6e9FKnJKIKa6vd6XI0yHMTLiDfGhASHiCU\r\ncwdoRDUCpXd96fWnwpWzZQWvJaH8BhhYnYQJiZUAP1AhdPbac58eEQy2b/XV\r\n6QRFmhWHm5OSOVDOCISbjO03GvT4acRDZ1LDI4jYIWaCnIExlb+qv/OzqGbF\r\nFAeRJ6pYWRwfJQkSze6ENpQWOJP7qRYeHki2CeNRME2rOpO0WVenyJywI2Fj\r\ndCI3DK0eHMJz5SuceaNpU41J/xEu+NU4dI4fEajdgGRtQ6VKChJrVyVbGdjx\r\nr0uj5mqjLHsB6M2yuvCK4yTr8sWHQaiYk18z6O3U/kJfSLB3GG9Q8JliYKfc\r\nQKb9QRDyg9m6VtMQIp+cLLIuwMQ90cTMazY=\r\n=ypdB\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-toastr.mjs","module":"fesm2015/ngx-toastr.mjs","esm2020":"esm2020/ngx-toastr.mjs","exports":{".":{"node":"./fesm2015/ngx-toastr.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-toastr.mjs","es2020":"./fesm2020/ngx-toastr.mjs","default":"./fesm2020/ngx-toastr.mjs","esm2020":"./esm2020/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"94dba28d1abfe26525ccc74b1253b2f41f3d3698","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"fesm2015":"fesm2015/ngx-toastr.mjs","fesm2020":"fesm2020/ngx-toastr.mjs","ng-update":{},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"9.6.4","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"20.1.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=14.0.0-0","@angular/common":">=14.0.0-0","@angular/platform-browser":">=14.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_16.2.0_1683179257698_0.685206439657756","host":"s3://npm-registry-packages"}},"17.0.0":{"name":"ngx-toastr","version":"17.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@17.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"3567d75ca3fd9ed311d05870db2e25a069287a0e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-17.0.0.tgz","fileCount":39,"integrity":"sha512-cWapGIksdg7sDkkzaEEtwO9QO/pjS3Odaz1VvFL8f0wb9EEM4vZ1uvx9sHXQwpbk20gPb+kaCu4vGY9rhmeJ1w==","signatures":[{"sig":"MEQCIDy9AwEGcaoLaXuo16Bckl9AvKco/eShvYpm3dGL789HAiB8XEsuzpSbc5BvDOfuHCKnAaauKxJIf6MmEoILSmdXCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":353796},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"esm":"./esm2022/ngx-toastr.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-toastr.mjs","esm2022":"./esm2022/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"38a641dcfbfaf4eaf9458473e214d6345d8adc87","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"ng-update":{},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"9.6.4","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"20.1.0","dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=16.0.0-0","@angular/common":">=16.0.0-0","@angular/platform-browser":">=16.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_17.0.0_1684108454761_0.43602551482816576","host":"s3://npm-registry-packages"}},"17.0.1":{"name":"ngx-toastr","version":"17.0.1","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@17.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"98d9e0a39fb4ef426f7c2088ef4a4c94d917672e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-17.0.1.tgz","fileCount":39,"integrity":"sha512-Y1E/BftoLaJIu2DywvPZZnusFfWCNneXmbiH6b8t8ZRnrOjtfeC50LL2VrmDFucphT47LlTWyNn3vzLmmkpasQ==","signatures":[{"sig":"MEYCIQCP9U8Xe6YEv234xBE31LirWcYliCbeD4cM4a5sCBrLbwIhANhwdyxqXhJmXcwMOB3eKtKMZVCvJZi05kH0poL3X0wr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@17.0.1","provenance":{"predicateType":"https://slsa.dev/provenance/v0.2"}},"unpackedSize":353928},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"esm":"./esm2022/ngx-toastr.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-toastr.mjs","esm2022":"./esm2022/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"fb2720e9e545fd0c8826b2a72c041cb008972635","release":{"branches":["master"]},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"ng-update":{},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"9.6.4","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"20.1.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=16.0.0-0","@angular/common":">=16.0.0-0","@angular/platform-browser":">=16.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_17.0.1_1684108670410_0.522423187532167","host":"s3://npm-registry-packages"}},"17.0.2":{"name":"ngx-toastr","version":"17.0.2","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@17.0.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"fb7bb4fc22e5425bbacde0856165d30b7900adec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-17.0.2.tgz","fileCount":39,"integrity":"sha512-KehiPx6bkbiUyJbabf0ZA04+ASumS8r/y4wPsUOMI9OrBvBcfq27UQmWuQKoVR8E+9y4Pq7eZkSg2kvxNvpxTA==","signatures":[{"sig":"MEYCIQCVQvhnOonTYCE/xf0KQSNkrdvoAa1+rvIJKY513SJxFgIhAOiNhBKOqIhRrLCxPI7oZMJbrl4OiPcyzAobyQgqbEB7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@17.0.2","provenance":{"predicateType":"https://slsa.dev/provenance/v0.2"}},"unpackedSize":354348},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"esm":"./esm2022/ngx-toastr.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-toastr.mjs","esm2022":"./esm2022/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"e3e4b74b4ee1af5c68dca7435f01a1a4b25868f4","release":{"branches":["master"]},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"ng-update":{},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"9.6.4","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"20.1.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=16.0.0-0","@angular/common":">=16.0.0-0","@angular/platform-browser":">=16.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_17.0.2_1684168348757_0.7017353651444387","host":"s3://npm-registry-packages"}},"18.0.0":{"name":"ngx-toastr","version":"18.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@18.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"0016e897108817eb6b2ee16ff130b4c42fc214b0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-18.0.0.tgz","fileCount":39,"integrity":"sha512-jZ3rOG6kygl8ittY8OltIMSo47P1VStuS01igm3MZXK6InJwHVvxU7wDHI/HGMlXSyNvWncyOuFHnnMEAifsew==","signatures":[{"sig":"MEUCIQCtb/x3q7zt/PibSpv1JkRYUh3+L59rprdvvexz4FqNnQIgadHk1SNCcvf9y1qBCMIK865AQ5d7gubc7EtwYsdgSC4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@18.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":353989},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"esm":"./esm2022/ngx-toastr.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-toastr.mjs","esm2022":"./esm2022/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"3d8ef1061a06811eb233152283103aa2454e09e3","release":{"branches":["master"]},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"ng-update":{},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"10.1.0","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"20.9.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=16.0.0-0","@angular/common":">=16.0.0-0","@angular/platform-browser":">=16.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_18.0.0_1700108673509_0.587824933039625","host":"s3://npm-registry-packages"}},"19.0.0":{"name":"ngx-toastr","version":"19.0.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@19.0.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"51ebb9cb8f8b2f43704d45b560f6d8997f556016","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-19.0.0.tgz","fileCount":39,"integrity":"sha512-6pTnktwwWD+kx342wuMOWB4+bkyX9221pAgGz3SHOJH0/MI9erLucS8PeeJDFwbUYyh75nQ6AzVtolgHxi52dQ==","signatures":[{"sig":"MEYCIQDnJ3dWW85nZDDrzRN/zOKqEIc0Ntxv83rPVzk/m0XxXAIhAIfZkQENXJAJ+vyGSgu0lPgvQFoWbBQ5iuDfQ5h9JT/l","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@19.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":358604},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"esm":"./esm2022/ngx-toastr.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-toastr.mjs","esm2022":"./esm2022/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"5461eb4ea440229353826682a7a494e036db6bab","release":{"branches":["master"]},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"ng-update":{},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"10.8.1","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"20.13.1","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=16.0.0-0","@angular/common":">=16.0.0-0","@angular/platform-browser":">=16.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_19.0.0_1717202577978_0.7055742784876207","host":"s3://npm-registry-packages"}},"19.1.0":{"name":"ngx-toastr","version":"19.1.0","keywords":["ng2","ngx","ngx-toastr","toastr-ng2","angular","angular2","typescript","alert","toast","toastr","angular toastr","notifications"],"license":"MIT","_id":"ngx-toastr@19.1.0","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://ngx-toastr.vercel.app","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"c3a676e2b7c2e186e192e75ef272b4caaa778417","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-19.1.0.tgz","fileCount":39,"integrity":"sha512-Qa7Kg7QzGKNtp1v04hu3poPKKx8BGBD/Onkhm6CdH5F0vSMdq+BdR/f8DTpZnGFksW891tAFufpiWb9UZX+3vg==","signatures":[{"sig":"MEQCICsdYNtwvhjb8rPMhqQmz2eXJ3AspBr9nJ+06z1C4cuAAiAHnIWBCT4odubeRFnkEb9+szSB77ErHUGRnzmmxvcV0Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@19.1.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":358667},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"esm":"./esm2022/ngx-toastr.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-toastr.mjs","esm2022":"./esm2022/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"8a6965bfc6163c3fa9fb54d621dc31ff2de283ad","release":{"branches":["master"]},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"scttcper@gmail.com"},"ng-update":{},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"10.9.3","description":"Toastr for Angular","directories":{},"sideEffects":false,"_nodeVersion":"20.19.5","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":">=16.0.0-0","@angular/common":">=16.0.0-0","@angular/platform-browser":">=16.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_19.1.0_1758003590834_0.18103672490269962","host":"s3://npm-registry-packages-npm-production"}},"20.0.1":{"name":"ngx-toastr","version":"20.0.1","_id":"ngx-toastr@20.0.1","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr#readme","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"28bc7175b0a48382f4f14ad727e33aa3d30c6ad4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-20.0.1.tgz","fileCount":5,"integrity":"sha512-kQ2giBxu2almM6bdxXnr7vClnLApJ6Ns2EYgmFaVGYjW+G/H2IbTz0F54V9SI5h0gDDOsRDayB2OOfQl2D/zuA==","signatures":[{"sig":"MEUCIQCeeFnqbL3gpT8ZQuCda5yilBMEYin4EZ40n0yJbjMkFQIgRNIKFYBRLb1pDdsatmlVIH4j4uEhDsQ98TpVjYJIg7w=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@20.0.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":131811},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"types":"./types/ngx-toastr.d.ts","default":"./fesm2022/ngx-toastr.mjs"},"./toastr":{"default":"./src/lib/toastr.css"},"./toastr-old":{"default":"./src/lib/toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./src/lib/toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./src/lib/toastr-bs5-alert.scss"}},"gitHead":"852314b9f350e364b8f78efa2e9d592aa3dac434","typings":"types/ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:f09fa74a-67d1-4a1e-9d78-089664f9e5b2"}},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"11.7.0","description":"This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 21.0.0.","directories":{},"sideEffects":false,"_nodeVersion":"24.12.0","dependencies":{"tslib":"^2.8.1"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^7.8.2","@angular/core":"^21.0.0","@angular/common":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_20.0.1_1768851295572_0.23286014219343043","host":"s3://npm-registry-packages-npm-production"}},"20.0.2":{"name":"ngx-toastr","version":"20.0.2","_id":"ngx-toastr@20.0.2","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr#readme","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"ce66994a5fcabd4dd37adcc0aebe3e7426bd75b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-20.0.2.tgz","fileCount":6,"integrity":"sha512-dyY6RYg2U9GSzWA+9LMlN1EcDFAJnPVX45tgR1IWJ+6Bldi9jEvDLr2xkHgKN2uVgZXNW32contkw/XA1viDtA==","signatures":[{"sig":"MEUCIG/5u3F6bH3lrJXma7zn1Fcr4jnYinxQJ5Nx3MIWfXggAiEA0b/cDcyhMyVi0MvuqpvYnrB2njU3IhhfC6f15/lOVXQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@20.0.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":145478},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"types":"./types/ngx-toastr.d.ts","default":"./fesm2022/ngx-toastr.mjs"},"./toastr":{"default":"./src/lib/toastr.css"},"./toastr-old":{"default":"./src/lib/toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./src/lib/toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./src/lib/toastr-bs5-alert.scss"}},"gitHead":"61a43c531bfcc7a2d8136db45d6d6bfa79a11756","typings":"types/ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:f09fa74a-67d1-4a1e-9d78-089664f9e5b2"}},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"11.7.0","description":"<div align=\"center\">   <img src=\"https://raw.githubusercontent.com/scttcper/ngx-toastr/master/misc/documentation-assets/ngx-toastr-example.png\" width=\"300\" alt=\"Angular Toastr\">   <br>   <h1>ngx-toastr</h1>   <br>   <a href=\"https://www.npmjs.org/package/","directories":{},"sideEffects":false,"_nodeVersion":"24.12.0","dependencies":{"tslib":"^2.8.1"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^7.8.2","@angular/core":"^21.0.0","@angular/common":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_20.0.2_1768852324353_0.08924779026078555","host":"s3://npm-registry-packages-npm-production"}},"20.0.3":{"name":"ngx-toastr","version":"20.0.3","_id":"ngx-toastr@20.0.3","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr#readme","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"19937a06fab7c269acee2852d50d007771162c87","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-20.0.3.tgz","fileCount":10,"integrity":"sha512-ffoh8X31ONYMeB9ggz+VOz8LcsSUEfx0BDgZ2y15jeQjp/l0h6SjVVSbmvBFAalhDRFurhJlT7NiqBSYPxT1cg==","signatures":[{"sig":"MEUCIE9KPG6H77JodgKvReKPATa7S353YgbHu9hzRACaO6hAAiEAssoNQMd73G8iESQd2nsK5TL2NfPgyVQsltneEZ0MDto=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@20.0.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":174506},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"types":"./types/ngx-toastr.d.ts","default":"./fesm2022/ngx-toastr.mjs"},"./toastr":{"default":"./src/lib/toastr.css"},"./toastr-old":{"default":"./src/lib/toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./src/lib/toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./src/lib/toastr-bs5-alert.scss"}},"gitHead":"8ab0794eb8b87c7709fad4d4e3ad6f30569ad13d","typings":"types/ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:f09fa74a-67d1-4a1e-9d78-089664f9e5b2"}},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"11.7.0","description":"<div align=\"center\">   <img src=\"https://raw.githubusercontent.com/scttcper/ngx-toastr/master/misc/documentation-assets/ngx-toastr-example.png\" width=\"300\" alt=\"Angular Toastr\">   <br>   <h1>ngx-toastr</h1>   <br>   <a href=\"https://www.npmjs.org/package/","directories":{},"sideEffects":false,"_nodeVersion":"24.12.0","dependencies":{"tslib":"^2.8.1"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^7.8.2","@angular/core":"^21.0.0","@angular/common":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_20.0.3_1768929955946_0.8114921240936184","host":"s3://npm-registry-packages-npm-production"}},"20.0.4":{"name":"ngx-toastr","version":"20.0.4","_id":"ngx-toastr@20.0.4","maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"homepage":"https://github.com/scttcper/ngx-toastr#readme","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"dist":{"shasum":"5a4d6c5087718a3d82b054312f9d1e1824509d4b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-20.0.4.tgz","fileCount":11,"integrity":"sha512-4k+X15/+Xuo5xwfXhaCw2RhxVd2ZCtj8FHTh5cdF72xIWpgkW0YtNKn5+23e3OR929x84ZTGOX+EzC81Qa+TVg==","signatures":[{"sig":"MEUCIGXc1eEpr9M8m1qumSR6PGF4fp0OWeZTv/ioSbsuvOIOAiEAwn0mGFKsXBlO0cVSzsfQRta1Y05YqnWchC14do2jig8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@20.0.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":174793},"module":"fesm2022/ngx-toastr.mjs","exports":{".":{"types":"./types/ngx-toastr.d.ts","default":"./fesm2022/ngx-toastr.mjs"},"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./package.json":{"default":"./package.json"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"}},"gitHead":"cca0b4a56f7de8eef44fcc201edf5d5ae8f3a249","typings":"types/ngx-toastr.d.ts","_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:f09fa74a-67d1-4a1e-9d78-089664f9e5b2"}},"repository":{"url":"git+https://github.com/scttcper/ngx-toastr.git","type":"git"},"_npmVersion":"11.8.0","description":"<div align=\"center\">   <img src=\"https://raw.githubusercontent.com/scttcper/ngx-toastr/master/misc/documentation-assets/ngx-toastr-example.png\" width=\"300\" alt=\"Angular Toastr\">   <br>   <h1>ngx-toastr</h1>   <br>   <a href=\"https://www.npmjs.org/package/","directories":{},"sideEffects":false,"_nodeVersion":"24.12.0","dependencies":{"tslib":"^2.8.1"},"publishConfig":{"access":"public","provenance":true},"_hasShrinkwrap":false,"peerDependencies":{"rxjs":"^7.8.2","@angular/core":"^21.0.0","@angular/common":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-toastr_20.0.4_1769104729619_0.8408372633413221","host":"s3://npm-registry-packages-npm-production"}},"20.0.5":{"name":"ngx-toastr","version":"20.0.5","license":"MIT","peerDependencies":{"@angular/common":"^21.0.0","@angular/core":"^21.0.0","rxjs":"^7.8.2"},"dependencies":{"tslib":"^2.8.1"},"publishConfig":{"access":"public","provenance":true},"repository":{"type":"git","url":"git+https://github.com/scttcper/ngx-toastr.git"},"exports":{"./toastr":{"default":"./toastr.css"},"./toastr-old":{"default":"./toastr-old.css"},"./toastr-bs4-alert":{"default":"./toastr-bs4-alert.scss"},"./toastr-bs5-alert":{"default":"./toastr-bs5-alert.scss"},"./package.json":{"default":"./package.json"},".":{"types":"./types/ngx-toastr.d.ts","default":"./fesm2022/ngx-toastr.mjs"}},"sideEffects":false,"module":"fesm2022/ngx-toastr.mjs","typings":"types/ngx-toastr.d.ts","gitHead":"346ab91405fc82fb64b3a22d0a0f3523b2ff2dae","_id":"ngx-toastr@20.0.5","description":"<div align=\"center\">   <img src=\"https://raw.githubusercontent.com/scttcper/ngx-toastr/master/misc/documentation-assets/ngx-toastr-example.png\" width=\"300\" alt=\"Angular Toastr\">   <br>   <h1>ngx-toastr</h1>   <br>   <a href=\"https://www.npmjs.org/package/","bugs":{"url":"https://github.com/scttcper/ngx-toastr/issues"},"homepage":"https://github.com/scttcper/ngx-toastr#readme","_nodeVersion":"24.13.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-JcGu1Cbl+0SovPhxma72ygGeZHtpHWWKwBCyiabb+MSWYtXu/SOwEZ2HTWtZ4wcEYOOiy9tDQZgiEKWXpibpRw==","shasum":"8e7c1855f637e49a4513f74cdfc46808a3bb3084","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-toastr/-/ngx-toastr-20.0.5.tgz","fileCount":11,"unpackedSize":174813,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ngx-toastr@20.0.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIGwC4jKUjmbrPWWYhstKzUNcUI+jodp4H0VXnidbul4GAiEA2J749S1f89KJKVBdjftEaVQZnONl4zVqVgo9ejOK25o="}]},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:f09fa74a-67d1-4a1e-9d78-089664f9e5b2"}},"directories":{},"maintainers":[{"name":"anonymous","email":"scttcper@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ngx-toastr_20.0.5_1770397239161_0.5429027587924542"},"_hasShrinkwrap":false}},"name":"ngx-toastr","time":{"created":"2017-02-09T06:49:48.310Z","modified":"2026-02-06T17:00:39.637Z","4.2.0":"2017-02-09T06:49:48.310Z","4.2.1":"2017-02-09T15:28:45.209Z","4.3.0":"2017-02-21T23:38:11.376Z","5.0.0":"2017-03-02T19:57:38.675Z","5.0.1":"2017-03-11T04:25:49.445Z","5.0.2":"2017-03-11T04:26:23.759Z","4.4.0":"2017-03-14T15:51:01.767Z","4.4.1":"2017-03-14T16:52:43.963Z","5.0.3":"2017-03-24T04:28:58.453Z","5.0.5":"2017-03-24T22:15:50.188Z","5.0.6":"2017-03-30T06:41:45.805Z","5.0.7":"2017-04-16T04:21:44.843Z","5.1.0":"2017-04-29T19:01:09.563Z","5.2.0":"2017-05-02T15:29:35.750Z","5.2.1":"2017-05-04T19:27:08.524Z","5.2.2":"2017-05-24T20:19:09.066Z","5.2.3":"2017-05-26T18:45:37.769Z","5.2.4":"2017-05-31T16:35:40.384Z","5.2.5":"2017-06-17T15:35:04.703Z","5.3.0":"2017-06-30T20:42:07.912Z","5.3.1":"2017-07-20T21:43:35.142Z","6.0.0-beta.1":"2017-08-01T18:24:41.756Z","6.0.0-beta.2":"2017-08-01T18:50:42.297Z","6.0.0":"2017-08-02T20:10:55.850Z","6.0.1":"2017-08-08T22:34:59.740Z","6.1.0":"2017-08-26T06:21:42.329Z","6.1.1":"2017-08-26T15:43:21.644Z","6.1.2":"2017-08-27T01:53:40.861Z","6.1.3":"2017-09-02T23:07:30.143Z","6.1.4":"2017-09-02T23:14:08.291Z","6.1.5":"2017-09-14T16:57:30.260Z","6.2.0":"2017-09-15T20:53:27.703Z","6.2.1":"2017-09-21T05:42:39.012Z","6.3.0":"2017-09-24T20:06:01.031Z","6.4.0":"2017-10-06T16:59:00.189Z","6.5.0":"2017-10-25T16:31:31.738Z","7.0.0-beta.0":"2017-11-23T20:21:45.654Z","7.0.0-beta.1":"2017-11-29T01:07:51.749Z","7.0.0":"2017-11-29T18:09:47.042Z","7.0.1":"2017-12-01T04:18:30.799Z","7.0.2":"2017-12-01T07:04:13.049Z","6.4.1-beta.0":"2017-12-01T20:55:30.583Z","7.1.0":"2017-12-05T23:01:33.069Z","8.0.0":"2017-12-06T21:11:41.052Z","8.1.0":"2017-12-28T18:54:49.057Z","8.1.1":"2018-01-19T17:50:47.695Z","8.2.0":"2018-02-06T07:47:09.050Z","8.2.1":"2018-02-08T17:34:58.133Z","8.3.0":"2018-03-01T19:29:36.535Z","8.3.1":"2018-03-27T20:41:53.002Z","8.3.2":"2018-03-28T03:28:00.965Z","8.4.0":"2018-04-03T17:05:17.132Z","8.5.0":"2018-05-04T20:18:37.055Z","8.5.1":"2018-05-09T17:44:16.826Z","8.6.0":"2018-05-14T20:38:27.090Z","8.7.0":"2018-05-18T16:46:07.588Z","8.7.1":"2018-05-18T16:49:27.861Z","8.7.2":"2018-05-18T16:55:22.144Z","8.7.3":"2018-05-18T16:59:34.421Z","8.8.0":"2018-06-08T20:32:22.695Z","8.9.0":"2018-07-18T23:46:56.983Z","8.9.1":"2018-07-20T18:20:40.923Z","8.10.0":"2018-07-24T00:25:29.512Z","8.10.1":"2018-08-14T04:37:21.172Z","8.10.2":"2018-08-14T08:32:25.175Z","9.0.0":"2018-08-14T23:30:14.897Z","9.0.1":"2018-08-15T15:58:43.627Z","9.0.2":"2018-08-15T21:01:14.123Z","9.1.0":"2018-09-19T16:57:49.939Z","9.1.1":"2018-10-19T05:16:53.043Z","9.1.2":"2019-02-08T07:13:18.757Z","9.2.0":"2019-03-12T18:12:58.040Z","10.0.0":"2019-03-14T06:17:53.748Z","10.0.1":"2019-03-14T16:29:49.911Z","10.0.2":"2019-03-15T00:17:25.142Z","10.0.3":"2019-05-11T02:33:20.180Z","10.0.4":"2019-05-11T19:26:33.327Z","10.1.0":"2019-08-18T21:25:20.816Z","10.2.0":"2019-08-29T15:04:49.683Z","11.0.0":"2019-09-25T06:04:17.562Z","11.1.0":"2019-10-02T04:40:52.831Z","11.1.1":"2019-10-15T15:00:42.932Z","11.1.2":"2019-10-16T14:32:28.878Z","11.2.0":"2019-10-30T16:16:04.587Z","11.2.1":"2019-11-07T16:00:58.407Z","11.3.0":"2020-01-09T20:12:54.484Z","11.3.1":"2020-01-19T19:54:18.576Z","11.3.2":"2020-01-19T20:22:22.344Z","11.3.3":"2020-02-01T02:41:14.925Z","12.0.0":"2020-02-08T04:53:12.808Z","12.0.1":"2020-04-01T04:58:49.691Z","12.1.0":"2020-05-28T19:53:20.226Z","13.0.0":"2020-07-13T05:00:52.606Z","13.0.1":"2020-10-01T17:09:48.558Z","13.1.0":"2020-10-06T00:16:18.154Z","13.2.0":"2020-12-04T04:07:05.195Z","13.2.1":"2021-03-12T16:02:59.841Z","14.0.0":"2021-05-18T00:06:51.166Z","14.1.0":"2021-08-05T06:26:12.187Z","14.1.1":"2021-09-08T03:48:06.608Z","14.1.2":"2021-09-08T15:54:50.079Z","14.1.3":"2021-09-08T19:22:41.782Z","14.1.4":"2021-10-25T18:39:24.394Z","14.2.0":"2021-11-13T00:24:04.557Z","14.2.1":"2021-11-19T04:32:53.530Z","14.2.2":"2022-03-05T06:21:33.332Z","14.2.3":"2022-04-05T17:37:58.628Z","14.2.4":"2022-04-12T15:57:02.541Z","14.3.0":"2022-04-18T04:45:31.946Z","15.0.0":"2022-06-19T05:58:31.597Z","15.1.0":"2022-09-28T17:38:53.694Z","15.2.0":"2022-10-03T15:38:28.567Z","15.2.1":"2022-10-17T05:36:04.800Z","15.2.2":"2022-11-14T17:25:34.575Z","16.0.0":"2022-11-17T07:17:57.304Z","16.0.1":"2022-11-17T16:34:51.923Z","16.0.2":"2023-01-04T22:23:22.496Z","16.1.0":"2023-03-03T03:18:19.671Z","16.1.1":"2023-04-14T17:53:13.503Z","16.2.0":"2023-05-04T05:47:37.890Z","17.0.0":"2023-05-14T23:54:14.964Z","17.0.1":"2023-05-14T23:57:50.616Z","17.0.2":"2023-05-15T16:32:28.988Z","18.0.0":"2023-11-16T04:24:33.736Z","19.0.0":"2024-06-01T00:42:58.163Z","19.0.1":"2025-09-15T19:52:45.683Z","19.0.2":"2025-09-15T20:13:43.893Z","19.1.0":"2025-09-16T06:19:51.037Z","20.0.1":"2026-01-19T19:34:55.774Z","20.0.2":"2026-01-19T19:52:04.499Z","20.0.3":"2026-01-20T17:25:56.086Z","20.0.4":"2026-01-22T17:58:49.845Z","20.0.5":"2026-02-06T17:00:39.358Z"},"readmeFilename":"README.md","homepage":"https://github.com/scttcper/ngx-toastr#readme"}