{"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"keywords":["angular","angular2","jwt","authentication"],"dist-tags":{"latest":"0.2.3"},"author":{"name":"ryanchenkie"},"description":"Helper library for handling JWTs in Angular 2+","readme":"# angular2-jwt\n[![Build Status](https://travis-ci.org/auth0/angular2-jwt.svg?branch=master)](https://travis-ci.org/auth0/angular2-jwt)\n[![npm version](https://img.shields.io/npm/v/angular2-jwt.svg)](https://www.npmjs.com/package/angular2-jwt) [![license](https://img.shields.io/npm/l/angular2-jwt.svg)](https://www.npmjs.com/package/angular2-jwt)\n\n**angular2-jwt** is a helper library for working with [JWTs](http://jwt.io/introduction) in your Angular 2 applications.\n\nFor examples of integrating **angular2-jwt** with SystemJS, see [auth0-angular2](https://github.com/auth0-samples/auth0-angularjs2-systemjs-sample).\n\n\n##Contents\n - [What is this Library for?](#what-is-this-library-for)\n - [Key Features](#key-features)\n - [Installation](#installation)\n - [Basic Configuration](#basic-configuration)\n - [Sending Authenticated Requests](#sending-authenticated-requests)\n - [Configuration Options](#configuration-options)\n    - [Advanced Configuration](#advanced-configuration)\n    - [Configuration for Ionic 2](#configuration-for-ionic-2)\n    - [Sending Per-Request Headers](#sending-per-request-headers)\n    - [Using the Observable Token Stream](#using-the-observable-token-stream)\n    - [Using JwtHelper in Components](#using-jwthelper-in-components)\n - [Checking Authentication to Hide/Show Elements and Handle Routing](#checking-authentication-to-hideshow-elements-and-handle-routing)\n - [Contributing](#contributing)\n - [Development](#development)\n - [What is Auth0?](#what-is-auth0)\n - [Create a free account in Auth0](#create-a-free-account-in-auth0)\n - [Issue Reporting](#issue-reporting)\n - [Author](#author)\n - [License](#license)\n\n\n## What is this Library for?\n\n**angular2-jwt** is a small and unopinionated library that is useful for automatically attaching a [JSON Web Token (JWT)](http://jwt.io/introduction) as an `Authorization` header when making HTTP requests from an Angular 2 app. It also has a number of helper methods that are useful for doing things like decoding JWTs.\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\nFor more on implementing authentication endpoints, see this tutorial for an [example using HapiJS](https://auth0.com/blog/2016/03/07/hapijs-authentication-secure-your-api-with-json-web-tokens/).\n\n\n## Key Features\n\n* Send a JWT on a per-request basis using the **explicit `AuthHttp`** class\n* **Decode a JWT** from your Angular 2 app\n* Check the **expiration date** of the JWT\n* Conditionally allow **route navigation** based on JWT status\n\n\n## Installation\n\n```bash\nnpm install angular2-jwt\n```\n\nThe library comes with several helpers that are useful in your Angular 2 apps.\n\n1. `AuthHttp` - allows for individual and explicit authenticated HTTP requests\n2. `tokenNotExpired` - allows you to check whether there is a non-expired JWT in local storage. This can be used for conditionally showing/hiding elements and stopping navigation to certain routes if the user isn't authenticated\n\n\n## Basic Configuration\n\nCreate a new `auth.module.ts` file with the following code:\n\n```ts\nimport { NgModule } from '@angular/core';\nimport { Http, RequestOptions } from '@angular/http';\nimport { AuthHttp, AuthConfig } from 'angular2-jwt';\n\nexport function authHttpServiceFactory(http: Http, options: RequestOptions) {\n  return new AuthHttp(new AuthConfig(), http, options);\n}\n\n@NgModule({\n  providers: [\n    {\n      provide: AuthHttp,\n      useFactory: authHttpServiceFactory,\n      deps: [Http, RequestOptions]\n    }\n  ]\n})\nexport class AuthModule {}\n```\n\nWe added a factory function to use as a provider for `AuthHttp`. This will allow you to configure angular2-jwt in the `AuthConfig` instance later on.\n\n\n## Sending Authenticated Requests\n\nIf you wish to only send a JWT on a specific HTTP request, you can use the `AuthHttp` class. This class is a wrapper for Angular 2's `Http` and thus supports all the same HTTP methods.\n\n```ts\nimport { AuthHttp } from 'angular2-jwt';\n// ...\nclass App {\n\n  thing: string;\n\n  constructor(public authHttp: AuthHttp) {}\n\n  getThing() {\n    this.authHttp.get('http://example.com/api/thing')\n      .subscribe(\n        data => this.thing = data,\n        err => console.log(err),\n        () => console.log('Request Complete')\n      );\n  }\n}\n```\n\n\n## Configuration Options\n\n`AUTH_PROVIDERS` gives a default configuration setup:\n\n* Header Name: `Authorization`\n* Header Prefix: `Bearer`\n* Token Name: `token`\n* Token Getter Function: `(() => localStorage.getItem(tokenName))`\n* Supress error and continue with regular HTTP request if no JWT is saved: `false`\n* Global Headers: none\n\nIf you wish to configure the `headerName`, `headerPrefix`, `tokenName`, `tokenGetter` function, `noTokenScheme`, `globalHeaders`, or `noJwtError` boolean, you can using `provideAuth` or the factory pattern (see below).\n\n#### Errors\n\nBy default, if there is no valid JWT saved, `AuthHttp` will return an Observable `error` with 'Invalid JWT'. If you would like to continue with an unauthenticated request instead, you can set `noJwtError` to `true`.\n\n#### Token Scheme\n\nThe default scheme for the `Authorization` header is `Bearer`, but you may either provide your own by specifying a `headerPrefix`, or you may remove the prefix altogether by setting `noTokenScheme` to `true`.\n\n#### Global Headers\n\nYou may set as many global headers as you like by passing an array of header-shaped objects to `globalHeaders`.\n\n### Advanced Configuration\n\nYou may customize any of the above options using a factory which returns an `AuthHttp` instance with the options you would like to change.\n\n```ts\nimport { NgModule } from '@angular/core';\nimport { Http, RequestOptions } from '@angular/http';\nimport { AuthHttp, AuthConfig } from 'angular2-jwt';\n\nexport function authHttpServiceFactory(http: Http, options: RequestOptions) {\n  return new AuthHttp(new AuthConfig({\n    tokenName: 'token',\n\t\ttokenGetter: (() => sessionStorage.getItem('token')),\n\t\tglobalHeaders: [{'Content-Type':'application/json'}],\n\t}), http, options);\n}\n\n@NgModule({\n  providers: [\n    {\n      provide: AuthHttp,\n      useFactory: authHttpServiceFactory,\n      deps: [Http, RequestOptions]\n    }\n  ]\n})\nexport class AuthModule {}\n```\n\n### Configuration for Ionic 2\n\nTo configure angular2-jwt in Ionic 2 applications, use the factory pattern in your `@NgModule`. Since Ionic 2 provides its own API for accessing local storage, configure the `tokenGetter` to use it.\n\n```ts\nimport { AuthHttp, AuthConfig } from 'angular2-jwt';\nimport { Http } from '@angular/http';\nimport { Storage } from '@ionic/storage';\n\nlet storage = new Storage();\n\nexport function getAuthHttp(http) {\n  return new AuthHttp(new AuthConfig({\n    headerPrefix: YOUR_HEADER_PREFIX,\n    noJwtError: true,\n    globalHeaders: [{'Accept': 'application/json'}],\n    tokenGetter: (() => storage.get('token')),\n  }), http);\n}\n\n@NgModule({\n  imports: [\n    IonicModule.forRoot(MyApp),\n  ],\n  providers: [\n    {\n      provide: AuthHttp,\n      useFactory: getAuthHttp,\n      deps: [Http]\n    },\n  // ...\n  bootstrap: [IonicApp],\n  // ...\n})\n```\n\n### Sending Per-Request Headers\n\nYou may also send custom headers on a per-request basis with your `authHttp` request by passing them in an options object.\n\n```ts\ngetThing() {\n  let myHeader = new Headers();\n  myHeader.append('Content-Type', 'application/json');\n\n  this.authHttp.get('http://example.com/api/thing', { headers: myHeader })\n    .subscribe(\n      data => this.thing = data,\n      err => console.log(error),\n      () => console.log('Request Complete')\n    );\n\n  // Pass it after the body in a POST request\n  this.authHttp.post('http://example.com/api/thing', 'post body', { headers: myHeader })\n    .subscribe(\n      data => this.thing = data,\n      err => console.log(error),\n      () => console.log('Request Complete')\n    );\n}\n```\n\n### Using the Observable Token Stream\n\nIf you wish to use the JWT as an observable stream, you can call `tokenStream` from `AuthHttp`.\n\n```ts\ntokenSubscription() {\n  this.authHttp.tokenStream.subscribe(\n      data => console.log(data),\n      err => console.log(err),\n      () => console.log('Complete')\n    );\n}\n```\n\nThis can be useful for cases where you want to make HTTP requests out of observable streams. The `tokenStream` can be mapped and combined with other streams at will.\n\n\n## Using JwtHelper in Components\n\nThe `JwtHelper` class has several useful methods that can be utilized in your components:\n\n* `decodeToken`\n* `getTokenExpirationDate`\n* `isTokenExpired`\n\nYou can use these methods by passing in the token to be evaluated.\n\n```ts\njwtHelper: JwtHelper = new JwtHelper();\n\nuseJwtHelper() {\n  var token = localStorage.getItem('token');\n\n  console.log(\n    this.jwtHelper.decodeToken(token),\n    this.jwtHelper.getTokenExpirationDate(token),\n    this.jwtHelper.isTokenExpired(token)\n  );\n}\n```\n\n\n## Checking Authentication to Hide/Show Elements and Handle Routing\n\nThe `tokenNotExpired` function can be used to check whether a JWT exists in local storage, and if it does, whether it has expired or not. If the token is valid, `tokenNotExpired` returns `true`, otherwise it returns `false`.\n\n> **Note:** `tokenNotExpired` will by default assume the token name is `token` unless a token name is passed to it, ex: `tokenNotExpired('token_name')`. This will be changed in a future release to automatically use the token name that is set in `AuthConfig`.\n\n```ts\n// auth.service.ts\n\nimport { tokenNotExpired } from 'angular2-jwt';\n\nloggedIn() {\n  return tokenNotExpired();\n}\n```\n\nThe `loggedIn` method can now be used in views to conditionally hide and show elements.\n\n```html\n <button id=\"login\" *ngIf=\"!auth.loggedIn()\">Log In</button>\n <button id=\"logout\" *ngIf=\"auth.loggedIn()\">Log Out</button>\n```\n\nTo guard routes that should be limited to authenticated users, set up an `AuthGuard`.\n\n```ts\n// auth-guard.service.ts\n\nimport { Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\nimport { CanActivate } from '@angular/router';\nimport { Auth } from './auth.service';\n\n@Injectable()\nexport class AuthGuard implements CanActivate {\n\n  constructor(private auth: Auth, private router: Router) {}\n\n  canActivate() {\n    if(this.auth.loggedIn()) {\n      return true;\n    } else {\n      this.router.navigate(['unauthorized']);\n      return false;\n    }\n  }\n}\n```\n\nWith the guard in place, you can use it in your route configuration.\n\n```ts\nimport { AuthGuard } from './auth.guard';\n\nexport const routes: RouterConfig = [\n  { path: 'admin', component: AdminComponent, canActivate: [AuthGuard] },\n  { path: 'unauthorized', component: UnauthorizedComponent }\n];\n```\n\n\n## Contributing\n\nPull requests are welcome!\n\n\n## Development\n\nUse `npm run dev` to compile and watch for changes.\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, among 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\n## Create a free account in Auth0\n\n1. Go to [Auth0](https://auth0.com) and click Sign Up.\n2. Use Google, GitHub or Microsoft Account to login.\n\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\n## Author\n\n[Auth0](https://auth0.com)\n\n\n## License\n\nThis project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.\n","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"users":{"clarenceho":true,"zoer":true,"bpatel":true,"yonigoldberg":true,"godoshian":true,"jeandrebosch":true,"flexxis":true,"ardenexal":true,"anticom":true,"theyssen":true,"desmondddd":true,"pikachumetal":true,"kuzmicheff":true,"chad007":true,"xcesco":true,"razor164":true,"sidkb":true,"alex-chaliy":true},"bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"license":"MIT","versions":{"0.1.0":{"name":"angular2-jwt","version":"0.1.0","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"del":"^1.2.0","gulp":"^3.9.0","gulp-typescript":"^2.8.0","gulp-uglify":"^1.4.2","typescript":"^1.6.2"},"dependencies":{"angular2":"2.0.0-alpha.45","@reactivex/rxjs":"5.0.0-alpha.7"},"gitHead":"d81ee2ad3b6003f890a9555bb99bbff623f4446b","_id":"angular2-jwt@0.1.0","scripts":{},"_shasum":"0b03a0c87e3003e6b4fc80137e6cba9ba28222d2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"0b03a0c87e3003e6b4fc80137e6cba9ba28222d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.0.tgz","integrity":"sha512-8NFJePyULM0TJRKLwBkEEZ9aw3Mw4RBBya9y7Co88Opif2HjUe3jk2WEtBXJelpK2WwCcOffWVEdncyP4WIu4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDjrFkQSzyVbBJfQQRCCeRbpP/IrJ5ANGSrAXvcxGLYGAiBxa3BVVcVmaEB/mIau5P1km8O/AmD2lwbELC3kzTfk3Q=="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}]},"0.1.1":{"name":"angular2-jwt","version":"0.1.1","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"del":"^1.2.0","gulp":"^3.9.0","gulp-typescript":"^2.8.0","gulp-uglify":"^1.4.2","typescript":"^1.6.2"},"dependencies":{"angular2":"2.0.0-alpha.45","@reactivex/rxjs":"5.0.0-alpha.7"},"gitHead":"d81ee2ad3b6003f890a9555bb99bbff623f4446b","_id":"angular2-jwt@0.1.1","scripts":{},"_shasum":"1f94e2eb82d5222b479505699494e2459b1745b5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"1f94e2eb82d5222b479505699494e2459b1745b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.1.tgz","integrity":"sha512-hdlA4Ghx/hCAtVzOttH+9XwZEq3eRnpDGfPZbQ0/NiNdW4gjl4WgdSmfngDDgShxUGCKifyEba+9mg3Ge/1RBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDgJdCqpUnthXm7sEDuOWkd9xR9z2PStY+go9IEgezYXwIhAKHrk5203qk1vbyJDWXDgEY19Pl6IZ/sa70PkBuj7rtt"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}]},"0.1.2":{"name":"angular2-jwt","version":"0.1.2","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"typescript":"^1.6.2"},"dependencies":{"@reactivex/rxjs":"5.0.0-alpha.7"},"gitHead":"ad8f5384e0fe23fb36f46a18640c7ecfb5ba9080","_id":"angular2-jwt@0.1.2","_shasum":"235d0fabdaa8e47346abeaebcf9f92c4865f07b7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"235d0fabdaa8e47346abeaebcf9f92c4865f07b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.2.tgz","integrity":"sha512-gjd1sgvgKeOTuf6ojwJD5ATfUU2fegubYdmpLVmuD6J62YG9gkQbAwZdufkDKA/21UtAEfmJ1Kt2iOJdS7YRXg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBtTnfNNQZaLo/agDR0i6hWnUrdS9R14KbR5vIOFNguxAiEAv3Klvd9xJDnDfJpjC/WTy86ZnV41NxjgkJOycYzc1rM="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}]},"0.1.3":{"name":"angular2-jwt","version":"0.1.3","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":"2.0.0-beta.0","zone.js":"^0.5.10","rxjs":"5.0.0-beta.0"},"devDependencies":{"systemjs":"~0.19.6","typescript":"~1.7.3"},"gitHead":"764f3f87abd2dcadbc989eac71ed01f3dec56193","_id":"angular2-jwt@0.1.3","_shasum":"33719fb08646d5d0c610e35148b70df491c8cf5a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"33719fb08646d5d0c610e35148b70df491c8cf5a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.3.tgz","integrity":"sha512-5RDbWiSiSH4lp8n1vcoQinJQ4PeyL9PEjxbhV8u2ommA+/+vGJDaL9UNhchHLTLMkHRVyBVrmqC8oUgHb+Vt/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjQ3WbsK3lhA7LTeBfL8KwmhWajhiLz7YOLh/eKwWgiwIgeBXkOR1V6XKd1OARtvf6fvjnIn2AMUZ5iZgxw+RpivU="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}]},"0.1.4":{"name":"angular2-jwt","version":"0.1.4","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":"2.0.0-beta.0","zone.js":"^0.5.10","rxjs":"5.0.0-beta.0"},"devDependencies":{"systemjs":"~0.19.6","typescript":"~1.7.3"},"gitHead":"709a241a519ca2588b21afd812a4ee2fc4c8a573","_id":"angular2-jwt@0.1.4","_shasum":"a23ed854b67fe7cef641298aa9d1f5751d0ca956","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"a23ed854b67fe7cef641298aa9d1f5751d0ca956","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.4.tgz","integrity":"sha512-yAINysSiGy01Hy4SD4P7epqxCc09Ko29ylblXYA6mzFMJTcNfKOubucmE7lTpBQiWJ6LBiyIbTp0975tTjEwDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGrcP6DB0muueXv5n/wuoOAHWDpK/VA/29lJ+uzCJVS6AiEAtuXzYqr/1Z2MznTE9zjeBPUZbosuslwuqEtnR95XgFg="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}]},"0.1.5":{"name":"angular2-jwt","version":"0.1.5","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.0","zone.js":"^0.5.10","rxjs":"5.0.0-beta.0"},"devDependencies":{"systemjs":"~0.19.6","typescript":"~1.7.3"},"gitHead":"baf5064fb7a4df4db0645d5a7d1470c62d6f69ee","_id":"angular2-jwt@0.1.5","_shasum":"02e0d895587485afcce7c27e28cc65678d2bf6cc","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"02e0d895587485afcce7c27e28cc65678d2bf6cc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.5.tgz","integrity":"sha512-U+F3Gwr9/LucmTfNNMIaUS7hMXPoxFDVciqfUm/FSW9toM1gAJgc6Kp2anVZcOc1Sz263kVFBt738TzBzYRQVg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCYC1IOs8zGD22EKrMHknNAQeiIohxi2lvuoZuks6M/2AIgN1wX/kCCiDRJcwJG4qGr+GB0cyyejmsW9XY5dXwqzWM="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}]},"0.1.6":{"name":"angular2-jwt","version":"0.1.6","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.0","zone.js":"^0.5.10","rxjs":"5.0.0-beta.0"},"devDependencies":{"systemjs":"~0.19.6","typescript":"~1.7.3"},"gitHead":"cfa5a16c8b4f3ef7067ddef9f9f5b300e8029900","_id":"angular2-jwt@0.1.6","_shasum":"489e963a43aecea74b3964392269131f25b08dd8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"489e963a43aecea74b3964392269131f25b08dd8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.6.tgz","integrity":"sha512-XMAgrMJYG6ly2Ff2JxF+WZpBfruzctnUdnILs/Yx8dZJhI5noYCkqK0EbRe4FSgSeFW1Ai6tARWn+4CKyHMKzw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICrV1tbd2gwxlBxDYYQzsHGuQD5i/Ysp8epNXumUTK8UAiEAqHd3uwaxKAp4dyVK2W8jRjKxIdgWx5e/7sKZrIWAVI0="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}]},"0.1.7":{"name":"angular2-jwt","version":"0.1.7","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"tsc","postinstall":"typings install"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.7","zone.js":"^0.5.15","rxjs":"5.0.0-beta.2"},"devDependencies":{"systemjs":"~0.19.6","typescript":"~1.7.5","typings":"^0.6.8"},"gitHead":"311f488bf5469be1600d2298db16b621210b25d7","_id":"angular2-jwt@0.1.7","_shasum":"4668a2de6c6c52d74e1ebb76fb22bd355a56d0d3","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"4668a2de6c6c52d74e1ebb76fb22bd355a56d0d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.7.tgz","integrity":"sha512-/rJoBV9/zzdyRN5Goren/5PsrIiR29MVM9rjiuC7lJtz2rOLMw57aWgg23Y0wqztCOJMlpKUHmwJ0BJF8VR/BQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDoVVERcCezaQJR9Afo/ozK47ocYXrqfzzIDDURx/Rl9gIgeLwis4QAls4i2cx84viz2oUfwF8DsIjx5NONLY/Vv+M="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.7.tgz_1456505915246_0.9972038434352726"}},"0.1.8":{"name":"angular2-jwt","version":"0.1.8","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"tsc","postinstall":"typings install"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.7","zone.js":"^0.5.15","rxjs":"5.0.0-beta.2","typings":"^0.6.8"},"devDependencies":{"systemjs":"~0.19.6","typescript":"~1.7.5"},"gitHead":"872b1bc8148fa1bb83252c9cd480f6d745517276","_id":"angular2-jwt@0.1.8","_shasum":"21734d9aec56094001601d3687a867c770e9b4fb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"21734d9aec56094001601d3687a867c770e9b4fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.8.tgz","integrity":"sha512-JZFABP1Op6UR5XUSGFCwi/f+gzT5EnLt0wCAoXmFNBIKjAddmErLtXJPNTZIbgVD9eesZE94f2Nh8e/np72TZw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDrl/4CEZ9rTsAsby8kGn7YbruJ2qatm9d3K4knCeTXSAiAZH31SseNqsFl1UDbSuVLlyfrGzdjFBmwFBUgmyvAs6g=="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.8.tgz_1457020956284_0.9367510962765664"}},"0.1.9":{"name":"angular2-jwt","version":"0.1.9","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"tsc","postinstall":"typings install"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.12","zone.js":"^0.6.6","rxjs":"5.0.0-beta.2","typings":"^0.7.9"},"devDependencies":{"systemjs":"~0.19.6","typescript":"^1.8.9"},"gitHead":"21a505835a6d3fab808dba42a79c1dacb216604b","_id":"angular2-jwt@0.1.9","_shasum":"3d4281484982760617e1c8ca93ad916b8bcd9b56","_from":".","_npmVersion":"3.8.1","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"3d4281484982760617e1c8ca93ad916b8bcd9b56","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.9.tgz","integrity":"sha512-t7MsAceIDVFjviMUj2wVCIl1Tna0ZrnV0rMzOkXQLXp4w1jU1l/kCDmZJafltt4r0hw4cPSNN++XuOwwNzqIww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnAEasZcaSy1+IKZyygVk3NBnb+8MfQvvsbaPHgxlEpQIhAIwRiCSIsW0137/2Vt7ZEQ6Bx9Onn2WEMuCdicffNbK7"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.9.tgz_1458915539897_0.6784616538789123"}},"0.1.10":{"name":"angular2-jwt","version":"0.1.10","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"tsc","postinstall":"typings install"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.12","es6-shim":"^0.35.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.2","zone.js":"^0.6.6"},"devDependencies":{"typescript":"^1.8.9","typings":"^0.7.12"},"gitHead":"26a2a6be97d008bafbdce6cab7a758044e0b8b47","_id":"angular2-jwt@0.1.10","_shasum":"46cb8aa6b837ecab0f18364f6b7d33f280783e3b","_from":".","_npmVersion":"3.8.1","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"46cb8aa6b837ecab0f18364f6b7d33f280783e3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.10.tgz","integrity":"sha512-6Qpx1QpJX+GpJG0AD8UZDGpKVOge/tTNfSxdEg+Kmuxjqciy2Y2UxvizSX3alY/hAtNjpu9ojw3//BJAbnVxIw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFLtGH6Va0rpS8E5aF2jyNst0l6tiWocQ5uMgSz6lfijAiAw+TxHJtFrSbwp38edfJ/ODX50ElQp6APKm8MopVMIaA=="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.10.tgz_1460836216952_0.7938501117751002"}},"0.1.11":{"name":"angular2-jwt","version":"0.1.11","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.12","es6-shim":"^0.35.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.2","zone.js":"^0.6.6"},"devDependencies":{"typescript":"^1.8.9","typings":"^0.7.12"},"gitHead":"5df210b2be042c1b490eff86f33b21afd4ff49a8","_id":"angular2-jwt@0.1.11","_shasum":"3a611300a96622f9353f43ae9000b3ba61d32686","_from":".","_npmVersion":"3.8.1","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"3a611300a96622f9353f43ae9000b3ba61d32686","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.11.tgz","integrity":"sha512-PABlUsSvhsOsF6uKqh0TOjJUFD3gxUChrqsMSzsoD8DE+dwxda1lzJ4zIuaCgm3VRySIzZADfghrwMgruK41Rg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBOrvqCNZDVccZAbKOSmAUIxtIk6FPIB+QwOIcvywaiZAiA3UAB0m8IsPB3zCBiem/Gf7qpiX7XY6Bjca0wkKI+rug=="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.11.tgz_1460838464052_0.6938604556489736"}},"0.1.12":{"name":"angular2-jwt","version":"0.1.12","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.12","es6-shim":"^0.35.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.2","zone.js":"^0.6.6"},"devDependencies":{"typescript":"^1.8.9","typings":"^0.7.12"},"gitHead":"6c18dcbd2304aba113b42e2af81f0c872f1c23c5","_id":"angular2-jwt@0.1.12","_shasum":"74bae8e27e96c3e2f1eaa37c2b4d6e56a6bc6520","_from":".","_npmVersion":"3.8.1","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"74bae8e27e96c3e2f1eaa37c2b4d6e56a6bc6520","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.12.tgz","integrity":"sha512-467Neq6F9DGTMPsWa8woHT669g0T1qlhFjgTnbGwJHOH8EleqSRDBJDcnrQxdl5i2xdLZ+cq136x2aM1ibd3Sw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAtnizNDJExtBQb94zV1/zEMPAFBFpL6I0P5RnPHyBmHAiEA8ws83ZFQiV81V3qXuRy5fCiUtqIVX0HUX44zV2TRc/g="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.12.tgz_1460854533389_0.6309512765146792"}},"0.1.13":{"name":"angular2-jwt","version":"0.1.13","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","dependencies":{"angular2":">=2.0.0-beta.12","es6-shim":"^0.35.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.2","zone.js":"^0.6.6"},"devDependencies":{"typescript":"^1.8.9","typings":"^0.7.12"},"gitHead":"dd81e6d4234f96505b88761fa71996628704f83b","_id":"angular2-jwt@0.1.13","_shasum":"27f0fdc27e64109eba327e3140f905475fe92a0d","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"27f0fdc27e64109eba327e3140f905475fe92a0d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.13.tgz","integrity":"sha512-PdPS66DXbA+bikcziJRO/hNg/SsalT17t455SMrNadLb+kWieWuXjfUPFwAXjcHgz4zG+pZJw109Sc08XJZ/VQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICtP4RRCDiYQC0BTJdXMk2GA23QzEnFcJWhPbJ+J0pAHAiEAln1dLyBB5jDf15oBho3Ko8PiZveXYpQShaSlGJeKZN4="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.13.tgz_1461946872496_0.8953528453130275"}},"0.1.14":{"name":"angular2-jwt","version":"0.1.14","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/core":"^2.0.0-rc.1","@angular/http":"^2.0.0-rc.1","es6-shim":"^0.35.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.6","typescript":"^1.8.9","typings":"^0.7.12","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.1","@angular/http":"^2.0.0-rc.1","rxjs":"5.0.0-beta.6"},"gitHead":"9e1dc4cfc4c56bac3af8adefab4e39ab660aecd4","_id":"angular2-jwt@0.1.14","_shasum":"7a9524842f2f14535e007cb91a048beabcc27b81","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"7a9524842f2f14535e007cb91a048beabcc27b81","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.14.tgz","integrity":"sha512-K9rGRpXoW+XZe2V6YjKMK+7nDzxcBcGlDe3aOLMdJftr6QizkTBtA76DL2j2Yczj0ZT45H+DlBYkC51GkHBs7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQunlPe/wez4oT5kDPrBp4Bq+cz+G9SnN3Ey7GwmPz7AIhAIKRQwt4+3Cb75q8WDal6E7n4oQLsJLta+WwmuZUPn4p"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.14.tgz_1462380378240_0.9593878462910652"}},"0.1.15":{"name":"angular2-jwt","version":"0.1.15","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/core":"^2.0.0-rc.1","@angular/http":"^2.0.0-rc.1","es6-shim":"^0.35.0","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.6","typescript":"^1.8.10","typings":"^0.7.12","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.1","@angular/http":"^2.0.0-rc.1","rxjs":"5.0.0-beta.6"},"gitHead":"0e3a39a73697e4cd5d05ce5e01d89c0beb4b0c6d","_id":"angular2-jwt@0.1.15","_shasum":"855a8e14ee639a4b2eb4c94c43d58a95ab0fc12a","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"855a8e14ee639a4b2eb4c94c43d58a95ab0fc12a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.15.tgz","integrity":"sha512-9eQgdE4nz2XD9u9ciYMFz+fExnbrfjpipcA8hm0KqhZX0uHwdlh6Q2fHHSZJpVboW8EIxnWq2+JhY0ecqMrZbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJ9sXHR5FBcIIyMmVFD1PuOJexCCVk8v3JZ98bHZvwcQIgNGcK9ufXrZOrlOy2IonV6W+0f4Ra4BK+W49Zzia4I7g="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.15.tgz_1462830903667_0.2271628282032907"}},"0.1.16":{"name":"angular2-jwt","version":"0.1.16","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/core":"^2.0.0-rc.1","@angular/http":"^2.0.0-rc.1","awesome-typescript-loader":"^0.17.0","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-jasmine":"^0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.6","typescript":"^1.8.10","typings":"^0.7.12","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.1","@angular/http":"^2.0.0-rc.1","rxjs":"5.0.0-beta.6"},"gitHead":"4c7a9a99b646fc0ca573ec76dd0821a0458d3aa7","_id":"angular2-jwt@0.1.16","_shasum":"d7009687c3e967d432514ff0250641b1e002d940","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"d7009687c3e967d432514ff0250641b1e002d940","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.16.tgz","integrity":"sha512-aX4HHtuDefP1oTlxPUFZLOlq2iiR/4yE1axhSKZlCIevXJnP9ULAO2ONLiCxCHt1OOgqFTwFvxt/2NnDlCBusA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCNtg8ClXajCB1Aepv0fFLEYdv3YkOgmuO5ZJru97tOGwIgbPcXemIeoQzqSKzx3KXTHx4RglbQ41y0bulwp5bDv+w="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.16.tgz_1464294850305_0.7190340564120561"}},"0.1.17":{"name":"angular2-jwt","version":"0.1.17","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/core":"^2.0.0-rc.4","@angular/http":"^2.0.0-rc.4","awesome-typescript-loader":"^0.17.0","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-jasmine":"^0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.6","typescript":"^1.8.10","typings":"^0.7.12","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.4","@angular/http":"^2.0.0-rc.4","rxjs":"5.0.0-beta.6"},"dependencies":{"atob":"^2.0.3"},"gitHead":"be1c01d9fced2f675d36e784382252facb21577e","_id":"angular2-jwt@0.1.17","_shasum":"6c22cb47c336b7c2ecda8d7a6f54ee0a8ad5c53d","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"6c22cb47c336b7c2ecda8d7a6f54ee0a8ad5c53d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.17.tgz","integrity":"sha512-oSgPHN2BU+AQgcJvtUB6xOA5qApepQxJFVI2N8zIBsruuCr9hxjeoMH6x4VZqeLYYZ7WcA6GZ91/YX8TrA51cQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDIDnLE10PnRfF8BefXWZujUUfBNV1rrBK04rzvCPXyBAiAd7ZFMatUR1LAXY1AoPZHevUErSzSamltGvzjzVDtHiQ=="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.17.tgz_1468622694415_0.12783719971776009"}},"0.1.18":{"name":"angular2-jwt","version":"0.1.18","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/core":"^2.0.0-rc.4","@angular/http":"^2.0.0-rc.4","awesome-typescript-loader":"^0.17.0","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-jasmine":"^0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.6","typescript":"^1.8.10","typings":"^0.7.12","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.4","@angular/http":"^2.0.0-rc.4","rxjs":"5.0.0-beta.6"},"dependencies":{"atob":"^2.0.3"},"gitHead":"8163e88cdea43ff8493142a6c24609fff7ed0100","_id":"angular2-jwt@0.1.18","_shasum":"f6542dec76b637d321be978256d61a0aa74a6cd2","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"f6542dec76b637d321be978256d61a0aa74a6cd2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.18.tgz","integrity":"sha512-dh0yUZlxz4H+bi7i3gXbNLLYgphfgtBP/QshyyZ1wpDYpUULO/Zjx6T+Sb0Eh2pdAI5RSwSCI//ln5UviWpAIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnhCZOh9F+E+t6MQZ9BW82XctnyhxOSLO7UFjpC403qAIhAMvumvVJnRDhz5xpNytf4qnCn5m3CpzegEw/wEHzlpPz"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.18.tgz_1469049427778_0.7517522692214698"}},"0.1.19":{"name":"angular2-jwt","version":"0.1.19","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/core":"^2.0.0-rc.4","@angular/http":"^2.0.0-rc.4","awesome-typescript-loader":"^0.17.0","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-jasmine":"^0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.6","typescript":"^1.8.10","typings":"^0.7.12","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.4","@angular/http":"^2.0.0-rc.4","rxjs":"5.0.0-beta.6"},"dependencies":{"atob":"^2.0.3"},"gitHead":"816a88f6195ebf303e1dcb42c11de0ee9efcf40c","_id":"angular2-jwt@0.1.19","_shasum":"fa1b61a04be3f2fd66dd50e1515f0dc9f3a75e8b","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"fa1b61a04be3f2fd66dd50e1515f0dc9f3a75e8b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.19.tgz","integrity":"sha512-AkKThzX5v5Z6pvcI5dUWmBxraXxA0sm2xMl6nNzR/hqvgP6VjlgW1kfoVzlNflajGSMUPm380u1+NMTEfMp34w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjAH+JHGX8jUX8G1a9Pf5kav53Iq4VPYuNIII9YCzKHQIhALm7xJ3rnfKhIdrqOO67mZ2o/uBG1V3/sjW7OH8RLeSP"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.19.tgz_1471631780821_0.00375410751439631"}},"0.1.20":{"name":"angular2-jwt","version":"0.1.20","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/core":"^2.0.0-rc.4","@angular/http":"^2.0.0-rc.4","awesome-typescript-loader":"^0.17.0","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-jasmine":"^0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.6","typescript":"^1.8.10","typings":"^0.7.12","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.4","@angular/http":"^2.0.0-rc.4","rxjs":"5.0.0-beta.6"},"dependencies":{"atob":"^2.0.3"},"gitHead":"ab60a3f62a7859df5518b53b661e76ea83a06bcc","_id":"angular2-jwt@0.1.20","_shasum":"8ac16865ad8aef4677771d269e652304730ac8a5","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"8ac16865ad8aef4677771d269e652304730ac8a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.20.tgz","integrity":"sha512-uj39ckcewzzK6ttiiXImzR6xwqVY4cKSG9ziwMpjdvEAJchpGLsaM1hCJcDGThc515pVrALwYIu2pgL9Hpr05A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIARg6Mg902cddeksBOJiZXeRLaJ9assleCnLKaTXxAm2AiEAx3CDwSSBA6xlUz5irgWFkflUoChAI2GqrKZehl2f8ek="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.20.tgz_1472651752917_0.6912577343173325"}},"0.1.21":{"name":"angular2-jwt","version":"0.1.21","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.0.0-rc.6","@angular/core":"^2.0.0-rc.6","@angular/http":"^2.0.0-rc.6","@angular/platform-browser":"^2.0.0-rc.6","awesome-typescript-loader":"^0.17.0","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-jasmine":"^0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.11","typescript":"^1.8.10","typings":"^0.7.12","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.6","@angular/http":"^2.0.0-rc.6","rxjs":"5.0.0-beta.11"},"dependencies":{"atob":"^2.0.3"},"gitHead":"43157249e220f06325a4aee7516c615425863c13","_id":"angular2-jwt@0.1.21","_shasum":"e93c7b149fa2133f9f434f507f7ca481d7b0d496","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"e93c7b149fa2133f9f434f507f7ca481d7b0d496","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.21.tgz","integrity":"sha512-7JYg+Q+2bz8zrwHdkwYl/A3trwz6S4SiNjYXH0MJkJwSSHSR2cJH8mDxqZUsdlYkgY3pc9zfqjIk60DITlMhyw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDzTLA7TgCV5tjED3LoZU9HPlidzNmgOy6usABX4wWEIQIgKx6+rMHoBF+cPSA3bULtK9eM9mJGlywvR1ZVxYR1q0s="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.21.tgz_1472753464858_0.7459306963719428"}},"0.1.22":{"name":"angular2-jwt","version":"0.1.22","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.0.0-rc.6","@angular/core":"^2.0.0-rc.6","@angular/http":"^2.0.0-rc.6","@angular/platform-browser":"^2.0.0-rc.6","awesome-typescript-loader":"^0.17.0","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-jasmine":"^0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.11","typescript":"^2.0.2","typings":"^0.7.12","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0-rc.6","@angular/http":"^2.0.0-rc.6","rxjs":"5.0.0-beta.11"},"dependencies":{"atob":"^2.0.3"},"gitHead":"8eb6204d5391f2bdf35041b57cf5b8e0c68fbbf4","_id":"angular2-jwt@0.1.22","_shasum":"e0573ae4cc1806990e8fdb67facb5d18b647b13a","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"e0573ae4cc1806990e8fdb67facb5d18b647b13a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.22.tgz","integrity":"sha512-ClBeENBRo5on9uk+nxILSuGJ07/Yh2qbeL551JSu1p11U+GSr2PjM77NH023hOkmfVgS8EYsttg6Vf6neqsk8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFhHICoycWlFxI4A1GIm2W9vYnVvqYTdg1AdZy6OOXikAiEA73t7h/fIE9EfvUvRSyfh3hNfy5oZCnTcXW5eyqh3Pzg="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.22.tgz_1473428527539_0.882347890175879"}},"0.1.23":{"name":"angular2-jwt","version":"0.1.23","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"typings install && tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.0.0","@angular/core":"^2.0.0","@angular/http":"^2.0.0","@angular/platform-browser":"^2.0.0","awesome-typescript-loader":"^0.17.0","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-jasmine":"^0.3.8","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.2","rxjs":"5.0.0-beta.12","typescript":"^2.0.2","typings":"^0.7.12","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0","@angular/http":"^2.0.0","rxjs":"5.0.0-beta.12"},"dependencies":{"atob":"^2.0.3"},"gitHead":"0f11e278ca25fa6f8380f8709683c003038d91f6","_id":"angular2-jwt@0.1.23","_shasum":"82050a340860ce7715afd537d77c12bd63280dea","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"82050a340860ce7715afd537d77c12bd63280dea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.23.tgz","integrity":"sha512-BcQnnBja5QHFMrD01X5XCamh0hjCnceF6ZEpyYLMQm56BVhYRGRSrZ/ztq2ira9EhCSoO+dl+Qjhw2i4c5dxqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOEqriR7BraFV+Og9lu3KoGuIql4s8NThly+s4lyTbtQIhAPp9oQLeYUk5ellVrBIbeuX7B2BC6kAVcLx653un7JE8"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.23.tgz_1474022771033_0.9498714429792017"}},"0.1.24":{"name":"angular2-jwt","version":"0.1.24","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.0.0","@angular/core":"^2.0.0","@angular/http":"^2.0.0","@angular/platform-browser":"^2.0.0","@types/jasmine":"^2.2.33","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^2.2.4","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.8","rxjs":"5.0.0-beta.12","typescript":"^2.0.2","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0","@angular/http":"^2.0.0","rxjs":"5.0.0-beta.12"},"dependencies":{"js-base64":"^2.1.9"},"gitHead":"a2a019567e07a8ea6825f55c5f0422eeaa454597","_id":"angular2-jwt@0.1.24","_shasum":"af45d180c51751ff9d04f4beb1357848f31d854b","_from":".","_npmVersion":"3.9.2","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"af45d180c51751ff9d04f4beb1357848f31d854b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.24.tgz","integrity":"sha512-5zVWY3Rip590JWeLqojNjgz04UKVKAWyikawCY3Ur2XH/9lH9GHRJ8GGK7CzBZVgBRFdmWmxwKe/xVd8hvx21A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBBWa8GP+j4FdcqBN5LnUXHUx6lcKazu6exzRFxQ5xxcAiA1vqwkcXevU6gya5o2w0EG8ZHp+mrQTKfo3Bov3TaOYg=="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.24.tgz_1475938980628_0.6038174645509571"}},"0.1.25":{"name":"angular2-jwt","version":"0.1.25","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.0.0","@angular/core":"^2.0.0","@angular/http":"^2.0.0","@angular/platform-browser":"^2.0.0","@types/jasmine":"^2.2.33","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^2.2.4","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.8","rxjs":"5.0.0-beta.12","typescript":"^2.0.2","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0","@angular/http":"^2.0.0","rxjs":"5.0.0-beta.12"},"gitHead":"975fd867bb5f839391fe7af327d12c9cfe1662ae","_id":"angular2-jwt@0.1.25","_shasum":"22f4d7757909f86f245c0d79a72ed97e08f407b4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.6.1","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"22f4d7757909f86f245c0d79a72ed97e08f407b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.25.tgz","integrity":"sha512-OVjQ4gg1vSnVvLDKCiqE6xYlUo85OtHNFwLBoj28RCmpo0SWTf95y/+Bv3ufc0EWqVqKOH1ZSyuOPNYGf6Cgwg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDYqPVRH39XgG74XxfWdjuW3644m+PjqgaR4G5H2OqizAiEAprtVeP+VH+O1hqSp6OrbTXpKZvpUlpoik0blHoGnm5o="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.25.tgz_1477180097169_0.1533698970451951"}},"0.1.26":{"name":"angular2-jwt","version":"0.1.26","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.0.0","@angular/core":"^2.0.0","@angular/http":"^2.0.0","@angular/platform-browser":"^2.0.0","@types/jasmine":"^2.2.33","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^2.2.4","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.8","rxjs":"5.0.0-beta.12","typescript":"^2.0.2","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0","@angular/http":"^2.0.0","rxjs":"5.0.0-beta.12"},"gitHead":"44a5b6a72c7638e3018b515740cb4a385378d4bf","_id":"angular2-jwt@0.1.26","_shasum":"997c57491933674049deb7e64d0d69681561a316","_from":".","_npmVersion":"3.10.9","_nodeVersion":"4.6.1","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"997c57491933674049deb7e64d0d69681561a316","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.26.tgz","integrity":"sha512-WRpf8oj0wqj71T3Iow/54sXXTvwt4NAUWi/qTsfZYZVbjOEPKLu0TfgQrIN5QZLat0Gv1Fkc6d7giq5EVcKPqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBKCs3aCq6zOh89iyJXuhrMt/EfYfPR2gVghZKhLBINiAiEA4WPAd4XVjBiElI3agV1oLoOZVEU6Lvlj3BSlIzV8xIw="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.26.tgz_1481039189260_0.16484983009286225"}},"0.1.27":{"name":"angular2-jwt","version":"0.1.27","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.0.0","@angular/core":"^2.0.0","@angular/http":"^2.0.0","@angular/platform-browser":"^2.0.0","@types/jasmine":"^2.2.33","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^2.2.4","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.8","rxjs":"~5.0.0-beta.12","typescript":"^2.0.2","webpack":"^1.13.0","zone.js":"~0.6.12"},"peerDependencies":{"@angular/core":"^2.0.0","@angular/http":"^2.0.0","rxjs":"5.0.0-beta.12"},"gitHead":"6281ed2bb99f6716a3e3ab10b62ce6bad7e6cdc2","_id":"angular2-jwt@0.1.27","_shasum":"cf57ff16066b07371d79689fde9ddf22d45e3d8c","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"cf57ff16066b07371d79689fde9ddf22d45e3d8c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.27.tgz","integrity":"sha512-0bHrUtc6YLCJue1IGdmJqjq2zR+QY36j1CnPZTUMmMtTti8PhWJ9VBlHZX5LeCFoLltMYfzYq/khzFXQu5/mcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB+uAU+iudoZ93dW+weeYxAtv0FJRIRZprxA/KcyT7UiAiBdW8fdktj6udMb2R8rEuDzzDXZp/47tCBItLr9w6ay9Q=="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.27.tgz_1481932485057_0.6494147481862456"}},"0.1.28":{"name":"angular2-jwt","version":"0.1.28","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc","ngc":"ngc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","types":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.4.2","@angular/compiler":"^2.4.2","@angular/compiler-cli":"^2.4.2","@angular/core":"^2.4.2","@angular/http":"^2.4.2","@angular/platform-browser":"^2.4.2","@types/jasmine":"^2.2.33","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^2.2.4","core-js":"^2.3.0","es6-shim":"^0.35.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"0.1.8","rxjs":"~5.0.0-beta.12","typescript":">=2.0.2 <=2.0.10","webpack":"^1.13.0","zone.js":"~0.7.2"},"peerDependencies":{"@angular/core":"^2.0.0","@angular/http":"^2.0.0","rxjs":"^5.0.0"},"gitHead":"8291efc2995eb140aade85a5e7c9afde0bfd2a1a","_id":"angular2-jwt@0.1.28","_shasum":"4896dbb88ec561382cf485ff9eaa6f96a683f4d1","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"4896dbb88ec561382cf485ff9eaa6f96a683f4d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.1.28.tgz","integrity":"sha512-tnrrppaBw4utk9XVB4SMJe+4Br2aBgqVvgsG/KAbw6f7tYIrlZicOZB8h2TMNNK38f1kRk/rtGQv6Sbsv3cHiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDr3oi6Jfgcw49R64NCEBJiLFOXRqQpHNc5JqFjWW4r0wIhAONvda/J3ujjZs4tErylkt/3MPWYu51sEUc7WVKuVCXq"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.1.28.tgz_1483990590233_0.037745539797469974"}},"0.2.0":{"name":"angular2-jwt","version":"0.2.0","description":"Helper library for handling JWTs in Angular 2","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc","ngc":"ngc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","types":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.4.2||^4.0.0","@angular/compiler":"^2.4.2||^4.0.0","@angular/compiler-cli":"^2.4.2||^4.0.0","@angular/core":"^2.4.2||^4.0.0","@angular/http":"^2.4.2||^4.0.0","@angular/platform-browser":"^2.4.2||^4.0.0","@types/jasmine":"^2.5.46","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^3.1.2","core-js":"^2.3.0","es6-shim":"^0.35.3","jasmine-core":"^2.4.1","karma":"^1.5.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.3","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"^0.1.10","rxjs":"^5.0.0","typescript":"~2.1.5","webpack":"^2.3.1","zone.js":"~0.7.2||~0.8.5"},"peerDependencies":{"@angular/core":"^2.0.0||^4.0.0","@angular/http":"^2.0.0||^4.0.0","rxjs":"^5.0.0"},"gitHead":"5f226455476ea7472d9ef6eb447b7a1a5a60ba54","_id":"angular2-jwt@0.2.0","_shasum":"8ae34d357bbe8eac388d2472d694e9af92d79f40","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"8ae34d357bbe8eac388d2472d694e9af92d79f40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.2.0.tgz","integrity":"sha512-wapFRc0w2vLi9G9pld1XFg/YniE3/gvsgMU/voJQ2qDY3VD+B2UV9+HKwTIPvrgNZRsggAKp/igak5fJJISQEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGA9BN8SInCTTqnzGt4zCoiJBQbCfzEVPRNLnIb8fDSQIhAPYEmlCjXhII3hXR7R5Z3kvbedhllYrQ0TDfwjmX8K5N"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.2.0.tgz_1490566590534_0.20755324698984623"}},"0.2.1":{"name":"angular2-jwt","version":"0.2.1","description":"Helper library for handling JWTs in Angular 2+","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc","ngc":"ngc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","types":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.4.2||^4.0.0","@angular/compiler":"^2.4.2||^4.0.0","@angular/compiler-cli":"^2.4.2||^4.0.0","@angular/core":"^2.4.2||^4.0.0","@angular/http":"^2.4.2||^4.0.0","@angular/platform-browser":"^2.4.2||^4.0.0","@types/jasmine":"^2.5.46","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^3.1.2","core-js":"^2.3.0","es6-shim":"^0.35.3","jasmine-core":"^2.4.1","karma":"^1.5.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.3","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"^0.1.10","rxjs":"^5.0.0","typescript":"~2.1.5","webpack":"^2.3.1","zone.js":"~0.7.2||~0.8.5"},"peerDependencies":{"@angular/core":"^2.0.0||^4.0.0","@angular/http":"^2.0.0||^4.0.0","rxjs":"^5.0.0"},"gitHead":"7bf4847096c75b32a2365a7197c8af6465639772","_id":"angular2-jwt@0.2.1","_shasum":"e104bc5ec916f3523e7b9fda9ae517c3b7d2da31","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"e104bc5ec916f3523e7b9fda9ae517c3b7d2da31","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.2.1.tgz","integrity":"sha512-d8rd5+lZzJO9mm0BUzTHvjRO7/DEsD6KvaDeP05uHpWlOqqA4sNH6HhuJXSV0BsBxu/zvRgp+GjHxoHirdstSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB/7zFqJIvRdP5SeP+xhLp/iaXwRJYqEwbWLJ5nDg/MYAiA/wmIm2hMcBV7wHxhbZRCXcUjCQW/TY6JI/Cn1MaKZLg=="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.2.1.tgz_1491922667496_0.19133941479958594"}},"0.2.2":{"name":"angular2-jwt","version":"0.2.2","description":"Helper library for handling JWTs in Angular 2+","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc","ngc":"ngc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","types":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.4.2||^4.0.0","@angular/compiler":"^2.4.2||^4.0.0","@angular/compiler-cli":"^2.4.2||^4.0.0","@angular/core":"^2.4.2||^4.0.0","@angular/http":"^2.4.2||^4.0.0","@angular/platform-browser":"^2.4.2||^4.0.0","@types/jasmine":"^2.5.46","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^3.1.2","core-js":"^2.3.0","es6-shim":"^0.35.3","jasmine-core":"^2.4.1","karma":"^1.5.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.3","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"^0.1.10","rxjs":"^5.0.0","typescript":"~2.1.5","webpack":"^2.3.1","zone.js":"~0.7.2||~0.8.5"},"peerDependencies":{"@angular/core":"^2.0.0||^4.0.0","@angular/http":"^2.0.0||^4.0.0","rxjs":"^5.0.0"},"gitHead":"a6984d1df9315cc52b22b9c57b8badc4b6d1f479","_id":"angular2-jwt@0.2.2","_shasum":"c7ba295daffb837c698fbe83ecfe0ecfa29b3f4f","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"c7ba295daffb837c698fbe83ecfe0ecfa29b3f4f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.2.2.tgz","integrity":"sha512-bHiPWb2p8JZblaFyrU7FLs28AAjjPUfGmkxTmb4QtrgC+ZEZILmtxZgHFBZzUZ0jLlK4AzNyyTUasp7Wsd0kKQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCr3iwFqUwmQAm8GufJDOIj8N1Ok3+qeSxSy4XYSGSq2AIhAL4esSr0Qb2AXmBiI2B6RpADeG5QLUlNmX+/g26Wmyfl"}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.2.2.tgz_1491926301183_0.5723600091878325"}},"0.2.3":{"name":"angular2-jwt","version":"0.2.3","description":"Helper library for handling JWTs in Angular 2+","repository":{"type":"git","url":"git+https://github.com/auth0/angular2-jwt.git"},"scripts":{"dev":"tsc --watch","test":"karma start","prepublish":"tsc","ngc":"ngc"},"keywords":["angular","angular2","jwt","authentication"],"author":{"name":"ryanchenkie"},"license":"MIT","bugs":{"url":"https://github.com/auth0/angular2-jwt/issues"},"main":"angular2-jwt.js","typings":"./angular2-jwt.d.ts","types":"./angular2-jwt.d.ts","homepage":"https://github.com/auth0/angular2-jwt#readme","devDependencies":{"@angular/common":"^2.4.2||^4.0.0","@angular/compiler":"^2.4.2||^4.0.0","@angular/compiler-cli":"^2.4.2||^4.0.0","@angular/core":"^2.4.2||^4.0.0","@angular/http":"^2.4.2||^4.0.0","@angular/platform-browser":"^2.4.2||^4.0.0","@types/jasmine":"^2.5.46","@types/js-base64":"^2.1.3","awesome-typescript-loader":"^3.1.2","core-js":"^2.3.0","es6-shim":"^0.35.3","jasmine-core":"^2.4.1","karma":"^1.5.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.3","phantomjs-prebuilt":"^2.1.7","reflect-metadata":"^0.1.10","rxjs":"^5.0.0","typescript":"~2.1.5","webpack":"^2.3.1","zone.js":"~0.7.2||~0.8.5"},"peerDependencies":{"@angular/core":"^2.0.0||^4.0.0","@angular/http":"^2.0.0||^4.0.0","rxjs":"^5.0.0"},"gitHead":"4cb5cfacb9cc276cd5748b1262b721fa04324db2","_id":"angular2-jwt@0.2.3","_shasum":"54efdda3ceedba85f6a37b165f22ac22b8adf021","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"ryanchenkie@gmail.com"},"dist":{"shasum":"54efdda3ceedba85f6a37b165f22ac22b8adf021","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-jwt/-/angular2-jwt-0.2.3.tgz","integrity":"sha512-FVtmTMBTdCF5hyT7H8WdM7cKm8SRTCNVqwmb4KG85WKwTMfZZVEYdkN3mf2YX0JrJfRvBxLjWuYzcXdiqgFGng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH4V5hlFpp6e/WVcVEGIhru7WvWXWOgw7TZKM6/sjfcIAiEAt23OHUPaJacIYt5Zl7RPAH67SWIz0ApPenHJf+wDkws="}]},"maintainers":[{"name":"anonymous","email":"ryanchenkie@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-jwt-0.2.3.tgz_1493301006359_0.5420849625952542"}}},"name":"angular2-jwt","time":{"modified":"2022-06-13T03:01:01.709Z","created":"2015-11-09T08:48:09.851Z","0.1.0":"2015-11-09T08:48:09.851Z","0.1.1":"2015-11-09T08:49:43.600Z","0.1.2":"2015-11-10T01:20:52.668Z","0.1.3":"2015-12-16T18:53:35.313Z","0.1.4":"2016-01-02T01:36:10.017Z","0.1.5":"2016-01-18T23:52:39.241Z","0.1.6":"2016-01-19T00:25:34.254Z","0.1.7":"2016-02-26T16:58:36.179Z","0.1.8":"2016-03-03T16:02:37.343Z","0.1.9":"2016-03-25T14:19:02.065Z","0.1.10":"2016-04-16T19:50:17.342Z","0.1.11":"2016-04-16T20:27:44.462Z","0.1.12":"2016-04-17T00:55:35.775Z","0.1.13":"2016-04-29T16:21:12.837Z","0.1.14":"2016-05-04T16:46:19.573Z","0.1.15":"2016-05-09T21:55:06.197Z","0.1.16":"2016-05-26T20:34:10.758Z","0.1.17":"2016-07-15T22:44:54.665Z","0.1.18":"2016-07-20T21:17:11.116Z","0.1.19":"2016-08-19T18:36:21.079Z","0.1.20":"2016-08-31T13:55:54.970Z","0.1.21":"2016-09-01T18:11:06.836Z","0.1.22":"2016-09-09T13:42:09.113Z","0.1.23":"2016-09-16T10:46:12.996Z","0.1.24":"2016-10-08T15:03:00.872Z","0.1.25":"2016-10-22T23:48:17.435Z","0.1.26":"2016-12-06T15:46:31.236Z","0.1.27":"2016-12-16T23:54:45.293Z","0.1.28":"2017-01-09T19:36:30.481Z","0.2.0":"2017-03-26T22:16:32.735Z","0.2.1":"2017-04-11T14:57:49.526Z","0.2.2":"2017-04-11T15:58:23.070Z","0.2.3":"2017-04-27T13:50:10.085Z"},"readmeFilename":"README.md","homepage":"https://github.com/auth0/angular2-jwt#readme"}