forked from hatashiro/express-formidable
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 902 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.0.0",
"description": "An Express middleware of Formidable that just works.",
"author": "Jun <me@noraesae.net>",
"main": "./lib/middleware.js",
"engines": {
"node": ">= 4"
},
"scripts": {
"test": "eslint . && mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/noraesae/express-formidable.git"
},
"keywords": [
"express",
"middleware",
"formidable"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/noraesae/express-formidable/issues"
},
"homepage": "https://github.com/noraesae/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",
"mocha": "^3.1.0",
"request": "^2.75.0"
}
}