{
  "name": "mock-req-res",
  "version": "1.2.1",
  "description": "Extensible mock req / res objects for use in unit tests of Express controller and middleware functions.",
  "author": "Dave Sag <davesag@gmail.com>",
  "type": "commonjs",
  "license": "MIT",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/davesag"
  },
  "main": "src/index.js",
  "engines": {
    "node": ">= 8.10.0"
  },
  "files": [
    "CONTRIBUTING.md",
    "src"
  ],
  "directories": {
    "lib": "src",
    "test": "test"
  },
  "contributors": [
    "Greg Garrett <gcgarrett@gmail.com>",
    "John Keys <john@keyes.ie>",
    "Sandor Turanszky <sandor.turanszky@gmail.com>"
  ],
  "scripts": {
    "eslint-check": "eslint --print-config src/index.js | eslint-config-prettier-check",
    "lint": "eslint .",
    "prettier": "prettier --write '**/*.{js,json,md}'",
    "test": "npm run test:unit",
    "test:unit": "NODE_ENV=test mocha ./test/unit/ --require ./test/unitTestHelper.js --recursive",
    "test:unit:cov": "NODE_ENV=test nyc mocha ./test/unit/ --require ./test/unitTestHelper.js --recursive",
    "snyk-protect": "snyk protect"
  },
  "keywords": [
    "express",
    "mocks",
    "testing",
    "request",
    "response"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/davesag/mock-req-res.git"
  },
  "bugs": {
    "url": "https://github.com/davesag/mock-req-res/issues"
  },
  "homepage": "https://github.com/davesag/mock-req-res#readme",
  "devDependencies": {
    "ajv": "^8.11.0",
    "chai": "^4.3.6",
    "eslint": "^8.20.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-mocha": "^10.1.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-promise": "^6.0.0",
    "husky": "^8.0.1",
    "lint-staged": "^13.0.3",
    "mocha": "^10.0.0",
    "nyc": "^15.1.0",
    "prettier": "^2.7.1",
    "sinon": "^14.0.0",
    "sinon-chai": "^3.5.0",
    "snyk": "^1.981.0"
  },
  "peerDependencies": {
    "sinon": "> 10.0.0"
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "proseWrap": "never",
    "arrowParens": "avoid",
    "trailingComma": "none",
    "printWidth": 100
  },
  "lint-staged": {
    "**/*.{js,json,md}": [
      "prettier --write"
    ]
  },
  "nyc": {
    "check-coverage": true,
    "per-file": true,
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "include": [
      "src/**/*.js"
    ],
    "exclude": [
      "index.js"
    ],
    "reporter": [
      "lcov",
      "text"
    ],
    "all": true,
    "cache": true
  },
  "snyk": true
}
