UNPKG

simpl-loggar

Version:

Simple node.js logger

84 lines (83 loc) 2.21 kB
{ "name": "simpl-loggar", "version": "0.7.8", "description": "Simple node.js logger", "productName": "simpl-loggar", "author": "https://git.kiszczyc.pl/Jakub", "license": "Apache-2.0", "private": false, "type": "module", "main": "lib/index.js", "types": "lib/index.d.ts", "exports": { "import": "./lib/index.js", "require": "./lib/commonIndex.cjs" }, "files": [ "/lib", "/types" ], "repository": { "type": "git", "url": "https://git.kiszczyc.pl/virus/SimpleLogger" }, "keywords": [ "log", "logging", "logger", "node.js", "typescript", "javascript" ], "scripts": { "build": "tsc -p tsconfig.json", "build:common": "rollup --config", "build:watch": "tsc -w -p tsconfig.json", "lint": "cross-env NODE_ENV=development eslint -c eslint.config.mjs . --fix", "listErrors": "node_modules/.bin/tsc --skipLibCheck -p tsconfig.json", "lintStaged": "npx lint-staged" }, "dependencies": { "@elastic/ecs-winston-format": "^1.5.3", "chalk": "4.1.2", "winston": "3.17.0", "winston-daily-rotate-file": "5.0.0" }, "devDependencies": { "@eslint/compat": "^1.2.2", "@eslint/eslintrc": "^3.1.0", "@eslint/js": "^9.9.0", "@rollup/plugin-commonjs": "^28.0.0", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.0", "@types/node": "24.3.0", "@typescript-eslint/eslint-plugin": "8.41.0", "@typescript-eslint/parser": "8.41.0", "cross-env": "10.0.0", "eslint": "9.34.0", "eslint-config-prettier": "10.1.8", "eslint-plugin-check-file": "3.3.0", "eslint-plugin-import": "2.32.0", "eslint-plugin-jest": "29.0.1", "eslint-plugin-jsdoc": "^54.1.1", "eslint-plugin-prettier": "5.5.4", "eslint-plugin-sort-class-members": "1.21.0", "prettier": "3.6.2", "rollup": "^4.22.5", "typescript": "5.9.2" }, "engines": { "node": ">=16" }, "peerDependencies": { "typescript": ">=5.0.0" }, "lint-staged": { "*.ts": [ "cross-env NODE_ENV=development eslint --cache" ], "*.json,.{eslintrc,prettierrc}": [ "prettier --ignore-path .eslintignore --parser json --write" ] } }