@feathersjs/authentication-jwt
Advanced tools
Comparing version 2.0.1 to 2.0.2
# Change Log | ||
## [v2.0.1](https://github.com/feathersjs/authentication-jwt/tree/v2.0.1) (2018-05-04) | ||
[Full Changelog](https://github.com/feathersjs/authentication-jwt/compare/v2.0.0...v2.0.1) | ||
**Closed issues:** | ||
- "No auth token" with socketio [\#60](https://github.com/feathersjs/authentication-jwt/issues/60) | ||
**Merged pull requests:** | ||
- Update sinon to the latest version 🚀 [\#59](https://github.com/feathersjs/authentication-jwt/pull/59) ([greenkeeper[bot]](https://github.com/apps/greenkeeper)) | ||
- Update passport-jwt to the latest version 🚀 [\#58](https://github.com/feathersjs/authentication-jwt/pull/58) ([greenkeeper[bot]](https://github.com/apps/greenkeeper)) | ||
- Update sinon-chai to the latest version 🚀 [\#57](https://github.com/feathersjs/authentication-jwt/pull/57) ([greenkeeper[bot]](https://github.com/apps/greenkeeper)) | ||
- Fix typo on documentation link [\#56](https://github.com/feathersjs/authentication-jwt/pull/56) ([bernardobelchior](https://github.com/bernardobelchior)) | ||
## [v2.0.0](https://github.com/feathersjs/authentication-jwt/tree/v2.0.0) (2018-01-21) | ||
@@ -4,0 +18,0 @@ [Full Changelog](https://github.com/feathersjs/authentication-jwt/compare/v1.0.2...v2.0.0) |
{ | ||
"name": "@feathersjs/authentication-jwt", | ||
"description": "JWT authentication strategy for feathers-authentication using Passport", | ||
"version": "2.0.1", | ||
"homepage": "https://github.com/feathersjs/authentication-jwt", | ||
"version": "2.0.2", | ||
"homepage": "https://feathersjs.com", | ||
"main": "lib/", | ||
@@ -14,3 +14,3 @@ "keywords": [ | ||
"type": "git", | ||
"url": "git://github.com/feathersjs/authentication-jwt.git" | ||
"url": "git://github.com/feathersjs/feathers.git" | ||
}, | ||
@@ -24,3 +24,3 @@ "author": { | ||
"bugs": { | ||
"url": "https://github.com/feathersjs/authentication-jwt/issues" | ||
"url": "https://github.com/feathersjs/feathers/issues" | ||
}, | ||
@@ -31,24 +31,12 @@ "engines": { | ||
"scripts": { | ||
"publish": "git push origin --tags && npm run changelog && git push origin", | ||
"release:patch": "npm version patch && npm publish --access public", | ||
"release:minor": "npm version minor && npm publish --access public", | ||
"release:major": "npm version major && npm publish --access public", | ||
"release:pre": "npm version prerelease && npm publish --tag pre --access public", | ||
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"", | ||
"lint": "semistandard --fix", | ||
"mocha": "mocha --opts mocha.opts", | ||
"coverage": "istanbul cover _mocha -- --opts mocha.opts", | ||
"test": "npm run lint && npm run coverage" | ||
"test": "../../node_modules/.bin/mocha --opts ../../mocha.opts" | ||
}, | ||
"semistandard": { | ||
"sourceType": "module", | ||
"env": [ | ||
"mocha" | ||
] | ||
}, | ||
"directories": { | ||
"lib": "lib" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"dependencies": { | ||
"@feathersjs/errors": "^3.0.0", | ||
"@feathersjs/errors": "^3.3.1", | ||
"debug": "^3.1.0", | ||
@@ -61,16 +49,14 @@ "lodash.merge": "^4.6.0", | ||
"devDependencies": { | ||
"@feathersjs/authentication": "^2.0.0", | ||
"@feathersjs/express": "^1.0.0", | ||
"@feathersjs/authentication": "^2.1.8", | ||
"@feathersjs/express": "^1.2.4", | ||
"@feathersjs/feathers": "^3.0.0", | ||
"@feathersjs/socketio": "^3.0.0", | ||
"@feathersjs/socketio": "^3.2.3", | ||
"body-parser": "^1.15.2", | ||
"chai": "^4.1.0", | ||
"feathers-memory": "^2.0.0", | ||
"istanbul": "^1.1.0-alpha.1", | ||
"jsonwebtoken": "^8.0.0", | ||
"mocha": "^5.0.0", | ||
"semistandard": "^12.0.0", | ||
"sinon": "^5.0.0", | ||
"sinon": "^6.0.0", | ||
"sinon-chai": "^3.0.0" | ||
} | ||
}, | ||
"gitHead": "a618e325acc797dfb895f69310e55075838dfdeb" | ||
} |
# @feathersjs/authentication-jwt | ||
[![Greenkeeper badge](https://badges.greenkeeper.io/feathersjs/authentication-jwt.svg)](https://greenkeeper.io/) | ||
[![Build Status](https://travis-ci.org/feathersjs/authentication-jwt.png?branch=master)](https://travis-ci.org/feathersjs/authentication-jwt) | ||
[![Test Coverage](https://codeclimate.com/github/feathersjs/authentication-jwt/badges/coverage.svg)](https://codeclimate.com/github/feathersjs/authentication-jwt/coverage) | ||
[![Dependency Status](https://img.shields.io/david/feathersjs/authentication-jwt.svg?style=flat-square)](https://david-dm.org/feathersjs/authentication-jwt) | ||
[![Build Status](https://travis-ci.org/feathersjs/feathers.png?branch=master)](https://travis-ci.org/feathersjs/feathers) | ||
[![Dependency Status](https://img.shields.io/david/feathersjs/feathers.svg?style=flat-square&path=packages/authentication-jwt)](https://david-dm.org/feathersjs/feathers?path=packages/authentication-jwt) | ||
[![Download Status](https://img.shields.io/npm/dm/@feathersjs/authentication-jwt.svg?style=flat-square)](https://www.npmjs.com/package/@feathersjs/authentication-jwt) | ||
@@ -9,0 +6,0 @@ |
Sorry, the diff of this file is not supported yet
10
18734
6
48
Updated@feathersjs/errors@^3.3.1