-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
40
41
42
43
44
{
"name": "express-multipart",
"version": "1.0.6",
"description": "High performance lightweight Express middleware for handling multipart/form-data requests",
"keywords": [
"express",
"middleware",
"api",
"rest",
"multipart",
"multipart/form-data",
"form-data",
"formdata",
"form",
"data"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": "https://github.com/SocketByte/express-multipart",
"homepage": "https://socketbyte.github.io/express-multipart/",
"author": "Adam Grzegorzewski <[email protected]> (https://agregorevsky.com)",
"license": "MIT",
"scripts": {
"docs": "typedoc --out docs --readme README.md --includeVersion lib/index.ts",
"build": "tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@types/busboy": "^0.2.3",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/express": "^4.17.11",
"append-field": "^1.0.0",
"busboy": "^0.3.1",
"file-type": "^16.3.0"
}
}