{ "name": "fastify-static", "version": "4.6.1", "description": "Plugin for serving static files as fast as possible.", "main": "index.js", "types": "index.d.ts", "scripts": { "lint": "standard | snazzy", "lint:fix": "standard --fix", "unit": "tap --no-check-coverage test/*.test.js", "typescript": "tsd", "test": "npm run lint && npm run unit && npm run typescript", "example": "node example/server.js", "coverage": "tap --cov --coverage-report=html --no-check-coverage test", "coveralls": "tap test/*test.js test/*/*.test.js --cov" }, "repository": { "type": "git", "url": "https://github.com/fastify/fastify-static.git" }, "keywords": [ "fastify", "static" ], "author": "Tommaso Allevi - @allevo", "license": "MIT", "bugs": { "url": "https://github.com/fastify/fastify-static/issues" }, "homepage": "https://github.com/fastify/fastify-static", "dependencies": { "content-disposition": "^0.5.3", "encoding-negotiator": "^2.0.1", "fastify-plugin": "^3.0.0", "glob": "^7.1.4", "p-limit": "^3.1.0", "readable-stream": "^3.4.0", "send": "^0.17.1" }, "devDependencies": { "@types/node": "^17.0.0", "@typescript-eslint/eslint-plugin": "^2.29.0", "@typescript-eslint/parser": "^2.29.0", "concat-stream": "^2.0.0", "coveralls": "^3.0.4", "eslint-plugin-typescript": "^0.14.0", "fastify": "^3.7.0", "fastify-compress": "^4.0.0", "handlebars": "^4.7.6", "pre-commit": "^1.2.2", "proxyquire": "^2.1.0", "simple-get": "^4.0.0", "snazzy": "^9.0.0", "standard": "^16.0.2", "tap": "^16.0.0", "tsd": "^0.19.0", "typescript": "^4.0.2" }, "tsd": { "directory": "test/types" }, "eslintConfig": { "rules": { "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": "error" } } }