smartlog/package.json

66 lines
1.5 KiB
JSON
Raw Normal View History

2016-10-15 17:00:52 +00:00
{
2023-07-10 00:56:58 +00:00
"name": "@push.rocks/smartlog",
2024-06-06 15:05:55 +00:00
"version": "3.0.7",
2018-06-05 18:48:14 +00:00
"private": false,
2024-04-14 15:48:56 +00:00
"description": "A minimalistic, distributed, and extensible logging tool supporting centralized log management.",
2019-01-28 22:30:55 +00:00
"keywords": [
"logging",
2024-04-14 15:48:56 +00:00
"log management",
"typescript",
2019-01-28 22:30:55 +00:00
"centralized logging",
"json logging",
2024-04-14 15:48:56 +00:00
"node.js",
"distributed systems",
"extensible logging",
"log routing",
"console logging",
"log destinations",
"log levels",
"error tracking",
"development tools"
2019-01-28 22:30:55 +00:00
],
2020-06-07 13:23:56 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2018-01-28 03:31:06 +00:00
"author": "Lossless GmbH",
2019-01-30 02:26:31 +00:00
"license": "MIT",
2016-10-15 17:00:52 +00:00
"scripts": {
2018-10-30 17:56:26 +00:00
"test": "(tstest test/)",
2020-06-08 16:16:54 +00:00
"build": "(tsbuild --web && tsbundle npm)",
2022-06-26 08:35:35 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2016-10-15 17:00:52 +00:00
},
2018-01-28 03:31:06 +00:00
"devDependencies": {
2024-05-17 23:15:16 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.23",
2024-06-06 15:05:55 +00:00
"@types/node": "^20.14.2"
2016-10-15 17:00:52 +00:00
},
"dependencies": {
2023-07-12 17:21:36 +00:00
"@push.rocks/isounique": "^1.0.4",
2024-06-06 15:05:55 +00:00
"@push.rocks/smartlog-interfaces": "^3.0.2"
2019-10-22 13:11:40 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-07 13:23:56 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-22 13:11:40 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-09-07 21:30:02 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-06-26 08:35:35 +00:00
],
2024-05-29 12:14:04 +00:00
"type": "module",
"homepage": "https://code.foss.global/push.rocks/smartlog",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartlog.git"
}
2024-06-06 15:05:55 +00:00
}