-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "passport-google-id-token",
"version": "0.4.7",
"description": "Google ID token authentication strategy for Passport.",
"keywords": [
"passport",
"google",
"auth",
"token",
"verification",
"authentication",
"identity"
],
"repository": {
"type": "git",
"url": "git://github.com/jmreyes/passport-google-id-token.git"
},
"bugs": {
"url": "http://github.com/jmreyes/passport-google-id-token/issues"
},
"author": {
"name": "Juan Manuel Reyes",
"email": "[email protected]",
"url": "http://jmreyes.net"
},
"license": "MIT",
"main": "./lib/passport-google-id-token",
"dependencies": {
"jsonwebtoken": "^5.0.0",
"passport-strategy": "^1.0.0",
"request": "^2.88.0"
},
"devDependencies": {
"chai": "2.x.x",
"chai-passport-strategy": "0.2.x",
"mocha": "^7.1.1"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}