forked from jaredhanson/passport-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "passport-google",
"version": "0.3.0",
"description": "Google (OpenID) authentication strategy for Passport.",
"keywords": [
"passport",
"google",
"auth",
"authn",
"authentication",
"identity"
],
"repository": {
"type": "git",
"url": "git://github.com/jaredhanson/passport-google.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/passport-google/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"author": {
"name": "Jared Hanson",
"email": "jaredhanson@gmail.com",
"url": "http://www.jaredhanson.net/"
},
"contributors": [
"Jan Cajthaml <jan.cajthaml@gmail.com>"
],
"main": "./lib/passport-google",
"dependencies": {
"pkginfo": "0.2.x",
"passport-openid": "0.3.x"
},
"devDependencies": {
"vows": "0.8.x",
"jshint": "*"
},
"scripts": {
"test": "NODE_PATH=lib ./node_modules/.bin/vows test/*-test.js",
"jshint": "./node_modules/.bin/jshint lib"
},
"engines": {
"node": ">= 0.6.0"
}
}