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