-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "@fastify/multipart",
"version": "8.2.0",
"description": "Multipart plugin for Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"dependencies": {
"@fastify/busboy": "^2.1.0",
"@fastify/deepmerge": "^1.0.0",
"@fastify/error": "^3.0.0",
"fastify-plugin": "^4.0.0",
"secure-json-parse": "^2.4.0",
"stream-wormhole": "^1.1.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@fastify/swagger": "^8.10.1",
"@fastify/swagger-ui": "^3.0.0",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"benchmark": "^2.1.4",
"climem": "^2.0.0",
"concat-stream": "^2.0.0",
"eslint": "^8.20.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-promise": "^6.0.0",
"fastify": "^4.0.0",
"form-data": "^4.0.0",
"h2url": "^0.2.0",
"noop-stream": "^0.1.0",
"pump": "^3.0.0",
"readable-stream": "^4.5.1",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.31.0"
},
"scripts": {
"coverage": "npm run test:unit -- --coverage-report=html",
"climem": "climem 8999 localhost",
"lint": "npm run lint:javascript && npm run lint:typescript",
"lint:javascript": "standard | snazzy",
"lint:fix": "standard --fix && npm run lint:typescript -- --fix",
"lint:typescript": "eslint -c .eslintrc.json types/**/*.d.ts types/**/*.test-d.ts",
"start": "CLIMEM=8999 node -r climem ./examples/example",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap -t 90"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-multipart.git"
},
"keywords": [
"fastify",
"multipart",
"form"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"tsd": {
"directory": "test"
},
"publishConfig": {
"access": "public"
}
}