{ "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": "^6.0.0", "tsconfig-link": "*", "eslint-config-link": "*", "jest-config-link": "*" }, "dependencies": { "@hapi/hapi": "^20.2.0", "@hapi/hoek": "^9.2.1", "joi": "^17.4.2", "@hapipal/toys": "^3.1.0", "next-auth": "3.29.0" }, "scripts": { "build": "tsc -p tsconfig.json", "fix:lint": "eslint src --ext .ts --fix", "fix:prettier": "prettier \"src/**/*.ts\" --write", "test": "yarn test:jest && yarn test:lint && yarn test:prettier", "test:lint": "eslint src --ext .ts", "test:prettier": "prettier \"src/**/*.ts\" --list-different", "test:jest": "jest --coverage --forceExit --detectOpenHandles --reporters=default --reporters=jest-junit", "doc": "yarn run doc:html", "doc:html": "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" } }