{
  "name": "tiny-etag",
  "version": "4.0.5",
  "description": "ETag middleware for express.js API compatible routers",
  "type": "module",
  "types": "types/etag.d.ts",
  "source": "src/etag.js",
  "main": "dist/tiny-etag.cjs",
  "exports": {
    "types": "./types/etag.d.ts",
    "import": "./dist/tiny-etag.js",
    "require": "./dist/tiny-etag.cjs"
  },
  "files": [
    "dist",
    "types"
  ],
  "scripts": {
    "build": "npm run lint && rm -rf dist && npm run rollup && npm run mocha",
    "changelog": "auto-changelog -p",
    "rollup": "rollup --config",
    "fix": "eslint --fix *.js src/*.js test/*.js",
    "lint": "eslint *.js src/*.js test/*.js",
    "mocha": "nyc mocha test/*.js",
    "types": "npx -p typescript tsc src/etag.js --declaration --allowJs --emitDeclarationOnly --outDir types",
    "test": "npm run lint && npm run mocha",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/avoidwork/tiny-etag.git"
  },
  "keywords": [
    "etag",
    "middleware",
    "http",
    "rest",
    "api"
  ],
  "author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/avoidwork/tiny-etag/issues"
  },
  "engineStrict": true,
  "engines": {
    "node": ">=17.0.0"
  },
  "homepage": "http://avoidwork.github.io/tiny-etag/",
  "dependencies": {
    "tiny-lru": "^11.2.2"
  },
  "devDependencies": {
    "auto-changelog": "^2.4.0",
    "eslint": "^8.49.0",
    "husky": "^8.0.3",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "rollup": "^4.0.0",
    "tiny-httptest": "^4.0.6",
    "typescript": "^5.2.2",
    "woodland": "^18.1.0"
  }
}
