A fork of a simple zero dependency command line argument parser for Node.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

40 lines
815 B

{
"name": "argv",
"version": "0.0.3",
"description": "CLI Argument Parser",
"author": "Corey Hart <[email protected]>",
"main": "./index.js",
"license": "MIT",
"homepage": "http://codenothing.github.com/argv/",
"repository": {
"type": "git",
"url": "git://github.com/codenothing/argv.git"
},
"keywords": [
"cli",
"argv",
"options"
],
"files": [
"lib",
"index.js",
"package.json",
"package-lock.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=0.6.10"
},
"scripts": {
"clean": "rm -rf build/results",
"lint": "node build/lint.js",
"test": "npm run clean && npm run lint && node build/test.js"
},
"dependencies": {},
"devDependencies": {
"nlint": "0.0.6",
"munit": "0.0.7"
}
}