{
  "name": "graphql-mock",
  "version": "2.0.0",
  "description": "GraphQL endpoint mockery library for testing",
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "rm -rf dist && tsc",
    "lint": "eslint '{src,test}/**/*.{ts,tsx}'",
    "prepare": "npm run build",
    "test": "mocha"
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "eslint --fix",
      "git add"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/MadRabbit/graphql-mock.git"
  },
  "author": "Nikolay Nemshilov",
  "license": "MIT",
  "dependencies": {
    "apollo-link-schema": "^1.2.3",
    "fast-deep-equal": "^2.0.1",
    "graphql-tools": "^4.0.5"
  },
  "devDependencies": {
    "@apollo/react-common": "^3.1.4",
    "@apollo/react-hooks": "^3.1.2",
    "@types/chai": "^4.1.7",
    "@types/graphql": "^14.2.3",
    "@types/jsdom": "^12.2.4",
    "@types/mocha": "^5.2.7",
    "@types/nock": "^10.0.3",
    "@types/node": "^12.6.9",
    "@types/react": "^16.8.23",
    "apollo-cache-inmemory": "^1.6.2",
    "apollo-client": "^2.6.3",
    "babel-plugin-module-resolver": "^3.2.0",
    "chai": "^4.2.0",
    "enzyme": "^3.10.0",
    "enzyme-adapter-react-16": "^1.14.0",
    "eslint-config-compono-ui-ts": "^1.0.3",
    "graphql": "^14.4.2",
    "graphql-tag": "^2.10.1",
    "husky": "^3.0.1",
    "jsdom": "^15.1.1",
    "lint-staged": "^9.2.0",
    "mocha": "^6.2.0",
    "react": "^16.8.6",
    "react-apollo": "^2.5.8",
    "react-apollo-hooks": "^0.5.0",
    "react-dom": "^16.8.6",
    "sinon": "^10.0.0",
    "ts-node": "^8.3.0",
    "typescript": "^3.5.3"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "pre-push": "npm test"
    }
  }
}
