This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
75 lines (75 loc) · 1.9 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
{
"name": "@google-cloud/aiplatform",
"version": "2.3.0",
"description": "Vertex AI client for Node.js",
"repository": "googleapis/nodejs-ai-platform",
"license": "Apache-2.0",
"author": "Google LLC",
"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 vertex ai",
"google vertex",
"aiplatform",
"dataset service",
"endpoint service",
"job service",
"migration service",
"model service",
"pipeline service",
"prediction service",
"specialist pool service"
],
"scripts": {
"clean": "gts clean",
"compile": "tsc -p . && cp -r protos build/",
"compile-protos": "compileProtos src",
"docs": "NODE_OPTIONS=--max-old-space-size=8192 jsdoc -c .jsdoc.js",
"predocs-test": "npm run docs",
"docs-test": "linkinator docs",
"fix": "gts fix",
"lint": "gts check",
"prelint": "cd samples; npm link ../; npm i",
"prepare": "npm run compile-protos && npm run compile",
"system-test": "c8 mocha build/system-test",
"samples-test": "cd samples/ && npm link ../ && npm test",
"test": "c8 node build/test/run.js"
},
"dependencies": {
"google-gax": "^3.3.0",
"protobuf.js": "^1.1.2"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/sinon": "^10.0.0",
"c8": "^7.3.5",
"gts": "^3.1.0",
"jsdoc": "^3.6.6",
"jsdoc-fresh": "^2.0.0",
"jsdoc-region-tag": "^2.0.0",
"linkinator": "^4.0.0",
"mocha": "^9.2.2",
"null-loader": "^4.0.1",
"pack-n-play": "^1.0.0-2",
"sinon": "^13.0.0",
"ts-loader": "^9.0.0",
"typescript": "^4.6.4",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"engines": {
"node": ">=12.0.0"
}
}