-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "@fastify/multipart",
"version": "9.0.1",
"description": "Multipart plugin for Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"dependencies": {
"@fastify/busboy": "^3.0.0",
"@fastify/deepmerge": "^2.0.0",
"@fastify/error": "^4.0.0",
"fastify-plugin": "^5.0.0",
"secure-json-parse": "^3.0.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.0",
"@types/node": "^22.0.0",
"benchmark": "^2.1.4",
"climem": "^2.0.0",
"concat-stream": "^2.0.0",
"eslint": "^9.8.0",
"fastify": "^5.0.0",
"form-data": "^4.0.0",
"h2url": "^0.2.0",
"neostandard": "^0.11.1",
"noop-stream": "^0.1.0",
"pump": "^3.0.0",
"readable-stream": "^4.5.2",
"tap": "^18.6.1",
"tsd": "^0.31.0"
},
"scripts": {
"coverage": "npm run test:unit -- --coverage-report=html",
"climem": "climem 8999 localhost",
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "CLIMEM=8999 node -r climem ./examples/example",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap -t 120"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-multipart.git"
},
"bugs": {
"url": "https://github.com/fastify/fastify-multipart/issues"
},
"homepage": "https://github.com/fastify/fastify-multipart#readme",
"keywords": [
"fastify",
"multipart",
"form"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"tsd": {
"directory": "test"
},
"publishConfig": {
"access": "public"
}
}