smartcontext/package.json

64 lines
1.5 KiB
JSON
Raw Normal View History

2017-10-16 09:07:19 +02:00
{
"name": "@push.rocks/smartcontext",
2025-01-19 20:06:19 +01:00
"version": "2.1.6",
"description": "A module providing advanced asynchronous context management to enrich logs with context and manage scope effectively in Node.js applications.",
"exports": {
".": "./dist_ts/index.js"
},
"type": "module",
2017-10-16 09:07:19 +02:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-07-20 11:57:20 +00:00
"test": "(tstest test/)",
"build": "(tsbuild --allowimplicitany --web)",
2023-01-12 11:58:34 +01:00
"buildDocs": "tsdoc"
2017-10-16 09:07:19 +02:00
},
2017-10-16 09:07:58 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^2.1.27",
"@git.zone/tsbundle": "^2.0.7",
"@git.zone/tsrun": "^1.2.39",
"@git.zone/tstest": "^1.0.57",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/tapbundle": "^5.5.6",
"@types/node": "^22.10.7"
2017-10-16 09:07:19 +02:00
},
"dependencies": {
"simple-async-context": "^0.0.16"
2020-07-20 11:57:20 +00:00
},
"private": false,
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2023-01-12 11:58:34 +01:00
],
2024-04-14 13:39:41 +02:00
"keywords": [
"logging",
"context management",
2024-04-14 13:39:41 +02:00
"context enrichment",
"asynchronous",
2024-04-14 13:39:41 +02:00
"scope management",
"typescript",
"nodejs",
"module",
"async log contexts"
2024-05-29 14:11:16 +02:00
],
"homepage": "https://code.foss.global/push.rocks/logcontext#readme",
2024-05-29 14:11:16 +02:00
"repository": {
"type": "git",
"url": "git+https://code.foss.global/push.rocks/logcontext.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/logcontext/issues"
2024-05-29 14:11:16 +02:00
}
2025-01-18 23:52:44 +01:00
}