{
  "name": "graphql-schema-typescript",
  "version": "1.6.1",
  "description": "Generate TypeScript from GraphQL's schema type definitions",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "bin": "./lib/cli.js",
  "scripts": {
    "pretest": "yarn build",
    "test": "jest --bail",
    "lint": "tslint -p tslint.json && tsc --noEmit",
    "build": "del-cli \"./lib/*\" && tsc",
    "prepack": "yarn lint && yarn test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dangcuuson/graphql-schema-typescript.git"
  },
  "keywords": [],
  "author": "Jack Dang <jack.dang@itutorworld.com.au>",
  "license": "MIT",
  "devDependencies": {
    "@graphql-tools/schema": "^8.3.1",
    "@types/fs-extra": "4.0.4",
    "@types/graphql": "0.11.5",
    "@types/jest": "21.1.5",
    "@types/node": "^14.14.25",
    "@types/yargs": "^15.0.0",
    "del-cli": "^5.1.0",
    "fs-extra": "4.0.2",
    "graphql": "^16.0.0",
    "jest": "29.7.0",
    "ts-jest": "29.1.1",
    "tslint": "5.8.0",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "camelcase": "^6.2.0",
    "yargs": "^16.0.0"
  },
  "peerDependencies": {
    "graphql": "^16.0.0",
    "typescript": "*"
  },
  "jest": {
    "testEnvironment": "node",
    "setupFilesAfterEnv": [
      "./src/setupTest.ts"
    ],
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testRegex": "/__tests__/.*\\.test\\.ts$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ]
  }
}
