forked from googleapis/nodejs-compute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 3.67 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@google-cloud/compute",
"description": "Google Compute Engine Client Library for Node.js",
"version": "3.0.0",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=10"
},
"repository": "googleapis/nodejs-compute",
"main": "build/src/index.js",
"files": [
"build/src",
"build/protos"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google compute",
"compute",
"accelerator types",
"addresses",
"autoscalers",
"backend buckets",
"backend services",
"disks",
"disk types",
"external vpn gateways",
"firewall policies",
"firewalls",
"forwarding rules",
"global addresses",
"global forwarding rules",
"global network endpoint groups",
"global operations",
"global organization operations",
"global public delegated prefixes",
"health checks",
"images",
"instance group managers",
"instance groups",
"instances",
"instance templates",
"interconnect attachments",
"interconnect locations",
"interconnects",
"license codes",
"licenses",
"machine types",
"network endpoint groups",
"networks",
"node groups",
"node templates",
"node types",
"packet mirrorings",
"projects",
"public advertised prefixes",
"public delegated prefixes",
"region autoscalers",
"region backend services",
"region commitments",
"region disks",
"region disk types",
"region health checks",
"region health check services",
"region instance group managers",
"region instance groups",
"region instances",
"region network endpoint groups",
"region notification endpoints",
"region operations",
"regions",
"region ssl certificates",
"region target http proxies",
"region target https proxies",
"region url maps",
"reservations",
"resource policies",
"routers",
"routes",
"security policies",
"snapshots",
"ssl certificates",
"ssl policies",
"subnetworks",
"target grpc proxies",
"target http proxies",
"target https proxies",
"target instances",
"target pools",
"target ssl proxies",
"target tcp proxies",
"target vpn gateways",
"url maps",
"vpn gateways",
"vpn tunnels",
"zone operations",
"zones"
],
"scripts": {
"test": "c8 node build/test/run.js",
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
"system-test": "mocha build/system-test system-test/*.js",
"lint": "gts check",
"fix": "gts fix",
"docs": "node --max-old-space-size=8192 ./node_modules/.bin/jsdoc -c .jsdoc.js",
"docs-test": "linkinator docs",
"clean": "gts clean",
"compile": "tsc -p . && cp -r protos build/",
"compile-protos": "compileProtos src",
"predocs-test": "npm run docs",
"prepare": "npm run compile-protos && npm run compile",
"prelint": "cd samples; npm link ../; npm install",
"precompile": "gts clean"
},
"dependencies": {
"google-gax": "^2.25.2"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/sinon": "^10.0.2",
"c8": "^7.7.3",
"chai": "^4.3.4",
"gts": "^3.1.0",
"jsdoc": "^3.6.7",
"jsdoc-fresh": "^1.1.0",
"jsdoc-region-tag": "^1.1.0",
"linkinator": "^2.13.6",
"mocha": "^9.0.2",
"null-loader": "^4.0.1",
"pack-n-play": "^1.0.0-2",
"sinon": "^12.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"uuid": "^8.0.0",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2"
}
}