{
  "name": "@vdtn359/nextjs-auth0",
  "version": "0.11.0",
  "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",
    "test:watch": "jest --coverage --watch",
    "prepublishOnly": "npm test && npm run lint",
    "prepublish": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/auth0/nextjs-auth0.git"
  },
  "keywords": [
    "auth0",
    "next.js",
    "react",
    "oidc",
    "authentication",
    "zeit"
  ],
  "author": "Auth0 (https://auth0.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/auth0/nextjs-auth0/issues"
  },
  "homepage": "https://github.com/auth0/nextjs-auth0#readme",
  "devDependencies": {
    "@panva/jose": "^1.9.2",
    "@types/cookie": "^0.3.3",
    "@types/hapi__iron": "^5.1.0",
    "@types/jest": "^24.0.18",
    "@types/jsonwebtoken": "^8.3.4",
    "@types/node": "^12.7.12",
    "@types/react": "^16.9.5",
    "@types/react-dom": "^16.9.1",
    "@types/request": "^2.48.3",
    "@typescript-eslint/eslint-plugin": "^2.3.3",
    "@typescript-eslint/parser": "^2.3.3",
    "eslint": "^6.1.0",
    "eslint-config-airbnb": "^18.0.1",
    "eslint-config-airbnb-base": "^14.0.0",
    "eslint-config-prettier": "^6.7.0",
    "eslint-import-resolver-typescript": "^1.1.1",
    "eslint-plugin-import": "^2.19.1",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-prettier": "^3.1.2",
    "eslint-plugin-react": "^7.17.0",
    "eslint-plugin-react-hooks": "^1.7.0",
    "jest": "^24.9.0",
    "next": "^9.1.1",
    "nock": "^11.6.0",
    "prettier": "^1.19.1",
    "request": "^2.88.0",
    "timekeeper": "^2.2.0",
    "ts-jest": "^24.1.0",
    "typescript": "^3.6.4"
  },
  "dependencies": {
    "@hapi/iron": "^5.1.4",
    "base64url": "^3.0.1",
    "cookie": "^0.4.0",
    "openid-client": "^3.7.4"
  },
  "peerDependencies": {
    "next": "^9.0.5"
  },
  "jest": {
    "testEnvironment": "node",
    "rootDir": "./",
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/tests/",
      "./jest.config.js"
    ],
    "coverageReporters": [
      "lcov",
      "text",
      "text-summary"
    ],
    "preset": "ts-jest"
  }
}
