{
  "name": "openapi-doc-parser",
  "version": "0.16.6",
  "description": "Transform an API documentation (Hydra, OpenAPI, GraphQL) in an intermediate representation that can be used for various tasks such as creating smart API clients, scaffolding code or building administration interfaces.",
  "files": [
    "*.md",
    "lib",
    "src"
  ],
  "type": "module",
  "exports": "./lib/index.js",
  "main": "./lib/index.js",
  "repository": "primal100/api-doc-parser-openapi",
  "homepage": "https://github.com/primal100/api-doc-parser-openapi",
  "bugs": "https://github.com/primal100/api-doc-parser-openapi/issues",
  "author": "Paul Martin (forked from library by Kévin Dunglas)",
  "license": "MIT",
  "devDependencies": {
    "@types/inflection": "^1.13.0",
    "@types/jest": "^29.0.0",
    "@types/jsonld": "^1.5.0",
    "@types/lodash.get": "^4.4.0",
    "@types/node": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^5.0.0",
    "@typescript-eslint/parser": "^5.0.0",
    "cross-env": "^7.0.3",
    "eslint": "^8.0.0",
    "eslint-config-prettier": "^8.0.0",
    "eslint-import-resolver-typescript": "^3.5.1",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-watch": "^8.0.0",
    "jest": "^29.0.0",
    "jest-fetch-mock": "^3.0.0",
    "openapi-types": "^12.0.0",
    "prettier": "^2.2.0",
    "rimraf": "^5.0.1",
    "ts-jest": "^29.0.0",
    "ts-node": "^10.9.0",
    "typescript": "^4.1.0"
  },
  "dependencies": {
    "graphql": "^16.0.0",
    "inflection": "^1.13.0",
    "jsonld": "^8.1.0",
    "jsonref": "^8.0.0",
    "lodash.get": "^4.4.0",
    "ts-deepmerge": "^6.2.0",
    "tslib": "^2.0.0"
  },
  "scripts": {
    "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
    "lint": "esw --color src --ext .ts",
    "fix": "yarn lint --fix",
    "eslint-check": "eslint-config-prettier src/index.ts",
    "build": "rimraf lib && tsc",
    "watch": "tsc --watch"
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  }
}
