Aktueller Stand
This commit is contained in:
86
backend/node_modules/@fastify/static/package.json
generated
vendored
86
backend/node_modules/@fastify/static/package.json
generated
vendored
@@ -1,19 +1,17 @@
|
||||
{
|
||||
"name": "@fastify/static",
|
||||
"version": "7.0.4",
|
||||
"version": "9.0.0",
|
||||
"description": "Plugin for serving static files as fast as possible.",
|
||||
"main": "index.js",
|
||||
"type": "commonjs",
|
||||
"types": "types/index.d.ts",
|
||||
"scripts": {
|
||||
"coverage": "npm run test:unit -- --coverage-report=html",
|
||||
"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",
|
||||
"coverage": "c8 --reporter html borp --coverage --check-coverage --lines 100",
|
||||
"lint": "eslint",
|
||||
"lint:fix": "eslint --fix",
|
||||
"test": "npm run test:unit && npm run test:typescript",
|
||||
"test:typescript": "tsd",
|
||||
"test:unit": "tap",
|
||||
"test:unit": "borp -C --check-coverage --lines 100",
|
||||
"example": "node example/server.js"
|
||||
},
|
||||
"repository": {
|
||||
@@ -25,48 +23,64 @@
|
||||
"static"
|
||||
],
|
||||
"author": "Tommaso Allevi - @allevo",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Matteo Collina",
|
||||
"email": "hello@matteocollina.com"
|
||||
},
|
||||
{
|
||||
"name": "Manuel Spigolon",
|
||||
"email": "behemoth89@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Aras Abbasi",
|
||||
"email": "aras.abbasi@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Frazer Smith",
|
||||
"email": "frazer.dev@icloud.com",
|
||||
"url": "https://github.com/fdawgs"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/fastify/fastify-static/issues"
|
||||
},
|
||||
"homepage": "https://github.com/fastify/fastify-static",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/fastify"
|
||||
},
|
||||
{
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/fastify"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"@fastify/accept-negotiator": "^1.0.0",
|
||||
"@fastify/send": "^2.0.0",
|
||||
"content-disposition": "^0.5.3",
|
||||
"fastify-plugin": "^4.0.0",
|
||||
"fastq": "^1.17.0",
|
||||
"glob": "^10.3.4"
|
||||
"@fastify/accept-negotiator": "^2.0.0",
|
||||
"@fastify/send": "^4.0.0",
|
||||
"content-disposition": "^1.0.1",
|
||||
"fastify-plugin": "^5.0.0",
|
||||
"fastq": "^1.17.1",
|
||||
"glob": "^13.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fastify/compress": "^7.0.0",
|
||||
"@fastify/pre-commit": "^2.0.2",
|
||||
"@types/node": "^20.1.0",
|
||||
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
||||
"@typescript-eslint/parser": "^7.1.0",
|
||||
"@fastify/compress": "^8.0.0",
|
||||
"@types/node": "^24.0.13",
|
||||
"borp": "^0.20.0",
|
||||
"c8": "^10.1.3",
|
||||
"concat-stream": "^2.0.0",
|
||||
"coveralls": "^3.0.4",
|
||||
"eslint-plugin-typescript": "^0.14.0",
|
||||
"fastify": "^4.0.0-rc.2",
|
||||
"handlebars": "^4.7.6",
|
||||
"pino": "^8.4.2",
|
||||
"proxyquire": "^2.1.0",
|
||||
"simple-get": "^4.0.0",
|
||||
"snazzy": "^9.0.0",
|
||||
"standard": "^17.0.0",
|
||||
"tap": "^16.0.0",
|
||||
"tsd": "^0.31.0",
|
||||
"typescript": "^5.1.6"
|
||||
"eslint": "^9.17.0",
|
||||
"fastify": "^5.1.0",
|
||||
"neostandard": "^0.12.0",
|
||||
"pino": "^9.1.0",
|
||||
"proxyquire": "^2.1.3",
|
||||
"tsd": "^0.33.0"
|
||||
},
|
||||
"tsd": {
|
||||
"directory": "test/types"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"rules": {
|
||||
"no-unused-vars": "off",
|
||||
"@typescript-eslint/no-unused-vars": "error"
|
||||
}
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user