2023-03-13 08:24:20 +00:00
|
|
|
{
|
|
|
|
|
"name": "@digiresilience/hapi-nextauth",
|
2023-03-13 10:20:36 +00:00
|
|
|
"version": "1.0.0",
|
2023-03-13 08:24:20 +00:00
|
|
|
"description": "a plugin for hapi.js that exposes NextAuth's database adapter via HTTP",
|
|
|
|
|
"main": "build/main/index.js",
|
2023-06-02 14:05:20 +00:00
|
|
|
"type": "module",
|
2023-03-13 08:24:20 +00:00
|
|
|
"author": "Abel Luck <abel@guardianproject.info>",
|
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
|
"private": false,
|
|
|
|
|
"devDependencies": {
|
2023-06-14 06:33:06 +00:00
|
|
|
"@hapi/basic": "^7.0.2",
|
2023-09-27 11:13:19 +02:00
|
|
|
"@types/jest": "^29.5.5",
|
2023-06-07 08:14:29 +00:00
|
|
|
"babel-preset-link": "*",
|
2023-03-13 08:24:20 +00:00
|
|
|
"eslint-config-link": "*",
|
2023-03-13 09:34:36 +00:00
|
|
|
"jest-config-link": "*",
|
2023-06-07 08:14:29 +00:00
|
|
|
"tsc-watch": "^6.0.4",
|
|
|
|
|
"tsconfig-link": "*"
|
2023-03-13 08:24:20 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-05-25 08:43:35 +00:00
|
|
|
"@hapi/hapi": "^21.3.2",
|
|
|
|
|
"@hapi/hoek": "^11.0.2",
|
2023-09-27 11:13:19 +02:00
|
|
|
"joi": "^17.10.2",
|
2023-08-25 07:11:33 +00:00
|
|
|
"next-auth": "4.23.1"
|
2023-03-13 08:24:20 +00:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc -p tsconfig.json",
|
|
|
|
|
"fix:lint": "eslint src --ext .ts --fix",
|
2023-03-13 09:34:36 +00:00
|
|
|
"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",
|
2023-06-07 08:14:29 +00:00
|
|
|
"dev": "tsc-watch --build --noClear"
|
2023-03-13 08:24:20 +00:00
|
|
|
}
|
|
|
|
|
}
|