{"maintainers":[{"email":"oss.sdks@auth0.com","name":"anonymous"},{"email":"devops+npm@auth0.com","name":"anonymous"},{"email":"support@auth0.com","name":"anonymous"},{"email":"jesse.le@auth0.com","name":"anonymous"},{"email":"jeff.shuman@okta.com","name":"anonymous"},{"email":"brian.s.smith@okta.com","name":"anonymous"},{"email":"sanjay.manikandhan@okta.com","name":"anonymous"},{"email":"nil.torres@okta.com","name":"anonymous"},{"email":"henry.mcardle@okta.com","name":"anonymous"},{"email":"nicolas.villalobos@okta.com","name":"anonymous"},{"email":"josecarlos.chavez@okta.com","name":"anonymous"},{"email":"tirone.pama@auth0.com","name":"anonymous"},{"email":"sergio.garciaramos@okta.com","name":"anonymous"},{"email":"roger.chan@auth0.com","name":"anonymous"},{"email":"michael.antone@auth0.com","name":"anonymous"},{"email":"lewis.byrne@okta.com","name":"anonymous"},{"email":"tarunpreet.kaur@okta.com","name":"anonymous"}],"keywords":["angular","angular 2","authentication","jwt"],"dist-tags":{"beta":"1.0.0-beta.11","latest":"5.2.0"},"author":{"name":"Sam Bellen"},"description":"JSON Web Token helper library for Angular","readme":"![Helper library for handling JWTs in Angular applications](https://cdn.auth0.com/website/sdks/banners/angular-jwt-banner.png)\n\n![Release](https://img.shields.io/github/v/release/auth0/angular2-jwt)\n[![codecov](https://codecov.io/gh/auth0/angular2-jwt/branch/main/graph/badge.svg?token=wnauXldcdE)](https://codecov.io/gh/auth0/angular2-jwt)\n![Downloads](https://img.shields.io/npm/dw/@auth0/angular-jwt)\n[![License](https://img.shields.io/:license-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT)\n[![CircleCI](https://img.shields.io/circleci/build/github/auth0/angular2-jwt)](https://circleci.com/gh/auth0/angular2-jwt)\n\n:books: [Documentation](#documentation) - :rocket: [Getting Started](#getting-started) - :computer: [API Reference](#api-reference) - :speech_balloon: [Feedback](#feedback)\n\n## Documentation\n\n- [Examples](https://github.com/auth0/angular2-jwt/blob/main/EXAMPLES.md) - code samples for common angular-jwt authentication scenario's.\n- [Docs site](https://www.auth0.com/docs) - explore our docs site and learn more about Auth0.\n\nThis library provides an `HttpInterceptor` which automatically attaches a [JSON Web Token](https://jwt.io) to `HttpClient` requests.\n\nThis library does not have any functionality for (or opinion about) implementing user authentication and retrieving JWTs to begin with. Those details will vary depending on your setup, but in most cases, you will use a regular HTTP request to authenticate your users and then save their JWTs in local storage or in a cookie if successful.\n\n## Getting started\n### Requirements\nThis project only supports the [actively supported versions of Angular as stated in the Angular documentation](https://angular.io/guide/releases#actively-supported-versions). Whilst other versions might be compatible they are not actively supported\n\n### Installation\n\n```bash\n# installation with npm\nnpm install @auth0/angular-jwt\n\n# installation with yarn\nyarn add @auth0/angular-jwt\n```\n\n## Configure the SDK\n\nImport the `JwtModule` module and add it to your imports list. Call the `forRoot` method and provide a `tokenGetter` function. You must also add any domains to the `allowedDomains`, that you want to make requests to by specifying an `allowedDomains` array.\n\nBe sure to import the `HttpClientModule` as well.\n\n```ts\nimport { JwtModule } from \"@auth0/angular-jwt\";\nimport { HttpClientModule } from \"@angular/common/http\";\n\nexport function tokenGetter() {\n  return localStorage.getItem(\"access_token\");\n}\n\n@NgModule({\n  bootstrap: [AppComponent],\n  imports: [\n    // ...\n    HttpClientModule,\n    JwtModule.forRoot({\n      config: {\n        tokenGetter: tokenGetter,\n        allowedDomains: [\"example.com\"],\n        disallowedRoutes: [\"http://example.com/examplebadroute/\"],\n      },\n    }),\n  ],\n})\nexport class AppModule {}\n```\n\nAny requests sent using Angular's `HttpClient` will automatically have a token attached as an `Authorization` header.\n\n```ts\nimport { HttpClient } from \"@angular/common/http\";\n\nexport class AppComponent {\n  constructor(public http: HttpClient) {}\n\n  ping() {\n    this.http.get(\"http://example.com/api/things\").subscribe(\n      (data) => console.log(data),\n      (err) => console.log(err)\n    );\n  }\n}\n```\n\n## Using with Standalone Components\nIf you are using `bootstrapApplication` to bootstrap your application using a standalone component, you will need a slightly different way to integrate our SDK:\n\n```ts\nimport { JwtModule } from \"@auth0/angular-jwt\";\nimport { provideHttpClient, withInterceptorsFromDi } from \"@angular/common/http\";\n\nexport function tokenGetter() {\n  return localStorage.getItem(\"access_token\");\n}\n\nbootstrapApplication(AppComponent, {\n    providers: [\n        // ...\n        importProvidersFrom(\n            JwtModule.forRoot({\n                config: {\n                    tokenGetter: tokenGetter,\n                    allowedDomains: [\"example.com\"],\n                    disallowedRoutes: [\"http://example.com/examplebadroute/\"],\n                },\n            }),\n        ),\n        provideHttpClient(\n            withInterceptorsFromDi()\n        ),\n    ],\n});\n```\nAs you can see, the differences are that:\n- The SDK's module is included trough `importProvidersFrom`.\n- In order to use the SDK's interceptor, `provideHttpClient` needs to be called with `withInterceptorsFromDi`.\n\n\n## API reference\nRead [our API reference](https://github.com/auth0/angular2-jwt/blob/main/API.md) to get a better understanding on how to use this SDK.\n\n## Feedback\n\n### Contributing\n\nWe appreciate feedback and contribution to this repo! Before you get started, please see the following:\n\n- [Auth0's general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)\n- [Auth0's code of conduct guidelines](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)\n- [This repo's contribution guide](https://github.com/auth0/angular2-jwt/blob/main/CONTRIBUTING.md)\n### Raise an issue\n\nTo provide feedback or report a bug, please [raise an issue on our issue tracker](https://github.com/auth0/angular2-jwt/issues).\n\n### Vulnerability Reporting\n\nPlease do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/responsible-disclosure-policy) details the procedure for disclosing security issues.\n\n---\n\n<p align=\"center\">\n  <picture>\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://cdn.auth0.com/website/sdks/logos/auth0_light_mode.png\"   width=\"150\">\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cdn.auth0.com/website/sdks/logos/auth0_dark_mode.png\" width=\"150\">\n    <img alt=\"Auth0 Logo\" src=\"https://cdn.auth0.com/website/sdks/logos/auth0_light_mode.png\" width=\"150\">\n  </picture>\n</p>\n<p align=\"center\">Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <a href=\"https://auth0.com/why-auth0\">Why Auth0?</a></p>\n<p align=\"center\">\nThis project is licensed under the MIT license. See the <a href=\"https://github.com/auth0/angular2-jwt/blob/main/LICENSE\"> LICENSE</a> file for more info.</p>\n","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"users":{"maxisam":true,"alexsvt2":true,"allout58":true},"bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"license":"MIT","versions":{"1.0.0-beta.1":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.1","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.1","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"89b463559cb34286ff032287eb4310267ff88008","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.1.tgz","integrity":"sha512-gnY6LsqzGlyRL7f5YPQ0UJsEnh52yldTgcnOuL5MACCWvWdEYEEL1eDlXA5mUBz5n1JqPjThhztHwjCWfidVPw==","signatures":[{"sig":"MEQCIBhDEeXfOp/vXDO1FWoBDopmebuMuIg+dkvTD9dhnGbSAiBXkNqjv2WVR9PfVVwQ8jTIgyGJnqWd/YCkfmFADiuhAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"89b463559cb34286ff032287eb4310267ff88008","gitHead":"d1f6776bb774da15ae1abfe1444122b4cefb5ebc","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.1.tgz_1500504464783_0.27839589654468","host":"s3://npm-registry-packages"}},"1.0.0-beta.2":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.2","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.2","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"c56b1f872d9453539883cf581825d4e2d1fe33b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.2.tgz","integrity":"sha512-Js1l8waRNiG5f5DPFSAtNf/MxpN7qi6/JVckb2hjrNCh729zuXDA1bzqLqdGUiE/NM0zrZCbZ4Kfmfn6ozd/0Q==","signatures":[{"sig":"MEUCIQD+RN+4SM5N+kOlxzzfKN5exM14BZd/dnB9IpC4vUwaBAIgT269WyzR0St5koGwKDRXx0BV3DJtFjRuEncBsgnxshE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"c56b1f872d9453539883cf581825d4e2d1fe33b8","gitHead":"018ce87fc221dd86d41187b81fd749c9bcf9b493","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.2.tgz_1500505491522_0.24485784396529198","host":"s3://npm-registry-packages"}},"1.0.0-beta.3":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.3","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.3","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"7ab61e557171c9c5eb5713ad98f5955c6e48dcac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.3.tgz","integrity":"sha512-nU+EGdyg137qrkYvydQ7Cz8wLSyYMI9k1W19NnZeK/Oiq5kZldF7m/o8F21WngpcRYg7SM9AgF/p/UrERwtecg==","signatures":[{"sig":"MEQCIDqzaP5h6rqfXL4bbCf0TmAECTuaS+BNCE/iX56VA0EKAiBLRlxzFaGqy7lh9vDfbHEiQetbwure6E2Bbb44D7/oIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"7ab61e557171c9c5eb5713ad98f5955c6e48dcac","gitHead":"675e7f1f1c1ed0f1f1ecc94eb210e955b3f63cf9","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.3.tgz_1500910904201_0.5509103108197451","host":"s3://npm-registry-packages"}},"1.0.0-beta.4":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.4","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.4","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"1b4b28296c299db377d6b3966f24c233e49563ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.4.tgz","integrity":"sha512-ILdsk4myP4VSKHamN4zg5Do99mVje7xEZEgeo0QKJwLCE+leYHjDSrwh3b19x59KhNlvpWZzQTdZ3ND/Tr2ezw==","signatures":[{"sig":"MEYCIQClWwvDihFIZFANWwSwDQGxYAt+7l0ZMad/wo6kSZJKPAIhAMfir1/FU/DJXzGhRBpW8ImdMikfX+tyTp742n+SuzT4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"1b4b28296c299db377d6b3966f24c233e49563ae","gitHead":"5b4c179b55eaf08aa6a7f55c1cbfc16a66b5c43d","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.4.tgz_1501005708700_0.8293610149994493","host":"s3://npm-registry-packages"}},"1.0.0-beta.5":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.5","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.5","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"02d6b49afa00d0dc5742ddca62160eb526a2591c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.5.tgz","integrity":"sha512-lTgZwtRDJAUbmy5iB9KhGkxFR8YhI4YwSY4+gZEyoAvkrc1O5DhfiiitnCMVQ94UM9s/VvquNwh+PW03rXDIOA==","signatures":[{"sig":"MEYCIQCsqQO87HN7N3hagcaeIM9MknB9sNxFwo+wzqiwLkSvggIhALQvCqhd4tthajB/cj2MXZwbFXaeXEfQYb4SP84Ulnud","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"02d6b49afa00d0dc5742ddca62160eb526a2591c","gitHead":"e0631c302d0c15325048cfd2564abab82067549d","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.5.tgz_1501098495635_0.3587138697039336","host":"s3://npm-registry-packages"}},"1.0.0-beta.6":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.6","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.6","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"490e12d6d0588c7a58d366082a1e6722e5cf2f2d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.6.tgz","integrity":"sha512-avYvKI72i7bDII8lko8kXXaxdb7Vob63G5NgFYCkk6a97KhF+Z8YqaykH/xZhijUi5KyDDF+0Lazza63ngcCAA==","signatures":[{"sig":"MEUCIAC0VMEAiBzhJXJXyhjSC5DHeRAZkLJGRlLWQXkQSspDAiEA2byImJ4hwtiS6vnNLojfcrE08Bihm6a9GarFAJkRf54=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"490e12d6d0588c7a58d366082a1e6722e5cf2f2d","gitHead":"586bd886fd5e972e9e0a375062ad47b3e79739a6","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.6.tgz_1501256821388_0.8619676257949322","host":"s3://npm-registry-packages"}},"1.0.0-beta.7":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.7","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.7","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"4cd523e0868729f080e57907a07f787efcd13d37","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.7.tgz","integrity":"sha512-MG0QYgzHbui5l56vH/2HqItZ5QdfCJlyNLBQDT70KWLfFepeYpGBWO2I2lCTu1n4Ws5z0QFvgKAw7YpsDA57Mw==","signatures":[{"sig":"MEUCIQDpmcbaYyCdz2znwg4ZPV6HrN1jS+XFCwVH8HdGcv/2RgIgL5whwM8PFS6cnFe7w7QFNNevtWhUsjy9wQcBwkIF2cc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"4cd523e0868729f080e57907a07f787efcd13d37","gitHead":"25fb3f4ae18118b2cd3ea5f778fd6ade1d178a17","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.7.tgz_1501511279106_0.4949499140493572","host":"s3://npm-registry-packages"}},"1.0.0-beta.8":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.8","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.8","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"92ade26726c86c9551ca13694a38817e85aaf98e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.8.tgz","integrity":"sha512-Fhm2gW/uSiKWofGcFphO89UzSqrJrqCwmbraoFBwRj9P/EaAzCX5rI83I92vP5HKtmCbOfdzCOpH94LxrpTaNQ==","signatures":[{"sig":"MEUCIQCthzW3V60jTgdGlVI3ISyVo42X2PpnEZUZawZF4YjfjQIgbjYMniMleRCo9ruM4+AfCbI81soWycCTndagbDTKRVA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"92ade26726c86c9551ca13694a38817e85aaf98e","gitHead":"6043327f5c3357869ac05de99674fa35d52a842d","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.8.tgz_1501536656954_0.5246146633289754","host":"s3://npm-registry-packages"}},"1.0.0-beta.9":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.9","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.9","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"65022c349edc93dec3312f933b955c719e862a62","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.9.tgz","integrity":"sha512-Wb6x0Mtci21KWGwt6oWZzGKmFR0FC302UalehUNOV7fKbMF3kSRZTJwxM1+xu8pRC7dg6195F01h28DzOied6g==","signatures":[{"sig":"MEUCIQDjJpyP+ByDyx+zDxfBCM2EPzUlYNmCdra0BrPzsLf7IQIgDDLVzJInXeNePeKHFFQ7+H57d9cGeIzUGghcrZW7A0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","_from":".","module":"index.js","_shasum":"65022c349edc93dec3312f933b955c719e862a62","gitHead":"b2cc8e56e03f52175d321cafee4195484da26b44","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"4.6.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"6.10.3","devDependencies":{"rxjs":"5.4.0","rimraf":"2.6.1","tslint":"5.3.2","core-js":"2.4.1","webpack":"3.1.0","zone.js":"0.8.11","ts-helpers":"1.1.2","typescript":"2.3.3","@types/node":"7.0.22","jasmine-core":"2.6.2","loader-utils":"1.1.0","@angular/core":"^4.3.0","@angular/http":"^4.3.0","tslint-loader":"3.5.3","@types/jasmine":"2.5.47","@angular/common":"^4.3.0","@angular/router":"^4.3.0","@types/hammerjs":"2.0.34","reflect-metadata":"0.1.10","semantic-release":"6.3.6","@angular/compiler":"^4.3.0","source-map-loader":"0.2.1","@angular/animations":"^4.3.0","clean-webpack-plugin":"0.1.16","@angular/compiler-cli":"^4.3.0","@angular/platform-server":"^4.3.0","@angular/platform-browser":"^4.3.0","awesome-typescript-loader":"3.1.3","istanbul-instrumenter-loader":"2.0.0","@angular/platform-browser-dynamic":"^4.3.0"},"peerDependencies":{"@angular/common":">=4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.9.tgz_1501769965017_0.35971230338327587","host":"s3://npm-registry-packages"}},"1.0.0-beta.10":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.10","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.10","maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"nate.kaldor@auth0.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"sgmeyer@gmail.com"},{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"support@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"f895be18af1b3b6b27edcb6d6273765f0aa8b2f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.10.tgz","integrity":"sha512-8ilDlQvXePuOAjIlPOeJg0SRSbalNvsRtwbInjS2ND8krma4rqLv8KR5ORsxe01yc8z5vZa69m838pyhFEdPfA==","signatures":[{"sig":"MEUCIQDgib4gVAlsLNssxyBzZj1asYgz+92AribMA36scKIXFAIgPsPkHTrmvgO+6o/5kc84t1x/xGykzfv+mWKa/pgdtW4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/core.umd.js","module":"index.js","gitHead":"814888969892a7a6471755a1717c8e6797cfb840","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"5.5.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"8.4.0","devDependencies":{"rxjs":"^5.4.0","rimraf":"^2.6.1","tslint":"^5.3.2","core-js":"^2.4.1","webpack":"^3.1.0","zone.js":"^0.8.11","ts-helpers":"^1.1.2","typescript":"^2.3.3","@types/node":"^7.0.22","jasmine-core":"^2.6.2","loader-utils":"^1.1.0","@angular/core":"^4.4.6||^5.0.0","@angular/http":"^4.4.6||^5.0.0","tslint-loader":"^3.5.3","@types/jasmine":"^2.5.47","@angular/common":"^4.4.6||^5.0.0","@angular/router":"^4.4.6||^5.0.0","@types/hammerjs":"^2.0.34","reflect-metadata":"^0.1.10","semantic-release":"^6.3.6","@angular/compiler":"^4.4.6||^5.0.0","source-map-loader":"^0.2.1","@angular/animations":"^4.4.6||^5.0.0","clean-webpack-plugin":"^0.1.16","@angular/compiler-cli":"^4.4.6||^5.0.0","@angular/platform-server":"^4.4.6||^5.0.0","@angular/platform-browser":"^4.4.6||^5.0.0","awesome-typescript-loader":"^3.1.3","istanbul-instrumenter-loader":"^2.0.0","@angular/platform-browser-dynamic":"^4.4.6||^5.0.0"},"peerDependencies":{"@angular/common":"^4.4.6||^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt-1.0.0-beta.10.tgz_1517000986718_0.7078830590471625","host":"s3://npm-registry-packages"}},"1.0.0-beta.11":{"name":"@auth0/angular-jwt","version":"1.0.0-beta.11","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0-beta.11","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"me@gustavonarea.net"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"nate.kaldor@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"snow@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"mike.lee@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"2b570503387e4b2ebeb22a7fe92001d22c4d1919","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0-beta.11.tgz","fileCount":19,"integrity":"sha512-0bHApC7Am9Dof4rDn6yGvY1kdyYvRYGXj4ATjwiCgjDvuAVGGXQNss9ZIC18Vnsu+jD3f5+/z8x18pk4tDXLCA==","signatures":[{"sig":"MEUCIQCAwDxaiZP7+wCSniIiscagkGpEboZRhcBmr2t+S+E3FwIgWr53T4bo8/8hz5dDuI0byA7HTQ6vPoZMVhC0BoSoKAE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82282},"main":"bundles/core.umd.js","module":"index.js","readme":"# @auth0/angular-jwt\n\nThis library provides an `HttpInterceptor` which automatically attaches a [JSON Web Token](https://jwt.io) to `HttpClient` requests.\n\nThis library does not have any functionality for (or opinion about) implementing user authentication and retrieving JWTs to begin with. Those details will vary depending on your setup, but in most cases, you will use a regular HTTP request to authenticate your users and then save their JWTs in local storage or in a cookie if successful.\n\n> **Note:** This library can only be used with Angular 4.3 and higher because it relies on an `HttpInterceptor` from Angular's `HttpClient`. This feature is not available on lower versions.\n\n> **Note:** Internet Explorer 11 support requires a [URL polyfill](https://github.com/github/url-polyfill)\n\n## Installation\n\n```bash\n# installation with npm\nnpm install @auth0/angular-jwt\n\n# installation with yarn\nyarn add @auth0/angular-jwt\n```\n\n## Usage: Standalone\n\nIf you are only interested in the JWT Decoder, and are not interested in extended\ninjectable features, you can simply create an instance of the utility and use it\ndirectly:\n\n```ts\nimport { JwtHelperService } from '@auth0/angular-jwt';\n\nconst helper = new JwtHelperService();\n\nconst decodedToken = helper.decodeToken(myRawToken);\nconst expirationDate = helper.getTokenExpirationDate(myRawToken);\nconst isExpired = helper.isTokenExpired(myRawToken);\n```\n\n\n## Usage: Injection\n\nImport the `JwtModule` module and add it to your imports list. Call the `forRoot` method and provide a `tokenGetter` function. You must also whitelist any domains that you want to make requests to by specifying a `whitelistedDomains` array.\n\nBe sure to import the `HttpClientModule` as well.\n\n```ts\nimport { JwtModule } from '@auth0/angular-jwt';\nimport { HttpClientModule } from '@angular/common/http';\n\nexport function tokenGetter() {\n  return localStorage.getItem('access_token');\n}\n\n@NgModule({\n  bootstrap: [AppComponent],\n  imports: [\n    // ...\n    HttpClientModule,\n    JwtModule.forRoot({\n      config: {\n        tokenGetter: tokenGetter,\n        whitelistedDomains: ['localhost:3001']\n        blacklistedRoutes: ['localhost:3001/auth/']\n      }\n    })\n  ]\n})\nexport class AppModule {}\n```\n\nAny requests sent using Angular's `HttpClient` will automatically have a token attached as an `Authorization` header.\n\n```ts\nimport { HttpClient } from '@angular/common/http';\n\nexport class AppComponent {\n\n  constructor(public http: HttpClient) {}\n\n  ping() {\n    this.http.get('http://example.com/api/things')\n      .subscribe(\n        data => console.log(data),\n        err => console.log(err)\n      );\n  }\n\n}\n```\n\n## Configuration Options\n\n### `tokenGetter: function`\n\nThe `tokenGetter` is a function which returns the user's token. This function simply needs to make a retrieval call to wherever the token is stored. In many cases, the token will be stored in local storage or session storage.\n\n```ts\n// ...\nJwtModule.forRoot({\n  config: {\n    // ...\n    tokenGetter: () => {\n      return localStorage.getItem('access_token');\n    }\n  }\n})\n```\n\n### `whitelistedDomains: array`\n\nAuthenticated requests should only be sent to domains you know and trust. Many applications make requests to APIs from multiple domains, some of which are not controlled by the developer. Since there is no way to know what the API being called will do with the information contained in the request, it is best to not send the user's token any and all APIs in a blind fashion.\n\nList any domains you wish to allow authenticated requests to be sent to by specifying them in the the `whitelistedDomains` array.\n\n```ts\n// ...\nJwtModule.forRoot({\n  config: {\n    // ...\n    whitelistedDomains: ['localhost:3001', 'foo.com', 'bar.com']\n  }\n})\n```\n\n### `blacklistedRoutes: array`\n\nIf you do not want to replace the authorization headers for specific routes, list them here. This can be useful if your\ninitial auth route(s) are on a whitelisted domain and take basic auth headers.\n\n\n```ts\n// ...\nJwtModule.forRoot({\n  config: {\n    // ...\n    blacklistedRoutes: ['localhost:3001/auth/', 'foo.com/bar/']\n  }\n})\n```\n\n**Note:** If requests are sent to the same domain that is serving your Angular application, you do not need to add that domain to the `whitelistedDomains` array. However, this is only the case if you don't specify the domain in the `Http` request.\n\nFor example, the following request assumes that the domain is the same as the one serving your app. It doesn't need to be whitelisted in this case.\n\n```ts\nthis.http.get('/api/things')\n  .subscribe(...)\n```\n\nHowever, if you are serving your API at the same domain as that which is serving your Angular app **and** you are specifying that domain in `Http` requests, then it **does** need to be whitelisted.\n\n```ts\n// Both the Angular app and the API are served at\n// localhost:4200 but because that domain is specified\n// in the request, it must be whitelisted\nthis.http.get('http://localhost:4200/api/things')\n  .subscribe(...)\n```\n\n### `headerName: string`\n\nThe default header name is `Authorization`. This can be changed by specifying a custom `headerName` which is to be a string value.\n\n```ts\n// ...\nJwtModule.forRoot({\n  config: {\n    // ...\n    headerName: 'Your Header Name'\n  }\n})\n```\n\n### `authScheme: string`\n\nThe default authorization scheme is `Bearer` followed by a single space. This can be changed by specifying a custom `authScheme` which is to be a string.\n\n\n```ts\n// ...\nJwtModule.forRoot({\n  config: {\n    // ...\n    authScheme: 'Your Auth Scheme'\n  }\n})\n```\n\n### `throwNoTokenError: boolean`\n\nSetting `throwNoTokenError` to `true` will result in an error being thrown if a token cannot be retrieved with the `tokenGetter` function. Defaults to `false`.\n\n```ts\n// ...\nJwtModule.forRoot({\n  config: {\n    // ...\n    throwNoTokenError: true\n  }\n})\n```\n\n### `skipWhenExpired: boolean`\n\nBy default, the user's JWT will be sent in `HttpClient` requests even if it is expired. You may choose to not allow the token to be sent if it is expired by setting `skipWhenExpired` to true.\n\n```ts\n// ...\nJwtModule.forRoot({\n  config: {\n    // ...\n    skipWhenExpired: true\n  }\n})\n```\n\n## Using a Custom Options Factory Function\n\nIn some cases, you may need to provide a custom factory function to properly handle your configuration options. This is the case if your `tokenGetter` function relies on a service or if you are using an asynchronous storage mechanism (like Ionic's `Storage`).\n\nImport the `JWT_OPTIONS` `InjectionToken` so that you can instruct it to use your custom factory function.\n\nCreate a factory function and specify the options as you normally would if you were using `JwtModule.forRoot` directly. If you need to use a service in the function, list it as a parameter in the function and pass it in the `deps` array when you provide the function.\n\n\n```ts\nimport { JwtModule, JWT_OPTIONS } from '@auth0/angular-jwt';\nimport { TokenService } from './app.tokenservice';\n\n// ...\n\nexport function jwtOptionsFactory(tokenService) {\n  return {\n    tokenGetter: () => {\n      return tokenService.getAsyncToken();\n    }\n  }\n}\n\n// ...\n\n@NgModule({\n  // ...\n  imports: [\n    JwtModule.forRoot({\n      jwtOptionsProvider: {\n        provide: JWT_OPTIONS,\n        useFactory: jwtOptionsFactory,\n        deps: [TokenService]\n      }\n    })\n  ],\n  providers: [TokenService]\n})\n```\n\nNOTE: If a `jwtOptionsFactory` is defined, then `config` is ignored. *Both configuration alternatives can't be defined at the same time*.\n\n## Configuration for Ionic 2+\n\nThe custom factory function approach described above can be used to get a token asynchronously with Ionic's `Storage`.\n\n```ts\nimport { JwtModule, JWT_OPTIONS } from '@auth0/angular-jwt';\nimport { Storage } from '@ionic/storage';\n\nexport function jwtOptionsFactory(storage) {\n  return {\n    tokenGetter: () => {\n      return storage.get('access_token');\n    }\n  }\n}\n\n// ...\n\n@NgModule({\n  // ...\n  imports: [\n    JwtModule.forRoot({\n      jwtOptionsProvider: {\n        provide: JWT_OPTIONS,\n        useFactory: jwtOptionsFactory,\n        deps: [Storage]\n      }\n    })\n  ]\n})\n```\n\n## Configuration Options\n\n### `JwtHelperService: service`\n\nThis service contains helper functions:\n \n## isTokenExpired (old tokenNotExpired function)\n```\nimport { JwtHelperService } from '@auth0/angular-jwt';\n// ...\nconstructor(public jwtHelper: JwtHelperService) {}\n\nngOnInit() {\nconsole.log(this.jwtHelper.isTokenExpired()); // true or false\n}\n```\n \n## getTokenExpirationDate\n```\nimport { JwtHelperService } from '@auth0/angular-jwt';\n// ...\nconstructor(public jwtHelper: JwtHelperService) {}\n\nngOnInit() {\nconsole.log(this.jwtHelper.getTokenExpirationDate()); // date\n}\n```\n\n## decodeToken\n```\nimport { JwtHelperService } from '@auth0/angular-jwt';\n// ...\nconstructor(public jwtHelper: JwtHelperService) {}\n\nngOnInit() {\nconsole.log(this.jwtHelper.decodeToken(token)); // token\n}\n```\n\n## What is Auth0?\n\nAuth0 helps you to:\n\n* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.\n* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.\n* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.\n* Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.\n* Analytics of how, when and where users are logging in.\n* Pull data from other sources and add it to the user profile, through [JavaScript rules](https://docs.auth0.com/rules).\n\n## Create a free Auth0 account\n\n1. Go to [Auth0](https://auth0.com/signup) and click Sign Up.\n2. Use Google, GitHub or Microsoft Account to login.\n\n## Issue Reporting\n\nIf you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/whitehat) details the procedure for disclosing security issues.\n\n## Author\n\n[Auth0](auth0.com)\n\n## License\n\nThis project is licensed under the MIT license. See the [LICENSE](LICENSE.txt) file for more info.\n","gitHead":"c95ca367b582a2e253cef7f1559b8ef69f9b3035","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"5.5.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"8.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"rxjs":"^5.4.0","rimraf":"^2.6.1","tslint":"^5.3.2","core-js":"^2.4.1","webpack":"^3.1.0","zone.js":"^0.8.11","ts-helpers":"^1.1.2","typescript":"^2.3.3","@types/node":"^7.0.22","jasmine-core":"^2.6.2","loader-utils":"^1.1.0","@angular/core":"^4.4.6||^5.0.0","@angular/http":"^4.4.6||^5.0.0","tslint-loader":"^3.5.3","@types/jasmine":"^2.5.47","@angular/common":"^4.4.6||^5.0.0","@angular/router":"^4.4.6||^5.0.0","@types/hammerjs":"^2.0.34","reflect-metadata":"^0.1.10","semantic-release":"^6.3.6","@angular/compiler":"^4.4.6||^5.0.0","source-map-loader":"^0.2.1","@angular/animations":"^4.4.6||^5.0.0","clean-webpack-plugin":"^0.1.16","@angular/compiler-cli":"^4.4.6||^5.0.0","@angular/platform-server":"^4.4.6||^5.0.0","@angular/platform-browser":"^4.4.6||^5.0.0","awesome-typescript-loader":"^3.1.3","istanbul-instrumenter-loader":"^2.0.0","@angular/platform-browser-dynamic":"^4.4.6||^5.0.0"},"peerDependencies":{"@angular/common":"^4.4.6||^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_1.0.0-beta.11_1520709585576_0.724536484108093","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@auth0/angular-jwt","version":"1.0.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.0.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"me@gustavonarea.net"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"nate.kaldor@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"snow@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"mike.lee@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"710d24fee0c6db34b723c1e5f9ec58381c649bad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.0.0.tgz","fileCount":19,"integrity":"sha512-9GDeX05Xo5KSP5dBeuC/pzNZUiBSUx580qF7qLqDqK6/FlY/0a6g3jsparN1Do3SGMSsnjzNj85X6diABYlHmg==","signatures":[{"sig":"MEUCICSG2iUMpuMP4g8+InlX9hNPCpjeCDzzh+Nm7N3J0Z1rAiEA/KQ3ydV6irniDHMear1rT3/ExcLTbx9AcQOJpAFX5Y0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82511},"main":"bundles/core.umd.js","module":"index.js","gitHead":"44fed3b53de0da6c49e70a6124863f92c8b135ee","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"5.5.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"8.4.0","_hasShrinkwrap":false,"devDependencies":{"rxjs":"^5.4.0","rimraf":"^2.6.1","tslint":"^5.3.2","core-js":"^2.4.1","webpack":"^3.1.0","zone.js":"^0.8.11","ts-helpers":"^1.1.2","typescript":"^2.3.3","@types/node":"^7.0.22","jasmine-core":"^2.6.2","loader-utils":"^1.1.0","@angular/core":"^4.4.6||^5.0.0","@angular/http":"^4.4.6||^5.0.0","tslint-loader":"^3.5.3","@types/jasmine":"^2.5.47","@angular/common":"^4.4.6||^5.0.0","@angular/router":"^4.4.6||^5.0.0","@types/hammerjs":"^2.0.34","reflect-metadata":"^0.1.10","semantic-release":"^6.3.6","@angular/compiler":"^4.4.6||^5.0.0","source-map-loader":"^0.2.1","@angular/animations":"^4.4.6||^5.0.0","clean-webpack-plugin":"^0.1.16","@angular/compiler-cli":"^4.4.6||^5.0.0","@angular/platform-server":"^4.4.6||^5.0.0","@angular/platform-browser":"^4.4.6||^5.0.0","awesome-typescript-loader":"^3.1.3","istanbul-instrumenter-loader":"^2.0.0","@angular/platform-browser-dynamic":"^4.4.6||^5.0.0"},"peerDependencies":{"@angular/common":"^4.4.6||^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_1.0.0_1520711614505_0.891166660028786","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"@auth0/angular-jwt","version":"1.1.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.1.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"me@gustavonarea.net"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"nate.kaldor@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"snow@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"mike.lee@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"ceb6b1eed4fb29812a435da78b420ca6eac81009","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.1.0.tgz","fileCount":19,"integrity":"sha512-3sn0/MigK8d6lG/AqhJWjcMq6QKE7gpElJZN3kFE93eZymlgZwEe/HMmxlLpDWIvwisG/FVfN6K14Ej7tjJHvw==","signatures":[{"sig":"MEQCIEISvi57BW6KnhxwoiRbcftjF6RDjK1TA86owkZoU7jPAiAIYbZ5w3yzmd3kxPO4x8wll9hq4zyE3jJGWubsVeGPzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":203175},"main":"bundles/core.umd.js","module":"index.js","gitHead":"f7e99ddd8cbd0af3d159a885a5e024d214e62e7b","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"5.5.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"8.4.0","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"rxjs":"^5.4.0","rimraf":"^2.6.1","tslint":"^5.3.2","core-js":"^2.4.1","webpack":"^3.1.0","zone.js":"^0.8.11","ts-helpers":"^1.1.2","typescript":"^2.3.3","@types/node":"^7.0.22","jasmine-core":"^2.6.2","loader-utils":"^1.1.0","@angular/core":"^4.4.6||^5.0.0","@angular/http":"^4.4.6||^5.0.0","tslint-loader":"^3.5.3","@types/jasmine":"^2.5.47","@angular/common":"^4.4.6||^5.0.0","@angular/router":"^4.4.6||^5.0.0","@types/hammerjs":"^2.0.34","reflect-metadata":"^0.1.10","semantic-release":"^6.3.6","@angular/compiler":"^4.4.6||^5.0.0","source-map-loader":"^0.2.1","@angular/animations":"^4.4.6||^5.0.0","clean-webpack-plugin":"^0.1.16","@angular/compiler-cli":"^4.4.6||^5.0.0","@angular/platform-server":"^4.4.6||^5.0.0","@angular/platform-browser":"^4.4.6||^5.0.0","awesome-typescript-loader":"^3.1.3","istanbul-instrumenter-loader":"^2.0.0","@angular/platform-browser-dynamic":"^4.4.6||^5.0.0"},"peerDependencies":{"@angular/common":"^4.4.6||^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_1.1.0_1521085736029_0.9938341030301889","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"@auth0/angular-jwt","version":"1.2.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@1.2.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"me@gustavonarea.net"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"nate.kaldor@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"snow@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"mike.lee@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"pablo.cabrera.munoz@gmail.com"},{"name":"anonymous","email":"pablo.barrenechea@gmail.com"},{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"cfac04fe3f93e36ab9881d469df2c0556f2e7392","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-1.2.0.tgz","fileCount":19,"integrity":"sha512-T2t8ed4/g/w5aniVmOJ7AieTrQ9iU7urAbzRBx5OToY4UeEzzng+yP4yk114Xwoi3iV9AS4zhqMqgKcQ3vNvxA==","signatures":[{"sig":"MEUCIQCEtAzXPcm3CypUfRy6ak4WNAlU8crfxwD39irDJS/QJAIgJpBJOuLNoHJSyX8m10dKsloLN2w+5Qt0aRbZNE6bkhg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":201547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8dLKCRA9TVsSAnZWagAARlAP/3zEK93FrQpLIAwrtvGF\n3BQM4XrP4EVFarBnxr4LbrdMioxfthGyMQnIRM2qwlnwMWIWxCgkWBf/zjr8\nPb6QKQT28PhRXdI0de19D/W+B0r02M4w8TeJqmkOI3Qt1F47DNMCnu/LBG/u\nDkX9SL/kYk2AANrLiH9h/pj+3+9E2HHJGmDJn+wJkmiIv5tn7rKPmpbsMzNg\n/6qz+piVu0IrUsuqlVIhD+Ox6EUyHddOhfkh3N2cyrdvPE6Vwf4zJsakCZUj\nAOB7dZQJHTPCe93rxe0d31pBVMiu8ovsoYwCVG5nS/XGWOZBoQp8rxsP9hRp\nGb0o+aEcgsiQyRh6AD1vZLyumsYn0gyabm8FdOuX/8EY8rsQFzieO35WTJak\nKP+VVRaWeEa1aj4fVT5PEhT2HDMjwn0RXNPoyBmPdF++10TqI09BPn8koKC3\nBqyE/5x/GxS6IvlsNqn1fWOS8j7GAxgCqWPZXCtjZGP8zD8CDpNF9fwEY/FE\n/N5lduB7HD+5mq7QrDd2wvCApRgT1MHOx0LMGip15Adu7/PblWFQZAA3eIY3\nCgUjPw24DWy/hJqoGg/0DqR+s6L3/8N97iV8wh/BlcalOjny9uDNwKK7nD0L\n4YeXCloOZSqgYYyC15cxQidE23wemoK5QSxVeY+Z6/GyhU4iyRRf6vqHAnAE\nhWRD\r\n=kwlY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/core.umd.js","module":"index.js","gitHead":"338ce62b52cad52176bddc91b4242ca28423b83e","scripts":{"build":"webpack","prepublish":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"5.5.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"8.4.0","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"rxjs":"^5.4.0","rimraf":"^2.6.1","tslint":"^5.3.2","core-js":"^2.4.1","webpack":"^3.1.0","zone.js":"^0.8.11","ts-helpers":"^1.1.2","typescript":"^2.6.2","@types/node":"^7.0.22","jasmine-core":"^2.6.2","loader-utils":"^1.1.0","@angular/core":"^4.4.6||^5.0.0","@angular/http":"^4.4.6||^5.0.0","tslint-loader":"^3.5.3","@types/jasmine":"^2.5.47","@angular/common":"^4.4.6||^5.0.0","@angular/router":"^4.4.6||^5.0.0","@types/hammerjs":"^2.0.34","reflect-metadata":"^0.1.10","semantic-release":"^6.3.6","@angular/compiler":"^4.4.6||^5.0.0","source-map-loader":"^0.2.1","@angular/animations":"^4.4.6||^5.0.0","clean-webpack-plugin":"^0.1.16","@angular/compiler-cli":"^4.4.6||^5.0.0","@angular/platform-server":"^4.4.6||^5.0.0","@angular/platform-browser":"^4.4.6||^5.0.0","awesome-typescript-loader":"^3.1.3","istanbul-instrumenter-loader":"^2.0.0","@angular/platform-browser-dynamic":"^4.4.6||^5.0.0"},"peerDependencies":{"@angular/common":"^4.4.6||^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_1.2.0_1525797576546_0.7198712527961291","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@auth0/angular-jwt","version":"2.0.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@2.0.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"me@gustavonarea.net"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"nate.kaldor@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"snow@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"mike.lee@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"pablo.cabrera.munoz@gmail.com"},{"name":"anonymous","email":"pablo.barrenechea@gmail.com"},{"name":"anonymous","email":"ryanchenkie@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"c0b2861824a24fb62d9d2e1fdb03a326e8a1e203","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-2.0.0.tgz","fileCount":19,"integrity":"sha512-RVlXFpcqQ+9uCpzboU7Tm1ubaRVO2FrR5+RYuwHtTT4BXquVMEwOSbAuuaArFud/kMc00XYoGgiP1JkCfOAfpA==","signatures":[{"sig":"MEUCIQClxWhDlvcUkVwKjsa2+OvOEAUrgWvYudT9j1j1RWPFJgIgdlnHV3dpHGrdU9VdxHvXCCYgZrK9bgtEOyKlnue4UVY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":164772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa81lMCRA9TVsSAnZWagAATScQAIUD1Q94bHeA4F3Wytlz\nc9dWYxWgVWFLLxaR799PlBSsj62oFEKO9OQIa+a7UFPnRn1827LOyXnhJfLn\nPkp16jT1wkpnZJcIRC34EjmfFjTXtTQ8d/XTYZ04ryZaLcboanMD8DibRgt1\ncfraG76bD2vd6YGOx4OF4ixDDZOWDt6V7ogWCMBxbeAkkeNvrXOcurtJHOaX\nVzYNdXuXS7v4cV/YK5FZ9T5MxC7XZQHDPsUv78+AU6JPVUXqqEzY+YVbbUjM\nAimfDFlFgOZEZ3gEDpm6hXm5zqyzDar//1Du8vmP99LDdmKaG081kYYF0fgx\nQFwxMdg9Pk3aO5m3qdJ+4Y5djWC8klFqTnq67u2Uabl2ThdgnEBwckbgaP7j\na4i8u/fzU1kj7eP6g54q2vAaQNaVQce+bKgZ728L3qyB+siLkQbArm8Oltc6\nmWZ3CO1VHGH1QAaLWEPClsuCQKB82riFG53ZFeGhYDBxYuMV0lc/lnelRJbe\n+imFORPg3MIb3oJ89Ms1punITpc+pRvKzEigDsXxLFKheA9XpqmSLYjq/sFn\nIQWN1gzI5cZ0o9M/y4b2lZ9r5YH2ZtwElVu2+7qmQG/FOb7j3xv4F0QmkdeQ\nEfULwEyqJ9iTul9FGF9tP3m8WNtjulmnHWw3EMIVvlOLbASwFJ5uYBYoxEly\nBJ0A\r\n=lwL5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/core.umd.js","module":"index.js","gitHead":"36ab807efab73a10bc3f5ad1d3120228709ed780","scripts":{"build":"webpack --mode production","prepare":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"5.5.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"8.4.0","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"rxjs":"^6.1.0","rimraf":"^2.6.2","tslint":"^5.10.0","core-js":"^2.5.6","webpack":"^4.8.1","zone.js":"^0.8.26","ts-helpers":"^1.1.2","typescript":">=2.7.0 <2.8.0","@types/node":"^10.0.6","webpack-cli":"^2.1.3","jasmine-core":"^3.1.0","loader-utils":"^1.1.0","@angular/core":"^6.0.0","@angular/http":"^6.0.0","tslint-loader":"^3.6.0","@types/jasmine":"^2.8.7","@angular/common":"^6.0.0","@angular/router":"^6.0.0","@types/hammerjs":"^2.0.35","reflect-metadata":"^0.1.12","semantic-release":"^15.4.0","@angular/compiler":"^6.0.0","source-map-loader":"^0.2.3","@angular/animations":"^6.0.0","clean-webpack-plugin":"^0.1.19","@angular/compiler-cli":"^6.0.0","@angular/platform-server":"^6.0.0","@angular/platform-browser":"^6.0.0","awesome-typescript-loader":"^5.0.0","istanbul-instrumenter-loader":"^3.0.1","@angular/platform-browser-dynamic":"^6.0.0"},"peerDependencies":{"@angular/common":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_2.0.0_1525897546509_0.21687727481192565","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@auth0/angular-jwt","version":"2.1.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@2.1.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.schenkelman@gmail.com"},{"name":"anonymous","email":"fmakram1@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jaredhanson@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"hinerman@gmail.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"nate.kaldor@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"snow@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"mike.lee@auth0.com"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"pablo.cabrera.munoz@gmail.com"},{"name":"anonymous","email":"pablo.barrenechea@gmail.com"},{"name":"anonymous","email":"info@riccardococetta.co.uk"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"matiasw@gmail.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"5c90ee7d927e70cefa8db7c89a64eb67c05a912d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-2.1.0.tgz","fileCount":19,"integrity":"sha512-1KFtqswmJeM8JiniagSenpwHKTf9l+W+TmfsWV+x9SoZIShc6YmBsZDxd+oruZJL7MbJlxIJ3SQs7Yl1wraQdg==","signatures":[{"sig":"MEYCIQD5fakuPC69Rgm+/Cr0yizim8kqwXYe5duzUMF3rr5zGQIhAM/ATkJIsaoqXeVbxzg6OOxsoHZYJPlNf4MuHUonmqdZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":165253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcD/zyCRA9TVsSAnZWagAAgI4P/0y9UQhyBWHLAgoORaMy\nheZw3wGXw0ciE1u3b3gya3EZ1VCdjMhIrJiwdv2jMO0DxkAudX4BjmfUgz3G\nRSLGnLeUsXSrZVne0PrzdxFr4NxJpL37ypHJz7ctMvRDk5UxTlD5GamtzHh1\nRrR/pZQ6jSqj4Fn2Lf0pomE1jIPyuMoA3jCc+Wzo27mEqItEqsAxxZQL+Z7X\nXCQX2mjqkDKrlsMLiJsXk9m+VPfZ4IbRDtGxvUOe79sKv94FVmeSwcCitlCo\nx9WZf9p60i+AFGDfkV+RxRAq8mD17U3B4AzzuM52aLLpv46dNaOgMeu7pnzf\n0DJovyhNmuYck4ivEHjhvn2ITf9Fcw14j4UKTZBYBnTAreQgGRaFlyT7Z8R2\n7E4iXioevClLXoVBwfvFTXcaDOJrcAR4DHtJL0qhP+8n6hK4NEF3zTZ7mjzM\nqm3J6u37Jzwm3EoFbcDo2htYLVYn7LAgKXD0aIBGrq5xQ8T0nC0MpbxtuESS\n8nluVke/yIWrn9grK3AA4Q05wemccH9965yT3YdB/smouAiY5l24tBMp36MK\n98kXmV+55lI0P/JvNC2oaTb2At5c7X/qdfuPndMCvOhpDBmR7bOoTOODKFg4\ne3hvZz6Q4UoXtuwv2Z2AsNAfJO+LDZLf3mr66enfCtQHEmsnyQEfd0Hlqvk2\nl9+1\r\n=wQrX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/core.umd.js","module":"index.js","gitHead":"12a2a8fc80060a9d2699f98d11e5d2eee4af9add","scripts":{"build":"webpack --mode production","prepare":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"luis@luisrudge.net"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.4.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"8.12.0","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"rxjs":"^6.1.0","rimraf":"^2.6.2","tslint":"^5.10.0","core-js":"^2.5.6","webpack":"^4.8.1","zone.js":"^0.8.26","ts-helpers":"^1.1.2","typescript":">=2.7.0 <2.8.0","@types/node":"^10.0.6","webpack-cli":"^2.1.3","jasmine-core":"^3.1.0","loader-utils":"^1.1.0","@angular/core":"^6.0.0","@angular/http":"^6.0.0","tslint-loader":"^3.6.0","@types/jasmine":"^2.8.7","@angular/common":"^6.0.0","@angular/router":"^6.0.0","@types/hammerjs":"^2.0.35","reflect-metadata":"^0.1.12","semantic-release":"^15.4.0","@angular/compiler":"^6.0.0","source-map-loader":"^0.2.3","@angular/animations":"^6.0.0","clean-webpack-plugin":"^0.1.19","@angular/compiler-cli":"^6.0.0","@angular/platform-server":"^6.0.0","@angular/platform-browser":"^6.0.0","awesome-typescript-loader":"^5.0.0","istanbul-instrumenter-loader":"^3.0.1","@angular/platform-browser-dynamic":"^6.0.0"},"peerDependencies":{"@angular/common":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_2.1.0_1544551665892_0.6685932325899502","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@auth0/angular-jwt","version":"2.1.1","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@2.1.1","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"damieng@gmail.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.schenkelman@gmail.com"},{"name":"anonymous","email":"fmakram1@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jaredhanson@gmail.com"},{"name":"anonymous","email":"centurion.javier@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"hinerman@gmail.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"snow@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"martin@gonto.com.ar"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"pablo.cabrera.munoz@gmail.com"},{"name":"anonymous","email":"info@riccardococetta.co.uk"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"matiasw@gmail.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"cbbae7a0214bf31019c11f01487bec19215a9ae3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-2.1.1.tgz","fileCount":22,"integrity":"sha512-kgTzPafHzoEQp5T9+FQMIaFfnacPwnzlvlwhCy6OYt/2w8uC8nFrN2pNQu29YnlJxLVXI5i0jgAT57+LrWFU/w==","signatures":[{"sig":"MEUCIQCmpwVGtPBtNk7nHfwHCzrR8wQ80Kc9/tVZaNFHc7YkHAIgaTLV/wu2vNbK/ovHrj/ntjrV8weX4xuiTqkJyf/xdCY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":166588,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdG0APCRA9TVsSAnZWagAAAUIP/3I3xrm6AEKOH20YnLHu\nZ8yOMqhsgKKZs0rS6sTsN8jVjyVdaO1VJqnVxgt5fVLwf5kFudmTGix54Lma\nyy/fQfvU5IwZf3gJXao5KMqvpKBhUW7BwSwlQ6k0OpAmX1cMTjugE12aRURD\nkFnCvOZiNAobCq7Y1TIaAD/7N648XLXRRepZ+r3NNxzdf+sgSjkSlVmNeCuw\n7sjXQpteoBDAhCpGTio7gsqTcTFafuf2ZXRvJyZ4QJ6NzIB+aiLFzV0qzLkJ\nDrCFKoneZP0DXO7HGh+o2LOhWD+3PJ8y5AWiXl1CXYhAj4KrnsMg9fgntJNg\nXXYN49rJb5BC+4W57Xmp7FpW9Am4V4V4BDbPWX+bhPfX0QBYyi1X12aibaWT\nlzZFVGwByrOuEdLMiNZ8qx5BZNMHFna7juKe1GrMRWQp2jG5j9VHbpOqpVCX\nwREVFg4xrOz4GWuxCisvE5OL26Zjgo6b04pzGaeQVf1wU18tspu62/pCxovg\n4Ix6GE5c9DHKzPF6xwtoKgF2IDObKTCANYLCb8xoVnHsdKlR5TpnIj8lsg8s\nRXsgLqnADNq68ujKpMFGE3mI0e01FV2xUB+uFV/AledVXFD+WaLX2j+yYoR5\na8o3Rrzle2hig9fLBimVHxLDmMHiSgt8krMVsGJvsxnKpf0v3bMNr7JsY9R+\nGwIy\r\n=DMlL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/core.umd.js","module":"index.js","gitHead":"fe2005a9238f0263a8fb571a1f97f2f67ed6b424","scripts":{"build":"webpack --mode production","prepare":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"steve.hobbs@auth0.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"5.6.0","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"8.11.3","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"rxjs":"^6.1.0","rimraf":"^2.6.2","tslint":"^5.10.0","core-js":"^2.5.6","webpack":"^4.8.1","zone.js":"^0.8.26","ts-helpers":"^1.1.2","typescript":">=2.7.0 <2.8.0","@types/node":"^10.0.6","webpack-cli":"^2.1.3","jasmine-core":"^3.1.0","loader-utils":"^1.1.0","@angular/core":"^6.0.0","@angular/http":"^6.0.0","tslint-loader":"^3.6.0","@types/jasmine":"^2.8.7","@angular/common":"^6.0.0","@angular/router":"^6.0.0","@types/hammerjs":"^2.0.35","reflect-metadata":"^0.1.12","semantic-release":"^15.4.0","@angular/compiler":"^6.0.0","source-map-loader":"^0.2.3","@angular/animations":"^6.0.0","clean-webpack-plugin":"^0.1.19","@angular/compiler-cli":"^6.0.0","@angular/platform-server":"^6.0.0","@angular/platform-browser":"^6.0.0","awesome-typescript-loader":"^5.0.0","istanbul-instrumenter-loader":"^3.0.1","@angular/platform-browser-dynamic":"^6.0.0"},"peerDependencies":{"@angular/common":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_2.1.1_1562066959005_0.6820949812953803","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"@auth0/angular-jwt","version":"2.1.2","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@2.1.2","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"damieng@gmail.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.schenkelman@gmail.com"},{"name":"anonymous","email":"fmakram1@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"centurion.javier@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"hinerman@gmail.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"martin@gonto.com.ar"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"pablo.cabrera.munoz@gmail.com"},{"name":"anonymous","email":"info@riccardococetta.co.uk"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"matiasw@gmail.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"0da5a22812323f115b8ccec3bc8e06e1cff1fe64","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-2.1.2.tgz","fileCount":22,"integrity":"sha512-/ldNAqTmaX07PiabFZ7RZNT4Qdpt44/PxY9yoAcvmbGHhETpuKkBvcN11EC+4fKkO+J+KtTSxMGkcSIq0Wv5Ag==","signatures":[{"sig":"MEYCIQD0fNom4yGprex/jNvdNXvXhvkgHQkwjLrOQhIqBwQHYQIhAKoXbcL/yojMP1cqQd3dvjiNMd02tqagUBEsnCyDfXmD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":167052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLJxECRA9TVsSAnZWagAANX0P/1+7ewLRXbnL+NsXlhqr\nyitEcg4zFl8xWAUm3tj3qCEBsFk5gs5kdop0vdIgILOVy1R2jEbetHY8S2Zn\nQXJzCs86Vvr+bQdU4vsYwml0Vm+5VX8WLnyw60q4A++YKrnPtJFd7l/pkkMh\nLXW0bVePeWe2DhQ37yaBVXCjgl7zVpp5MIQ2JKVRyD85hMGQ+HSgRLs2roeJ\nDUoR7DilIJZtA9MwdYoYEB4NxZ9yLyZhAQFIIBqwp0Maz4N+Cox6cayI4oK1\nStKvgE53ccxrob/irqteavvh/gPWPaETwbMvmpCx19kE8QGbho/b2Em+xd68\nBvXrK2UeFwWcvAsPRlXwuVJjzl93NXnTTnlIVeLBCXVSpwciObJoeRiz7Um7\nIcQA4J68EIH6KE/zuPT28E8WOILCDUzmctGkRdsCJHwQXpJtP1fkW6HgOub1\nG+4zc2jY521y8gfGwId10afvbJBE+7l52KN4g59n68Jn53d+oW+7NOSY0/Lb\neNTX9Zn+O12MqDr2Eb8MDC4ACIYlZNG2+oby1tg4NkP+MPNYU6xE4maLwi2Z\nBhDW4IswMfum5M438WNHZc6iagOhDOfstSlGJk54Z31nIGHJ39QpN8ncSuR8\nRmB7WZ5XPn3yUyy8f+VWo6RfTDi/Y6qeDojbCouoZClzbRAgf3Ja41V1uSrP\nn9RR\r\n=vrgN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/core.umd.js","module":"index.js","gitHead":"f33b5c52a65eb24b1c4999218afa1cfdb97dca8b","scripts":{"build":"webpack --mode production","prepare":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"steve.hobbs@auth0.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.4.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"10.15.1","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"rxjs":"^6.1.0","rimraf":"^2.6.2","tslint":"^5.10.0","core-js":"^2.5.6","webpack":"^4.8.1","zone.js":"^0.8.26","ts-helpers":"^1.1.2","typescript":">=2.7.0 <2.8.0","@types/node":"^10.0.6","webpack-cli":"^2.1.3","jasmine-core":"^3.1.0","loader-utils":"^1.1.0","@angular/core":"^6.0.0","@angular/http":"^6.0.0","tslint-loader":"^3.6.0","@types/jasmine":"^2.8.7","@angular/common":"^6.0.0","@angular/router":"^6.0.0","@types/hammerjs":"^2.0.35","reflect-metadata":"^0.1.12","semantic-release":"^15.4.0","@angular/compiler":"^6.0.0","source-map-loader":"^0.2.3","@angular/animations":"^6.0.0","clean-webpack-plugin":"^0.1.19","@angular/compiler-cli":"^6.0.0","@angular/platform-server":"^6.0.0","@angular/platform-browser":"^6.0.0","awesome-typescript-loader":"^5.0.0","istanbul-instrumenter-loader":"^3.0.1","@angular/platform-browser-dynamic":"^6.0.0"},"peerDependencies":{"@angular/common":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_2.1.2_1563204675529_0.4256733441886338","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@auth0/angular-jwt","version":"3.0.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@3.0.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"damieng@gmail.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.schenkelman@gmail.com"},{"name":"anonymous","email":"fmakram1@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"centurion.javier@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"hinerman@gmail.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"martin@gonto.com.ar"},{"name":"anonymous","email":"carlosmostek@gmail.com"},{"name":"anonymous","email":"info@riccardococetta.co.uk"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"sgmeyer@gmail.com"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"matiasw@gmail.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"c484af3d6faadfa1b3b4beb0646b60a562ceed8e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-3.0.0.tgz","fileCount":22,"integrity":"sha512-Ky8hghnEx+CtCd097YXji08/LvLTG98IAEX/j1UgnutRDhQ31eczOohDn98v3i3MHNfLjfI3HdyxPK1Qc0IkZw==","signatures":[{"sig":"MEUCIEdzN1iidNjccb7zI/2QtwkaYJ3Rn1g+Q7lZUTTaFDd+AiEAsr25wj4L5uibkYnemwKtQHUfKmVFWQHX7CeW25gzmjo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":167571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLuJlCRA9TVsSAnZWagAAQHwP/iVVmO/BpvM+2mdyiBUW\nVnfr5AwtDAPNkNrpc7Nle3ZR2VO0Z2qMNLzdm4v3XnJcbadFLt00UXCtzqSN\n2MgzUuc1LZrhmZS+FZSQ8UmnJclxbFk/Jr+HkmyFaS78QE0d0Y00kT46tTqs\ngaVNmc05WWR1bJ4IdTCEqk4j0tz7zYiiLnCad59NYPqZ9kZyo8Gz2LFAMvUn\nTjcR7F4yYaRzeVV5YG2Bg1d0nciqhpSwBbmNOg7V+aM1zmJWtDqYPKC9ICnj\nwRECni5yWCviXbCQBeQquuKnA3S8Ihx/pwh1cQ1NYpkmcsHOzGR7MX7xqzKH\n5Qf3BE55QQME4Z9Dr3nMwfMIExGygh3gwdDDCmIELuwAniEBLHOAZ9v3PAtP\nvE5GA5iRuz1tiPqdrV5ybDG0p7Mpeyxop+3CXn4hr8788usglTfg81JewDO2\nOle9EWErRnRLveFvwFWjqwzStenrIVN2OsFVaA3+9qKqWjL5cIVTaFzaSC/b\n6a9fIrKWUiYfXX6/8kmNJp00iJpsAfzelc/3YWvv7ImtP5qTnXeBALA6p2Ys\nNew//9vTsRo0s5rY4spNWxqlx007dcukMEaYix+Por6sadTLodjhJVWHIMWo\nBNjRxVYY8NFGwfxkZ549xNjod2OegbUX3np65O4ejBefFqhwhoQ4TYXlEzCO\nt2VW\r\n=A6R6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/core.umd.js","module":"index.js","gitHead":"a3d9bd3d25770af3a3a4f38cb3b0efefafb21104","scripts":{"build":"webpack --mode production","prepare":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"steve.hobbs@auth0.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.4.1","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"10.15.1","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"rxjs":"^6.1.0","rimraf":"^2.6.2","tslint":"^5.10.0","core-js":"^2.5.6","webpack":"^4.8.1","zone.js":"^0.8.26","ts-helpers":"^1.1.2","typescript":">=2.7.0 <2.8.0","@types/node":"^10.0.6","webpack-cli":"^2.1.3","jasmine-core":"^3.1.0","loader-utils":"^1.1.0","@angular/core":"^6.0.0","@angular/http":"^6.0.0","tslint-loader":"^3.6.0","@types/jasmine":"^2.8.7","@angular/common":"^6.0.0","@angular/router":"^6.0.0","@types/hammerjs":"^2.0.35","reflect-metadata":"^0.1.12","semantic-release":"^15.4.0","@angular/compiler":"^6.0.0","source-map-loader":"^0.2.3","@angular/animations":"^6.0.0","clean-webpack-plugin":"^0.1.19","@angular/compiler-cli":"^6.0.0","@angular/platform-server":"^6.0.0","@angular/platform-browser":"^6.0.0","awesome-typescript-loader":"^5.0.0","istanbul-instrumenter-loader":"^3.0.1","@angular/platform-browser-dynamic":"^6.0.0"},"peerDependencies":{"@angular/common":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_3.0.0_1563353701004_0.5050603647418939","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@auth0/angular-jwt","version":"3.0.1","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@3.0.1","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"damieng@gmail.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"damian.schenkelman@gmail.com"},{"name":"anonymous","email":"damian.andres.fortuna@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"alduncin.guillermo@me.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis@luisrudge.net"},{"name":"anonymous","email":"luis@eml.cc"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"martin@gonto.com.ar"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"matiasw@gmail.com"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"7b4dbfc160e0d7ea3f44d7f79d3865d9915ad9a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-3.0.1.tgz","fileCount":22,"integrity":"sha512-hfWfgbpgtcvyU/agNxQ6cBk81mmASiNxQeZ6xn/3zJo8uLFHk2eQIy2yt2ztktcOQ6V2uc6GlKLRKjVIgyc1Sw==","signatures":[{"sig":"MEQCIFeUoXp8Y2SgJvnMQVVY0wlGxgIHp5DiyboUAPW6ja0UAiBsa+NWuaXKpM4JAwmTPzKZfQf6NYwggn4cUvSejJmkJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":168027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduadJCRA9TVsSAnZWagAA2ZMP/1+9OPHtndDyNZPFB8qF\nkFAjTtLrJBRnd5HRmLMdHwNc96qmYEU95fgtQ7qIgCx2UTkRnlc9tJQllRye\nzKTe+eu5+O2QGySP/8bHjIpeabIOUmM9/ipIJbu6SeuYNaTomqb5SfGX/Hk3\nBzJq4irY4naa6YdQWtXO7rkjdcNGjckddlE4k3DW6EU1JVpb6gg4b04lTUZ6\nDlqsAzlwp49t7tSqhfOIl87wUVYIfv2cDKVJmnSu3EMXkeVqE56rFMsP7+gv\ndNNo+6wOJTVawjVqiDWOI0VG+2QLhA8mMsXTIeDtZ8R4Tbp+sw+Vd+/Lra8j\ncb0VQSSN+osZ65CJ9+zF3Ksz6Lj+BixMLJ+bTZA1mg+yrLHVurXCcDafcpvG\nUKOtCKTJbjc1EavlkrWHm2p/lNkDDtvuDS1wMZ4vCAMXDyLRZlVXzJv1Cs6W\nzpukZ5ee3WVlyfBKeY0WBoMxtZcvY6ETEQXkE7PUaEVwXTnMELMnu7WjUNTP\ndap25H1bbvaMqScBuhP86TfccdZCeNQTdSaeEGiIeNOLXO8No7r4xy9KqjG+\nWL1qlPU2LlIV9OiztbAAYupWXwb+5D8Kyfo+jszZcSZ74mGRCKdy05YDNP7m\nxOW/E7C29K19WMQp5pxhIDEA3zg84WZEXMXZW9a5fqH/oYQFK9cyOP+t0wfU\nc6H4\r\n=JAR1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/core.umd.js","module":"index.js","gitHead":"3d7af89ff4303739428287dac0caeaa71d178a90","scripts":{"build":"webpack --mode production","prepare":"ngc && npm run build"},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"steve.hobbs@auth0.com"},"repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.10.2","description":"JSON Web Token helper library for Angular","directories":{},"_nodeVersion":"12.9.1","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"rxjs":"^6.1.0","rimraf":"^2.6.2","tslint":"^5.10.0","core-js":"^2.5.6","webpack":"^4.8.1","zone.js":"^0.8.26","ts-helpers":"^1.1.2","typescript":">=2.7.0 <2.8.0","@types/node":"^10.0.6","webpack-cli":"^2.1.3","jasmine-core":"^3.1.0","loader-utils":"^1.1.0","@angular/core":"^6.0.0","@angular/http":"^6.0.0","tslint-loader":"^3.6.0","@types/jasmine":"^2.8.7","@angular/common":"^6.0.0","@angular/router":"^6.0.0","@types/hammerjs":"^2.0.35","reflect-metadata":"^0.1.12","semantic-release":"^15.4.0","@angular/compiler":"^6.0.0","source-map-loader":"^0.2.3","@angular/animations":"^6.0.0","clean-webpack-plugin":"^0.1.19","@angular/compiler-cli":"^6.0.0","@angular/platform-server":"^6.0.0","@angular/platform-browser":"^6.0.0","awesome-typescript-loader":"^5.0.0","istanbul-instrumenter-loader":"^3.0.1","@angular/platform-browser-dynamic":"^6.0.0"},"peerDependencies":{"@angular/common":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_3.0.1_1572448072716_0.6763603153208666","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@auth0/angular-jwt","version":"4.0.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Ryan Chenkie"},"license":"MIT","_id":"@auth0/angular-jwt@4.0.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"damieng@gmail.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis@eml.cc"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"martin@gonto.com.ar"},{"name":"anonymous","email":"nw@nwhite.net"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"1930088bcf6ad9e2ff26f34196cec6ebf3853c15","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-4.0.0.tgz","fileCount":39,"integrity":"sha512-CHvk1zJ9jpQupl0f5y7EmTvYAwugyFvC4ztLsZKr7ZC7anNVaDd1+pDFJYS+ZEU9jLWzE74+AfVKfigImADJuw==","signatures":[{"sig":"MEUCIC2gZ7cd/T3w4QsQAM5M5EJdsA7yPCoLGbUeXx1g0RmoAiEAnLq+5pkYgJmMcGgcRDrVFYWwx163pw2TunVfv9NWVtw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":231264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePfWDCRA9TVsSAnZWagAA4+kQAKUBcOezCpOEthZXlGog\nAuUTvQB7ZxTC3Seno9X2V/bkgeMFtiOJwu0MKqxYc47w63MNFdvgNpfsqUHO\nKF9SidYjRptG6DWjdturN2ZdABluXQuwgYo3rWAgzpE93Syosz7bZ1JkxsjR\nVYglCE0D2f6ygrViivLn3MBGMn/2ATbrgI+93k9kp6v5ENgQR+TAt5w9djqS\nw8FhP1h9gKKPug0OufAsCDx+rvSjrbxnLM0dXm73utlLaqYK33r8f/SVp1qQ\nSGdrtndoGgxnctaZS6VIk1MTFM7Jv2lraSnRiZityrnLN0oHgHNKi/09TkHK\niz/+5XKbjZdpvlDgZ1EcXn4Jeutv5sxAP1cK3mmime/qOvicApQGbnmH4xHZ\nJjhLt5g1HAdkvCRlBwRJxxDS5kuOLDFfTjJMfe7s2osGUaHfPnUEyQhVcF7K\nlcjEgTw/7L8TZwrvtu/DZ6+YExei1SnrXmkoPNJ3VtG3xRlpjRztO1nrC01L\nB3dFr9TESgSaAuymzkEGM5ODqDmtts/7L/DAwyDzCCUXrKZpK3qv6QMEVpgJ\nBDv+WupumBed3TKn+kx/GUkmdyQRLfJ2mqJBP1nxQwEuW79/I1Dbzpk3uK6y\ntY0YSpOiOX0rtNp0cVX5Yu+lj/+mDauu2Y7Sn4N2uIjPvQEoVQqyHK03Lxsp\n913J\r\n=bQRi\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/auth0-angular-jwt.js","main":"bundles/auth0-angular-jwt.umd.js","fesm5":"fesm5/auth0-angular-jwt.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm5/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"steve.hobbs@auth0.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","metadata":"auth0-angular-jwt.metadata.json","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.12.1","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.13.1","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/common":">=7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_4.0.0_1581118850377_0.2686044798520746","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"@auth0/angular-jwt","version":"4.1.0","_id":"@auth0/angular-jwt@4.1.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"luis@eml.cc"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"dist":{"shasum":"121d04043a768ce49e136c202157de0126d37f46","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-4.1.0.tgz","fileCount":49,"integrity":"sha512-iEnx8pGzN1Uln8nDxRrbqKDwzH1jXjnsOWbmAzeBihB3OVjNJwWE+jIQxmUWeS+Mhl50RZstKcRg6/nwkkjdSA==","signatures":[{"sig":"MEYCIQCfgsLVJ0l4XKsmgHGYiqtZkr9Ywbdu0nzcT1g60yK11AIhAKbGEXE3Wk/hOXc/d5xpBCMloVKNWERwHxLk76/pstUK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62598,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevpGLCRA9TVsSAnZWagAA7rMP/3l8gTbJMJhdt9edivMM\nsv7eXAQQcWmrI9wYt6g4Irzw/CPjFlGPTFbZCBjqxppKiIqEdolel5kV0Et/\ny1jzEkX7CF1wf7H+MWyUbUOgynfNmYnsoYj/v5PQK3jtobPOKEUNHoi32mNV\nNwKN+PE2jvXHWqqWq98GskK8rldDV4oDnM/9eoKVp0WStIlqdCG/ulcCnDY8\nHO+xlaVKAnf4EgSHMlDZUSIH6z+PTTKgoqynb6qr58jNxjlJAXW5Cb2ZpYYj\n30g9fnXo3GIdHcCrnpnrClGBMrerPVXR9fABCZLqWoIbM625/9kl6+h7njhb\nP7LiWHqvpG4CezX7w4HSAx6wsVgyAwFcuNF1ANrDBpLeG+hF9T/+QVgJo9yy\nFrVUf33Ds1uVmA6KeVMFvDcOCTXs3ukhMAaxUYIf15ZUP09jOoE7TIjKGL/D\nTEd+jun093JlO/ptSeuJsGTwG6W3djWyQaq0px4JhDuiQOtgGmVG8xweDFpB\nU9UqnkOJJU6SbM3h4K1MZTvl0DNYJKvmuSv709Zov0weU7+Nwf6aaLgmtEqL\nMqddyt3f2R39SUmaFt1de0+S66ehriWKz9jrtqexFIJSANC8+J9Vtl5q+GQq\nnCueh3aILHj7EgjU/pisJvMmcPgwjXoW1lM3ugDvsZZP0+DI8Vrde0IjDUyG\n9sNM\r\n=ihBd\r\n-----END PGP SIGNATURE-----\r\n"},"gitHead":"5c39a36b1f3449034e0cdec6e079567bf266e892","private":false,"scripts":{"ng":"ng","e2e":"ng e2e","lint":"ng lint","test":"ng test","build":"ng build angular-jwt --prod","start":"ng serve","postbuild":"cp ./README.md ./CHANGELOG.md ./LICENSE ./dist/angular-jwt/"},"_npmUser":{"name":"anonymous","email":"sambellen@gmail.com"},"_npmVersion":"6.13.4","description":"[![npm version](https://badge.fury.io/js/%40auth0%2Fangular-jwt.svg)](https://badge.fury.io/js/%40auth0%2Fangular-jwt)","directories":{},"_nodeVersion":"12.16.1","dependencies":{"url":"^0.11.0","rxjs":"~6.5.3","tslib":"^1.10.0","core-js":"^3.2.1","zone.js":"~0.10.3","@angular/core":"~9.1.1","@angular/common":"~9.1.1","@angular/compiler":"~9.1.1","@angular/platform-browser":"~9.1.1","@angular/platform-browser-dynamic":"~9.1.1"},"_hasShrinkwrap":false,"devDependencies":{"karma":"~4.3.0","tslib":"^1.9.0","tslint":"~5.20.0","ts-node":"~8.4.1","codelyzer":"^5.1.2","ng-packagr":"^9.0.0","protractor":"~5.4.0","typescript":"~3.7.5","@types/node":"^12.11.1","@angular/cli":"~9.1.0","jasmine-core":"~3.5.0","karma-jasmine":"~2.0.1","@types/jasmine":"~3.4.1","@types/jasminewd2":"~2.0.3","@angular/compiler-cli":"~9.1.1","jasmine-spec-reporter":"~4.2.1","karma-chrome-launcher":"~3.1.0","@angular/language-service":"~9.1.1","karma-jasmine-html-reporter":"^1.4.2","@angular-devkit/build-angular":"~0.901.0","@angular-devkit/build-ng-packagr":"~0.901.0","karma-coverage-istanbul-reporter":"~2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_4.1.0_1589547403404_0.9651494763020227","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"@auth0/angular-jwt","version":"4.1.1","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@4.1.1","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"luis@eml.cc"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"e49dce9544cf74daf6b3f28c54ac8c037302aa4c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-4.1.1.tgz","fileCount":39,"integrity":"sha512-Cz/caILwOnvg52gXKdZT4qJxW7omJEJ0LWw6dDdJb1rJy2Z3vAb6yxSi97oE6zSal6mC670iRhYphe7lFqdJ3g==","signatures":[{"sig":"MEQCIEqg60+VtHT2b+BGDil5OJpbF7fjkGpFddCnVEaGGS5JAiBgZuKHQLjrGRZr3svm7aJIW782d5hxgXm1EjPbZK5tVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":238312,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevrVaCRA9TVsSAnZWagAAHD0QAIrKexa21H3gghV2xr3T\nqfTETAAU+pQV93LNCqZ5xQB1nYYUOmS1fCARMqiVZORt1E97q7QZY+n6fFva\ns5lwfD5yTXy8JpYogfObUGu0AR/dDbub2h3/NtEXoy1PTaebPKwBOGTUe2XO\nLl2Fp/HlE2Qi5bYYFvce2wCDCRcQRs3A1ES04ofWTz5Vn6Qqo70Ja1mI3zkF\nrd6qlMlpvxtKHgeG3wPSzm8GAmxQH34BduensRVEhb/9qo9HGP0D0f1nh8Ay\nJNL6IfSLxvRMHjIawYVYdH7tRoN39Dy6YtP28+EdNw54KAHMeIEslfWBfM3c\nEEPF45jXfm4EYTM8EVNhXnGCaG2yJvQz/WoDNYxRWnNY0ffMHp7al5ovlBS7\n+yfdehKrNvTsO4LznJr2w4YBYJAOWNxP8Gv59glpV5nvq+hiKeumddmJ89wC\n92sOSzSlZOvLBX0N96ifEhNfoPY96Ngo2W4O/PMn9YvH+H8BkNAYxXD1Sslg\nCOYhus46/ifghm/GH7GnJI1qqd5N/ngilogNKmialWXrf2nAqIFlhuPpdixE\nanTmwXB1TD4uJcUBYVuQFkO4XCpU4tTMEuC96cjrMhmSaoJiNxwQoa4Mjoo7\nPhUQOR87XL/NG6OBIhJmcjh2VT1+ZzE2xgLujM+MKNjHdE/63pdISRwspUtb\n0dpz\r\n=2GfM\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/auth0-angular-jwt.js","main":"bundles/auth0-angular-jwt.umd.js","fesm5":"fesm5/auth0-angular-jwt.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm5/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"sambellen@gmail.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","metadata":"auth0-angular-jwt.metadata.json","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.13.4","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.16.1","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/common":">=7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_4.1.1_1589556569695_0.5775859747721441","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"@auth0/angular-jwt","version":"4.1.2","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@4.1.2","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"luis@eml.cc"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"365726e9a5f062f822b01baf3e902b0993d38836","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-4.1.2.tgz","fileCount":39,"integrity":"sha512-DPZzo+nIJ/gg/wapIzrdcGHSJvcstB3LeUakny3NJZ4rkAxgg20j6UDzkQ9MP/Me7hg+jZvi7psATAiODL12ww==","signatures":[{"sig":"MEYCIQCCcLWc5ylOnkL7Ahun/+1MV9L78UyPEaMfeqrGRvPajAIhAI5/VYnAWkDO7/esDzT56TntyiLXpDbLF1L1HTi6Lsmd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":244002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJev7T8CRA9TVsSAnZWagAAccYP/3vw3m1iwweIDg2HT75l\nc5Sf6p8p+mLYoSrTpjkXrEZqcVyPU7d8nZ7fsi+jzl/83m4FAgJ5JXOtLpSk\nuqPZfusaJatnZi9QPxOs9g8gY7nmmg+7LE94zxFP2gRy58aZic+tVPc9cNi/\ntpn5+2y3GVefUCfC3c5I0hpEFj4j/hmj7oOX+oyKVwgcJ1HNkU+V9MpL+Tbl\nMSFBQlTaKyVTLE5wIVyf4uoYdlny046lI4QLcubMjFmMjJzT1es0nT6+K3nr\nJQj8+7DbUqclvm70jQaJIemeNng2oxakYoLpt14PkKN6ooVhsLS/vGhwXZ/L\njgHa7gTVHh2VYmZfXbCWX12rY/WL13sEfyqBwNTPi+rvSy+9Xb2vgkvsE9zu\nU2CjQkfCeDlf5CUFyGMkoUwgMlrenxaL7uRZmBIwRzxGjrR2Igqjn7Nc04mN\nNZN6Y0dBajr0bSPymlclt1XMrNhHioHVykkNOXHAGY6PCSW1KNe62ecHu4MU\nC5SBaCxARJ6S86ey2+YLuS5OX6XfE5zWVrltXdtYMDqXTgwUVHHAnms1gmaz\nj+TPnAtL/hH4Jjutxlb+WYWiFd05l560hl9omzMgArV0ZZ0X/TAqDY0W2jXs\n+JxKXDzCN1vkYzHhqc0+Its028pJ9Fd4OGZAEBbqmvIZqjaxLEtyS9WzhrO0\nluHm\r\n=31wp\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/auth0-angular-jwt.js","main":"bundles/auth0-angular-jwt.umd.js","fesm5":"fesm5/auth0-angular-jwt.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm5/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"sambellen@gmail.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","metadata":"auth0-angular-jwt.metadata.json","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.13.4","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.16.1","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/common":">=7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_4.1.2_1589622011981_0.7382456774572055","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"@auth0/angular-jwt","version":"4.2.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@4.2.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"luis@eml.cc"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"andre.demaio@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"60f74552fbdd9404aeb55e41fa4d3d514f8465d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-4.2.0.tgz","fileCount":39,"integrity":"sha512-kxHMztP0scAaKSfWRQ4y3ba5ggcGh2YVapC1UnimyE1I1Vs68gdSlV00bnpAK4aCaNut9IqtdGurgbljHt24Lw==","signatures":[{"sig":"MEYCIQD2NRJhz5P52yBdi+zi0OxeqYypyPqT2vEaD1Tu/W1dLAIhALJykZkqkjy83l5tGjdpaaAlIT2Vg/b1EL6WuFT/RU4I","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":251980,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3erXCRA9TVsSAnZWagAAT1gP/A3kNBt2zLIGPcmur/rC\n0lGO7nhwmWEdC+CX6tQdzAuQE62XZipTc+7PCpGogk3MU86t8GreajOR5x3a\nVb7kpaxzHSlIq6AIAtTk5iH0Px2RZ3rKiOJDX1tIca+hLsqt+IAIvBRuyJgq\nppp+wf453iO+ob1266t8T5YWfIvT200GAV4XlHT4DLd7bH2O9iEo67fKVdl+\nlTbOobUMhm/mzAVGtT71NKeIvB0luUqr99evRKbQFy1aNn1GOsfoLDFRuNJc\n8emHFUI5GrIk63tyntXFLxgyWeVPH2YISLWAQABEZMmiXlqgT4hULJ3MQr4f\nVyLfSrR58bbYBHz0Xg5WK3YLPcFHUI70MlSaUEIutYFgvb0gYfWyewz/SSJ/\nhFuLQs2GXMl88h4mVXYpwSkubI9zJMjKgYCLaX9YnVw3fnH62+CPMf0qww2t\nzd2dpVvq8XXws/MuwF/hW1CXEPb72nHdzMJyr2cKe8cL/s54tUCDwNFlSU4L\ngvJBx71hZEE/XIp4YLvZV9vnTVsenUA8p6jKRRwU7huHYi1QxPTYAGWderYh\nVjRLSM1vAfbMsGJ+TgEj9pr6J0SXy/ELnLSP4pXRBJFVb2IJxPPIVibfFt/N\nFEypiCVJ73XC6dxrofGJTFBf/rI2uEZBbxkvvmhIDL1/p0zXQSSzI/ctEsJg\nDo/M\r\n=oUWu\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/auth0-angular-jwt.js","main":"bundles/auth0-angular-jwt.umd.js","fesm5":"fesm5/auth0-angular-jwt.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm5/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"sambellen@gmail.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","metadata":"auth0-angular-jwt.metadata.json","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.13.4","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.16.1","dependencies":{"url":"^0.11.0"},"_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/common":">=7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_4.2.0_1591601878601_0.34440936276893264","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"@auth0/angular-jwt","version":"5.0.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@5.0.0","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"luis@eml.cc"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"andre.demaio@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"949077551f75902a6644f4211f50528a2272fd58","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-5.0.0.tgz","fileCount":31,"integrity":"sha512-jz2ATYIkgfzXU4riUe7xsslrxLXT3HjgV8LJ1Lna+lvAAmqkJIhFA7FZlbsvMsQuHc32/DN/JPGlFaT8a6wziA==","signatures":[{"sig":"MEQCIASQTr6qXXVjW0uJEvToQKARkFJYiTswjmItc3jrH8CSAiAGPiVKRNKYTvYGaMEYTHbNKkM+Yw0sFPgZ4i6eTXdXaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140956,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBDhzCRA9TVsSAnZWagAAHHkQAJN6Al8Hk9XPn2BywC/8\nMw01gR8lF3utzb6yZ6UQizv/OSi10k8CNiHYB0oJSkV35EW5yyj82LfTLvuF\nB4zv1KgM3mJE8e+/t4O/v+HXwPOnmD+9TrbfVKAlDCAUj+wNdhtRazvAHlzB\nZaaI0dvs8sAeQDSrLD94n5NYtiomA3gGaqwHOIFgXpuQ0cV4TS/wtd1Bh7Oq\nW4AllNkrnevU+97TeL5tf27Bpsu7+coo2u37jp20XTrrvHQPBZ9kGbk4812o\nIYMMtqlLU/egdDjQmrmx+KA9NqHSFphKG/G0QIhOwlyt5juKvXKb6o4yf4QH\n0Fj+ckOHpCcZ6pbewAoDUU7KMrST1hP5VesstTZbysqM7ctUYpKhwzBLvg5Q\n9gV9JX9dmW+eHroiYV5tBxGuokucIfAEdc4m5DW7fnIO6u3ubwUplrV2zd25\n/PO1k+8LJsCoZabKQLawz04qjUcIB3YVWPiaSh1hnN87n9zF94xQHvSR4z5/\n53c/YQh7xvtlgHaUZUWJRJnONa6QUBDh9Ffj8r8PUrPBemgboXGlE8hUyslQ\nj6dVAB976xslWcOwh4IE/FdDNH1KmZI1yh0kI+1RJmmgnjNNtXJGDZEOKG1j\n8jkCwJgUeSsHKdKUbCThie4X5wwF9iK51sWlXcTsgfm0KbPz48zzLlqHuiqK\nYtST\r\n=Bv6Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/auth0-angular-jwt.umd.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm2015/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"sambellen@gmail.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","metadata":"auth0-angular-jwt.metadata.json","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.13.4","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.16.1","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/common":">=9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_5.0.0_1594112114711_0.0478170808696754","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"@auth0/angular-jwt","version":"5.0.1","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@5.0.1","maintainers":[{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"donflopez@gmail.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"jfromaniello@gmail.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"luis@eml.cc"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"andre.demaio@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"37851d3ca2a0e88b3e673afd7dd2891f0c61bdf5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-5.0.1.tgz","fileCount":31,"integrity":"sha512-djllMh6rthPscEj5n5T9zF223q8t+sDqnUuAYTJjdKoHvMAzYwwi2yP67HbojqjODG4ZLFAcPtRuzGgp+r7nDQ==","signatures":[{"sig":"MEYCIQCkF1TH1sFiD2+MKlIujYYiJk6D/DN3nY/9Pnr6SSqqCAIhAOruwNYtchWMuNX86dzaO3Jr0+XZEFKzWSWJIOfRxhvK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144895,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBHvkCRA9TVsSAnZWagAAYd8P/ij9sMIg7u6AZv8iVuEF\nxkGkivjliYKnEfRfYpMzhmLRKXX6+O7utkff86YMLCx9gZ89CHjjHov+WV/Y\nSWtuTGBQSURYra7Nq9cthPcy4EWKpYc1QxjJJmmnJ/qfuevv+d2tJabp9OrK\nU9iJ2ghDyDzBuItpdd8f3RVnkRJyNMXckf+Mow5jV/9IVdrNPV6TedrfaXuA\nM3KtSKNBzNVDlTRC4d945x10mrxw0yqkOf8zdHcWUcRvR/yom7eMarzdc7Dg\njcrqzikqD2KxL/VzosqOZVBEH4Oi11Rj/86vyde5NWRXY4fJEywQm8NFNQii\nl7b28+8Wgjl19u8yK7PH8jmmYhFesTfZWSaCY7yAEU2ZrYHo5uH9Zm1wtfxs\naWtSgyghDdxl9lfpvMvGuxcUN8CeawI0fmgHOQm+DJ8huR93UKMN3CAJIb8q\n6S+N5iRqHVpwnmYymi+O8OEZ1SGB1m7JUu+ekoNX91rSlKJogKcWKrDhAF7r\nLQ3Hu4Zz29LZohatHH0Yash80V1X4TYkEQoqUxXmnbeR7ye5ccnsMA5d0EdU\ny+czwtNtSObrw0Q33VLvwHOstaXcx+9dbhbTH0gwhEYIcAPUMFfyBe+ItM8z\nHVKlXlvvfy96hxvJQ4OzbFB2VNegy+IAewKbR8WYt52+3XUTFrR025ywuLeb\nGs9D\r\n=xrZf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/auth0-angular-jwt.umd.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm2015/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"sambellen@gmail.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","metadata":"auth0-angular-jwt.metadata.json","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.13.4","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.16.1","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/common":">=9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_5.0.1_1594129379555_0.4540823971362986","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"@auth0/angular-jwt","version":"5.0.2","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@5.0.2","maintainers":[{"name":"anonymous","email":"sergii.biienko@auth0.com"},{"name":"anonymous","email":"frederik.prijck@gmail.com"},{"name":"anonymous","email":"navrup.tom@auth0.com"},{"name":"anonymous","email":"fmakram1@gmail.com"},{"name":"anonymous","email":"jim.anderson@auth0.com"},{"name":"anonymous","email":"andre.demaio@auth0.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"luis.miranda@auth0.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"yacine.brahimi@auth0.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"brandon.maxwell@auth0.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"hello@matchai.me"},{"name":"anonymous","email":"shawnrmclean@gmail.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"alec.pesola@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"machuga+npm@gmail.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"0a23f240e8c6ed37c5c7a354ad79a755a217936e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-5.0.2.tgz","fileCount":31,"integrity":"sha512-rSamC9mu+gUxoR86AXcIo+KD7xRIro+/iu1F2Ld85YAZEVKlpB5vYG+g0yGaEOqjtQWP/i0H6fi6XMGPVHSYYQ==","signatures":[{"sig":"MEUCIQCRVzNIoIzJNc40TDo13wre7b08TP4oS9mKX/VQv+UxJQIgDNyGM0fECph9XFeJpB1G7V6LDgrofnTxO3tU0tMaUxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145473,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh12HWCRA9TVsSAnZWagAAeD8P/1LIxca9PcSGGvk+qBph\nrAFSx9uQdP9g8xP+KNCyLWuAfa13+IK3sW6nC6VAWyG8XixChoITUea7ovfY\npafq1q1lpcCYzYipudxqPb5e5R1SE/U9Qom1nc9C+j6fBresBpPwvDKVlnpv\n3DOi7A2QkOVqQyujkqhwY73Jl/dJQMuO5hprAETWQvUprXLug9Myv/FhErd3\nuOaNgnREgNSXxMjMM69zoPRQcsyfiLZjEvBKMezl3iRko9q1i8i1x08RlfHK\nj9thlZgIge6Vri5lcka1WGX/WssntXG7LHkf99S86aXMxwV6w+R5iN+9vCIH\nysOJh0w04urLMQ5L7PNUlC/fGIBn2K3e3ek3KSoRRYVUOsDG21O6oh3l6s2A\npBJJoIThtVdFgesfOAqDcCnwYAF/ROHzWTZhMBIZgfRJ59NptXM/u7L6J3WH\nmdLRCtajiPgUV/iylO7TE/jRtTLKmBnc49C4UVNcWK4RSkwlZfINVJ3wwF2I\nxVsJ2hP6n24humdwBK0wSx+50o3ELCM17l/GUO2b1n06bxFwcH/Z9AxpzA8S\neJNbH98UoO7UD4Ix6AXqVdVsisjVjjnqxPglFzA4y0V6lPT1KkRLs9k02Pcx\nelXsBLmfzP+Yf0uJ0+iMCYnF7U96OI+tSj7pBKRZeqy7JDGdbNVhQu+BmiyH\nW/7e\r\n=x4/o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/auth0-angular-jwt.umd.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm2015/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"sambellen@gmail.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","metadata":"auth0-angular-jwt.metadata.json","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"6.14.8","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"12.19.1","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/common":">=9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_5.0.2_1605790521631_0.005414084472818326","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"@auth0/angular-jwt","version":"5.1.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@5.1.0","maintainers":[{"name":"anonymous","email":"madhuri.ravindramohan@auth0.com"},{"name":"anonymous","email":"willvedd@gmail.com"},{"name":"anonymous","email":"david.renaud@okta.com"},{"name":"anonymous","email":"jeff.shuman@auth0.com"},{"name":"anonymous","email":"cristian.gonzalez@auth0.com"},{"name":"anonymous","email":"oss.sdks@auth0.com"},{"name":"anonymous","email":"peter.ung@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@auth0.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"fyockm@gmail.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"charles.rea@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"julien.wollscheid@auth0.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"andre.demaio@auth0.com"},{"name":"anonymous","email":"jim.anderson@auth0.com"},{"name":"anonymous","email":"fmakram1@gmail.com"},{"name":"anonymous","email":"navrup.tom@auth0.com"},{"name":"anonymous","email":"frederik.prijck@gmail.com"},{"name":"anonymous","email":"sergii.biienko@auth0.com"},{"name":"anonymous","email":"tom.carter@auth0.com"},{"name":"anonymous","email":"jakewlacey@gmail.com"},{"name":"anonymous","email":"hello@jpadilla.com"},{"name":"anonymous","email":"jesse.le@auth0.com"},{"name":"anonymous","email":"shu.shen@auth0.com"},{"name":"anonymous","email":"raghd.hamzeh@auth0.com"},{"name":"anonymous","email":"greg.lopez@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"766abad6e6ee2e30b7c24362303c16b13e198a84","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-5.1.0.tgz","fileCount":20,"integrity":"sha512-EAQoNKPQSZYphcX6FnY2e7xQpD4ZdHQ1DbHq/m+G1U1qA60m3XnhdjPPfu+blVHARlxEbRzWXc48UOVrnMsrZw==","signatures":[{"sig":"MEUCIQCsg+5wh1729z1JEGx2ExMORhJul6koS1hboEG5s9fmIgIgQItc8SrrcG47oQBceMD5Cug2K8VqaKqYxUif3aNMCQc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123358,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjOw3OACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpTRAAikDAUVoJhH2UBHw0LKjdKhnnNECJMGAz8iap54q1UftF4XMo\r\nOmW07r7U85t4kPr/gEv/MYJvKZlvS6a2qDVzZHIL090KBqDHjv5So+GQ6t91\r\nvurmNX1dPAbobVu2JRjG67PPWj7ICNlW/wEkRTmSUuniGnoNsJW2FQ8Vgpwr\r\npbOP3kHJ9snZ7B/y3dpKmCIX+lSbXnFqaMdNgC4NKRpf34guL4RVcy51yFpn\r\nx3nNk/n0RhY9C0LoCvhVc1kKMdRcaUXUhZmPCCt/g/CoXeYtUKneIurtqdLu\r\nktbChVToMELF9qLfMrTpgE/31L9aoaFBg2GoHyJn11PuECMF0v7eAW82vwb6\r\nOdpuvZJ1xd58IrjeL1yaq1jqZCKomZmKrvQFUYWCmXjqFwColKAkNgiUnlA4\r\nSEOuodmwBAZqOzn63rrbsIWrMAHo9D04XoLL7jysXotnrUO9rdc+JNIaWfYU\r\nZ5JnuZMrZdqgNlJHwlJUHd0H4eZkFPqv9WDu7+5ZICXcv+yIlnFsiq7Fj0yT\r\nHlPG7IK5uSQU9uK9ucKVu2fhiUGs2VZ6bja6eHKxPZqN0p5uEsCsP4pYPa0l\r\nalgLRFM6FFRjALeMFJHh3SJiQHGO/2LQVTo/iM+ENTsKRKgA4AqpE+uXPh2B\r\nzzJLpXZ1TJ7v0Vbct0O5GIpeYMLGAII7f/I=\r\n=4yiJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/auth0-angular-jwt.umd.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm2015/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"oss.sdks@auth0.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"7.19.1","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"16.6.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/common":">=12.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_5.1.0_1664814542143_0.0992950604935332","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"@auth0/angular-jwt","version":"5.1.1","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@5.1.1","maintainers":[{"name":"anonymous","email":"madhuri.ravindramohan@auth0.com"},{"name":"anonymous","email":"willvedd@gmail.com"},{"name":"anonymous","email":"david.renaud@okta.com"},{"name":"anonymous","email":"jeff.shuman@auth0.com"},{"name":"anonymous","email":"cristian.gonzalez@auth0.com"},{"name":"anonymous","email":"oss.sdks@auth0.com"},{"name":"anonymous","email":"peter.ung@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@okta.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"charles.rea@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"julien.wollscheid@auth0.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"andre.demaio@auth0.com"},{"name":"anonymous","email":"jim.anderson@auth0.com"},{"name":"anonymous","email":"fmakram1@gmail.com"},{"name":"anonymous","email":"navrup.tom@auth0.com"},{"name":"anonymous","email":"frederik.prijck@gmail.com"},{"name":"anonymous","email":"sergii.biienko@auth0.com"},{"name":"anonymous","email":"tom.carter@auth0.com"},{"name":"anonymous","email":"hello@jpadilla.com"},{"name":"anonymous","email":"jesse.le@auth0.com"},{"name":"anonymous","email":"shu.shen@auth0.com"},{"name":"anonymous","email":"raghd.hamzeh@auth0.com"},{"name":"anonymous","email":"greg.lopez@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"039cce7633b97cb5a61b0f606785cec7b7c9b609","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-5.1.1.tgz","fileCount":20,"integrity":"sha512-H+xFarhG29/m9aCkFPWKFeJvxpNljsmOT5wEfkb00eK/id/fcW8mHY3+3VYCrmJxFijaK/pgx9gBsnORb7j3rQ==","signatures":[{"sig":"MEYCIQDNWgsPi+umV7ai5rzLHdMMnRmWwFyjQNNDa9vvgaqRYwIhAJjNdxrMr+Vh3x1qdP53svFjrC1lMK3dhW4AAPyum2ZM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":126459,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmvKDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkNg/6AteWQDLubzQkVKY8rZvV41RqcIQuf8uLj9vTQoXYll8lQyAG\r\ncP1XFxqoXmzLhTO+FRDM+pzQFZtNx2Nd6dvsghdHE8XThOJuUZn4Eps8hx3Q\r\nXwCnNyt8IZlzxpf8HopGzG3Wq1YeAN2ygtaKOlQXtj9jj4BbHP9j6bnrvHju\r\nlE8VjWJ+hsNqsrR2sZo+9qGo24bu0Bo6+zy1GS8SthEjngXq1Tvf1MGAX6O7\r\nfaqSoDGrwLYwEEc7W84luuyf/Yu4nhhy+/BvaTlkAnOWwYsQ9puGAvrcRhxN\r\nE/Lpw9Q9zdOaX7lurW6YqdHlCmw6FY0iLANpTtijIw3iIC+GJgf193KCnzYE\r\nPHMLWs2qWTZz4OWuRdOBRbgfgQlS4MRTZ6bA2rZfahQo0VuzRlwD443NC1S4\r\n37thEPSFDtyLiu5E/XOPS8n2l+auGdXl2ybgrZH31jOhqhmghPCWWR8OICQs\r\n5Sa6c7U8th7LNBPUtBt1lvbrvpS+SStBXSuimsOW/LOlVbjeuHeb5YXvg+Ky\r\nD9nswDW36uN/FEXPjQCJIDSN8P6ycQ45ae8skyvDYYsmMVA+B//1jKOgNjhf\r\n1vpEcKFae22zr6oNgiP7HqzJ4vTLQddMInJCUMpdFMaxxDe3kOhT14oquhUt\r\nOEQ2cQ8H6v0e+hKr17qXe0n6xlTk29Slg7Y=\r\n=+HBU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/auth0-angular-jwt.umd.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm2015/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"oss.sdks@auth0.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"7.19.1","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"16.6.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/common":">=12.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_5.1.1_1671099011261_0.49775882099365276","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"@auth0/angular-jwt","version":"5.1.2","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@5.1.2","maintainers":[{"name":"anonymous","email":"madhuri.ravindramohan@auth0.com"},{"name":"anonymous","email":"willvedd@gmail.com"},{"name":"anonymous","email":"david.renaud@okta.com"},{"name":"anonymous","email":"jeff.shuman@auth0.com"},{"name":"anonymous","email":"cristian.gonzalez@auth0.com"},{"name":"anonymous","email":"oss.sdks@auth0.com"},{"name":"anonymous","email":"peter.ung@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@okta.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"german.lena@gmail.com"},{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"charles.rea@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"j@jasonstrutz.com"},{"name":"anonymous","email":"julien.wollscheid@auth0.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"ryan.wilke@auth0.com"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"david.moses@auth0.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"maxhammad@gmail.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"luis.britos-manriquez@auth0.com"},{"name":"anonymous","email":"andre.demaio@auth0.com"},{"name":"anonymous","email":"jim.anderson@auth0.com"},{"name":"anonymous","email":"fmakram1@gmail.com"},{"name":"anonymous","email":"navrup.tom@auth0.com"},{"name":"anonymous","email":"frederik.prijck@gmail.com"},{"name":"anonymous","email":"sergii.biienko@auth0.com"},{"name":"anonymous","email":"tom.carter@auth0.com"},{"name":"anonymous","email":"hello@jpadilla.com"},{"name":"anonymous","email":"jesse.le@auth0.com"},{"name":"anonymous","email":"shu.shen@auth0.com"},{"name":"anonymous","email":"raghd.hamzeh@auth0.com"},{"name":"anonymous","email":"greg.lopez@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"e89ece98b0f6ef6407f35b8b64bcb77c53b0d8e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-5.1.2.tgz","fileCount":20,"integrity":"sha512-8ulz24cPpEkZb9/AdAaWfYIkomQDbZqvB9LproF/48Klnr30EJx09AYF9sbKTN4qLSgIZSlCb/Y7XQJZ51vSzA==","signatures":[{"sig":"MEUCIH/DO03S2ZB6xhgCE7uW69/OHSrMvdrv2KigSZmlUIisAiEA/7U8S9wKFLaF349AKlVPYgmY6LUQ6sMq+khx57QWRGw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128767,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjoiOBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpN4w/+MnN/efkf+xRyAobF1iVOmJukvBTLR4I+Y9qWm5H/oUBwCc+a\r\n3Snh3Zhm1nuo6slFIvg/pYl7SQy1qOTln6CcSdhoGce/YjNTDxrYup2SHWu3\r\nLj4TFWXn38sutY6Gyf8iNj+5MP5eHDthRqtxVY66bM84r+9zFjNlUIpj2pwt\r\nq67qFccc4qBm5w6gq8baB6SwyXscangfu2bI9tdEj6YLpz180naucrdNGpz2\r\ndddRjirG5Slpo3ao6JAy7+aZtefipZ3q65pCEigs54Gf8BhjmSlduxt0U5LA\r\n5XTCsctU9piclRIbQYrkRYfh82D3zPjWt7Y12saNpnuaTu0YL039wLDZ9AG9\r\n08641/oq9r05r61njYL/c2rfYEJnBShPdmCvnmm6vuRGA+rpM6uGOQzdcIDP\r\nIPvJj62gPrUsmWLxTzH74tFej+JDTqNiqeDByGDqY24arrPYdyAg3eDGje0Q\r\n2vyOF8U+LAX8dATrCj1EauiyXy0hrjoL9IijK01PXJ2jDYyCrDUtCajRU8Z2\r\n676ce5ofGvZBoaEiA0NIPRO+HSxkawPrMU1850/EDQhDihJs+33iVSsREzOP\r\ns+ljmnWkFvVDEXT+qj7fAOD/xujikB0mOFE5RWcmWUse0bb41QEBc0c1UNXJ\r\nGmVPrsXyMfe84fIyC3NpvRCTgOiCLBcPiq8=\r\n=5ZBP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/auth0-angular-jwt.umd.js","es2015":"fesm2015/auth0-angular-jwt.js","module":"fesm2015/auth0-angular-jwt.js","esm2015":"esm2015/auth0-angular-jwt.js","private":false,"typings":"auth0-angular-jwt.d.ts","_npmUser":{"name":"anonymous","email":"oss.sdks@auth0.com"},"fesm2015":"fesm2015/auth0-angular-jwt.js","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"7.19.1","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"16.6.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/common":">=12.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_5.1.2_1671570304881_0.5797481012296357","host":"s3://npm-registry-packages"}},"5.2.0":{"name":"@auth0/angular-jwt","version":"5.2.0","keywords":["angular","angular 2","authentication","jwt"],"author":{"name":"Sam Bellen"},"license":"MIT","_id":"@auth0/angular-jwt@5.2.0","maintainers":[{"name":"anonymous","email":"natalie.cluer@gmail.com"},{"name":"anonymous","email":"vmichellej@gmail.com"},{"name":"anonymous","email":"enrique.pina@auth0.com"},{"name":"anonymous","email":"ece.tavasli@auth0.com"},{"name":"anonymous","email":"pablo.ubal@okta.com"},{"name":"anonymous","email":"douglas.miller@auth0.com"},{"name":"anonymous","email":"zak.nour@auth0.com"},{"name":"anonymous","email":"stefan.heller@auth0.com"},{"name":"anonymous","email":"james.garrett@auth0.com"},{"name":"anonymous","email":"madhuri.ravindramohan@okta.com"},{"name":"anonymous","email":"willvedd@gmail.com"},{"name":"anonymous","email":"david.renaud@okta.com"},{"name":"anonymous","email":"jeff.shuman@auth0.com"},{"name":"anonymous","email":"oss.sdks@auth0.com"},{"name":"anonymous","email":"peter.ung@auth0.com"},{"name":"anonymous","email":"eduardo.diaz@okta.com"},{"name":"anonymous","email":"sebastian.iacomuzzi@gmail.com"},{"name":"anonymous","email":"martin.walsh@gmail.com"},{"name":"anonymous","email":"devops+npm@auth0.com"},{"name":"anonymous","email":"support@auth0.com"},{"name":"anonymous","email":"hernan@auth0.com"},{"name":"anonymous","email":"andres.aguiar@gmail.com"},{"name":"anonymous","email":"charles.rea@auth0.com"},{"name":"anonymous","email":"balmacedaluciano@gmail.com"},{"name":"anonymous","email":"julien.wollscheid@auth0.com"},{"name":"anonymous","email":"cristiandouce@gmail.com"},{"name":"anonymous","email":"sambellen@gmail.com"},{"name":"anonymous","email":"steve.hobbs@auth0.com"},{"name":"anonymous","email":"sandrino@dimattia.be"},{"name":"anonymous","email":"les.zychowski@auth0.com"},{"name":"anonymous","email":"josh@joshcanhelp.com"},{"name":"anonymous","email":"rob.coles@auth0.com"},{"name":"anonymous","email":"artem@rosnovsky.us"},{"name":"anonymous","email":"david.patrick@auth0.com"},{"name":"anonymous","email":"zeta@widcket.com"},{"name":"anonymous","email":"adamjmcgrath@gmail.com"},{"name":"anonymous","email":"jim.anderson@auth0.com"},{"name":"anonymous","email":"frederik.prijck@gmail.com"},{"name":"anonymous","email":"sergii.biienko@auth0.com"},{"name":"anonymous","email":"tom.carter@auth0.com"},{"name":"anonymous","email":"hello@jpadilla.com"},{"name":"anonymous","email":"jesse.le@auth0.com"},{"name":"anonymous","email":"raghd.hamzeh@auth0.com"},{"name":"anonymous","email":"greg.lopez@auth0.com"}],"homepage":"https://github.com/auth0/angular2-jwt","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"dist":{"shasum":"3a734be51f7f4b1bb85ac2535e987b7e6e706481","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@auth0/angular-jwt/-/angular-jwt-5.2.0.tgz","fileCount":19,"integrity":"sha512-9FS2L0QwGNlxA/zgeehCcsR9CZscouyXkoIj1fODM36A8BLfdzg9k9DWAXUQ2Drjk0AypGAFzeNZR4vsLMhdeQ==","signatures":[{"sig":"MEUCIDGvtHfmDslW0enfMA3DmmAukigt13ksfM21sRAsb+zkAiEAqIXUkxU4iP+omrzOTvluQAy64VcE6aa/LnSQkXSq7kg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/@auth0%2fangular-jwt@5.2.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":124725},"es2020":"fesm2020/auth0-angular-jwt.mjs","module":"fesm2015/auth0-angular-jwt.mjs","esm2020":"esm2020/auth0-angular-jwt.mjs","exports":{".":{"node":"./fesm2015/auth0-angular-jwt.mjs","types":"./index.d.ts","es2015":"./fesm2015/auth0-angular-jwt.mjs","es2020":"./fesm2020/auth0-angular-jwt.mjs","default":"./fesm2020/auth0-angular-jwt.mjs","esm2020":"./esm2020/auth0-angular-jwt.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"517a9e5264205c212178fcfc60c7c7057cbd40fd","private":false,"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"oss.sdks@auth0.com"},"fesm2015":"fesm2015/auth0-angular-jwt.mjs","fesm2020":"fesm2020/auth0-angular-jwt.mjs","repository":{"url":"git+https://github.com/auth0/angular2-jwt.git","type":"git"},"_npmVersion":"9.8.1","description":"JSON Web Token helper library for Angular","directories":{},"sideEffects":false,"_nodeVersion":"18.18.2","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/common":">=14.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-jwt_5.2.0_1698754092692_0.5221231244762947","host":"s3://npm-registry-packages"}}},"name":"@auth0/angular-jwt","time":{"created":"2017-07-19T22:47:44.903Z","modified":"2026-03-25T02:59:14.558Z","1.0.0-beta.1":"2017-07-19T22:47:44.903Z","1.0.0-beta.2":"2017-07-19T23:04:51.597Z","1.0.0-beta.3":"2017-07-24T15:41:44.352Z","1.0.0-beta.4":"2017-07-25T18:01:48.840Z","1.0.0-beta.5":"2017-07-26T19:48:15.825Z","1.0.0-beta.6":"2017-07-28T15:47:01.797Z","1.0.0-beta.7":"2017-07-31T14:27:59.237Z","1.0.0-beta.8":"2017-07-31T21:30:57.034Z","1.0.0-beta.9":"2017-08-03T14:19:25.100Z","1.0.0-beta.10":"2018-01-26T21:09:46.823Z","1.0.0-beta.11":"2018-03-10T19:19:45.676Z","1.0.0":"2018-03-10T19:53:35.019Z","1.1.0":"2018-03-15T03:48:56.511Z","1.2.0":"2018-05-08T16:39:36.650Z","2.0.0":"2018-05-09T20:25:47.093Z","2.1.0":"2018-12-11T18:07:46.017Z","2.1.1":"2019-07-02T11:29:19.143Z","2.1.2":"2019-07-15T15:31:15.643Z","3.0.0":"2019-07-17T08:55:01.193Z","3.0.1":"2019-10-30T15:07:52.840Z","4.0.0":"2020-02-07T23:40:50.499Z","4.1.0":"2020-05-15T12:56:43.576Z","4.1.1":"2020-05-15T15:29:29.839Z","4.1.2":"2020-05-16T09:40:12.094Z","4.2.0":"2020-06-08T07:37:58.728Z","5.0.0":"2020-07-07T08:55:14.939Z","5.0.1":"2020-07-07T13:42:59.651Z","5.0.2":"2020-11-19T12:55:21.766Z","5.1.0":"2022-10-03T16:29:02.369Z","5.1.1":"2022-12-15T10:10:11.420Z","5.1.2":"2022-12-20T21:05:05.183Z","5.2.0":"2023-10-31T12:08:12.902Z"},"readmeFilename":"README.md","homepage":"https://github.com/auth0/angular2-jwt"}