forked from richardgirges/express-fileupload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 939 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
{
"name": "express-fileupload",
"version": "1.1.3-alpha.2",
"author": "Richard Girges <[email protected]>",
"description": "Simple express file upload middleware that wraps around Busboy",
"main": "./lib/index",
"scripts": {
"test": "istanbul cover _mocha -- -R spec",
"lint": "eslint ./",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"busboy": "^0.2.14"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"express",
"file-upload",
"upload",
"forms",
"multipart",
"files",
"busboy",
"middleware"
],
"license": "MIT",
"repository": "richardgirges/express-fileupload",
"devDependencies": {
"md5": "^2.2.1",
"body-parser": "^1.18.3",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"supertest": "^3.3.0"
}
}