-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1020 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
{
"name": "aws-s3-object-multipart-copy",
"version": "0.1.3",
"description": "Copy large files in S3 using the AWS S3 Multipart API.",
"main": "index.js",
"scripts": {
"test": "nyc tape test.js"
},
"keywords": [
"aws",
"s3",
"object",
"multipart",
"copy"
],
"author": "Joseph Werle <werle@littlestar.com>",
"license": "MIT",
"devDependencies": {
"aws-sdk": "^2.678.0",
"aws-sdk-mock": "^5.1.0",
"cli-progress": "^3.8.2",
"nyc": "^15.0.1",
"tape": "^5.0.0"
},
"dependencies": {
"batch": "^0.6.1",
"blake2b": "^2.1.3",
"debug": "^4.1.1",
"extend": "^3.0.2",
"mutexify": "^1.3.0",
"nanoassert": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/little-core-labs/aws-s3-object-multipart-copy.git"
},
"bugs": {
"url": "https://github.com/little-core-labs/aws-s3-object-multipart-copy/issues"
},
"homepage": "https://github.com/little-core-labs/aws-s3-object-multipart-copy#readme"
}