smartlog-destination-local/package.json

58 lines
1.3 KiB
JSON
Raw Normal View History

2015-09-20 17:21:29 +00:00
{
"name": "@pushrocks/smartlog-destination-local",
"private": false,
2022-10-26 16:41:30 +00:00
"version": "9.0.0",
"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",
2016-05-30 04:42:42 +00:00
"url": "https://gitlab.com/pushrocks/beautylog.git"
2015-09-20 17:21:29 +00:00
},
"keywords": [
2015-09-20 19:45:37 +00:00
"log",
"color",
"console",
"beautiful"
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
},
2016-05-30 04:42:42 +00:00
"homepage": "https://gitlab.com/pushrocks/beautylog",
2015-09-20 19:45:37 +00:00
"dependencies": {
2018-11-04 12:22:45 +00:00
"@pushrocks/consolecolor": "^2.0.1",
2022-10-26 16:41:04 +00:00
"@pushrocks/smartlog-interfaces": "^3.0.0",
"@pushrocks/smartpromise": "^3.1.7"
2015-12-20 22:22:38 +00:00
},
"devDependencies": {
2022-10-26 16:41:04 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.11.6"
},
"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"
]
2022-10-26 16:41:05 +00:00
}