forked from extrabacon/google-oauth-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 993 Bytes
/
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
{
"name": "google-oauth-jwt",
"version": "0.2.0",
"author": {
"name": "Nicolas Mercier",
"email": "[email protected]"
},
"description": "Implementation of Google OAuth 2.0 for server-to-server interactions, allowing secure use of Google APIs without interaction from an end-user.",
"keywords": [
"google",
"api",
"oauth",
"oauth2",
"service account",
"jwt",
"token",
"server to server"
],
"dependencies": {
"request": ">=2.55",
"debug": "^2.1.3"
},
"devDependencies": {
"underscore": "*",
"async": "*",
"mocha": "*",
"chai": "*",
"chai-spies": "*"
},
"scripts": {
"test": "mocha -t 5000 -R spec"
},
"repository": {
"type": "git",
"url": "http://github.com/extrabacon/google-oauth-jwt"
},
"homepage": "http://github.com/extrabacon/google-oauth-jwt",
"bugs": "http://github.com/extrabacon/google-oauth-jwt/issues",
"license": "MIT",
"engines": {
"node": ">=0.8"
}
}