This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
73 lines (73 loc) · 1.83 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
{
"name": "gcs-resumable-upload",
"version": "2.3.3",
"description": "Upload a file to Google Cloud Storage with built-in resumable behavior",
"repository": "googleapis/gcs-resumable-upload",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": {
"gcs-upload": "build/src/cli.js"
},
"scripts": {
"test": "c8 mocha build/test",
"lint": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"posttest": "npm run lint",
"prepare": "npm run compile",
"pretest": "npm run compile",
"system-test": "mocha build/system-test --timeout 60000",
"samples-test": "echo no samples 🤷♂️",
"presystem-test": "npm run compile",
"docs": "compodoc src/",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs"
},
"keywords": [
"google",
"gcloud",
"storage",
"gcs",
"upload",
"resumable"
],
"files": [
"build/src"
],
"author": "Stephen Sawchuk <sawchuk@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"dependencies": {
"abort-controller": "^3.0.0",
"configstore": "^5.0.0",
"gaxios": "^2.0.0",
"google-auth-library": "^5.0.0",
"pumpify": "^2.0.0",
"stream-events": "^1.0.4"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.7",
"@types/configstore": "^4.0.0",
"@types/is-stream": "^1.1.0",
"@types/mocha": "^7.0.0",
"@types/mockery": "^1.4.29",
"@types/nock": "^10.0.0",
"@types/node": "^10.3.0",
"@types/pumpify": "^1.4.1",
"@types/sinon": "^7.0.10",
"assert-rejects": "^1.0.0",
"c8": "^7.0.0",
"codecov": "^3.0.4",
"gts": "next",
"is-stream": "^2.0.0",
"linkinator": "^2.0.0",
"mocha": "^7.0.0",
"mockery": "^2.1.0",
"nock": "^12.0.0",
"sinon": "^9.0.0",
"typescript": "^3.8.3"
}
}