-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
111 lines (111 loc) · 3.29 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
{
"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/cjs/src/index.cjs",
"types": "./build/cjs/src/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./build/esm/src/index.d.ts",
"default": "./build/esm/src/index.js"
},
"require": {
"types": "./build/cjs/src/index.d.ts",
"default": "./build/cjs/src/index.cjs"
}
},
"./build/protos/protos": {
"import": {
"types": "./build/protos/protos/protos.d.ts",
"default": "./build/protos/protos/protos.js"
},
"require": {
"types": "./build/protos/protos/protos.d.ts",
"default": "./build/protos/protos/protos.cjs"
}
}
},
"files": [
"build/esm",
"build/cjs",
"build/protos",
"!build/esm/**/*.map",
"!build/cjs/**/*.map"
],
"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-protos": "compileProtos esm/src --esm ",
"docs": "jsdoc -c .jsdoc.cjs",
"postpack": "minifyProtoJson build/cjs && minifyProtoJson build/esm",
"predocs-test": "npm run docs",
"docs-test": "linkinator docs",
"fix": "gts fix",
"lint": "gts check",
"prepare": "npm run compile-protos && npm run compile",
"system-test:cjs": "c8 mocha build/cjs/system-test",
"system-test:esm": "c8 mocha build/esm/system-test",
"system-test": "npm run system-test:esm && npm run system-test:cjs",
"test:cjs": "c8 mocha build/cjs/test",
"test:esm": "c8 mocha build/esm/test",
"test": "npm run test:cjs && npm run test:esm",
"compile:esm": "tsc -p ./tsconfig.esm.json && cp -r esm/src/json-helper.cjs build/esm/src/json-helper.cjs",
"babel": "babel esm --out-dir build/cjs --ignore \"esm/**/*.d.ts\" --extensions \".ts\" --out-file-extension .cjs --copy-files",
"compile:cjs": "tsc -p ./tsconfig.json && npm run babel",
"compile": "npm run compile:esm && npm run compile:cjs && rm -rf build/protos && cp -r protos build/protos",
"samples-test": "cd samples/ && npm link ../ && npm i && npm test"
},
"dependencies": {
"google-gax": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/mocha": "^10.0.7",
"@types/node": "^20.16.4",
"@types/sinon": "^17.0.0",
"babel-plugin-replace-import-extension": "^1.1.4",
"c8": "^10.1.2",
"gapic-tools": "^0.4.6",
"gts": "^5.3.1",
"jsdoc": "^4.0.3",
"jsdoc-region-tag": "^3.0.0",
"jsdoc-fresh": "^3.0.0",
"long": "^5.2.3",
"mocha": "^10.7.3",
"pack-n-play": "^2.0.3",
"sinon": "^18.0.0",
"typescript": "5.7.3",
"ts-loader": "^8.4.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">=v14"
}
}