smartcli/package.json

66 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2015-10-04 21:21:10 +00:00
{
2023-07-10 00:42:41 +00:00
"name": "@push.rocks/smartcli",
2018-06-28 21:57:40 +00:00
"private": false,
2024-05-28 11:42:11 +00:00
"version": "4.0.11",
2024-04-13 23:02:06 +00:00
"description": "A library for easily creating observable CLI tasks with support for commands, arguments, and options.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-03 15:00:36 +00:00
"type": "module",
2015-10-04 21:21:10 +00:00
"scripts": {
2021-04-07 20:28:57 +00:00
"test": "(tstest test/ --web)",
2023-08-19 07:47:03 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-08-03 15:07:11 +00:00
"buildDocs": "tsdoc"
2015-10-04 21:21:10 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:12:09 +00:00
"url": "https://code.foss.global/push.rocks/smartcli.git"
2015-10-04 21:21:10 +00:00
},
"keywords": [
2024-04-13 23:02:06 +00:00
"CLI",
"command line",
"observable",
"tasks",
"commands",
"arguments",
"options",
"typescript",
"node.js",
"development tool"
2015-10-04 21:21:10 +00:00
],
2016-11-19 16:41:11 +00:00
"author": "Lossless GmbH <office@lossless.com> (https://lossless.com)",
2015-10-04 21:21:10 +00:00
"license": "MIT",
"bugs": {
2016-06-09 12:01:06 +00:00
"url": "https://gitlab.com/pushrocks/smartcli/issues"
2015-10-04 21:21:10 +00:00
},
2024-05-29 12:12:09 +00:00
"homepage": "https://code.foss.global/push.rocks/smartcli",
2015-10-05 21:33:57 +00:00
"dependencies": {
2024-05-28 11:42:10 +00:00
"@push.rocks/lik": "^6.0.15",
"@push.rocks/smartlog": "^3.0.6",
"@push.rocks/smartobject": "^1.0.12",
2023-07-12 13:09:53 +00:00
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.3",
"yargs-parser": "21.1.1"
2015-10-05 21:33:57 +00:00
},
2015-10-04 21:21:10 +00:00
"devDependencies": {
2024-05-28 11:42:10 +00:00
"@git.zone/tsbuild": "^2.1.80",
2024-04-12 16:24:31 +00:00
"@git.zone/tsrun": "^1.2.42",
2024-05-28 11:42:10 +00:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.12"
2020-03-11 22:49:43 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
2020-03-11 22:49:43 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-04-07 20:25:17 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-03-11 22:49:43 +00:00
]
2024-05-29 12:12:09 +00:00
}