-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 853 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 853 Bytes
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
{
"name": "express-form-data",
"version": "3.0.1",
"description": "Module to parse multipart/form data",
"main": "./index.js",
"author": {
"name": "Alexander Balasyan",
"email": "mywebstreet@gmail.com"
},
"keywords": [
"express",
"form",
"data",
"multipart",
"multipart/form",
"json"
],
"license": "MIT",
"scripts": {
"test": "mocha"
},
"devDependencies": {
"chai": "^4.3.4",
"connect": "^3.7.0",
"mocha": "^11.6.0",
"supertest": "^3.4.2"
},
"dependencies": {
"fs-extra": "^9.1.0",
"http-errors": "^2.0.0",
"multiparty": "^4.2.3",
"on-finished": "^2.4.1",
"signal-exit": "^3.0.7",
"type-is": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ortexx/express-form-data"
},
"engines": {
"node": ">=10.7.0"
}
}