-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.46 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
{
"name": "@google-cloud/bigtable",
"version": "1.0.1",
"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.",
"files": [
"build/proto",
"build/protos",
"build/proto",
"build/src",
"!**/*.d.ts",
"!**/*.map"
],
"main": "build/src/index.js",
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p . && cp -r src/v2 build/src/ && cp -r proto* build/ && cp test/*.js build/test",
"docs": "jsdoc -c .jsdoc.js",
"predocs-test": "npm run docs",
"docs-test": "linkinator docs -r --skip www.googleapis.com",
"fix": "gts fix && npm run lintfix",
"generate-scaffolding": "repo-tools generate all && repo-tools generate lib_samples_readme -l samples/ --config ../.cloud-repo-tools.json",
"lint": "eslint '**/*.js'",
"lintfix": "eslint --fix '**/*.js'",
"prepare": "npm run compile",
"proto": "mkdirp proto && pbjs -t static-module -w commonjs -p protos google/bigtable/v2/bigtable.proto google/bigtable/admin/v2/bigtable_instance_admin.proto google/bigtable/admin/v2/bigtable_table_admin.proto | pbts -o proto/bigtable.d.ts -",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"snippet-test": "mocha samples/document-snippets/tests/*.js --timeout 600000",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test --timeout 600000",
"pretest": "npm run compile",
"test": "nyc mocha build/test",
"posttest": "npm run check"
},
"dependencies": {
"@google-cloud/common-grpc": "^1.0.0",
"@google-cloud/paginator": "^1.0.0",
"@google-cloud/projectify": "^1.0.0",
"@google-cloud/promisify": "^1.0.0",
"arrify": "^2.0.0",
"concat-stream": "^2.0.0",
"dot-prop": "^5.0.0",
"escape-string-regexp": "^2.0.0",
"extend": "^3.0.0",
"google-auth-library": "^4.0.0",
"google-gax": "^1.0.0",
"is": "^3.0.1",
"is-utf8": "^0.2.1",
"lodash.merge": "^4.6.0",
"lodash.snakecase": "^4.1.1",
"long": "^4.0.0",
"protobufjs": "^6.8.0",
"pumpify": "^1.3.3",
"retry-request": "^4.0.0",
"stream-events": "^1.0.2",
"through2": "^3.0.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.0.0",
"@types/escape-string-regexp": "^1.0.0",
"@types/extend": "^3.0.1",
"@types/is": "0.0.21",
"@types/lodash.snakecase": "^4.1.5",
"@types/mocha": "^5.2.6",
"@types/proxyquire": "^1.3.28",
"@types/pumpify": "^1.4.1",
"@types/sinon": "^7.0.7",
"@types/through2": "^2.0.34",
"@types/uuid": "^3.4.4",
"codecov": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-prettier": "^3.0.0",
"gts": "^1.0.0",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.6.2",
"jsdoc-baseline": "^0.1.0",
"linkinator": "^1.1.2",
"mkdirp": "^0.5.1",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"p-queue": "^5.0.0",
"power-assert": "^1.4.4",
"prettier": "^1.7.4",
"proxyquire": "^2.0.0",
"sinon": "^7.0.0",
"source-map-support": "^0.5.10",
"typescript": "~3.4.0",
"uuid": "^3.0.1"
},
"engines": {
"node": ">=8.10.0"
}
}