{
    "name": "@orchard/owslogger",
    "version": "1.0.3",
    "description": "A logger for using with orchard microservices",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
        "test": "jest --coverage --verbose --runInBand",
        "test:watch": "yarn run test --watchAll",
        "lint": "tsc --noEmit && eslint \"**/src/**/*.ts\"  --fix",
        "prettier:write": "yarn prettier --write **/src/**/*.ts **/dist/**/*.js",
        "prettier:lint": "yarn prettier:write && yarn lint",
        "clean": "rm -rf dist/ coverage/ node_modules/",
        "build:watch": "tsc -w",
        "build:ts": "tsc",
        "build": "yarn run prettier:write && yarn run lint && yarn run build:ts",
        "prepublish": "npm run build:ts"
    },
    "keywords": [
        "logging"
    ],
    "author": "The Orchard",
    "license": "MIT",
    "dependencies": {
        "axios": "^0.20.0",
        "express": "^4.17.1",
        "logform": "^2.2.0",
        "on-finished": "^2.3.0",
        "triple-beam": "^1.3.0",
        "uuid": "^8.3.0",
        "winston": "^3.3.3"
    },
    "devDependencies": {
        "@types/express": "^4.17.7",
        "@types/jest": "^26.0.14",
        "@types/node": "^14.0.27",
        "@types/on-finished": "^2.3.1",
        "@types/supertest": "^2.0.10",
        "@types/triple-beam": "^1.3.1",
        "@types/uuid": "^8.0.1",
        "@types/winston": "^2.4.4",
        "@typescript-eslint/eslint-plugin": "^3.8.0",
        "@typescript-eslint/parser": "^3.8.0",
        "eslint": "^7.6.0",
        "eslint-plugin-tsdoc": "^0.2.6",
        "jest": "^26.2.2",
        "prettier": "^2.0.5",
        "supertest": "^4.0.2",
        "ts-jest": "^26.1.4",
        "typescript": "^3.9.7"
    },
    "files": [
        "dist"
    ],
    "eslintConfig": {
        "plugins": [
            "@typescript-eslint/eslint-plugin",
            "eslint-plugin-tsdoc"
        ],
        "extends": [
            "plugin:@typescript-eslint/recommended"
        ],
        "rules": {
            "tsdoc/syntax": "warn",
            "curly": "off"
        }
    },
    "jest": {
        "globals": {
            "ts-jest": {
                "tsConfig": "tsconfig.json"
            }
        },
        "moduleFileExtensions": [
            "ts",
            "js"
        ],
        "roots": [
            "<rootDir>"
        ],
        "modulePathIgnorePatterns": [
            "<rootDir>/dist"
        ],
        "setupFiles": [],
        "testEnvironment": "node",
        "testMatch": [
            "**/e2e/**/*.test.(ts|js)",
            "**/__tests__/**/*.+(ts|tsx|js)",
            "**/?(*.)+(spec|test).+(ts|tsx|js)"
        ],
        "transform": {
            "^.+\\.(ts|tsx)$": "ts-jest"
        }
    }
}
