{ "name": "@digiresilience/hapi-nextauth", "version": "0.2.1", "description": "a plugin for hapi.js that exposes NextAuth's database adapter via HTTP", "main": "build/main/index.js", "author": "Abel Luck ", "license": "AGPL-3.0-or-later", "private": false, "devDependencies": { "@types/jest": "^27.0.2", "@hapi/basic": "^7.0.1", "tsconfig-link": "*", "eslint-config-link": "*", "jest-config-link": "*", "babel-preset-link": "*" }, "dependencies": { "@hapi/hapi": "^21.3.0", "@hapi/hoek": "^11.0.1", "joi": "^17.6.1", "next-auth": "3.29.0" }, "scripts": { "build": "tsc -p tsconfig.json", "fix:lint": "eslint src --ext .ts --fix", "fmt": "prettier \"src/**/*.ts\" --write", "test": "jest --coverage --forceExit --detectOpenHandles --reporters=default --reporters=jest-junit", "lint": "eslint src --ext .ts", "lint-fmt": "prettier \"src/**/*.ts\" --list-different", "doc": "typedoc src/ --exclude '**/*.test.ts' --exclude '**/*.spec.ts' --name $npm_package_name --readme README.md --target es2019 --mode file --out build/docs", "watch:build": "tsc -p tsconfig.json -w" } }