Skip to content

Commit

Permalink
Update license and package info
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Mar 20, 2015
1 parent f1265ca commit ab1b241
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 49 deletions.
27 changes: 14 additions & 13 deletions LICENSE
@@ -1,20 +1,21 @@
(The MIT License)
The MIT License (MIT)

Copyright (c) 2012 Nicholas Penree
Copyright (c) 2015 Nicholas Penree

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
30 changes: 16 additions & 14 deletions README.md
@@ -1,4 +1,4 @@
# Passport-Facebook-Token
# passport-facebook-token

[Passport](http://passportjs.org/) strategy for authenticating with [Facebook](http://www.facebook.com/)
access tokens using the OAuth 2.0 API.
Expand Down Expand Up @@ -55,26 +55,28 @@ The post request to this route should include a JSON object with the keys `acces

- [Nicholas Penree](http://github.com/drudge)
- [Jared Hanson](http://github.com/jaredhanson)
- [Eugene Obrezkov](http://github.com/ghaiklor)

## License

(The MIT License)
The MIT License (MIT)

Copyright (c) 2012 Nicholas Penree
Copyright (c) 2015 Nicholas Penree

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4 changes: 4 additions & 0 deletions index.js
@@ -0,0 +1,4 @@
var Strategy = require('./lib/Strategy');

module.exports = Strategy;
module.exports.Strategy = Strategy;
67 changes: 45 additions & 22 deletions package.json
@@ -1,24 +1,47 @@
{
"name": "passport-facebook-token",
"version": "0.4.0",
"description": "Facebook token authentication strategy for Passport.",
"author": { "name": "Nicholas Penree", "email": "nick@penree.com", "url": "http://www.penree.com/" },
"repository": {
"type": "git",
"url": "git://github.com/drudge/passport-facebook-token.git"
},
"bugs": {
"url": "http://github.com/drudge/passport-facebook-token/issues"
},
"main": "./lib/passport-facebook-token",
"dependencies": {
"pkginfo": "0.2.x",
"passport-oauth": "0.1.x"
},
"engines": { "node": ">= 0.4.0" },
"licenses": [ {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
} ],
"keywords": ["passport", "facebook", "auth", "authn", "authentication", "identity"]
"name": "passport-facebook-token",
"version": "0.4.0",
"description": "Facebook token authentication strategy for Passport",
"main": "index.js",
"scripts": {
"test": "istanbul cover --report lcovonly _mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/drudge/passport-facebook-token.git"
},
"keywords": [
"passport",
"facebook",
"auth",
"authn",
"authentication",
"identity"
],
"author": {
"name": "Nicholas Penree",
"email": "nick@penree.com",
"url": "http://www.penree.com/"
},
"contributors": [
{
"name": "Eugene Obrezkov",
"email": "ghaiklor@gmail.com",
"url:": "https://www.facebook.com/ghaiklor"
}
],
"license": "MIT",
"bugs": {
"url": "http://github.com/drudge/passport-facebook-token/issues"
},
"dependencies": {
"passport-oauth": "^1.0.0",
"pkginfo": "^0.3.0"
},
"devDependencies": {
"chai": "^2.1.2",
"chai-passport-strategy": "^0.2.0",
"istanbul": "^0.3.8",
"mocha": "^2.2.1"
}
}

0 comments on commit ab1b241

Please sign in to comment.