@userfrosting/ts-log-adapter-ava
Version:
Plug ava test logging into ts-log compatible logging interfaces.
56 lines (55 loc) • 1.78 kB
JSON
{
"name": "@userfrosting/ts-log-adapter-ava",
"version": "0.1.1",
"description": "Plug ava test logging into ts-log compatible logging interfaces.",
"funding": "https://opencollective.com/userfrosting",
"type": "module",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"pretest": "tsc && api-extractor run --local",
"test": "c8 --all --reporter=text --reporter=lcovonly ava",
"prepublishOnly": "tsc",
"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/*"
},
"author": "Jordan Mele <SiliconSoldier@outlook.com.au> (https://djmm.me/)",
"license": "MIT",
"keywords": [
"ts-log",
"logger",
"ava",
"avajs"
],
"repository": {
"type": "git",
"url": "https://github.com/userfrosting/ts-log-adapter-ava"
},
"bugs": {
"url": "https://github.com/userfrosting/ts-log-adapter-ava/issues"
},
"dependencies": {
"ts-log": "^2.1.4"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.22",
"@microsoft/api-extractor": "^7.9.3",
"@types/node": "^14.0.27",
"ava": "^3.11.1",
"c8": "^7.3.0",
"changelog-updater": "^2.0.1",
"is-npm-cli": "^1.0.0",
"typescript": "^4.0.2"
},
"engines": {
"node": "^12.17.0 || >=13"
},
"ava": {
"files": [
"dist/**/*.test.js"
]
}
}