{
  "name": "openapi-to-graphql",
  "version": "3.0.7",
  "description": "Generates a GraphQL schema for a given OpenAPI Specification (OAS)",
  "copyright.owner": "IBM Corp.",
  "contributors": [
    "Alan Cha",
    "Erik Wittern"
  ],
  "engines": {
    "node": ">=14"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ibm/openapi-to-graphql"
  },
  "homepage": "https://github.com/ibm/openapi-to-graphql",
  "keywords": [
    "ibm",
    "strongloop",
    "loopback",
    "oas",
    "openapi specification",
    "graphql",
    "translation",
    "wrap",
    "create",
    "rest",
    "restful",
    "api",
    "apiharmony"
  ],
  "license": "MIT",
  "standard": {
    "ignore": [
      "*.js"
    ]
  },
  "sideEffects": false,
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "typings": "dist/index.d.ts",
  "typescript": {
    "definition": "dist/index.d.ts"
  },
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    },
    "./*": {
      "require": "./dist/*.js",
      "import": "./dist/*.mjs"
    }
  },
  "scripts": {
    "api": "nodemon test/example_api_server.js",
    "api_sub": "nodemon test/example_api5_server.js",
    "dev": "tsc -w",
    "start_dev": "DEBUG=preprocessing,translation,http nodemon test/example_gql_server.js",
    "start_dev_ws": "DEBUG=preprocessing,translation,http,pubsub nodemon test/example_gql_server_ws.js",
    "build": "tsc --project ../../tsconfig.build.json",
    "guru-load": "node test/evaluation/load_apis_guru.js",
    "guru-test": "DEBUG=preprocessing,translation node test/evaluation/eval_apis_guru.js",
    "test": "jest --runInBand --detectOpenHandles"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      "\\.(ts|tsx)$": "ts-jest"
    },
    "testRegex": "/test/.*\\.test\\.(ts|tsx|js)$"
  },
  "dependencies": {
    "cross-fetch": "^3.1.4",
    "debug": "^4.2.0",
    "deep-equal": "^2.0.5",
    "form-data": "^4.0.0",
    "form-urlencoded": "^6.0.4",
    "graphql-scalars": "^1.10.0",
    "graphql-subscriptions": "^2.0.0",
    "graphql-upload": "^15.0.2",
    "json-ptr": "^2.2.0",
    "jsonpath-plus": "^6.0.1",
    "jsonpointer": "^5.0.0",
    "oas-validator": "^5.0.2",
    "pluralize": "^8.0.0",
    "swagger2openapi": "^7.0.2",
    "tslib": "^2.3.0",
    "url-join": "4.0.1",
    "ws": "^7.5.3"
  },
  "peerDependencies": {
    "graphql": "^16.0.0"
  },
  "devDependencies": {
    "@types/deep-equal": "^1.0.1",
    "@types/graphql-upload": "^15.0.2",
    "@types/jest": "^27.1.5",
    "@types/node": "^16.3.3",
    "@types/url-join": "^4.0.1",
    "aedes": "^0.46.1",
    "aedes-persistence": "^8.1.1",
    "body-parser": "^1.18.3",
    "cookie-parser": "^1.4.5",
    "express": "^4.16.4",
    "express-graphql": "^0.12.0",
    "glob": "^7.1.3",
    "graphql": "^16.5.0",
    "graphql-mqtt-subscriptions": "^1.2.0",
    "graphql-multiplex-subscriptions": "^2.0.0",
    "husky": "^7.0.1",
    "isomorphic-git": "^1.9.2",
    "jest": "^27.0.6",
    "js-yaml": "^4.1.0",
    "memfs": "^3.4.0",
    "mqemitter": "^4.4.0",
    "mqtt": "^4.2.1",
    "nodemon": "^2.0.12",
    "prettier": "^2.1.2",
    "pretty-quick": "^3.0.2",
    "rimraf": "^3.0.1",
    "simple-statistics": "^7.3.0",
    "standard": "^16.0.3",
    "subscriptions-transport-ws": "^0.9.16",
    "ts-jest": "^27.0.3",
    "tslint": "^6.0.0",
    "tslint-config-standard": "^9.0.0",
    "typescript": "^4.3.4"
  }
}
