{
  "name": "exegesis-koa-cross",
  "version": "1.0.2",
  "description": "Parses OpenAPI documents",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "test": "npm run build && npm run lint && npm run test:unittest",
    "test:pre-commit": "npm run build && npm run lint && npm run test:unittest-pc",
    "build": "tsc -v && npx tsc -v && npx tsc",
    "clean": "rm -rf lib coverage",
    "test:unittest": "tsc -p test && nyc mocha 'test/**/*.@(ts|js)'",
    "test:unittest-pc": "tsc -p test && mocha --reporter progress 'test/**/*.@(ts|js)'",
    "lint": "npm run lint:source && npm run lint:markdown # && npm run lint:tests",
    "lint:source": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
    "lint:tests": "tslint -c test/tslint.json -t stylish 'test/**/*.ts'",
    "lint:markdown": "markdownlint **/*.md *.md",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build",
    "semantic-release": "semantic-release"
  },
  "lint-staged": {
    "src/**/*.ts": [
      "tslint -c tslint.json -t stylish"
    ],
    "test/**/*.ts": [
      "tslint -c test/tslint.json -t stylish"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ondrej-111/exegesis"
  },
  "keywords": [
    "OpenAPI",
    "swagger",
    "OAS3"
  ],
  "author": "Jason Walton",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ondrej-111/exegesis/issues"
  },
  "homepage": "https://github.com/ondrej-111/exegesis#readme",
  "devDependencies": {
    "@jwalton/semantic-release-config": "~1.0.0",
    "@types/body-parser": "~1.16.8",
    "@types/chai": "~4.2.0",
    "@types/chai-as-promised": "~7.1.1",
    "@types/content-type": "~1.1.3",
    "@types/deep-freeze": "~0.1.1",
    "@types/formidable": "~1.0.31",
    "@types/glob": "~7.1.1",
    "@types/json-schema": "~7.0.3",
    "@types/koa": "~2.13.4",
    "@types/lodash": "~4.14.132",
    "@types/mocha": "~5.2.6",
    "@types/node": "~12.0.1",
    "@types/pump": "~1.0.1",
    "@types/qs": "~6.9.7",
    "@types/semver": "~6.0.0",
    "chai": "~4.2.0",
    "chai-as-promised": "~7.1.1",
    "coveralls": "~3.0.2",
    "husky": "~3.0.0",
    "lint-staged": "~9.1.0",
    "markdownlint-cli": "~0.18.0",
    "mocha": "~6.1.4",
    "nyc": "~14.0.0",
    "semantic-release": "~15.14.0",
    "supertest-fetch": "~1.2.2",
    "ts-node": "~8.0.2",
    "tslint": "~5.12.1",
    "typescript": "~4.4.3"
  },
  "dependencies": {
    "ajv": "~6.9.1",
    "body-parser": "~1.18.3",
    "content-type": "~1.0.4",
    "deep-freeze": "0.0.1",
    "events-listener": "~1.1.0",
    "formidable": "~1.2.1",
    "glob": "~7.1.3",
    "json-ptr": "~1.1.1",
    "json-schema-ref-parser": "~7.0.0",
    "json-schema-traverse": "~0.4.1",
    "lodash": "~4.17.11",
    "openapi3-ts": "~1.2.0",
    "promise-breaker": "~5.0.0",
    "pump": "~3.0.0",
    "qs": "~6.6.0",
    "raw-body": "~2.3.3",
    "semver": "~6.0.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "# npm run test:pre-commit"
    }
  },
  "engines": {
    "node": ">=6.0.0",
    "npm": ">5.0.0"
  }
}
