magicli
Version:
Automagically generates command-line interfaces (CLI) for any module. Expected options and help sections are created automatically based on parameters names, with support to async. It can be installed globally, in order to *execute* any module, or .js fil
40 lines (39 loc) • 1.07 kB
JSON
{
"name": "magicli",
"version": "0.2.1",
"description": "Automagically generates command-line interfaces (CLI) for any module. Expected options and help sections are created automatically based on parameters names, with support to async. It can be installed globally, in order to *execute* any module, or .js file, via CLI.",
"main": "lib/magicli.js",
"bin": "bin/cli.js",
"scripts": {
"test": "mocha ./tests",
"test-main": "mocha ./tests/main.test.js",
"test-cli": "mocha ./tests/cli.test.js"
},
"author": {
"name": "Diego ZoracKy",
"email": "diego.zoracky@gmail.com",
"url": "https://github.com/DiegoZoracKy/"
},
"repository": {
"type": "git",
"url": "https://github.com/DiegoZoracKy/magicli"
},
"keywords": [
"bin",
"cli",
"async",
"simple",
"command-line",
"interface"
],
"license": "MIT",
"dependencies": {
"cliss": "0.0.8",
"find-up": "^2.1.0",
"for-each-property": "0.0.4",
"inspect-property": "0.0.7"
},
"devDependencies": {
"mocha": "^4.0.1"
}
}