-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
{
"name": "@google-cloud/datastore",
"version": "9.2.1",
"description": "Cloud Datastore Client Library for Node.js",
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google datastore",
"datastore"
],
"repository": "googleapis/nodejs-datastore",
"license": "Apache-2.0",
"author": "Google LLC.",
"main": "build/src/index.js",
"files": [
"build/protos",
"build/src"
],
"scripts": {
"clean": "gts clean",
"compile": "tsc -p . && cp -r proto* build/ && cp -r system-test/data build/system-test",
"compile-protos": "compileProtos src",
"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 ../",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test --timeout 600000",
"pretest": "npm run compile",
"test": "c8 mocha build/test",
"precompile": "gts clean"
},
"dependencies": {
"@google-cloud/promisify": "^4.0.0",
"arrify": "^2.0.1",
"async-mutex": "^0.5.0",
"concat-stream": "^2.0.0",
"extend": "^3.0.2",
"google-gax": "^4.0.5",
"is": "^3.3.0",
"split-array-stream": "^2.0.0",
"stream-events": "^1.0.5"
},
"devDependencies": {
"@google-cloud/storage": "^7.0.1",
"@types/extend": "^3.0.1",
"@types/is": "0.0.25",
"@types/js-yaml": "^4.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^20.4.9",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^17.0.0",
"async": "^3.2.4",
"c8": "^9.0.0",
"gapic-tools": "^0.4.0",
"gts": "^5.0.0",
"js-yaml": "^4.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^3.0.0",
"mocha": "^9.2.2",
"null-loader": "^4.0.0",
"p-queue": "^6.6.1",
"pack-n-play": "^2.0.0",
"proxyquire": "^2.1.3",
"sinon": "17.0.0",
"ts-loader": "^8.0.0",
"typescript": "^5.1.6",
"webpack-cli": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}