forked from googleapis/gcs-resumable-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 969 Bytes
/
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
{
"name": "gcs-resumable-upload",
"version": "0.7.6",
"description": "Upload a file to Google Cloud Storage with built-in resumable behavior",
"main": "index.js",
"bin": {
"gcs-upload": "./cli.js"
},
"scripts": {
"test": "standard && mocha"
},
"keywords": [
"google",
"gcloud",
"storage",
"gcs",
"upload",
"resumable"
],
"files": [
"cli.js",
"index.js"
],
"author": "Stephen Sawchuk <[email protected]>",
"license": "MIT",
"dependencies": {
"buffer-equal": "^1.0.0",
"configstore": "^3.0.0",
"google-auto-auth": "^0.6.0",
"pumpify": "^1.3.3",
"request": "^2.61.0",
"stream-events": "^1.0.1",
"through2": "^2.0.0"
},
"devDependencies": {
"is-stream": "^1.0.1",
"mocha": "^3.2.0",
"mockery": "^2.0.0",
"standard": "^10.0.1"
},
"standard": {
"global": [
"after",
"before",
"beforeEach",
"describe",
"it"
]
}
}