You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
{
|
|
"name": "@fastify/multipart",
|
|
"version": "7.3.0",
|
|
"description": "Multipart plugin for Fastify",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"dependencies": {
|
|
"@fastify/busboy": "^1.0.0",
|
|
"@fastify/deepmerge": "^1.0.0",
|
|
"@fastify/error": "^3.0.0",
|
|
"end-of-stream": "^1.4.4",
|
|
"fastify-plugin": "^4.0.0",
|
|
"hexoid": "^1.0.0",
|
|
"secure-json-parse": "^2.4.0",
|
|
"stream-wormhole": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@fastify/pre-commit": "^2.0.2",
|
|
"@types/node": "^18.0.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
|
"@typescript-eslint/parser": "^5.30.7",
|
|
"climem": "^1.0.3",
|
|
"concat-stream": "^2.0.0",
|
|
"eslint": "^8.20.0",
|
|
"eslint-config-standard-with-typescript": "^23.0.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-n": "^15.2.4",
|
|
"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": "^3.6.0",
|
|
"snazzy": "^9.0.0",
|
|
"standard": "^17.0.0",
|
|
"tap": "^16.0.0",
|
|
"tsd": "^0.24.1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/fastify/fastify-multipart.git"
|
|
},
|
|
"keywords": [
|
|
"fastify",
|
|
"multipart",
|
|
"form"
|
|
],
|
|
"author": "Matteo Collina <hello@matteocollina.com>",
|
|
"license": "MIT",
|
|
"tsd": {
|
|
"directory": "test"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"coverage": "tap \"test/**/*.test.js\" --coverage-report=html",
|
|
"climem": "climem 8999 localhost",
|
|
"lint": "standard | snazzy",
|
|
"lint:fix": "standard --fix",
|
|
"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"
|
|
}
|
|
} |