{
  "name": "reqresnext",
  "version": "1.7.0",
  "description": "Tiny helper for express middleware testing",
  "main": "target/es5/index.js",
  "types": "typings/index.d.ts",
  "typescript": {
    "definition": "typings/index.d.ts"
  },
  "scripts": {
    "fetch:types": "flow-typed install express@4.x.x lodash@4.x.x setprototypeof@1.x.x",
    "flow": "flow",
    "flow:coverage": "flow-coverage-report -i 'src/main/js/**/*.js' -t html -t json -t text --threshold 75",
    "build": "BABEL_ENV=production babel src/main/js --out-dir target/es5 && npm run docs",
    "lint": "eslint 'src/**/*.js'",
    "lint:fix": "npm run lint -- --fix",
    "jest": "jest -w 2",
    "test": "npm run flow && npm run flow:coverage && npm run lint && npm run jest && npm audit --prod",
    "test:report": "npm run coveralls:push",
    "coveralls:push": "cat ./coverage/lcov.info | coveralls",
    "docs": "documentation build src/main/js -f html --github -o docs",
    "release": "npm test && npm run build && npm run semantic-release",
    "semantic-release": "semantic-release",
    "postupdate": "npm i && npm shrinkwrap && npm run build && npm run test"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:antongolub/reqresnext.git"
  },
  "keywords": [
    "mock",
    "express mock",
    "http mock",
    "mock testing",
    "req res next"
  ],
  "author": "Anton Golub <a.golub@qiwi.com> (https://antongolub.com)",
  "license": "MIT",
  "dependencies": {
    "express": "^4.17.2",
    "lodash": "^4.17.21",
    "setprototypeof": "^1.2.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.16.8",
    "@babel/core": "^7.16.12",
    "@babel/eslint-parser": "^7.16.5",
    "@babel/plugin-proposal-class-properties": "^7.16.7",
    "@babel/plugin-transform-flow-strip-types": "^7.16.7",
    "@babel/plugin-transform-runtime": "^7.16.10",
    "@babel/polyfill": "^7.8.3",
    "@babel/preset-env": "^7.16.11",
    "@babel/preset-flow": "^7.16.7",
    "babel-preset-minify": "^0.5.1",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "coveralls": "^3.1.1",
    "documentation": "^13.2.5",
    "eslint": "^8.7.0",
    "eslint-plugin-flowtype": "^8.0.3",
    "eslint-config-standard": "^17.0.0-0",
    "flow-bin": "^0.170.0",
    "flow-coverage-report": "^0.8.0",
    "flow-remove-types": "^2.170.0",
    "flow-typed": "^3.6.1",
    "jest": "^27.4.7"
  },
  "files": [
    "README.md",
    "CHANGELOG.md",
    "target",
    "flow-typed",
    "typings"
  ],
  "release": {
    "branch": "master",
    "plugins": [
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/git",
      "@semantic-release/github",
      "@semantic-release/npm",
      [
        "@qiwi/semantic-release-gh-pages-plugin",
        {
          "msg": "docs updated",
          "branch": "gh-pages"
        }
      ]
    ]
  },
  "jest": {
    "collectCoverage": true,
    "coveragePathIgnorePatterns": [
      "<rootDir>/src/main/js/interface.js"
    ],
    "collectCoverageFrom": [
      "<rootDir>/src/main/**/*.js"
    ],
    "testMatch": [
      "<rootDir>/src/test/**/*.js"
    ]
  }
}
