forked from googleapis/nodejs-spanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.55 KB
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
{
"name": "@google-cloud/spanner",
"description": "Cloud Spanner Client Library for Node.js",
"version": "2.2.1",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=6.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",
"AUTHORS",
"CONTRIBUTORS",
"LICENSE"
],
"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",
"generate-scaffolding": "repo-tools generate all && repo-tools generate lib_samples_readme -l samples/ --config ../.cloud-repo-tools.json",
"lint": "gts check && eslint '**/*.js'",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"system-test": "mocha build/system-test --timeout 600000",
"cleanup": "mocha scripts/cleanup.js --timeout 30000",
"test": "nyc mocha build/test",
"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 && eslint --fix '**/*.js'",
"clean": "gts clean",
"compile": "tsc -p . && cp -r src/v1 build/src && cp -r protos build && cp test/*.js build/test",
"prepare": "npm run compile",
"pretest": "npm run compile",
"presystem-test": "npm run compile"
},
"dependencies": {
"@google-cloud/common-grpc": "^0.9.2",
"@google-cloud/paginator": "^0.1.0",
"@google-cloud/projectify": "^0.3.0",
"@google-cloud/promisify": "^0.3.0",
"arrify": "^1.0.1",
"checkpoint-stream": "^0.1.1",
"events-intercept": "^2.0.0",
"extend": "^3.0.1",
"google-auth-library": "^2.0.0",
"google-gax": "^0.22.0",
"is": "^3.2.1",
"lodash.merge": "^4.6.1",
"lodash.snakecase": "^4.1.1",
"merge-stream": "^1.0.1",
"p-limit": "^2.0.0",
"p-queue": "^3.0.0",
"p-retry": "^3.0.0",
"protobufjs": "^6.8.6",
"split-array-stream": "^2.0.0",
"stack-trace": "0.0.10",
"stream-events": "^1.0.4",
"through2": "^3.0.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.0.0",
"@types/arrify": "^1.0.4",
"@types/async": "^2.0.50",
"@types/concat-stream": "^1.6.0",
"@types/extend": "^3.0.0",
"@types/is": "0.0.21",
"@types/lodash.snakecase": "^4.1.4",
"@types/merge-stream": "^1.1.2",
"@types/mocha": "^5.2.5",
"@types/p-limit": "^2.0.0",
"@types/p-queue": "^3.0.0",
"@types/p-retry": "^2.0.0",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^7.0.0",
"@types/stack-trace": "0.0.29",
"@types/through2": "^2.0.34",
"@types/time-span": "^2.0.0",
"@types/uuid": "^3.4.4",
"binary-search-bounds": "^2.0.4",
"codecov": "^3.0.2",
"concat-stream": "^2.0.0",
"dedent": "^0.7.0",
"eslint": "^5.0.1",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"gts": "^0.9.0",
"ink-docstrap": "^1.3.2",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"lodash.random": "^3.2.0",
"mocha": "^5.2.0",
"nyc": "^13.0.0",
"power-assert": "^1.6.0",
"prettier": "^1.13.7",
"proxyquire": "^2.0.1",
"sinon": "^7.1.0",
"stats-lite": "^2.1.1",
"time-span": "^2.0.0",
"typescript": "~3.2.0",
"uuid": "^3.3.2",
"yargs": "^12.0.1"
}
}