forked from googleapis/nodejs-vertexai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "@google-cloud/vertexai",
"description": "Vertex Generative AI client for Node.js",
"version": "1.7.0",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/googleapis/nodejs-vertexai",
"repository": "googleapis/nodejs-vertexai",
"main": "build/src/index.js",
"type": "commonjs",
"scripts": {
"clean": "gts clean",
"compile": "tsc -p .",
"docs": "jsdoc -c .jsdoc.js",
"predocs-test": "npm run docs",
"docs-test": "linkinator docs",
"compile:oss": "tsc -p tsconfig.json.oss",
"fix": "gts fix",
"test": "npm run test:src && npm run test:test",
"test:test": "jasmine build/test/*.js --reporter=test/spec/reporter.js",
"test:src": "jasmine build/src/functions/test/*.js build/src/models/test/*.js --reporter=test/spec/reporter.js",
"test:system": "jasmine build/system_test/*.js --reporter=test/spec/reporter.js",
"lint": "gts lint",
"clean-js-files": "find . -type f -name \"*.js\" -exec rm -f {} +",
"clean-js-map-files": "find . -type f -name \"*.js.map\" -exec rm -f {} +",
"postpack": "if [ \"${CLEAN}\" ]; then npm run clean-after-pack; fi",
"cover": "npm run cover:unit && npm run cover:integration && npm run cover:report",
"cover:unit": "nyc npm run test",
"cover:integration": "nyc --no-clean npm run test:system",
"cover:report": "nyc report --reporter=lcov",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"google-auth-library": "^9.1.0"
},
"devDependencies": {
"@types/jasmine": "^5.1.2",
"@types/node": "^20.9.0",
"gts": "^5.2.0",
"jasmine": "^5.1.0",
"jasmine-reporters": "^2.4.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^4.0.0",
"typescript": "~5.2.0",
"nyc": "^15.1.0"
}
}