forked from expressjs/multer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@neuralegion/multer",
"description": "Middleware for handling `multipart/form-data`.",
"version": "0.0.0",
"contributors": [
"Hage Yaapa <[email protected]> (http://www.hacksparrow.com)",
"Jaret Pfluger <https://github.com/jpfluger>",
"Linus Unnebäck <[email protected]>",
"Artem Derevnjuk <[email protected]>"
],
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/multer.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NeuraLegion/multer/issues"
},
"homepage": "https://github.com/NeuraLegion/multer#readme",
"keywords": [
"form",
"post",
"multipart",
"form-data",
"formdata",
"express",
"middleware"
],
"dependencies": {
"@fastify/busboy": "^1.1.0",
"append-field": "^1.0.0",
"file-type": "^16.5.3",
"fs-temp": "^2.0.1",
"on-finished": "^2.4.1",
"type-is": "^1.6.18"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "^12.12.29",
"express": "^4.18.1",
"form-data": "^4.0.0",
"get-stream": "^6.0.1",
"hasha": "^5.2.2",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"pify": "^4.0.1",
"pump": "^3.0.0",
"recursive-nullify": "^1.0.0",
"semantic-release": "^19.0.3",
"standard": "^17.0.0",
"testdata-w3c-json-form": "^1.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js}": [
"standard --fix"
]
},
"engines": {
"node": ">=14"
},
"files": [
"LICENSE",
"lib/"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"semantic-release": "semantic-release",
"test": "mocha",
"lint": "standard {lib,test}/**/*.js",
"prepare": "is-ci || husky install"
}
}