console-ultimate
Version:
Node-compatible console object with extra features
89 lines • 1.97 kB
JSON
{
"name": "console-ultimate",
"version": "4.1.1",
"description": "Node-compatible console object with extra features",
"license": "ISC",
"author": "Strider <strange.transistor@gmail.com>",
"keywords": [
"console",
"color",
"tty",
"log",
"dir",
"inspect",
"format",
"util",
"timer",
"hrtime",
"assert",
"trace",
"better traces",
"long stacks",
"long trace",
"long traces",
"count",
"debug",
"clear",
"table",
"cli table",
"group",
"groupEnd",
"grouping",
"node"
],
"engines": {
"node": ">= 16"
},
"homepage": "https://github.com/StreetStrider/console-ultimate",
"bugs": {
"url": "https://github.com/StreetStrider/console-ultimate/issues"
},
"repository": {
"url": "https://github.com/StreetStrider/console-ultimate.git",
"type": "git"
},
"type": "module",
"exports": {
".": "./index.js",
"./default": "./default.js",
"./upgrade": "./upgrade.js",
"./Console": "./Console.js"
},
"files": [
"*.d.ts",
"index.js",
"default.js",
"upgrade.js",
"Console.js",
"lib/"
],
"dependencies": {
"object-path": "0.11.8",
"function-name": "2.0.0",
"stack-utils": "2.0.6",
"kleur": "4.1.5",
"cli-table": "0.3.11",
"string-length": "6.0.0",
"pretty-hrtime": "1.0.3"
},
"devDependencies": {
"console-ultimate": "./",
"eslint": "8",
"outlander": "StrangeTransistor/outlander#2.12.1",
"eslint-plugin-node": "11",
"typescript": "5.8.2",
"mocha": "10",
"chai": "4",
"c8": "8",
"concat-stream": "2"
},
"scripts": {
"start": "node example/start.js",
"ex": "node example/overview.js",
"st": "eslint *.js lib/ test/",
"ts": "tsc",
"unit": "mocha -r test/globals.js test/*.test.js",
"cover": "c8 -r text -r html npm run unit",
"test": "npm run st && npm run ts && npm run unit && npm run cover"
}
}