smartlog/package.json

54 lines
1.2 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",
2021-07-21 00:25:22 +00:00
"version": "2.0.44",
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",
"@gitzone/tsbundle": "^1.0.80",
"@gitzone/tsrun": "^1.2.17",
"@gitzone/tstest": "^1.0.54",
"@pushrocks/tapbundle": "^3.2.14",
"@types/node": "^16.0.0",
2020-08-02 23:47:19 +00:00
"tslint": "^6.1.3",
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-05 09:25:28 +00:00
"@pushrocks/isounique": "^1.0.4",
2021-07-06 17:26:35 +00:00
"@pushrocks/smartlog-interfaces": "^2.0.22"
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"
}