This repository was archived by the owner on Mar 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.62 KB
/
package.json
File metadata and controls
147 lines (147 loc) · 4.62 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@google-cloud/storage",
"description": "Cloud Storage Client Library for Node.js",
"version": "2.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=6.0.0"
},
"repository": "googleapis/nodejs-storage",
"main": "./build/src/index.js",
"types": "./build/src/index.t.ds",
"files": [
"build/src",
"AUTHORS",
"CONTRIBUTORS",
"COPYING"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google storage",
"storage"
],
"contributors": [
"Ace Nassri <anassri@google.com>",
"Alexander Borovykh <immaculate.pine@gmail.com>",
"Alexander Fenster <github@fenster.name>",
"Billy Jacobson <billy.jacobson@gmail.com>",
"Calvin Metcalf <calvin.metcalf@gmail.com>",
"Colin Ihrig <cjihrig@gmail.com>",
"Cristian Almstrand <almstrand@users.noreply.github.com>",
"Dave Gramlich <callmehiphop@gmail.com>",
"Dominic Valenciana <kiricon@live.com>",
"Eric Uldall <ericuldall@gmail.com>",
"Ernest Landrito <landrito@google.com>",
"Frank Natividad <frankyn@users.noreply.github.com>",
"Jason Dobry <jason.dobry@gmail.com>",
"Jason Dobry <jmdobry@users.noreply.github.com>",
"Justin Beckwith <justin.beckwith@gmail.com>",
"Justin Sprigg <justin.sprigg@gmail.com>",
"Luke Sneeringer <luke@sneeringer.com>",
"Stephen <stephenplusplus@users.noreply.github.com>",
"Stephen Sawchuk <sawchuk@gmail.com>",
"Stephen Sawchuk <stephenplusplus@users.noreply.github.com>",
"Tyler Johnson <mail@tyler-johnson.ca>",
"Zach Bjornson <bjornson@stanford.edu>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>"
],
"scripts": {
"codecov": "nyc report --reporter=json && codecov -f .coverage/*.json",
"docs": "jsdoc -c .jsdoc.js",
"generate-scaffolding": "repo-tools generate all && repo-tools generate lib_samples_readme -l samples/ --config ../.cloud-repo-tools.json",
"system-test": "mocha system-test/ --timeout 600000",
"test-only": "nyc mocha build/test",
"test": "npm run test-only",
"pretest-only": "npm run compile",
"lint": "eslint samples/ system-test/ && gts check",
"samples-test": "npm link && cd samples/ && npm link ../ && npm test && cd ../",
"all-test": "npm test && npm run system-test && npm run samples-test",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile"
},
"nyc": {
"exclude": [
"build/test"
]
},
"dependencies": {
"@google-cloud/common": "^0.23.0",
"@google-cloud/paginator": "^0.1.0",
"@google-cloud/promisify": "^0.3.0",
"arrify": "^1.0.0",
"async": "^2.0.1",
"compressible": "^2.0.12",
"concat-stream": "^1.5.0",
"create-error-class": "^3.0.2",
"duplexify": "^3.5.0",
"extend": "^3.0.0",
"gcs-resumable-upload": "^0.12.0",
"hash-stream-validation": "^0.2.1",
"is": "^3.0.1",
"mime": "^2.2.0",
"mime-types": "^2.0.8",
"once": "^1.3.1",
"pumpify": "^1.5.1",
"request": "^2.88.0",
"snakeize": "^0.1.0",
"stream-events": "^1.0.1",
"through2": "^2.0.0",
"xdg-basedir": "^3.0.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.2.3",
"@google-cloud/pubsub": "*",
"@types/arrify": "^1.0.4",
"@types/assert": "0.0.31",
"@types/async": "^2.0.49",
"@types/compressible": "^2.0.0",
"@types/concat-stream": "^1.6.0",
"@types/extend": "^3.0.0",
"@types/is": "0.0.20",
"@types/mime": "^2.0.0",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^5.2.3",
"@types/once": "^1.4.0",
"@types/proxyquire": "^1.3.28",
"@types/pumpify": "^1.4.1",
"@types/request": "^2.47.1",
"@types/through2": "^2.0.33",
"@types/tmp": "0.0.33",
"@types/xdg-basedir": "^2.0.0",
"codecov": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-prettier": "^2.3.1",
"gts": "^0.8.0",
"hard-rejection": "^1.0.0",
"ink-docstrap": "https://github.com/docstrap/docstrap/tarball/master",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.4",
"mocha": "^5.0.0",
"node-fetch": "^2.2.0",
"normalize-newline": "^3.0.0",
"nyc": "^13.0.0",
"power-assert": "^1.4.4",
"prettier": "^1.7.0",
"prop-assign": "^1.0.0",
"propprop": "^0.3.0",
"proxyquire": "^2.0.0",
"semistandard": "^12.0.0",
"source-map-support": "^0.5.6",
"tmp": "^0.0.33",
"typescript": "^3.0.1",
"uuid": "^3.1.0"
}
}