forked from lyaunzbe/node-gAuth
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 960 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
44
{
"name": "google-oauth2",
"description": "Google API OAuth2 helpers",
"version": "0.1.0",
"author": "Ben Lyaunzon <[email protected]>",
"contributors": [
{
"name": "Jan Bölsche",
"email": "[email protected]"
}
],
"keywords": [
"google",
"outh",
"oauth2",
"google-api",
"api"
],
"homepage": "https://github.com/regular/node-google-oauth2",
"repository": {
"type": "git",
"url": "https://github.com/regular/node-google-oauth2.git"
},
"engines": {
"node": "0.5.x"
},
"main": "index.js",
"dependencies": {
"request": "2.12.x",
"async": "0.1.x"
},
"devDependencies": {
"mocha": "1.7.x",
"chai": "1.4.x",
"coffee-script": "1.4.x"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --timeout 20000 --compilers coffee:coffee-script --reporter spec test/*"
},
"optionalDependencies": {
"phantomjs": "1.8.x"
},
"licence": "MIT"
}