forked from jaredhanson/passport-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added CHANGELOG.md @rwky * Updated travis to use node 6, 8 and 10 @rwky * Removed uid2 dep replaced with node crypto @rwky * Replaced utils-merge with lodash * Updated README.md and package.json for passport-next org
- Loading branch information
Showing
10 changed files
with
251 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 1.5.0 (2018-06-29) | ||
|
||
* Added CHANGELOG.md @rwky | ||
* Updated travis to use node 6, 8 and 10 @rwky | ||
* Removed uid2 dep replaced with node crypto @rwky | ||
* Replaced utils-merge with lodash | ||
* Updated README.md and package.json for passport-next org | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2018 Rowan Wookey <[email protected]> | ||
Copyright (c) 2011-2016 Jared Hanson | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "passport-oauth2", | ||
"version": "1.4.0", | ||
"name": "@passport-next/passport-oauth2", | ||
"version": "1.5.0", | ||
"description": "OAuth 2.0 authentication strategy for Passport.", | ||
"keywords": [ | ||
"passport", | ||
|
@@ -13,16 +13,15 @@ | |
"oauth2" | ||
], | ||
"author": { | ||
"name": "Jared Hanson", | ||
"email": "[email protected]", | ||
"url": "http://www.jaredhanson.net/" | ||
"name": "Rowan Wookey", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/jaredhanson/passport-oauth2.git" | ||
"url": "git://github.com/passport-next/passport-oauth2.git" | ||
}, | ||
"bugs": { | ||
"url": "http://github.com/jaredhanson/passport-oauth2/issues" | ||
"url": "http://github.com/passport-next/passport-oauth2/issues" | ||
}, | ||
"license": "MIT", | ||
"licenses": [ | ||
|
@@ -34,9 +33,8 @@ | |
"main": "./lib", | ||
"dependencies": { | ||
"oauth": "0.9.x", | ||
"passport-strategy": "1.x.x", | ||
"uid2": "0.0.x", | ||
"utils-merge": "1.x.x" | ||
"@passport-next/passport-strategy": "1.1.x", | ||
"lodash": "4.17.x" | ||
}, | ||
"devDependencies": { | ||
"make-node": "0.3.x", | ||
|
@@ -45,7 +43,7 @@ | |
"chai-passport-strategy": "1.x.x" | ||
}, | ||
"engines": { | ||
"node": ">= 0.4.0" | ||
"node": ">= 6" | ||
}, | ||
"scripts": { | ||
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js" | ||
|
Oops, something went wrong.