{
  "name": "graphql-directive-auth",
  "version": "0.3.2",
  "description": "GraphQL directive auth",
  "main": "dist/index.js",
  "files": [
    "dist",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com:graphql-community/graphql-directive-auth.git"
  },
  "author": "Czysty <lukasz.czyszczonik@gmail.com>",
  "license": "MIT",
  "typings": "./dist/index.d.ts",
  "scripts": {
    "dev": "nodemon example/dev.js",
    "test": "jest",
    "build": "tsc",
    "lint": "eslint .",
    "type-check": "tsc --noEmit",
    "build:types": "tsc --emitDeclarationOnly",
    "token": "node generateToken",
    "prepublish": "yarn build"
  },
  "peerDependencies": {
    "graphql": "^0.13.2",
    "graphql-tools": "^3.0.5"
  },
  "devDependencies": {
    "@babel/cli": "^7.1.2",
    "@babel/core": "^7.1.2",
    "@babel/plugin-proposal-class-properties": "^7.1.0",
    "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
    "@babel/preset-env": "^7.1.0",
    "@babel/preset-typescript": "^7.1.0",
    "@babel/register": "^7.0.0",
    "@types/graphql": "^14.0.3",
    "@types/jsonwebtoken": "^7.2.8",
    "apollo-server-express": "^2.0.0",
    "body-parser": "^1.18.3",
    "eslint": "^5.2.0",
    "eslint-config-callstack-io": "^1.1.2",
    "express": "^4.16.4",
    "graphql": "^0.13.2",
    "graphql-tools": "^3.0.5",
    "jest": "^23.6.0",
    "mock-express-request": "^0.2.2",
    "nock": "^10.0.2",
    "nodemon": "^1.18.7",
    "ts-jest": "^23.10.4",
    "typescript": "^3.1.6"
  },
  "dependencies": {
    "@babel/polyfill": "^7.0.0",
    "jsonwebtoken": "^8.4.0"
  },
  "jest": {
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$",
    "testURL": "http://localhost",
    "moduleDirectories": [
      "node_modules"
    ],
    "transform": {
      "^.+\\.ts?$": "ts-jest"
    },
    "globals": {
      "APP_SECRET": "123",
      "ts-jest": {
        "diagnostics": false
      }
    },
    "moduleFileExtensions": [
      "ts",
      "js",
      "json"
    ],
    "modulePathIgnorePatterns": [
      "<rootDir>/dist/"
    ]
  }
}
