-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.17 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
{
"name": "oauth-token-generator-google",
"version": "0.1.1",
"description": "After many battles with nodejs server authentication against Google APIs (Drive in particular), I've come up with an NPM module that needs only a well configured client_secrets.json and it will save the token locally and try to reuse it when it's there.",
"main": "lib/index.js",
"engineStrict": true,
"engines": {
"node": ">=8.11.0",
"npm": ">=5.0.0"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/rainabba/oauth-token-generator-google.git"
},
"dependencies": {
"googleapis": "^29.0.0"
},
"scripts": {
"start": "node lib/index.js",
"test": "lab -t 50 -c -M 20000 -r console -o stdout -r html --verbose -o test/CODE_COVERAGE.html -l -I testAccount,Config,lab,Lab,vtv,Hoek,user,auth,async",
"test:dev": "lab --inspect-brk -t 50 -c -M 20000 -r console -o stdout -r html --verbose -o test/CODE_COVERAGE.html -l -I testAccount,Config,lab,Lab,vtv,Hoek,user,auth,async"
},
"author": "Michael Richardson",
"license": "BSD-2-Clause",
"devDependencies": {
"code": "^5.2.0",
"lab": "^15.4.4"
}
}