-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "express-file-store",
"version": "1.0.3",
"description": "express middleware to access/write/remove files (using file path) with various backends",
"main": "lib/express-file-store/index.js",
"bin": {
"efs": "bin/efs"
},
"scripts": {
"test": "mocha -R spec -b -t 30000 test"
},
"repository": {
"type": "git",
"url": "git@github.com:seedalpha/express-file-store.git"
},
"keywords": [
"express",
"upload",
"download",
"middleware",
"file",
"s3",
"gridfs",
"api"
],
"author": "Vladimir Popov <rusintez@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seedalpha/express-file-store/issues"
},
"homepage": "https://github.com/seedalpha/express-file-store",
"dependencies": {
"aws-sdk": "^2.2.10",
"busboy": "^0.2.11",
"debug": "^2.1.3",
"express": "^4.12.3",
"mime": "^1.3.4",
"minimist": "^1.1.1",
"mkdirp": "^0.5.0",
"mongodb": "^2.0.46",
"s3-readable": "^1.0.1",
"s3-writeable": "^1.0.1"
},
"devDependencies": {
"mocha": "^2.2.1",
"rimraf": "^2.3.2",
"supertest": "^0.15.0"
}
}