smartlog/package.json

52 lines
1.1 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",
2022-10-26 13:22:54 +00:00
"version": "3.0.2",
2018-06-05 18:48:14 +00:00
"private": false,
2019-01-28 22:30:55 +00:00
"description": "minimalistic distributed and extensible logging tool",
"keywords": [
"logging",
"centralized logging",
"json logging",
"scalyr",
"elasticsearch",
"logdna"
],
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": {
2021-07-06 17:26:35 +00:00
"@gitzone/tsbuild": "^2.1.25",
2022-07-26 19:03:39 +00:00
"@gitzone/tsbundle": "^2.0.6",
2021-07-06 17:26:35 +00:00
"@gitzone/tsrun": "^1.2.17",
2022-07-26 19:03:39 +00:00
"@gitzone/tstest": "^1.0.72",
2023-07-12 17:21:36 +00:00
"@push.rocks/tapbundle": "^5.0.4",
2022-10-26 13:22:54 +00:00
"@types/node": "^18.6.1"
2016-10-15 17:00:52 +00:00
},
"dependencies": {
2023-07-12 17:21:36 +00:00
"@push.rocks/isounique": "^1.0.4",
"@push.rocks/smartlog-interfaces": "^3.0.0"
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
],
"type": "module"
2023-07-10 00:56:58 +00:00
}