forked from fastify/fastify-multipart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "fastify-multipart",
"version": "5.1.0",
"description": "Multipart plugin for Fastify",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"busboy": "^0.3.1",
"deepmerge": "^4.2.2",
"end-of-stream": "^1.4.4",
"fastify-error": "^0.3.0",
"fastify-plugin": "^3.0.0",
"hexoid": "^1.0.0",
"secure-json-parse": "^2.4.0",
"stream-wormhole": "^1.1.0"
},
"devDependencies": {
"@types/busboy": "^0.2.3",
"@types/node": "^16.0.0",
"@typescript-eslint/parser": "^4.0.0",
"climem": "^1.0.3",
"eslint": "^7.7.0",
"eslint-config-standard": "^16.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-typescript": "^0.14.0",
"fastify": "^3.2.1",
"form-data": "^4.0.0",
"h2url": "^0.2.0",
"pre-commit": "^1.2.2",
"pump": "^3.0.0",
"readable-stream": "^3.6.0",
"snazzy": "^9.0.0",
"standard": "^16.0.1",
"tap": "^15.0.1",
"tsd": "^0.19.0",
"typescript": "^4.0.2"
},
"scripts": {
"coverage": "tap \"test/**/*.test.js\" --coverage-report=html",
"climem": "climem 8999 localhost",
"lint": "standard | snazzy",
"start": "CLIMEM=8999 node -r climem ./examples/example",
"test": "npm run lint && npm run unit && npm run typescript",
"typescript": "tsd",
"unit": "tap \"test/**/*.test.js\" -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"
}
}