{
  "name": "graphql-passport",
  "version": "0.6.3",
  "description": "Strategy and utilities to use passport.js with GraphQL server",
  "main": "lib/index.js",
  "scripts": {
    "build": "tsc --noEmit --pretty && npm run clean && npm run build:types && npm run build:js",
    "build:types": "tsc --emitDeclarationOnly",
    "build:js": "babel src --extensions '.ts,.tsx' --source-maps --out-dir lib --ignore src/**/*.test.ts --ignore __mocks__",
    "clean": "rimraf lib",
    "lint": "tsc --noEmit && eslint \"src/**/*.{js,ts}\" --quiet --fix",
    "check-types": "tsc",
    "watch-ts": "tsc -w",
    "prepublish": "npm run lint && npm run test && npm run build",
    "test": "jest src",
    "test:watch": "jest src --watch"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jkettmann/graphql-passport.git"
  },
  "keywords": [
    "graphql",
    "passport",
    "authorization",
    "authentication"
  ],
  "author": "Johannes Kettmann",
  "license": "MIT",
  "dependencies": {
    "passport-strategy": "^1.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.8.7",
    "@babel/plugin-transform-runtime": "^7.8.3",
    "@babel/preset-env": "^7.8.7",
    "@babel/preset-typescript": "^7.8.3",
    "@babel/runtime": "^7.8.7",
    "@types/jest": "^24.9.1",
    "@typescript-eslint/eslint-plugin": "^2.23.0",
    "babel-eslint": "^10.1.0",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-typescript": "^6.3.2",
    "eslint-config-prettier": "^6.10.0",
    "eslint-plugin-import": "^2.20.1",
    "eslint-plugin-prettier": "^3.1.2",
    "jest": "^24.9.0",
    "passport": "^0.4.1",
    "prettier": "^1.19.1",
    "typescript": "^3.8.3"
  },
  "optionalDependencies": {
    "@types/express": "^4.17.1",
    "@types/passport": "^1.0.1",
    "@types/passport-strategy": "^0.2.35",
    "@types/ws": "^6.0.3",
    "express": "^4.17.1",
    "graphql": "^14.5.8",
    "subscriptions-transport-ws": "^0.9.16",
    "ws": "7.x"
  },
  "peerDependencies": {
    "express": "4.x",
    "passport": "0.x",
    "subscriptions-transport-ws": "0.x",
    "ws": "7.x || 6.x"
  }
}
