{
  "name": "@lukevmorris/nextjs-auth0",
  "version": "0.16.3",
  "description": "Next.js SDK for signing in with Auth0",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "browser": "dist/index.browser.js",
  "directories": {
    "test": "tests"
  },
  "engines": {
    "node": "^10.13.0 || >=12.0.0"
  },
  "scripts": {
    "clean": "rimraf dist",
    "pretty": "prettier --write \"src/**/*.ts\" \"src/*.ts\"",
    "lint": "eslint --fix --ext .ts ./src",
    "build": "tsc -p tsconfig.build.json",
    "test": "jest --coverage --forceExit --maxWorkers=10",
    "test:watch": "jest --coverage --watch",
    "prepublishOnly": "npm test && npm run lint",
    "prepublish": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lukevmorris/nextjs-auth0.git"
  },
  "keywords": [
    "auth0",
    "next.js",
    "react",
    "oidc",
    "authentication",
    "zeit"
  ],
  "author": "Luke Morris (branch of Auth0 code)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lukevmorris/nextjs-auth0/issues"
  },
  "homepage": "https://github.com/lukevmorris/nextjs-auth0#readme",
  "devDependencies": {
    "@panva/jose": "^1.9.3",
    "@types/cookie": "^0.3.3",
    "@types/hapi__iron": "^5.1.0",
    "@types/jest": "^25.2.1",
    "@types/jsonwebtoken": "^8.3.9",
    "@types/node": "^13.13.5",
    "@types/react": "^16.9.35",
    "@types/react-dom": "^16.9.8",
    "@types/request": "^2.48.4",
    "@typescript-eslint/eslint-plugin": "^2.31.0",
    "@typescript-eslint/parser": "^2.31.0",
    "eslint": "^7.0.0",
    "eslint-config-airbnb": "^18.1.0",
    "eslint-config-airbnb-base": "^14.1.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-import-resolver-typescript": "^2.0.0",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-prettier": "^3.1.3",
    "eslint-plugin-react": "^7.19.0",
    "eslint-plugin-react-hooks": "^4.0.0",
    "jest": "^25.2.1",
    "next": "^9.3.6",
    "nock": "^12.0.3",
    "prettier": "^2.0.5",
    "request": "^2.88.2",
    "timekeeper": "^2.2.0",
    "ts-jest": "^25.5.1",
    "typescript": "^3.8.3"
  },
  "dependencies": {
    "@hapi/iron": "^5.1.4",
    "base64url": "^3.0.1",
    "cookie": "^0.4.1",
    "openid-client": "^3.15.0"
  },
  "peerDependencies": {
    "next": "^9.0.0"
  },
  "jest": {
    "testEnvironment": "node",
    "rootDir": "./",
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/tests/",
      "./jest.config.js"
    ],
    "coverageReporters": [
      "lcov",
      "text",
      "text-summary"
    ],
    "preset": "ts-jest"
  }
}
