@imqueue/async-logger
Version:
Configurable async logger over winston for @imqueue services
74 lines (73 loc) • 2.87 kB
JSON
{
"name": "@imqueue/async-logger",
"version": "2.0.1",
"description": "Configurable async logger over winston for @imqueue services",
"keywords": [
"logger",
"async-logger",
"imqueue",
"services"
],
"main": "index.js",
"dependencies": {
"@imqueue/core": "^2.0.2",
"winston": "^3.17.0",
"winston-transport": "^4.9.0"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/mock-require": "^3.0.0",
"@types/node": "^24.0.10",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"@typescript-eslint/typescript-estree": "^8.35.1",
"chai": "^5.2.0",
"coveralls-next": "^4.2.1",
"eslint": "^9.30.1",
"glob": "^11.0.3",
"minimist": "^1.2.8",
"mocha": "^11.7.1",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"npm-scripts-help": "^0.8.0",
"nyc": "^17.1.0",
"open": "^10.1.2",
"sinon": "^21.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typedoc": "^0.28.7",
"typedoc-plugin-as-member-of": "^1.0.2",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.8.3"
},
"scripts": {
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 0",
"clean:ts": "find . -name '*.ts' -not -wholename '*node_modules*' -not -wholename '*.d.ts' -type f -delete",
"clean:dts": "find . -name '*.d.ts' -not -wholename '*node_modules*' -type f -delete",
"clean:map": "find . -name '*.js.map' -not -wholename '*node_modules*' -type f -delete",
"clean:js": "find . -name '*.js' -not -wholename '*node_modules*' -not -wholename '*bin*' -type f -delete",
"clean:build": "rm -rf ./node_modules/@types ; find . -name '*.js.map' -type f -delete ; find . -name '*.ts' -type f -delete",
"clean:test": "rm -rf .nyc_output coverage",
"clean:doc": "rm -rf docs",
"clean:wiki": "rm -rf wiki",
"clean": "npm run clean:test ; npm run clean:dts ; npm run clean:map ; npm run clean:js ; npm run clean:doc ; npm run clean:wiki",
"build": "tsc",
"mocha": "nyc mocha",
"show:doc": "/usr/bin/env node -e \"require('open')('file://`pwd`/docs/index.html',{wait:false});\"",
"doc": "npm run clean && typedoc --excludePrivate --excludeExternals --hideGenerator --exclude \"**/+(debug|test|node_modules|docs|coverage|.nyc_output|examples)/**/*\" --out ./docs --plugin typedoc-plugin-as-member-of . && npm run show:doc",
"help": "npm-scripts-help"
},
"author": "imqueue.com <support@imqueue.com>",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git://github.com/imqueue/async-logger.git"
},
"bugs": {
"url": "https://github.com/imqueue/async-logger/issues"
},
"homepage": "https://github.com/imqueue/async-logger"
}