| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | {  "name": "yargs",  "version": "3.10.0",  "description": "Light-weight option parsing with an argv hash. No optstrings attached.",  "main": "./index.js",  "files": [    "index.js",    "lib",    "completion.sh.hbs",    "LICENSE"  ],  "dependencies": {    "camelcase": "^1.0.2",    "cliui": "^2.1.0",    "decamelize": "^1.0.0",    "window-size": "0.1.0"  },  "devDependencies": {    "chai": "^2.2.0",    "coveralls": "^2.11.2",    "hashish": "0.0.4",    "mocha": "^2.2.1",    "nyc": "^2.2.1",    "standard": "^3.11.1"  },  "scripts": {    "test": "standard && nyc mocha --check-leaks && nyc report",    "coverage": "nyc report --reporter=text-lcov | coveralls"  },  "repository": {    "type": "git",    "url": "http://github.com/bcoe/yargs.git"  },  "standard": {    "ignore": [      "**/example/**"    ],    "globals": [      "it"    ]  },  "keywords": [    "argument",    "args",    "option",    "parser",    "parsing",    "cli",    "command"  ],  "author": {    "name": "Alex Ford",    "email": "Alex.Ford@CodeTunnel.com",    "url": "http://CodeTunnel.com"  },  "contributors": [    {      "name": "Benjamin Coe",      "email": "ben@npmjs.com",      "url": "https://github.com/bcoe"    },    {      "name": "Chris Needham",      "email": "chris@chrisneedham.com",      "url": "http://chrisneedham.com"    },    {      "name": "James Nylen",      "email": "jnylen@gmail.com",      "url": "https://github.com/nylen"    },    {      "name": "Benjamin Horsleben",      "url": "https://github.com/fizker"    },    {      "name": "Lin Clark",      "url": "https://github.com/linclark"    }  ],  "license": "MIT",  "engine": {    "node": ">=0.4"  },  "__npminstall_done": true,  "_from": "yargs@3.10.0",  "_resolved": "https://registry.npmmirror.com/yargs/-/yargs-3.10.0.tgz"}
 |