logcontext/package.json

59 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2017-10-16 07:07:19 +00:00
{
2023-07-10 00:41:36 +00:00
"name": "@push.rocks/logcontext",
2023-01-12 10:59:41 +00:00
"version": "2.0.0",
2024-04-14 11:39:41 +00:00
"description": "A module to enrich logs with context, featuring async log contexts and scope management.",
2020-07-20 11:57:20 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-10-16 07:07:19 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-07-20 11:57:20 +00:00
"test": "(tstest test/)",
2023-01-12 10:58:34 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2017-10-16 07:07:19 +00:00
},
2017-10-16 07:07:58 +00:00
"devDependencies": {
2021-09-17 17:21:34 +00:00
"@gitzone/tsbuild": "^2.1.27",
2023-01-12 10:58:34 +00:00
"@gitzone/tsbundle": "^2.0.7",
"@gitzone/tsrun": "^1.2.39",
2021-09-17 17:21:34 +00:00
"@gitzone/tstest": "^1.0.57",
"@pushrocks/smartdelay": "^2.0.13",
2023-01-12 10:58:34 +00:00
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.11.18"
2017-10-16 07:07:19 +00:00
},
"dependencies": {
2023-01-12 10:58:34 +00:00
"@pushrocks/lik": "^6.0.0",
2020-07-20 11:57:20 +00:00
"@pushrocks/smartcls": "^1.0.9",
"@pushrocks/smartunique": "^3.0.3",
"@types/shortid": "0.0.29"
},
"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 10:58:34 +00:00
],
2024-04-14 11:39:41 +00:00
"type": "module",
"keywords": [
"logging",
"context enrichment",
"async log contexts",
"scope management",
"typescript",
"nodejs"
2024-05-29 12:11:16 +00:00
],
"homepage": "https://code.foss.global/push.rocks/logcontext",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/logcontext.git"
}
2023-07-10 00:41:36 +00:00
}