smartlog-destination-devtools/package.json

55 lines
1.2 KiB
JSON
Raw Normal View History

2018-03-01 22:39:03 +00:00
{
2023-07-10 08:02:38 +00:00
"name": "@push.rocks/smartlog-destination-devtools",
2020-07-10 00:37:19 +00:00
"version": "1.0.10",
2018-11-13 00:32:39 +00:00
"private": false,
2024-04-14 15:50:18 +00:00
"description": "A library enabling enhanced logging in browser development tools.",
2020-06-05 12:28:17 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2018-03-01 22:39:03 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-07-10 00:28:54 +00:00
"test": "(tstest test/ --web)",
2018-11-13 00:32:39 +00:00
"testBrowser": "(parcel ./test/index.html)",
2020-07-10 00:28:54 +00:00
"build": "(tsbuild --web)"
2018-03-01 22:39:03 +00:00
},
"devDependencies": {
2020-06-05 12:28:17 +00:00
"@gitzone/tsbuild": "^2.1.24",
2020-07-10 00:28:54 +00:00
"@gitzone/tstest": "^1.0.40",
"@pushrocks/smartlog": "^2.0.35",
"@pushrocks/tapbundle": "^3.2.7",
"@types/node": "^14.0.20",
2020-06-05 12:28:17 +00:00
"parcel-bundler": "^1.12.4",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0"
2018-03-01 22:39:03 +00:00
},
"dependencies": {
2020-07-10 00:28:54 +00:00
"@pushrocks/smartlog-interfaces": "^2.0.20"
2020-07-10 00:37:18 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 15:50:18 +00:00
],
"keywords": [
"logging",
"browser",
"development tools",
"typescript",
"npm package",
"browser console",
"log management",
"visual logging",
"smartlog",
"devtools"
2020-07-10 00:37:18 +00:00
]
2023-07-10 08:02:38 +00:00
}