-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "express-filebin",
"version": "0.3.0",
"description": "Upload files and create download links for random files with LRU policy.",
"main": "index.js",
"scripts": {
"test": "mocha -t 100000"
},
"repository": {
"type": "git",
"url": "https://github.com/Sanji-IO/express-filebin.git"
},
"keywords": [
"lru",
"express",
"middleware",
"file",
"fileupload"
],
"author": "YuLun Shih",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sanji-IO/express-filebin/issues"
},
"homepage": "https://github.com/Sanji-IO/express-filebin",
"engines": {
"node": ">=6"
},
"dependencies": {
"aws-sdk": "^2.122.0",
"bluebird": "^3.5.0",
"debug": "^3.0.1",
"del": "^3.0.0",
"express": "^4.15.5",
"lru-cache": "^4.1.1",
"multer": "^1.3.0",
"object-assign": "^4.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mkdirp": "^0.5.1",
"mocha": "^3.5.3",
"s3rver": "^1.0.3",
"sinon": "^3.3.0",
"supertest": "^2.0.1"
}
}