Skip to content

Commit

Permalink
Update package metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Feb 28, 2012
1 parent d2cfe49 commit 619cc92
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile
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:
Expand All @@ -10,7 +10,7 @@ docs: docs/api.html
docs/api.html: lib/passport-yahoo/*.js
dox \
--title Passport-Yahoo \
--desc "Yahoo authentication strategy for Passport" \
--desc "Yahoo! (OpenID) authentication strategy for Passport" \
$(shell find lib/passport-yahoo/* -type f) > $@

docclean:
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,17 @@ application:
res.redirect('/');
});

#### Examples
## Examples

For a complete, working example, refer to the [signon example](https://github.com/jaredhanson/passport-yahoo/tree/master/examples/signon).

## Tests

$ npm install --dev
$ make test

[![Build Status](https://secure.travis-ci.org/jaredhanson/passport-yahoo.png)](http://travis-ci.org/jaredhanson/passport-yahoo)

## Credits

- [Jared Hanson](http://github.com/jaredhanson)
Expand Down
22 changes: 18 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
{
"name": "passport-yahoo",
"version": "0.1.0",
"description": "Yahoo! authentication strategy for Passport.",
"author": "Jared Hanson <[email protected]> (http://www.jaredhanson.net/)",
"description": "Yahoo! (OpenID) authentication strategy for Passport.",
"author": { "name": "Jared Hanson", "email": "[email protected]", "url": "http://www.jaredhanson.net/" },
"repository": {
"type": "git",
"url": "http://github.com/jaredhanson/passport-yahoo.git"
"url": "git://github.com/jaredhanson/passport-yahoo.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/passport-yahoo/issues"
},
"main": "./lib/passport-yahoo",
"dependencies": {
"passport-openid": ">= 0.1.1"
"pkginfo": "0.2.x",
"passport-openid": "~0.1.1"
},
"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", "yahoo", "auth", "authn", "authentication", "identity"]
}

0 comments on commit 619cc92

Please sign in to comment.