{
  "name": "fastify-static",
  "version": "3.2.0",
  "description": "Plugin for serving static files as fast as possible.",
  "main": "index.js",
  "types": "index.d.ts",
  "scripts": {
    "lint": "standard | snazzy",
    "unit": "tap 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 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": {
    "fastify-plugin": "^2.0.0",
    "glob": "^7.1.4",
    "readable-stream": "^3.4.0",
    "send": "^0.17.1"
  },
  "devDependencies": {
    "@types/node": "^14.0.1",
    "@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.0.0",
    "fastify-compress": "^3.0.0",
    "handlebars": "^4.7.6",
    "pre-commit": "^1.2.2",
    "proxyquire": "^2.1.0",
    "simple-get": "^4.0.0",
    "snazzy": "^8.0.0",
    "standard": "^14.0.0",
    "tap": "^14.10.7",
    "tsd": "^0.13.1",
    "typescript": "^3.5.2"
  },
  "tsd": {
    "directory": "test/types"
  },
  "eslintConfig": {
    "rules": {
      "no-unused-vars": "off",
      "@typescript-eslint/no-unused-vars": "error"
    }
  }
}
