subcommander
Version:
Command-line argument parser with sub-command support
43 lines (42 loc) • 1.28 kB
JSON
{
"name": "subcommander",
"version": "1.0.0",
"description": "Command-line argument parser with sub-command support",
"main": "subcommander.js",
"scripts": {
"lint": "jshint subcommander.js examples/ test/",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"test": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/gregpabian/subcommander.git"
},
"keywords": [
"command",
"sub-command",
"sub",
"cli",
"argument",
"option",
"parser"
],
"author": "Greg Pabian <greg.pabian@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregpabian/subcommander/issues"
},
"homepage": "https://github.com/gregpabian/subcommander",
"dependencies": {
"chalk": "^1.1.3"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^3.3.0",
"mocha-lcov-reporter": "1.3.0",
"rewire": "^2.5.2"
}
}