84 lines
2.9 KiB
JSON
84 lines
2.9 KiB
JSON
{
|
|
"name": "@ptkdev/logger",
|
|
"description": "Beautiful Logger for Node.js: the best alternative to the console.log statement",
|
|
"version": "1.8.0",
|
|
"main": "modules/logger.js",
|
|
"author": "Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)",
|
|
"license": "MIT",
|
|
"license-docs": "CC BY 4.0",
|
|
"license-translations": "CC BY 4.0",
|
|
"license-images": "CC BY-NC 4.0",
|
|
"homepage": "https://logger.ptkdev.io",
|
|
"docs": "https://docs.logger.ptkdev.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ptkdev/ptkdev-logger.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ptkdev/ptkdev-logger/issues"
|
|
},
|
|
"scripts": {
|
|
"example": "cd examples && node examples/example.js",
|
|
"clean": "rm -rf node_modules package-lock.json && npm install",
|
|
"update": "rm -f package-lock.json && npm update",
|
|
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
|
|
"lint-fix": "eslint ./ --cache --ignore-pattern .gitignore --fix",
|
|
"git-set-upstream": "git remote add upstream git@github.com:ptkdev/ptkdev-logger.git && git fetch upstream",
|
|
"git-pull-upstream": "git pull upstream master && git pull upstream beta && git pull upstream nightly",
|
|
"git-pull": "git pull --recursive",
|
|
"git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"",
|
|
"npm-publish-master": "git checkout master && npm publish",
|
|
"npm-publish-beta": "git checkout beta && npm publish --tag beta",
|
|
"npm-publish-nightly": "git checkout nightly && npm publish --tag nightly",
|
|
"docs": "git submodule update --recursive && markserv ./README.md",
|
|
"test": "jest",
|
|
"contributors-generate": "all-contributors generate",
|
|
"pkg-upgrade": "npx npm-check-updates -u && npm install && husky install"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run lint && npm run contributors-generate"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"ptkdev",
|
|
"logger",
|
|
"log",
|
|
"logging",
|
|
"console.log",
|
|
"pinojs",
|
|
"pino-logger",
|
|
"pino",
|
|
"typescript"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"dependencies": {
|
|
"rotating-file-stream": "^2.1.5",
|
|
"chalk": "^4.1.2",
|
|
"lowdb": "^1.0.0",
|
|
"fs-extra": "^10.0.0",
|
|
"strip-ansi": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ptkdev/all-shields-cli": "^2.0.2",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-jsdoc": "^36.0.8",
|
|
"eslint-plugin-jest": "^24.4.0",
|
|
"all-contributors-cli": "^6.20.0",
|
|
"pm2": "^5.1.1",
|
|
"json": "^11.0.0",
|
|
"jest": "^27.1.0",
|
|
"husky": "^7.0.2",
|
|
"yargs": "^17.1.1",
|
|
"markserv": "^1.17.4"
|
|
},
|
|
"contributors": [
|
|
"Ilua Chubarov [@Ilya] <agoalofalife@gmail.com> (https://github.com/agoalofalife)",
|
|
"Bruno Kummel [@Bruck1701] <kummel@gmail.com> (https://github.com/Bruck1701)",
|
|
"Alina Osv [@alinaosv] <hixid@ya.ru> (https://github.com/alinaosv)",
|
|
"Sylvain Téchené [@syltech] <contact@syltech.fr> (https://github.com/Syltech)",
|
|
"Giovanni Cardamone [@GiovanniCardamone] <g.cardamone2@gmail.com> (https://github.com/GiovanniCardamone)"
|
|
]
|
|
}
|