{
  "name": "@raydeck/graphql-schema-typescript",
  "version": "1.3.2",
  "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 && echo 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": {
    "@playlyfe/gql": "2.3.2",
    "@types/fs-extra": "4.0.4",
    "@types/jest": "21.1.5",
    "@types/node": "^14.0.27",
    "@types/yargs": "^11.0.0",
    "del-cli": "^2.0.0",
    "fs-extra": "4.0.2",
    "graphql": "^15.3.0",
    "graphql-tools": "^6.0.15",
    "jest": "22.4.3",
    "lodash": "^4.17.13",
    "ts-jest": "22.4.4",
    "tslint": "5.8.0",
    "typescript": "^3.9.7"
  },
  "dependencies": {
    "yargs": "^11.0.0"
  },
  "peerDependencies": {
    "graphql": "*",
    "typescript": "*"
  },
  "jest": {
    "testEnvironment": "node",
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "/__tests__/.*\\.test\\.ts$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ]
  }
}
