@spbrewery/log
Version:
A Simplified Multi-transport and Structured Logging Library for Brewery Project
45 lines (44 loc) • 1.17 kB
JSON
{
"name": "@spbrewery/log",
"version": "2.0.1",
"description": "A Simplified Multi-transport and Structured Logging Library for Brewery Project",
"main": "src/brewery-log.js",
"directories": {
"test": "test"
},
"scripts": {
"ava": "nyc ava --verbose",
"test": "nyc --reporter=html --reporter=text ava test/*.js --verbose",
"test:watch": "ava test/*.js --verbose --watch",
"prepare": "husky"
},
"keywords": [
"log",
"brewery"
],
"author": {
"name": "Levin Calado",
"email": "jcalado@stratpoint.com"
},
"license": "ISC",
"contributors": [
"Kurt Arellano <kurt.arellano@stratpoint.com>"
],
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"ava": "^6.1.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nyc": "^15.1.0",
"prettier": "3.2.5",
"sinon": "^17.0.1"
},
"lint-staged": {
"src/**/*.js": "eslint --cache --cache-location node_modules --report-unused-disable-directives --max-warnings 1",
"*.{js,json,jsonc,yml,yaml,md}": [
"prettier --write --ignore-unknown"
]
}
}