smartlog-destination-file/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2020-06-13 10:43:02 +00:00
{
2023-07-10 08:02:41 +00:00
"name": "@push.rocks/smartlog-destination-file",
2020-06-15 15:54:13 +00:00
"version": "1.0.7",
2020-06-13 10:43:02 +00:00
"private": false,
2024-04-14 15:51:13 +00:00
"description": "A module for creating a log destination that writes to a file with support for smartlog interfaces.",
2020-06-13 10:43:02 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2020-06-15 15:33:49 +00:00
"build": "(tsbuild --web)",
2020-06-13 10:43:02 +00:00
"format": "(gitzone format)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tstest": "^1.0.15",
"@pushrocks/tapbundle": "^3.0.7",
"@types/node": "^10.11.7",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0"
},
2020-06-13 11:03:08 +00:00
"dependencies": {
2020-06-15 15:16:47 +00:00
"@pushrocks/smartfile": "^7.0.12",
"@pushrocks/smartlog-interfaces": "^2.0.20",
"@pushrocks/smarttime": "^3.0.18"
2020-06-13 11:03:08 +00:00
},
2020-06-13 10:43:02 +00:00
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 15:51:13 +00:00
],
"keywords": [
"logging",
"smartlog",
"file-logging",
"typescript",
"node.js",
"filesystem",
"log management",
"development tool",
"log destination",
"log file"
2024-05-29 12:14:15 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartlog-destination-file",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartlog-destination-file.git"
}
2023-07-10 08:02:41 +00:00
}