-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
105 lines (105 loc) · 2.98 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
{
"name": "@google-cloud/bigtable",
"version": "5.1.2",
"description": "Cloud Bigtable Client Library for Node.js",
"keywords": [
"bigtable",
"cloud",
"google",
"google api",
"google api client",
"google apis",
"google apis client",
"google bigtable",
"google cloud",
"google cloud platform"
],
"repository": "googleapis/nodejs-bigtable",
"license": "Apache-2.0",
"author": "Google Inc.",
"main": "build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/protos",
"build/src",
"!**/*.map"
],
"scripts": {
"compile": "tsc -p . && cp -r proto* build/",
"compile-protos": "compileProtos src",
"predocs": "npm run compile",
"docs": "jsdoc -c .jsdoc.js",
"predocs-test": "npm run docs",
"docs-test": "linkinator docs",
"fix": "gts fix",
"prelint": "cd samples; npm link ../; npm install",
"lint": "gts check",
"prepare": "npm run compile-protos && npm run compile",
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
"snippet-test": "mocha samples/api-reference-doc-snippets/tests/*.js --timeout 600000",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test --timeout 600000",
"pretest": "npm run compile",
"test": "c8 mocha build/test",
"test:snap": "SNAPSHOT_UPDATE=1 npm test",
"testproxy": "npm run compile && node testproxy/index.js",
"clean": "gts clean",
"precompile": "gts clean"
},
"dependencies": {
"@google-cloud/precise-date": "^4.0.0",
"@google-cloud/projectify": "^4.0.0",
"@google-cloud/promisify": "^4.0.0",
"arrify": "^2.0.0",
"concat-stream": "^2.0.0",
"dot-prop": "^6.0.0",
"escape-string-regexp": "^4.0.0",
"extend": "^3.0.2",
"google-gax": "^4.0.3",
"grpc-gcp": "^1.0.1",
"is": "^3.0.1",
"is-utf8": "^0.2.1",
"lodash.snakecase": "^4.1.1",
"long": "^4.0.0",
"pumpify": "^2.0.0",
"stream-events": "^1.0.2"
},
"devDependencies": {
"@grpc/grpc-js": "^1.9.0",
"@grpc/proto-loader": "^0.7.3",
"@types/escape-string-regexp": "^2.0.0",
"@types/extend": "^3.0.1",
"@types/is": "0.0.25",
"@types/lodash.snakecase": "^4.1.5",
"@types/mocha": "^9.0.0",
"@types/node": "^20.4.9",
"@types/proxyquire": "^1.3.28",
"@types/pumpify": "^1.4.1",
"@types/sinon": "^10.0.0",
"@types/uuid": "^9.0.0",
"c8": "^9.0.0",
"codecov": "^3.6.5",
"gapic-tools": "^0.4.0",
"gts": "^5.0.0",
"jsdoc": "^4.0.2",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^2.0.0",
"linkinator": "^5.0.0",
"mocha": "^9.2.2",
"null-loader": "^4.0.0",
"p-queue": "^6.0.2",
"pack-n-play": "^2.0.0",
"proxyquire": "^2.0.0",
"sinon": "^16.0.0",
"snap-shot-it": "^7.9.1",
"tcp-port-used": "^1.0.2",
"ts-loader": "^9.0.0",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}