@digigov-oss/auditrecord-postgresql-engine
Version:
PostgreSQL storage database for use with audit mechanism of GSIS
89 lines (88 loc) • 2.8 kB
JSON
{
"name": "@digigov-oss/auditrecord-postgresql-engine",
"version": "1.0.2",
"type": "module",
"description": "PostgreSQL storage database for use with audit mechanism of GSIS",
"engines": {
"node": ">=16.13.1"
},
"author": "Panagiotis Skarvelis <pskarvelis@admin.grnet.gr>",
"dependencies": {
"@digigov-oss/gsis-audit-record-db": "^1.3.1",
"pg-native": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.grnet.gr/digigov-oss/auditrecord-postgresql-engine.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"directories": {
"src": "src",
"test": "test"
},
"scripts": {
"test": "node --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm ./test/test.ts",
"testesm": "node ./test/test.mjs",
"testcjs": "node ./test/test.cjs",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig.commonjs.json && ./setType.sh"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"max-len": [
"error",
{
"code": 100
}
],
"no-console": 1,
"no-extra-boolean-cast": 0,
"@typescript-eslint/restrict-plus-operands": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-floating-promises": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-assignment": 0
}
},
"eslintIgnore": [],
"keywords": [
"gsis",
"audit",
"auditRecord"
],
"licenses": [
{
"type": "MIT",
"url": "http://en.wikipedia.org/wiki/MIT_License"
}
],
"devDependencies": {
"@types/node": "^17.0.5",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
},
"bugs": {
"url": "https://gitlab.grnet.gr/digigov-oss/auditrecord-postgresql-engine/-/issues"
},
"homepage": "https://gitlab.grnet.gr/digigov-oss/auditrecord-postgresql-engine/-/blob/main/README.md"
}