-
-
Notifications
You must be signed in to change notification settings - Fork 111
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, 10 and 11 @rwky * Updated dev deps @rwky * Fixed deprecation with Buffer @rwky * Updated README.md and package.json for passport-next org @rwky
- Loading branch information
Showing
10 changed files
with
178 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: "node_js" | ||
node_js: | ||
- "0.12" | ||
- "0.10" | ||
- "iojs" | ||
|
||
- 6 | ||
- 8 | ||
- 10 | ||
- 11 |
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,11 @@ | ||
This changelog follows Semantic Versioning https://semver.org/ | ||
|
||
# 0.4.0 (2018-11-03) | ||
|
||
### Minor | ||
|
||
* Added CHANGELOG.md @rwky | ||
* Updated travis to use node 6, 8, 10 and 11 @rwky | ||
* Updated dev deps @rwky | ||
* Fixed deprecation with Buffer @rwky | ||
* Updated README.md and package.json for passport-next org @rwky |
This file was deleted.
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
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,33 +1,45 @@ | ||
{ | ||
"name": "passport-http", | ||
"version": "0.3.0", | ||
"name": "@passport-next/passport-http", | ||
"version": "0.4.0", | ||
"description": "HTTP Basic and Digest authentication strategies for Passport.", | ||
"keywords": ["passport", "http", "basic", "digest", "auth", "authn", "authentication"], | ||
"keywords": [ | ||
"passport", | ||
"http", | ||
"basic", | ||
"digest", | ||
"auth", | ||
"authn", | ||
"authentication" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/jaredhanson/passport-http.git" | ||
"url": "git://github.com/passport-next/passport-http.git" | ||
}, | ||
"bugs": { | ||
"url": "http://github.com/jaredhanson/passport-http/issues" | ||
"url": "http://github.com/passport-next/passport-http/issues" | ||
}, | ||
"author": { | ||
"name": "Jared Hanson", | ||
"email": "[email protected]", | ||
"url": "http://www.jaredhanson.net/" | ||
"name": "Rowan Wookey", | ||
"email": "[email protected]" | ||
}, | ||
"licenses": [ { | ||
"type": "MIT", | ||
"url": "http://www.opensource.org/licenses/MIT" | ||
} ], | ||
"license": "MIT", | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "http://www.opensource.org/licenses/MIT" | ||
} | ||
], | ||
"main": "./lib/passport-http", | ||
"dependencies": { | ||
"passport-strategy": "1.x.x" | ||
"@passport-next/passport-strategy": "1.x.x" | ||
}, | ||
"devDependencies": { | ||
"vows": "0.8.x" | ||
}, | ||
"scripts": { | ||
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js test/**/*-test.js" | ||
}, | ||
"engines": { "node": ">= 0.4.0" } | ||
"engines": { | ||
"node": ">=6" | ||
} | ||
} |