forked from googleapis/nodejs-datastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.09 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
{
"name": "@google-cloud/datastore",
"version": "5.1.0",
"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/",
"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",
"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": "^2.0.0",
"arrify": "^2.0.1",
"concat-stream": "^2.0.0",
"extend": "^3.0.2",
"google-gax": "^2.2.0",
"is": "^3.3.0",
"split-array-stream": "^2.0.0",
"stream-events": "^1.0.5"
},
"devDependencies": {
"@types/extend": "^3.0.1",
"@types/is": "0.0.21",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.0",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^9.0.0",
"c8": "^7.1.0",
"codecov": "^3.6.5",
"gts": "^2.0.0",
"jsdoc": "^3.6.3",
"jsdoc-fresh": "^1.0.2",
"jsdoc-region-tag": "^1.0.4",
"linkinator": "^2.0.3",
"mocha": "^7.1.0",
"null-loader": "^4.0.0",
"pack-n-play": "^1.0.0-2",
"proxyquire": "^2.1.3",
"sinon": "^9.0.1",
"ts-loader": "^7.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"engines": {
"node": ">=10"
}
}