{
  "name": "server-mockr",
  "version": "1.1.1",
  "description": "Package to mock HTTP APIs for fast and reliable testing.",
  "main": "dist/index.js",
  "files": [
    "dist",
    "!__tests__",
    "!*.tsbuildinfo"
  ],
  "scripts": {
    "build": "tsc -p ./tsconfig.mockr.json && webpack --mode production",
    "build:dev": "tsc -p ./tsconfig.mockr.json && webpack --mode development",
    "clean": "rimraf ./dist",
    "release": "npm test && npm run clean && npm run build",
    "start": "node ./dist/test.js",
    "test": "npm run build && npm run test:lint && npm run test:unit && npm run test:prettier",
    "test:lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
    "test:unit": "jest --runInBand",
    "test:prettier": "prettier --check \"./src/**/*.{ts,tsx}\"",
    "test:prettier:fix": "prettier --write \"./src/**/*.{ts,tsx}\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/boschni/server-mockr.git"
  },
  "keywords": [
    "mock",
    "HTTP",
    "server",
    "test",
    "json",
    "API",
    "e2e",
    "verify",
    "stub",
    "fake",
    "dummy"
  ],
  "author": "Niek Bosch <info@niek-bosch.nl>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/boschni/server-mockr/issues"
  },
  "homepage": "https://github.com/boschni/server-mockr#readme",
  "dependencies": {
    "body-parser": "^1.20.0",
    "cookie": "^0.4.2",
    "expect": "^27.5.1",
    "express": "^4.17.3",
    "json-pointer": "^0.6.2",
    "markdown-it": "^12.3.2",
    "multer": "^1.4.4",
    "node-fetch": "^2.6.7",
    "path-to-regexp": "^6.2.0",
    "strip-ansi": "^6.0.1"
  },
  "devDependencies": {
    "@types/body-parser": "^1.19.2",
    "@types/cookie": "^0.4.1",
    "@types/express": "4.17.8",
    "@types/jest": "^27.4.1",
    "@types/json-pointer": "^1.0.31",
    "@types/markdown-it": "^12.2.3",
    "@types/multer": "^1.4.7",
    "@types/node": "^16.11.26",
    "@types/node-fetch": "^2.6.1",
    "@types/react": "^18.0.1",
    "@types/react-dom": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^5.18.0",
    "@typescript-eslint/parser": "^5.18.0",
    "css-loader": "^6.7.1",
    "eslint": "^8.13.0",
    "form-data": "^4.0.0",
    "jest": "^27.5.1",
    "prettier": "^2.6.2",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "rimraf": "^3.0.2",
    "style-loader": "^3.3.1",
    "ts-jest": "^27.1.4",
    "ts-loader": "^9.2.8",
    "typescript": "^4.6.3",
    "webpack": "^5.72.0",
    "webpack-cli": "^4.9.2"
  }
}
