28 lines
1,021 B
JSON
28 lines
1,021 B
JSON
{
|
|
"name": "@digiresilience/hapi-pg-promise",
|
|
"version": "1.0.0",
|
|
"description": "a hapi.js plugin for pg-promise",
|
|
"main": "build/main/index.js",
|
|
"type": "module",
|
|
"author": "Abel Luck <abel@guardianproject.info>",
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": false,
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.4",
|
|
"tsc-watch": "^6.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@hapi/hapi": "^21.3.2",
|
|
"pg-monitor": "^2.0.0",
|
|
"pg-promise": "^11.5.4"
|
|
},
|
|
"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 && 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",
|
|
"dev": "tsc-watch --build --noClear"
|
|
}
|
|
}
|