-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "multer-autoreap",
"version": "1.0.3",
"description": "Connect middleware providing auto gc of tmp uploaded files by multer or any multipart middleware.",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"test": "mocha --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/joelabair/multer-autoreap.git"
},
"keywords": [
"multer",
"multipart",
"form-data",
"express",
"middleware",
"gc",
"reap",
"reaper"
],
"author": "Joel A. Bair <[email protected]>",
"bugs": {
"url": "https://github.com/joelabair/multer-autoreap/issues"
},
"engines": {
"node": ">= 0.8"
},
"peerDependencies": {
"express": "^4.16.3",
"multer": "^1.3.0"
},
"dependencies": {
"debug": "^3.1.0",
"es6-object-assign": "^1.1.0",
"on-finished": "^2.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "0.4.5",
"mocha": "^5.0.4",
"supertest": "^3.0.0"
}
}