forked from googleapis/nodejs-bigquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.36 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": "@google-cloud/bigquery",
"description": "Google BigQuery Client Library for Node.js",
"version": "1.3.0",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=6.0.0"
},
"repository": "googleapis/nodejs-bigquery",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src",
"!build/src/**/*.map",
"AUTHORS",
"CONTRIBUTORS",
"LICENSE"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google bigquery",
"bigquery"
],
"contributors": [
"Ace Nassri <anassri@google.com>",
"Alexander Fenster <fenster@google.com>",
"Alexander Fenster <github@fenster.name>",
"Alix Hamilton <ajhamilton@google.com>",
"Ashley Schuett <ashleyns1992@gmail.com>",
"Cristian Cavalli <cristiancavall@google.com>",
"Dave Gramlich <callmehiphop@gmail.com>",
"Eric Uldall <ericuldall@gmail.com>",
"Jason Dobry <jdobry@google.com>",
"Luke Sneeringer <lukesneeringer@google.com>",
"Mark Sanders <ziplokk.mark.sanders@gmail.com>",
"Michael Darakananda <pongad@google.com>",
"Peter Olds <peter@olds.co>",
"Ryan Hughes <ryanhugh@users.noreply.github.com>",
"Ryan Seys <ryan@ryanseys.com>",
"Snir David <snir@fastmail.fm>",
"Stephen Sawchuk <sawchuk@gmail.com>",
"Tim Swast <swast@google.com>",
"Zach Bjornson <bjornson@stanford.edu>",
"c0b <14798161+c0b@users.noreply.github.com>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"swftvsn <swftvsn@users.noreply.github.com>"
],
"scripts": {
"benchmark": "time node benchmark/bench.js benchmark/queries.json",
"docs": "jsdoc -c .jsdoc.js",
"lint": "eslint samples/",
"prettier": "prettier --write samples/*.js samples/*/*.js",
"cover": "nyc --reporter=lcov mocha test/*.js && nyc report",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"test": "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 .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
"dependencies": {
"@google-cloud/common": "^0.25.0",
"@google-cloud/paginator": "^0.1.0",
"@google-cloud/promisify": "^0.3.0",
"arrify": "^1.0.0",
"big.js": "^5.1.2",
"duplexify": "^3.5.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/nodejs-repo-tools": "^2.2.3",
"@google-cloud/storage": "^2.0.0",
"@types/mocha": "^5.2.5",
"async": "^2.6.0",
"codecov": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-prettier": "^3.0.0",
"gts": "^0.8.0",
"ink-docstrap": "^1.3.2",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"methmeth": "^1.1.0",
"mocha": "^5.0.0",
"nyc": "^13.0.0",
"power-assert": "^1.4.4",
"prettier": "^1.13.2",
"propprop": "^0.3.0",
"proxyquire": "^2.0.0",
"sinon": "^6.1.4",
"source-map-support": "^0.5.6",
"typescript": "~3.1.0"
}
}