forked from jaredhanson/passport-google-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "passport-google-oauth-offline",
"version": "0.2.0",
"description": "Google (OAuth) authentication strategies for Passport.",
"author": [
{ "name": "Jared Hanson", "email": "[email protected]", "url": "http://www.jaredhanson.net/" },
{ "name": "Curtis Lacy", "email": "[email protected]", "url": "http://www.linkedin.com/pub/curtis-lacy/9/2a1/40b" }
],
"repository": {
"type": "git",
"url": "https://github.com/curtislacy/passport-google-oauth-offline.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/passport-google-oauth-offline/issues"
},
"main": "./lib/passport-google-oauth",
"dependencies": {
"pkginfo": "0.2.x",
"passport-oauth": "~0.1.4"
},
"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", "google", "auth", "authn", "authentication", "identity"]
}