@userfrosting/ts-log-adapter-gulplog
Version:
An adapter for the ts-log interface that pushes logging to gulplog with optional arguments JSON encoded.
63 lines (62 loc) • 2.27 kB
JSON
{
"name": "@userfrosting/ts-log-adapter-gulplog",
"version": "1.0.0",
"description": "An adapter for the ts-log interface that pushes logging to gulplog with optional arguments JSON encoded.",
"funding": "https://opencollective.com/userfrosting",
"type": "module",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"compile": "del-cli ./dist && tsc",
"pretest": "npm run compile && api-extractor run --local",
"test": "c8 --all --reporter=text --reporter=lcovonly ava",
"prepublishOnly": "npm run compile",
"preversion": "npm test",
"version": "npm run version:apiDocRefresh && npm run version:changelogBump",
"postversion": "git push && git push --tags",
"version:changelogBump": "changelog-updater && git add CHANGELOG.md",
"version:apiDocRefresh": "api-extractor run && api-documenter markdown -i ./temp -o ./docs/api && git add ./docs/api/*",
"release-readiness": "npm run release-readiness:cspell && npm run release-readiness:api-changes",
"release-readiness:cspell": "cspell 'src/**' 'dist/**' 'docs/**' '*'",
"release-readiness:api-changes": "npm run compile && api-extractor run"
},
"author": "Jordan Mele <SiliconSoldier@outlook.com.au> (https://djmm.me/)",
"license": "MIT",
"keywords": [
"ts-log",
"logging",
"log-adapter"
],
"repository": {
"type": "git",
"url": "https://github.com/userfrosting/ts-log-adapter-gulplog"
},
"bugs": {
"url": "https://github.com/userfrosting/ts-log-adapter-gulplog/issues"
},
"dependencies": {
"gulplog": "1.0.0",
"ts-log": "^2.2.3"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.12.16",
"@microsoft/api-extractor": "^7.13.2",
"@types/node": "^16.0.0",
"ava": "^3.15.0",
"c8": "^7.7.0",
"changelog-updater": "^2.0.2",
"cspell": "^5.3.10",
"del-cli": "^4.0.0",
"glogg": "^1.0.2",
"is-npm-cli": "^1.0.0",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=12.17.0"
},
"ava": {
"files": [
"dist/**/*.test.js"
]
}
}