forked from googleapis/google-api-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.58 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
91
92
93
94
{
"license": "Apache-2.0",
"dependencies": {
"google-auth-library": "^5.1.0",
"googleapis-common": "^3.0.0"
},
"files": [
"build/src",
"!build/src/**/*.map"
],
"repository": "googleapis/google-api-nodejs-client",
"name": "googleapis",
"version": "41.0.1",
"scripts": {
"pretest": "npm run compile",
"prepare": "npm run compile",
"test": "c8 mocha build/test",
"predocs": "npm run build-tools",
"docs": "node build/src/generator/docs",
"system-test": "mocha build/system-test",
"samples-test": "cd samples && npm link ../ && pwd && npm test",
"lint": "gts check && eslint 'samples/**/*.js'",
"compile": "tsc -p .",
"build-tools": "tsc -p tsconfig.tools.json",
"clean": "gts clean",
"fix": "eslint --fix '**/*.js' && gts fix",
"pregenerate": "npm run build-tools",
"generate": "node build/src/generator/generate.js",
"postgenerate": "npm run fix",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs"
},
"author": "Google Inc.",
"keywords": [
"google",
"api",
"google apis",
"client",
"client library"
],
"description": "Google APIs Client Library for Node.js",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"engines": {
"node": ">=8.10.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.9",
"@types/chai": "^4.1.7",
"@types/execa": "^0.9.0",
"@types/minimist": "^1.2.0",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.6",
"@types/mv": "^2.1.0",
"@types/ncp": "^2.0.1",
"@types/nock": "^10.0.2",
"@types/node": "^12.0.1",
"@types/nunjucks": "^3.1.1",
"@types/qs": "^6.5.3",
"@types/rimraf": "^2.0.2",
"@types/source-map-support": "^0.5.0",
"@types/tmp": "^0.1.0",
"@types/url-template": "^2.0.28",
"assert-rejects": "^1.0.0",
"c8": "^5.0.1",
"chai": "^4.2.0",
"codecov": "^3.4.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"execa": "^1.0.0",
"gts": "^1.0.0",
"hard-rejection": "^2.1.0",
"intelli-espower-loader": "^1.0.1",
"js-green-licenses": "^1.0.0",
"linkinator": "^1.5.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^6.1.4",
"mv": "^2.1.1",
"ncp": "^2.0.0",
"nock": "^10.0.6",
"nunjucks": "^3.2.0",
"open": "^6.3.0",
"p-queue": "^6.0.0",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"server-destroy": "^1.0.1",
"source-map-support": "^0.5.12",
"tmp": "^0.1.0",
"typescript": "~3.5.0"
}
}