{
  "name": "graphql-codegen-mock-results",
  "version": "1.0.8",
  "main": "dist/index.js",
  "license": "MIT",
  "author": "Ryan Walker <ryan.matthew.walker@gmail.com>",
  "description": "GraphQL Code Generator plugin for generating mock results GraphQL operations",
  "keywords": [
    "graphql",
    "codegen",
    "mock",
    "test"
  ],
  "homepage": "https://github.com/ryan-m-walker/graphql-codegen-mock-results",
  "repository": {
    "type": "git",
    "url": "https://github.com/ryan-m-walker/graphql-codegen-mock-results.git"
  },
  "scripts": {
    "test": "jest",
    "lint": "eslint --ext .ts .",
    "lint:fix": "yarn lint --fix",
    "clean": "rimraf dist",
    "build": "yarn clean && tsc"
  },
  "dependencies": {
    "@graphql-codegen/plugin-helpers": "^1.18.1",
    "@graphql-codegen/visitor-plugin-common": "^1.17.17",
    "seed-random": "^2.2.0"
  },
  "peerDependencies": {
    "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
  },
  "devDependencies": {
    "@babel/preset-env": "^7.12.1",
    "@babel/preset-typescript": "^7.12.1",
    "@graphql-codegen/typescript-operations": "^1.17.10",
    "@types/jest": "^26.0.15",
    "@types/seed-random": "^2.2.0",
    "@typescript-eslint/eslint-plugin": "^4.9.0",
    "@typescript-eslint/parser": "^4.9.0",
    "eslint": "^7.14.0",
    "eslint-config-prettier": "^6.15.0",
    "eslint-config-standard": "^16.0.2",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-prettier": "^3.2.0",
    "graphql": "15.4.0",
    "husky": "^4.3.0",
    "jest": "^26.6.3",
    "lint-staged": "^10.5.3",
    "prettier": "^2.2.1",
    "type-fest": "^0.20.2",
    "typescript": "^4.1.2"
  },
  "typings": "dist/index.d.ts",
  "typescript": {
    "definition": "dist/index.d.ts"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "**/*.ts": [
      "eslint --fix"
    ],
    "**/*.{graphql,yml,json}": [
      "prettier --write"
    ]
  }
}
