{
  "name": "@e22m4u/js-http-static-router",
  "version": "0.2.5",
  "description": "HTTP static file router for Node.js",
  "author": "Mikhail Evstropov <e22m4u@yandex.ru>",
  "license": "MIT",
  "keywords": [
    "file-server",
    "static-server",
    "file-router",
    "serving",
    "router"
  ],
  "homepage": "https://github.com/e22m4u/js-http-static-router",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/e22m4u/js-http-static-router.git"
  },
  "type": "module",
  "files": [
    "dist/",
    "src/",
    "LICENSE",
    "README.md",
    "!src/**/*.spec.js"
  ],
  "types": "./src/index.d.ts",
  "module": "./src/index.js",
  "main": "./dist/cjs/index.cjs",
  "exports": {
    "types": "./src/index.d.ts",
    "import": "./src/index.js",
    "require": "./dist/cjs/index.cjs"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "lint": "tsc && eslint ./src",
    "lint:fix": "tsc && eslint ./src --fix",
    "format": "prettier --write \"./src/**/*.js\"",
    "test": "npm run lint && c8 --reporter=text-summary mocha --bail",
    "test:coverage": "npm run lint && c8 --reporter=text mocha --bail",
    "build:cjs": "rimraf ./dist/cjs && node build-cjs.js",
    "example": "node ./example/server.js",
    "prepare": "husky"
  },
  "dependencies": {
    "@e22m4u/js-format": "~0.4.1",
    "@e22m4u/js-service": "~0.6.3",
    "http-errors": "~2.0.1",
    "mime-types": "~3.0.2"
  },
  "devDependencies": {
    "@commitlint/cli": "~21.2.1",
    "@commitlint/config-conventional": "~21.2.0",
    "@eslint/js": "~10.0.1",
    "@types/chai": "~5.2.3",
    "@types/mocha": "~10.0.10",
    "@types/node": "~26.1.2",
    "c8": "~12.0.0",
    "chai": "~6.2.2",
    "chai-as-promised": "~8.0.2",
    "esbuild": "~0.28.1",
    "eslint": "~10.8.0",
    "eslint-config-prettier": "~10.1.8",
    "eslint-plugin-chai-expect": "~4.1.0",
    "eslint-plugin-jsdoc": "~63.3.2",
    "eslint-plugin-mocha": "~12.0.1",
    "globals": "~17.8.0",
    "husky": "~9.1.7",
    "mocha": "~11.7.6",
    "prettier": "~3.9.6",
    "rimraf": "~6.1.3",
    "typescript": "~7.0.2"
  }
}
