forked from nathanpeck/s3-upload-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 813 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
{
"name": "s3-upload-stream",
"description": "Writeable stream for uploading content of unknown size to S3 via the multipart API.",
"version": "1.0.7",
"author": {
"name": "Nathan Peck",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/nathanpeck/s3-upload-stream.git"
},
"devDependencies": {
"mocha": "1.17.1",
"aws-sdk": "2.0.17",
"chai": "1.8.1"
},
"dependencies": {},
"peerDependencies": {
"aws-sdk": "2.x"
},
"keywords": [
"aws",
"s3",
"upload",
"pipe",
"stream"
],
"license": "MIT",
"readmeFilename": "README.md",
"main": "./lib/s3-upload-stream.js",
"engines": {
"node": ">=0.10.x"
},
"scripts": {
"test": "mocha -R spec -s 100 ./tests/test.js"
}
}