loggerr
Version:
A simple logger to console or file
51 lines (50 loc) • 1.38 kB
JSON
{
"name": "loggerr",
"version": "4.3.0",
"description": "A simple logger to console or file",
"main": "index.js",
"type": "commonjs",
"scripts": {
"test": "standard && npm run examples && mocha && npm run test:types",
"test:debug": "mocha --inspect --inspect-brk --timeout=0",
"test:cover": "c8 mocha",
"test:only": "mocha",
"test:types": "tsc --noEmit test/types.ts",
"examples": "for i in examples/*; do echo \"\n======-----======\n $i\n======-----======\n\"; node \"$i\"; done",
"release": "npm t && standard-version && npm publish",
"postpublish": "git push && git push --tags"
},
"keywords": [
"log",
"logger",
"file",
"console",
"cli",
"sync"
],
"author": "Wes Todd",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/wesleytodd/loggerr.git"
},
"bugs": {
"url": "https://github.com/wesleytodd/loggerr/issues"
},
"homepage": "https://github.com/wesleytodd/loggerr",
"dependencies": {
"chalk": "^4.1.0",
"string-length": "^4.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"c8": "^10.1.2",
"expect-type": "^1.1.0",
"mocha": "^11.7.1",
"rollup": "^4.44.1",
"standard": "^17.1.0",
"standard-version": "^9.5.0",
"typescript": "^5.6.3"
}
}