forked from googleapis/google-auth-library-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.36 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "google-auth-library",
"version": "1.4.0",
"author": "Google Inc.",
"description": "Google APIs Authentication Client Library for Node.js",
"engines": {
"node": ">=4"
},
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/google/google-auth-library-nodejs.git"
},
"keywords": [
"google",
"api",
"google apis",
"client",
"client library"
],
"dependencies": {
"axios": "^0.18.0",
"gtoken": "^2.2.0",
"jws": "^3.1.4",
"lodash.isstring": "^4.0.1",
"lru-cache": "^4.1.2",
"retry-axios": "^0.3.2",
"gcp-metadata": "^0.6.2"
},
"devDependencies": {
"@justinbeckwith/typedoc": "^0.10.1",
"@types/jws": "^3.1.0",
"@types/lodash.isstring": "^4.0.3",
"@types/lru-cache": "^4.1.0",
"@types/mocha": "^5.0.0",
"@types/mv": "^2.1.0",
"@types/ncp": "^2.0.1",
"@types/nock": "^9.1.2",
"@types/node": "^9.4.7",
"@types/pify": "^3.0.1",
"@types/sinon": "^4.3.0",
"@types/tmp": "^0.0.33",
"clang-format": "^1.2.2",
"codecov": "^3.0.0",
"gh-pages": "^1.1.0",
"gts": "^0.5.4",
"js-green-licenses": "^0.5.0",
"keypair": "^1.0.1",
"mocha": "^5.0.4",
"mv": "^2.1.1",
"ncp": "^2.0.0",
"nock": "^9.2.3",
"nyc": "^11.4.1",
"opn": "^5.2.0",
"pify": "^3.0.0",
"prettier": "^1.11.1",
"sinon": "^5.0.1",
"source-map-support": "^0.5.3",
"tmp": "^0.0.33",
"typescript": "~2.7.2"
},
"files": [
"LICENSE",
"README.md",
"build/src",
"package.json"
],
"nyc": {
"exclude": [
"build/test"
]
},
"scripts": {
"test": "nyc mocha build/test --timeout 10000",
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
"clean": "gts clean",
"prepare": "npm run compile",
"check": "gts check",
"compile": "tsc -p .",
"fix": "gts fix && npm run fix-samples",
"fix-samples": "prettier --write --single-quote examples/*.js",
"pretest": "npm run compile",
"posttest": "npm run check && npm run license-check",
"license-check": "jsgl --local .",
"generate-docs": "typedoc --excludePrivate --excludeExternals --mode modules --out docs src && touch docs/.nojekyll",
"publish-docs": "gh-pages --dotfiles --dist docs --remote upstream"
},
"license": "Apache-2.0"
}