forked from hatashiro/express-formidable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 946 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
{
"name": "express-formidable",
"version": "1.2.0",
"description": "An Express middleware of Formidable that just works.",
"author": "Jun <[email protected]>",
"main": "./lib/middleware.js",
"engines": {
"node": ">= 8"
},
"scripts": {
"test": "eslint . && jest test/middleware.test.js --forceExit --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/utatti/express-formidable.git"
},
"keywords": [
"express",
"middleware",
"formidable"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/utatti/express-formidable/issues"
},
"homepage": "https://github.com/utatti/express-formidable",
"dependencies": {
"formidable": "^1.0.17"
},
"devDependencies": {
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"express": "^4.14.0",
"jest": "^23.6.0",
"request": "^2.88.0"
}
}