forked from Zooz/aws-s3-multipart-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "aws-s3-multipart-copy",
"version": "1.0.10",
"description": "This node js package provides a simple usage for multipart copying between buckets in aws-s3 via the official aws-sdk. It manages the 3 steps required for multipart copy including byte-range offsetting and parts order.",
"main": "index.js",
"scripts": {
"test": "nyc mocha ./test/unit-tests --recursive",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zooz/aws-s3-multipart-copy.git"
},
"author": "Liad Berko",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/Zooz/aws-s3-multipart-copy.git/issues"
},
"homepage": "https://github.com/Zooz/aws-s3-multipart-copy.git#readme",
"nyc": {
"check-coverage": true,
"lines": 98,
"include": [
"src"
],
"exclude": [
"index.js"
],
"reporter": [
"text",
"html"
],
"cache": true,
"all": true,
"report-dir": "coverage"
},
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"aws-sdk": "^2.192.0",
"bunyan": "^1.8.12",
"coveralls": "^3.0.2",
"deepcopy": "^0.6.3",
"mocha": "^4.1.0",
"nyc": "^13.2.0",
"pkginfo": "^0.4.1",
"rewire": "^3.0.2",
"should": "^13.2.1",
"sinon": "^4.3.0"
}
}