{
  "name": "express-security-txt",
  "version": "4.1.2",
  "description": "Express middleware that implements a security.txt path and policy",
  "main": "index.js",
  "scripts": {
    "lint": "standard && eslint *.js",
    "lint:fix": "standard --fix",
    "test": "jest",
    "test:watch": "jest --watch",
    "coverage:view": "opn coverage/lcov-report/index.html",
    "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"
  },
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "license": "MIT",
  "author": {
    "name": "Liran Tal",
    "email": "liran.tal@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lirantal/express-security-txt.git"
  },
  "devDependencies": {
    "commitizen": "^3.0.0",
    "cz-conventional-changelog": "^2.1.0",
    "docco": "^0.8.0",
    "doxdox": "^3.0.0",
    "eslint": "^6.0.0",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-node": "^6.0.0",
    "eslint-plugin-security": "^1.3.0",
    "jest": "^22.0.0",
    "opn-cli": "^3.1.0",
    "semantic-release": "^25.0.3",
    "snyk": "^1.90.0",
    "standard": "^12.0.0"
  },
  "jest": {
    "verbose": true,
    "notify": true,
    "collectCoverage": true,
    "coverageThreshold": {
      "global": {
        "branches": 90,
        "functions": 90,
        "lines": 90,
        "statements": 90
      }
    }
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "standard": {
    "env": [
      "node",
      "jest"
    ]
  },
  "eslintConfig": {
    "env": {
      "node": true,
      "es6": true,
      "jest": true
    },
    "plugins": [
      "node",
      "security"
    ],
    "extends": [
      "plugin:node/recommended"
    ],
    "rules": {
      "node/no-unsupported-features": "off",
      "node/no-unpublished-require": "off",
      "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"
    },
    "parserOptions": {
      "ecmaFeatures": {
        "impliedStrict": true
      }
    }
  },
  "dependencies": {
    "joi": "^14.3.1"
  },
  "release": {
    "branches": [
      "master"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "angular",
          "releaseRules": [
            {
              "type": "docs",
              "release": "patch"
            },
            {
              "type": "refactor",
              "release": "patch"
            },
            {
              "type": "style",
              "release": "patch"
            }
          ]
        }
      ],
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  },
  "snyk": true,
  "engines": {
    "node": ">=24.0.0",
    "npm": ">=11.10.0"
  }
}
