{
  "name": "httpanda",
  "version": "0.5.0",
  "description": "A frugal HTTP server for simple tasks.",
  "keywords": [
    "http",
    "server",
    "express",
    "web",
    "rest",
    "router",
    "api",
    "connect"
  ],
  "main": "lib",
  "types": "lib",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "default": "./lib/index.js"
    }
  },
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/d-fischer/httpanda.git"
  },
  "author": "Daniel Fischer <daniel@d-fischer.dev>",
  "funding": "https://github.com/sponsors/d-fischer",
  "license": "MIT",
  "dependencies": {
    "@types/node": "^14.11.2",
    "tslib": "^2.0.3"
  },
  "devDependencies": {
    "@d-fischer/eslint-config": "^2.0.6",
    "eslint": "^7.10.0",
    "husky": "^4.3.0",
    "lint-staged": "^10.4.0",
    "prettier": "^2.1.2",
    "typescript": "~6.0.2"
  },
  "files": [
    "LICENSE",
    "README.md",
    "lib"
  ],
  "scripts": {
    "lint": "eslint --ext ts src",
    "prettier:check": "prettier --check 'src/**'",
    "prettier:fix": "prettier --write 'src/**'",
    "build": "tsc",
    "rebuild": "node -e \"require('fs').rmSync('./lib', { recursive: true, force: true })\" && npm run build"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,json}": "prettier --write",
    "*.{ts}": "eslint --fix"
  }
}
