{
  "name": "express-version-route",
  "version": "1.2.15",
  "description": "provides middleware to load controllers based on api versions",
  "main": "index.js",
  "scripts": {
    "lint": "standard && eslint *.js",
    "lint:fix": "standard --fix",
    "test": "yarn run lint && ava",
    "test:watch": "yarn run lint && ava --watch",
    "test:coverage": "yarn run lint && nyc --reporter=lcov ava --tap",
    "coverage:view": "opn coverage/lcov-report/index.html",
    "report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
    "commit": "git-cz",
    "docs": "yarn run docs:code && yarn run docs:api",
    "docs:api": "doxdox *.js --layout bootstrap --output docs/index.html",
    "docs:code": "docco *.js --output docs/code",
    "semantic-release": "semantic-release"
  },
  "author": "Liran Tal",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lirantal/express-version-route.git"
  },
  "homepage": "https://github.com/lirantal/express-version-route#readme",
  "devDependencies": {
    "@commitlint/cli": "^7.0.0",
    "@commitlint/config-angular": "^7.0.1",
    "ava": "^2.0.0",
    "commitizen": "^3.0.0",
    "cz-conventional-changelog": "^2.1.0",
    "docco": "^0.7.0",
    "doxdox": "^2.0.1",
    "eslint": "^8.57.1",
    "eslint-plugin-ava": "^15.0.1",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-n": "^17.15.0",
    "eslint-plugin-security": "^3.0.1",
    "husky": "^3.0.0",
    "nyc": "^17.1.0",
    "opn-cli": "^4.0.0",
    "semantic-release": "^25.0.3",
    "standard": "^17.1.2"
  },
  "nyc": {
    "statements": 85,
    "branches": 85,
    "functions": 85,
    "lines": 85,
    "reporter": [
      "lcov",
      "text-summary"
    ],
    "cache": true,
    "check-coverage": true
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint --env HUSKY_GIT_PARAMS",
      "pre-commit": "yarn run lint",
      "pre-push": "yarn run lint && yarn run test",
      "post-merge": "yarn install",
      "post-checkout": "git status",
      "post-commit": "git status"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-angular"
    ]
  },
  "eslintConfig": {
    "env": {
      "node": true,
      "es6": true
    },
    "plugins": [
      "n",
      "security",
      "ava"
    ],
    "extends": [
      "plugin:ava/recommended",
      "plugin:n/recommended"
    ],
    "rules": {
      "security/detect-non-literal-fs-filename": "error",
      "security/detect-unsafe-regex": "error",
      "security/detect-buffer-noassert": "error",
      "security/detect-child-process": "error",
      "security/detect-disable-mustache-escape": "error",
      "security/detect-eval-with-expression": "error",
      "security/detect-no-csrf-before-method-override": "error",
      "security/detect-non-literal-regexp": "error",
      "security/detect-non-literal-require": "error",
      "security/detect-object-injection": "error",
      "security/detect-possible-timing-attacks": "error",
      "security/detect-pseudoRandomBytes": "error",
      "n/no-unpublished-require": "off"
    },
    "parserOptions": {
      "ecmaFeatures": {
        "impliedStrict": true
      }
    }
  },
  "release": {
    "branch": "master",
    "analyzeCommits": {
      "preset": "angular",
      "releaseRules": [
        {
          "type": "docs",
          "release": "patch"
        },
        {
          "type": "refactor",
          "release": "patch"
        },
        {
          "type": "style",
          "release": "patch"
        }
      ]
    }
  },
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "dependencies": {
    "semver": "^6.3.0"
  },
  "engines": {
    "node": ">=24.0.0",
    "npm": ">=11.10.0"
  }
}
