forked from googleapis/nodejs-bigquery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.57 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
{
"name": "@zapper-fi/bigquery",
"description": "Google BigQuery Client Library for Node.js",
"version": "6.0.4",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=12.0.0"
},
"repository": "googleapis/nodejs-bigquery",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src",
"!build/src/**/*.map"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google bigquery",
"bigquery"
],
"scripts": {
"prebenchmark": "npm run compile",
"benchmark": "node build/benchmark/bench.js benchmark/queries.json",
"docs": "jsdoc -c .jsdoc.js",
"lint": "gts check",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"test": "c8 mocha build/test",
"system-test": "mocha build/system-test --timeout 600000",
"presystem-test": "npm run compile",
"clean": "gts clean",
"compile": "tsc -p . && cp src/types.d.ts build/src/",
"fix": "gts fix",
"predocs": "npm run compile",
"prepare": "npm run compile",
"pretest": "npm run compile",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"types": "dtsd bigquery v2 > ./src/types.d.ts",
"prelint": "cd samples; npm link ../; npm install",
"precompile": "gts clean"
},
"dependencies": {
"@google-cloud/common": "^4.0.0",
"@google-cloud/paginator": "^4.0.0",
"@google-cloud/promisify": "^3.0.0",
"arrify": "^2.0.1",
"big.js": "^6.0.0",
"duplexify": "^4.0.0",
"extend": "^3.0.2",
"is": "^3.3.0",
"p-event": "^4.1.0",
"readable-stream": "^4.0.0",
"stream-events": "^1.0.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@google-cloud/storage": "^6.0.0",
"@types/big.js": "^6.0.0",
"@types/execa": "^0.9.0",
"@types/extend": "^3.0.1",
"@types/is": "0.0.21",
"@types/mocha": "^9.0.0",
"@types/mv": "^2.1.0",
"@types/ncp": "^2.0.1",
"@types/node": "^18.0.0",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.0",
"@types/tmp": "0.2.3",
"@types/uuid": "^9.0.0",
"c8": "^7.0.0",
"codecov": "^3.5.0",
"discovery-tsd": "^0.3.0",
"execa": "^5.0.0",
"gts": "^3.1.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^2.0.0",
"jsdoc-region-tag": "^2.0.0",
"linkinator": "^4.0.0",
"mocha": "^9.2.2",
"mv": "^2.1.1",
"ncp": "^2.0.0",
"proxyquire": "^2.1.0",
"sinon": "^15.0.0",
"tmp": "0.2.1",
"typescript": "^4.6.4"
}
}