forked from googleapis/nodejs-bigquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.81 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
{
"name": "@google-cloud/bigquery",
"description": "Google BigQuery Client Library for Node.js",
"version": "4.0.0",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=8.10.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 && eslint samples/",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"test": "nyc mocha build/test",
"system-test": "mocha build/system-test --timeout 600000",
"presystem-test": "npm run compile",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p . && cp src/types.d.ts build/src/",
"fix": "gts fix && eslint --fix '**/*.js'",
"predocs": "npm run compile",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"docs-test": "linkinator docs -r --skip www.googleapis.com",
"predocs-test": "npm run docs",
"types": "dtsd bigquery v2 > ./src/types.d.ts"
},
"dependencies": {
"@google-cloud/common": "^2.0.0",
"@google-cloud/paginator": "^1.0.0",
"@google-cloud/promisify": "^1.0.0",
"arrify": "^2.0.0",
"big.js": "^5.1.2",
"duplexify": "^4.0.0",
"extend": "^3.0.1",
"is": "^3.0.1",
"stream-events": "^1.0.1",
"string-format-obj": "^1.0.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@google-cloud/storage": "^2.0.0",
"@types/big.js": "^4.0.5",
"@types/execa": "^0.9.0",
"@types/extend": "^3.0.0",
"@types/is": "0.0.21",
"@types/mocha": "^5.2.5",
"@types/mv": "^2.1.0",
"@types/ncp": "^2.0.1",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^7.0.0",
"@types/tmp": "0.1.0",
"@types/uuid": "^3.4.4",
"codecov": "^3.0.0",
"discovery-tsd": "^0.1.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-prettier": "^3.0.0",
"gts": "^1.0.0",
"ink-docstrap": "^1.3.2",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.6.2",
"jsdoc-baseline": "^0.1.0",
"linkinator": "^1.1.2",
"mocha": "^6.0.0",
"mv": "^2.1.1",
"ncp": "^2.0.0",
"nyc": "^14.0.0",
"power-assert": "^1.4.4",
"prettier": "^1.13.2",
"proxyquire": "^2.0.0",
"sinon": "^7.0.0",
"source-map-support": "^0.5.6",
"tmp": "0.1.0",
"typescript": "~3.4.0"
}
}