forked from googleapis/nodejs-spanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.63 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
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@google-cloud/spanner",
"description": "Cloud Spanner Client Library for Node.js",
"version": "7.1.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=14.0.0"
},
"repository": "googleapis/nodejs-spanner",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/protos",
"build/src",
"!build/src/**/*.map"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"spanner"
],
"scripts": {
"docs": "jsdoc -c .jsdoc.js",
"predocs": "npm run compile",
"lint": "gts check",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"system-test": "mocha build/system-test --timeout 1600000",
"cleanup": "mocha scripts/cleanup.js --timeout 30000",
"test": "mocha build/test build/test/common",
"ycsb": "node ./benchmark/ycsb.js run -P ./benchmark/workloada -p table=usertable -p cloudspanner.instance=ycsb-instance -p operationcount=100 -p cloudspanner.database=ycsb",
"fix": "gts fix",
"clean": "gts clean",
"compile": "tsc -p . && cp -r protos build",
"prepare": "npm run compile-protos && npm run compile",
"pretest": "npm run compile",
"presystem-test": "npm run compile",
"proto": "compileProtos src",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"benchwrapper": "node bin/benchwrapper.js",
"prelint": "cd samples; npm link ../; npm install",
"precompile": "gts clean",
"compile-protos": "compileProtos src",
"coverage": "c8 mocha build/test build/test/common && c8 report --check-coverage"
},
"dependencies": {
"@google-cloud/common": "^5.0.0",
"@google-cloud/precise-date": "^4.0.0",
"@google-cloud/projectify": "^4.0.0",
"@google-cloud/promisify": "^4.0.0",
"@grpc/proto-loader": "^0.7.0",
"@types/big.js": "^6.0.0",
"@types/stack-trace": "0.0.33",
"arrify": "^2.0.0",
"big.js": "^6.0.0",
"checkpoint-stream": "^0.1.1",
"duplexify": "^4.1.1",
"events-intercept": "^2.0.0",
"extend": "^3.0.2",
"google-auth-library": "^9.0.0",
"google-gax": "4.0.5",
"grpc-gcp": "^1.0.0",
"is": "^3.2.1",
"lodash.snakecase": "^4.1.1",
"merge-stream": "^2.0.0",
"p-queue": "^6.0.2",
"protobufjs": "^7.0.0",
"retry-request": "^7.0.0",
"split-array-stream": "^2.0.0",
"stack-trace": "0.0.10",
"stream-events": "^1.0.4",
"teeny-request": "^9.0.0",
"through2": "^4.0.0"
},
"devDependencies": {
"@types/concat-stream": "^2.0.0",
"@types/extend": "^3.0.0",
"@types/is": "0.0.25",
"@types/lodash.snakecase": "^4.1.4",
"@types/merge-stream": "^1.1.2",
"@types/mocha": "^9.0.0",
"@types/mv": "^2.1.0",
"@types/ncp": "^2.0.1",
"@types/proxyquire": "^1.3.28",
"@types/request": "^2.48.3",
"@types/sinon": "^10.0.0",
"@types/through2": "^2.0.34",
"@types/uuid": "^9.0.0",
"binary-search-bounds": "^2.0.4",
"c8": "^8.0.1",
"codecov": "^3.0.2",
"concat-stream": "^2.0.0",
"dedent": "^1.0.0",
"execa": "^5.0.0",
"gapic-tools": "^0.2.0",
"gts": "^5.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^4.0.0",
"lodash.random": "^3.2.0",
"mocha": "^9.2.2",
"mv": "^2.1.1",
"ncp": "^2.0.0",
"p-limit": "^3.0.1",
"proxyquire": "^2.0.1",
"sinon": "^15.0.0",
"stats-lite": "^2.1.1",
"time-span": "^4.0.0",
"tmp": "^0.2.0",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"yargs": "^17.0.0"
}
}