{
  "name": "@wandercom/express-zod-api",
  "version": "2.4.0",
  "description": "A Typescript library to help you get an API server up and running with I/O schema validation and custom middlewares in minutes.",
  "license": "MIT",
  "scripts": {
    "start": "ts-node example/index.ts",
    "build": "yarn build:cleanup && yarn build:compile && yarn build:swagger && yarn build:license",
    "build:cleanup": "rm -rf ./dist && rm -f example/example.swagger.yaml && rm -f ./LICENSE",
    "build:compile": "tsc --build tsconfig.build.json",
    "build:swagger": "ts-node example/generate-open-api-schema.ts > example/example.swagger.yaml",
    "build:license": "ts-node tools/generate-license.ts > ./LICENSE",
    "test": "yarn test:jest && yarn test:badge",
    "test:u": "yarn test:jest -u",
    "test:jest": "yarn jest --detectOpenHandles ./tests/unit ./tests/system",
    "test:badge": "yarn make-coverage-badge --output-path ./coverage.svg",
    "lint": "yarn eslint ./src ./example ./tests",
    "precommit": "yarn lint && yarn test && yarn build && git add example/example.swagger.yaml ./LICENSE ./coverage.svg",
    "prepublishOnly": "yarn test && yarn build",
    "postversion": "git push && git push --tags",
    "install_hooks": "husky install"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "express": "^4.17.1",
    "http-errors": "^1.8.0",
    "mime": "^2.5.2",
    "openapi3-ts": "^2.0.1",
    "winston": "^3.3.3",
    "zod": "^3.5.1"
  },
  "devDependencies": {
    "@tsconfig/node10": "^1.0.8",
    "@types/express": "^4.17.11",
    "@types/http-errors": "^1.8.0",
    "@types/jest": "^26.0.20",
    "@types/mime": "^2.0.3",
    "@types/node-fetch": "^2.5.8",
    "@types/triple-beam": "^1.3.2",
    "@typescript-eslint/eslint-plugin": "^4.15.1",
    "@typescript-eslint/parser": "^4.15.1",
    "eslint": "^7.20.0",
    "husky": "^6.0.0",
    "jest": "^26.6.3",
    "make-coverage-badge": "^1.2.0",
    "node-fetch": "^2.6.1",
    "ts-jest": "^26.5.1",
    "ts-node": "^9.1.1",
    "tsd": "^0.16.0",
    "typescript": "^4.1.5"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/RobinTail/express-zod-api.git"
  },
  "author": {
    "name": "Anna Bocharova",
    "url": "https://robintail.cz",
    "email": "me@robintail.cz"
  },
  "bugs": {
    "url": "https://github.com/RobinTail/express-zod-api/issues"
  },
  "keywords": [
    "typescript",
    "api",
    "zod",
    "express",
    "http",
    "server",
    "validation",
    "schema",
    "endpoint",
    "handler",
    "json"
  ]
}
