-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 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
{
"name": "bigquery",
"version": "0.1.0",
"description": "Bigquery client for Node.js",
"repository": "googleapis/nodejs-bigquery",
"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 bigquery",
"bigquery",
"dataset service",
"job service",
"model service",
"project service",
"routine service",
"row access policy service",
"table service"
],
"scripts": {
"clean": "gts clean",
"compile": "tsc -p . && cp -r protos build/ && minifyProtoJson",
"compile-protos": "compileProtos src",
"docs": "jsdoc -c .jsdoc.js",
"fix": "gts fix",
"lint": "gts check",
"prepare": "npm run compile-protos && npm run compile",
"system-test": "c8 mocha build/system-test",
"test": "c8 mocha build/test"
},
"dependencies": {
"google-gax": "^4.4.0"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "^20.16.4",
"@types/sinon": "^10.0.20",
"c8": "^10.1.2",
"gapic-tools": "^0.4.6",
"gts": "5.3.1",
"jsdoc": "^4.0.3",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"mocha": "^10.7.3",
"pack-n-play": "^2.0.3",
"sinon": "^18.0.0",
"typescript": "5.7.3"
},
"engines": {
"node": ">=v14"
}
}