Files
2025-12-02 16:27:21 +00:00

37 lines
1.1 KiB
JSON

{
"name": "cliss",
"version": "0.0.2",
"description": "CLI Simple, Stupid. Automatic discovery of parameters names. Provides an easy and minimal setup by passing in only a function reference without the need of declaring all expected options names or create a help section by hand. Support to sync / async. Support to subcommands down to N levels.",
"main": "./lib/cliss.js",
"scripts": {
"test": "mocha ./test/main.test.js ./test/main.test.pipe.stdin.js"
},
"author": "",
"license": "ISC",
"keywords": [
"cli",
"command-line interface",
"command line",
"async",
"minimal",
"simple"
],
"repository": {
"type": "git",
"url": "https://github.com/DiegoZoracKy/cliss"
},
"dependencies": {
"command-line-usage": "^4.0.1",
"deepmerge": "^2.0.0",
"get-stdin": "^5.0.1",
"inspect-parameters-declaration": "0.0.9",
"object-to-arguments": "0.0.8",
"pipe-functions": "^1.3.0",
"strip-ansi": "^4.0.0",
"yargs-parser": "^7.0.0"
},
"devDependencies": {
"mocha": "^4.0.1"
}
}