forked from googleapis/google-auth-library-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "google-auth-library",
"version": "0.9.7",
"author": "Google Inc.",
"description": "Google APIs Authentication Client Library for Node.js",
"contributors": [
{
"name": "Jason Allor",
"email": "[email protected]"
},
{
"name": "Tim Emiola",
"email": "[email protected]"
}
],
"engines": {
"node": ">=0.10"
},
"main": "./lib/auth/googleauth",
"repository": {
"type": "git",
"url": "https://github.com/google/google-auth-library-nodejs.git"
},
"keywords": [
"google",
"api",
"google apis",
"client",
"client library"
],
"dependencies": {
"async": "~1.4.2",
"gtoken": "^1.1.0",
"lodash.noop": "~3.0.0",
"jws": "~3.0.0",
"request": "~2.72.0",
"string-template": "~0.2.0"
},
"devDependencies": {
"coveralls": "^2.11.1",
"istanbul": "~0.3.2",
"keypair": "~1.0.0",
"jshint": "^2.5.5",
"jsdoc": "~3.3.0-alpha9",
"mkdirp": "~0.5.0",
"mocha": "^1.8.1",
"nock": "~1.9.0",
"rimraf": "^2.2.8",
"url": "~0.10.1",
"minimist": "^1.1.0"
},
"scripts": {
"lint": "jshint lib test",
"test": "mocha --reporter spec --timeout 4000",
"generate-docs": "jsdoc -c jsdoc-conf.json ./README.md",
"prepare": "npm test && npm run lint && npm version patch",
"coverage": "istanbul cover -x 'apis/**' _mocha -- --reporter spec --timeout 4000",
"coveralls": "istanbul cover -x 'apis/**' _mocha --report lcovonly -- --reporter spec --timeout 4000 && cat coverage/lcov.info | coveralls"
},
"license": "Apache-2.0"
}