-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
509abbe
commit 5de6ed0
Showing
7 changed files
with
43 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
language: "node_js" | ||
node_js: | ||
- 0.4 | ||
- 0.6 |
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,5 @@ | ||
NODE = node | ||
TEST = vows | ||
TEST = ./node_modules/.bin/vows | ||
TESTS ?= test/*-test.js | ||
|
||
test: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,29 @@ | |
"name": "passport-tumblr", | ||
"version": "0.1.0", | ||
"description": "Tumblr authentication strategy for Passport.", | ||
"author": "Jared Hanson <[email protected]> (http://www.jaredhanson.net/)", | ||
"author": { "name": "Jared Hanson", "email": "[email protected]", "url": "http://www.jaredhanson.net/" }, | ||
"repository": { | ||
"type": "git", | ||
"url": "http://github.com/jaredhanson/passport-tumblr.git" | ||
"url": "git://github.com/jaredhanson/passport-tumblr.git" | ||
}, | ||
"bugs": { | ||
"url": "http://github.com/jaredhanson/passport-tumblr/issues" | ||
}, | ||
"main": "./lib/passport-tumblr", | ||
"dependencies": { | ||
"passport-oauth": ">= 0.1.0" | ||
"pkginfo": "0.2.x", | ||
"passport-oauth": "0.1.x" | ||
}, | ||
"devDependencies": { | ||
"vows": "0.6.x" | ||
}, | ||
"scripts": { | ||
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js" | ||
}, | ||
"engines": { "node": ">= 0.4.0" }, | ||
"licenses": [ { | ||
"type": "MIT", | ||
"url": "http://www.opensource.org/licenses/MIT" | ||
} ], | ||
"keywords": ["passport", "tumblr", "auth", "authn", "authentication", "identity"] | ||
} |
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