-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
73 lines (73 loc) · 1.98 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
{
"name": "fastify-multer",
"description": "Fastify plugin for handling `multipart/form-data`.",
"version": "2.0.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"contributors": [
"Maksim Sinik <[email protected]>",
"Hage Yaapa <[email protected]> (http://www.hacksparrow.com)",
"Jaret Pfluger <https://github.com/jpfluger>",
"Linus Unnebäck <[email protected]>"
],
"license": "MIT",
"repository": "https://github.com/fox1t/fastify-multer",
"keywords": [
"form",
"post",
"multipart",
"form-data",
"formdata",
"fastify",
"middleware"
],
"dependencies": {
"@fastify/busboy": "^1.0.0",
"append-field": "^1.0.0",
"concat-stream": "^2.0.0",
"fastify-plugin": "^2.0.1",
"mkdirp": "^1.0.4",
"on-finished": "^2.3.0",
"type-is": "~1.6.18",
"xtend": "^4.0.2"
},
"devDependencies": {
"@types/concat-stream": "^1.6.0",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "~5.2.7",
"@types/node": "^12.7.8",
"@types/on-finished": "^2.3.1",
"@types/type-is": "^1.6.3",
"@types/xtend": "4.0.2",
"fastify": "^3.24.1",
"form-data": "^2.5.1",
"fs-temp": "^1.1.2",
"mocha": "^6.2.1",
"prettier": "~1.18.2",
"rimraf": "^3.0.0",
"testdata-w3c-json-form": "~1.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=10.17.0"
},
"files": [
"lib/",
"src",
"typings/"
],
"scripts": {
"prebuild": "npm run clean-build && npm run lint",
"build": "tsc -p ./tsconfig.json",
"clean-build": "rimraf ./lib && mkdir lib",
"prettier": "prettier --loglevel warn --write \"src/**/*.{ts,tsx}\"",
"prelint": "npm run prettier",
"lint": "tslint --fix -c tslint.json -t stylish -p ./tsconfig.json",
"update": "npx npm-check -u",
"prepublishOnly": "npm run build",
"test": "npm run build && mocha --require test/tshook.js ./test/*.ts"
}
}