-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1014 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
42
43
{
"name": "stream_upload",
"version": "0.1.6",
"description": "Node.js library to stream files to several storage locations (s3, local ...)",
"license": "Apache-2.0",
"main": "index",
"scripts": {
"test": "mocha test/test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/citizenos/stream_upload.git"
},
"keywords": [
"file",
"s3",
"upload",
"stream"
],
"author": "CitizenOS <[email protected]> (https://github.com/citizenos)",
"bugs": {
"url": "https://github.com/citizenos/stream_upload/issues"
},
"homepage": "https://github.com/citizenos/stream_upload",
"dependencies": {
"@aws-sdk/client-s3": "^3.513.0",
"@aws-sdk/lib-storage": "^3.515.0",
"fs-extra": "^11.2.0",
"mime-types": "^2.1.35",
"underscore": "^1.13.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"mocha": "^10.3.0"
},
"eslintConfig": {
"root": true
},
"directories": {
"test": "test"
}
}