smartlog/package.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2016-10-15 17:00:52 +00:00
{
2018-06-05 18:49:54 +00:00
"name": "@pushrocks/smartlog",
2020-06-08 18:51:12 +00:00
"version": "2.0.26",
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)",
2018-06-05 18:48:14 +00:00
"format": "(gitzone format)"
2016-10-15 17:00:52 +00:00
},
2018-01-28 03:31:06 +00:00
"devDependencies": {
2020-06-05 01:53:09 +00:00
"@gitzone/tsbuild": "^2.1.24",
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.33",
"@pushrocks/tapbundle": "^3.2.1",
"@types/node": "^14.0.11",
"tslint": "^6.1.2",
2019-10-22 13:04:15 +00:00
"tslint-config-prettier": "^1.18.0"
2016-10-15 17:00:52 +00:00
},
"dependencies": {
2020-06-08 16:16:54 +00:00
"@gitzone/tsbundle": "^1.0.69",
2020-06-05 09:25:28 +00:00
"@pushrocks/isounique": "^1.0.4",
2020-06-08 16:16:54 +00:00
"@pushrocks/smartlog-interfaces": "^2.0.18"
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-06-07 13:23:56 +00:00
}