{
  "name": "express-route-parser",
  "version": "2.0.0",
  "description": "An Express plugin that can list the path and route endpoints of an Express app.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "clean": "rm -rf lib coverage",
    "prebuild": "rm -rf lib",
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "lint": "eslint src",
    "lint-fix": "eslint src --fix",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push --follow-tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nklisch/express-route-parser.git"
  },
  "funding": {
    "type": "buyMeACoffee",
    "url": "https://www.buymeacoffee.com/nklisch"
  },
  "keywords": [
    "express",
    "documentation",
    "generator",
    "plugin",
    "parser",
    "metadata",
    "reflection",
    "list",
    "path",
    "routes",
    "log"
  ],
  "author": "Nathan Klisch",
  "license": "ISC",
  "files": [
    "lib/**/*"
  ],
  "bugs": {
    "url": "https://github.com/nklisch/express-route-parser/issues"
  },
  "homepage": "https://github.com/nklisch/express-route-parser#readme",
  "devDependencies": {
    "@types/express": "^4.17.13",
    "@types/express-v5": "npm:@types/express@^5.0.0",
    "@types/node": "^22.0.0",
    "@vitest/coverage-v8": "^4.1.5",
    "eslint": "^10.3.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jsdoc": "^62.9.0",
    "eslint-plugin-prefer-arrow-functions": "^3.9.1",
    "express": "^4.18.1",
    "express-v5": "npm:express@^5.2.0",
    "path-to-regexp": "^8.0.0",
    "prettier": "^3.8.3",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.1",
    "vitest": "^4.1.5"
  },
  "peerDependencies": {
    "@types/express": "^4.x || ^5.x",
    "express": "^4.x || ^5.x"
  },
  "engines": {
    "node": ">=20"
  }
}
