Skip to content

Commit

Permalink
Update package metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Mar 5, 2012
1 parent c7408fb commit 431f2ea
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
@@ -0,0 +1,4 @@
language: "node_js"
node_js:
- 0.4
- 0.6
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
NODE = node NODE = node
TEST = vows TEST = ./node_modules/.bin/vows
TESTS ?= test/*-test.js TESTS ?= test/*-test.js


test: test:
Expand Down
11 changes: 9 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
# Passport-Twitter # Passport-Twitter


[Passport](https://github.com/jaredhanson/passport) strategy for authenticating [Passport](https://github.com/jaredhanson/passport) strategy for authenticating
with Twitter using the OAuth 1.0a API. with [Twitter](http://twitter.com/) using the OAuth 1.0a API.


## Installation ## Installation


Expand Down Expand Up @@ -50,10 +50,17 @@ application:
res.redirect('/'); res.redirect('/');
}); });


#### Examples ## Examples


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


## Tests

$ npm install --dev
$ make test

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

## Credits ## Credits


- [Jared Hanson](http://github.com/jaredhanson) - [Jared Hanson](http://github.com/jaredhanson)
Expand Down
20 changes: 17 additions & 3 deletions package.json
Expand Up @@ -2,15 +2,29 @@
"name": "passport-twitter", "name": "passport-twitter",
"version": "0.1.0", "version": "0.1.0",
"description": "Twitter authentication strategy for Passport.", "description": "Twitter authentication strategy for Passport.",
"author": "Jared Hanson <jaredhanson@gmail.com> (http://www.jaredhanson.net/)", "author": { "name": "Jared Hanson", "email": "jaredhanson@gmail.com", "url": "http://www.jaredhanson.net/" },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "http://github.com/jaredhanson/passport-twitter.git" "url": "git://github.com/jaredhanson/passport-twitter.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/passport-twitter/issues"
}, },
"main": "./lib/passport-twitter", "main": "./lib/passport-twitter",
"dependencies": { "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" }, "engines": { "node": ">= 0.4.0" },
"licenses": [ {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
} ],
"keywords": ["passport", "twitter", "auth", "authn", "authentication", "identity"] "keywords": ["passport", "twitter", "auth", "authn", "authentication", "identity"]
} }

0 comments on commit 431f2ea

Please sign in to comment.