-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "micro-formidable",
"version": "0.0.1",
"description": "",
"main": "index.js",
"engines": {
"node": ">=7.7.1"
},
"scripts": {
"test": "NODE_ENV=development ava --fail-fast --verbose",
"test:watch": "NODE_ENV=development ava --fail-fast --verbose --watch",
"lint": "standard",
"pretest": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saggiyogesh/micro-formidable.git"
},
"keywords": ["micro", "formidable", "multipart", "forms"],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/saggiyogesh/micro-formidable/issues"
},
"homepage": "https://github.com/saggiyogesh/micro-formidable#readme",
"dependencies": {
"bluebird": "^3.5.0",
"formidable": "^1.1.1",
"micro": "^7.1.0",
"standard": "^10.0.1"
},
"devDependencies": {
"ava": "^0.19.1",
"is-path-in-cwd": "^1.0.0",
"request": "^2.80.0",
"request-promise": "^4.1.1",
"test-listen": "^1.0.1"
}
}