consolecolor/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2017-01-21 14:49:00 +00:00
{
2023-07-10 00:41:08 +00:00
"name": "@push.rocks/consolecolor",
2024-03-13 19:02:13 +00:00
"version": "2.0.2",
"private": false,
2024-04-14 11:34:25 +00:00
"description": "A module for applying color styles to console output.",
2024-03-13 19:02:12 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-01-21 14:49:00 +00:00
"scripts": {
2024-03-13 19:02:12 +00:00
"test": "(tstest test/)",
"build": "(tsbuild --allowimplicitany)",
"buildDocs": "tsdoc"
2017-01-21 14:49:00 +00:00
},
"repository": {
"type": "git",
2024-05-29 11:55:36 +00:00
"url": "https://code.foss.global/push.rocks/consolecolor.git"
2017-01-21 14:49:00 +00:00
},
"keywords": [
2024-04-14 11:34:25 +00:00
"console log styling",
"ANSI colors",
"terminal colors",
"command line utilities",
"node.js",
"typescript",
"text formatting",
"log enhancement",
"development tools"
2017-01-21 14:49:00 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2024-03-13 19:02:12 +00:00
"url": "https://gitlab.com/push.rocks/consolecolor/issues"
2017-01-21 14:49:00 +00:00
},
2024-05-29 11:55:36 +00:00
"homepage": "https://code.foss.global/push.rocks/consolecolor",
2017-01-21 17:10:27 +00:00
"dependencies": {
"ansi-256-colors": "^1.1.0"
2017-01-21 17:10:27 +00:00
},
"devDependencies": {
2024-03-13 19:02:12 +00:00
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsrun": "^1.1.9",
"@git.zone/tstest": "^1.0.88",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^10.5.2"
2024-03-13 19:02:12 +00:00
},
"type": "module",
"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 11:34:25 +00:00
}