cli-argparse
Version:
Lightweight argument parser
77 lines (76 loc) • 1.7 kB
JSON
{
"name": "cli-argparse",
"version": "1.1.2",
"description": "Lightweight argument parser",
"author": "muji <noop@xpm.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cli-kit/cli-argparse"
},
"bugs": {
"url": "https://github.com/cli-kit/cli-argparse/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/cli-kit/cli-argparse/blob/master/LICENSE"
}
],
"keywords": [
"cli",
"optparse",
"argparse",
"arguments",
"options"
],
"devDependencies": {
"chai": "~3.5.0",
"coveralls": "~2.11.6",
"istanbul": "~0.4.2",
"mocha": "~2.4.5"
},
"scripts": {
"lint": "jshint . && jscs .",
"readme": "mdp --force -v",
"clean": "rm -rf coverage",
"test": "NODE_ENV=test mocha ${SPEC:-test/spec}",
"cover": "NODE_ENV=test istanbul cover _mocha -- ${SPEC:-test/spec}",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"mdp": {
"title": "Parse",
"pedantic": true,
"include": "doc/readme",
"require": "lib",
"links": "links.md",
"toc": "Table of Contents",
"base": "https://github.com/cli-kit/cli-argparse",
"partial": [
{
"inc": [
"introduction.md",
"install.md"
]
},
{
"title": "Example",
"inc": "../../example.js",
"type": "code",
"language": "javascript"
},
{
"bin": "node example.js",
"type": "code",
"language": "json"
},
{
"inc": [
"api.md",
"developer.md",
"license.md"
]
}
]
}
}