{
    "name": "@digigov-oss/gsis-audit-record-db",
    "version": "1.3.1",
    "type": "module",
    "description": "JSON file storage database for use with audit mechanism of GSIS",
    "engines": {
        "node": ">=16.13.1"
    },
    "author": "Panagiotis Skarvelis <pskarvelis@admin.grnet.gr>",
    "repository": {
        "type": "git",
        "url": "git+https://gitlab.grnet.gr/digigov-oss/auditRecordDB.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",
        "testPostgreSql": "node --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm ./test/testLocalPostgreSql.ts",
        "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/auditRecordDB/-/issues"
    },
    "homepage": "https://gitlab.grnet.gr/digigov-oss/auditRecordDB/-/blob/main/README.md"
}
