smartlog-destination-local/package.json

59 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2015-09-20 17:21:29 +00:00
{
2023-07-10 08:02:44 +00:00
"name": "@push.rocks/smartlog-destination-local",
"private": false,
2024-04-24 16:30:06 +00:00
"version": "9.0.2",
"description": "a smartlog destination targeting the local console",
2020-06-05 10:29:06 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2015-09-20 17:21:29 +00:00
"scripts": {
2018-11-04 12:22:45 +00:00
"test": "(tstest test/)",
2022-10-26 16:41:04 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2015-09-20 17:21:29 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:14:18 +00:00
"url": "https://code.foss.global/push.rocks/smartlog-destination-local.git"
2015-09-20 17:21:29 +00:00
},
"keywords": [
2024-04-14 15:51:52 +00:00
"logging",
"console log",
"log management",
"developer tools",
"local logging",
"console output"
2015-09-20 17:21:29 +00:00
],
2018-11-04 12:36:49 +00:00
"author": "Lossless GmbH <hello@lossless.com> (https://lossless.com)",
2015-09-20 17:21:29 +00:00
"license": "MIT",
"bugs": {
2016-05-30 04:42:42 +00:00
"url": "https://gitlab.com/pushrocks/beautylog/issues"
2015-09-20 17:21:29 +00:00
},
2024-05-29 12:14:18 +00:00
"homepage": "https://code.foss.global/push.rocks/smartlog-destination-local",
2015-09-20 19:45:37 +00:00
"dependencies": {
2024-04-24 16:30:06 +00:00
"@push.rocks/consolecolor": "^2.0.1",
"@push.rocks/smartlog-interfaces": "^3.0.0",
"@push.rocks/smartpromise": "^4.0.2"
2015-12-20 22:22:38 +00:00
},
"devDependencies": {
2024-04-24 16:30:06 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.42",
"@git.zone/tstest": "^1.0.74",
"@push.rocks/tapbundle": "^5.0.8",
2023-07-09 15:38:18 +00:00
"@types/node": "^20.4.1"
},
"files": [
2020-06-11 10:38:19 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2022-10-26 16:41:04 +00:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
]
2024-05-29 12:14:18 +00:00
}