forked from googleapis/google-auth-library-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.22 KB
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
{
"name": "google-auth-library",
"version": "0.12.0",
"author": "Google Inc.",
"description": "Google APIs Authentication Client Library for Node.js",
"engines": {
"node": ">=0.10"
},
"main": "./lib/index.js",
"types": "./types/lib/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": {
"gtoken": "^1.2.3",
"jws": "^3.1.4",
"lodash.isstring": "^4.0.1",
"lodash.merge": "^4.6.0",
"request": "^2.81.0"
},
"devDependencies": {
"@types/lodash.isstring": "^4.0.2",
"@types/lodash.merge": "^4.6.2",
"@types/mocha": "^2.2.41",
"@types/nock": "^8.2.1",
"@types/node": "^8.0.49",
"@types/request": "^2.0.7",
"clang-format": "^1.0.50",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-clang-format": "^1.0.23",
"gulp-mocha": "^4.3.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.0.0",
"gulp-typescript": "^3.1.6",
"istanbul": "^0.4.5",
"keypair": "^1.0.0",
"merge2": "^1.0.3",
"mocha": "^4.0.1",
"nock": "^9.0.2",
"source-map-support": "^0.5.0",
"tslint": "^5.1.0",
"typedoc": "^0.9.0",
"typescript": "^2.3.4"
},
"files": [
"LICENSE",
"README.md",
"lib/**/*.js",
"package.json",
"types/lib"
],
"scripts": {
"check-format": "gulp test.check-format",
"format": "gulp format",
"lint": "tslint --type-check -p tsconfig.json -c tslint.json ts/**/*.ts",
"mocha": "mocha --reporter spec --timeout 4000 --require source-map-support/register",
"generate-docs": "typedoc --name 'Google Node.js OAuth 2.0 Client' --out docs --readme README.md ts/lib",
"coverage": "istanbul cover -x 'apis/**' _mocha -- --reporter spec --timeout 4000",
"test": "npm run lint && npm run build && npm run check-format && npm run coverage",
"coveralls": "istanbul cover -x 'apis/**' _mocha --report lcovonly -- --reporter spec --timeout 4000 && cat coverage/lcov.info | coveralls",
"build": "tsc",
"clean": "rm -rf lib test types",
"prepare": "npm run build"
},
"license": "Apache-2.0"
}