{"maintainers":[{"email":"jonas.pauthier@gmail.com","name":"anonymous"},{"email":"devinivy@gmail.com","name":"anonymous"},{"email":"nicolas@morel.io","name":"anonymous"},{"email":"quitlahok@gmail.com","name":"anonymous"}],"keywords":["cli","command line","options","parser"],"dist-tags":{"latest":"4.0.3"},"description":"Command line options parser","readme":"# bossy\r\n\r\nCommand line options parser.\r\n\r\n[![Build Status](https://secure.travis-ci.org/hapijs/bossy.png)](http://travis-ci.org/hapijs/bossy)\r\n\r\nLead Maintainer - [Eran Hammer](https://github.com/hueniverse)\r\n\r\n\r\n## Usage\r\n\r\n```js\r\nvar Bossy = require('bossy');\r\n\r\nvar definition = {\r\n    h: {\r\n        description: 'Show help',\r\n        alias: 'help',\r\n        type: 'boolean'\r\n    },\r\n    n: {\r\n        description: 'Show your name',\r\n        alias: 'name'\r\n    }\r\n};\r\n\r\n\r\nvar args = Bossy.parse(definition);\r\n\r\nif (args instanceof Error) {\r\n    console.error(args.message);\r\n    return;\r\n}\r\n\r\nif (args.h || !args.n) {\r\n    console.log(Bossy.usage(definition, 'hello -n <name>'));\r\n    return;\r\n}\r\n\r\nconsole.log('Hello ' + args.n);\r\nconsole.log('Hello ' + args.name);\r\n```\r\n\r\n## Methods\r\n\r\n### `parse(definition, [options])`\r\n\r\nExpects a *bossy* definition object and will return the parsed `process.argv` arguments provided.  If there is an error\r\nthen the return value will be an `instanceof Error`.\r\n\r\nOptions accepts the following keys:\r\n* `argv` - custom argv array value.  Defaults to process.argv.\r\n\r\n### `usage(definition, [usage], [options])`\r\n\r\nFormat a  *bossy* definition object for display in the console.  If `usage` is provided the returned value will\r\ninclude the usage value formatted at the top of the message.\r\n\r\nOptions accepts the following keys:\r\n* `colors` - Determines if colors are enabled when formatting usage.  Defaults to whatever TTY supports.\r\n\r\n\r\n## Definition Object\r\n\r\nThe definition object should be structured with each object key representing the short form of an available command\r\nline argument.  Each argument key supports the following properties:\r\n\r\n* `alias`: A string or array of strings that can also be used as the argument name.  For example:\r\n```\r\nh: {\r\n    alias: 'help'\r\n}\r\n```\r\n\r\n* `type`: Available types are: `boolean`, `range`, `number`, `string`, and `help`.  Defaults to `string`.\r\n\r\n    `help` is a special type that allows the switch to be executed even though\r\n    other paramters are required. Use case is to display a help message and\r\n    quit. This will bypass all other errors, so be sure to capture it. It\r\n    behaves like a `boolean`.\r\n\r\n* `multiple` : Boolean to indicate if the same argument can be provided multiple times. If true, the parsed value\r\nwill always be an array of `type`'s. Defaults to `false`.\r\n\r\n* `description`: Description message that will be returned with usage information.\r\n\r\n* `require`: Boolean to indicate if the argument is required.  Defaults to `false`\r\n\r\n* `default`: A default value to assign to the argument if its not provided as an argument.\r\n\r\n* `valid`: A value or array of values that the argument is allowed to equal.\r\n","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"users":{"sericaia":true,"george55":true,"jory":true},"bugs":{"url":"https://github.com/hapijs/bossy/issues"},"license":"BSD-3-Clause","versions":{"0.0.1":{"name":"bossy","description":"Command line options parser","version":"0.0.1","repository":{"type":"git","url":"git://github.com/hapijs/bossy"},"main":"index","keywords":["cli","command line","options","parser"],"engines":{"node":">=0.10.30"},"dependencies":{"hoek":"2.x.x"},"devDependencies":{"lab":"4.x.x"},"scripts":{"test":"make test-cov"},"licenses":[{"type":"BSD","url":"http://github.com/hapijs/bossy/raw/master/LICENSE"}],"contributors":[{"name":"Eran Hammer","email":"eran@hammer.io","url":"http://hueniverse.com"},{"name":"Wyatt Preul","email":"wpreul@gmail.com","url":"http://jsgeek.com"}],"gitHead":"6e08d1d182a8f6a47d9e96392cdaf905d563d78b","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy","_id":"bossy@0.0.1","_shasum":"ddffea08ba7fb34a6d7f0da873528cfebd18413b","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"wpreul@gmail.com"},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"}],"dist":{"shasum":"ddffea08ba7fb34a6d7f0da873528cfebd18413b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-0.0.1.tgz","integrity":"sha512-3f5MU+w0KFJgbHQZUKxZKyaP6Z+A0dFlWe121xW6vb9XBg+/B2YAut/OIrumAwPoU70H0+rRRigtMUMWzdEyYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCw+2rkonC0UQK85VxyyhHfxX8jBHrZct9C1Mxk+S0CXgIhANMOxU3EIg0DjBRLGPxMUltD2Z1Vcvd0j6rQAhbYdZew"}]},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"0.0.2":{"name":"bossy","description":"Command line options parser","version":"0.0.2","repository":{"type":"git","url":"git://github.com/hapijs/bossy"},"main":"index","keywords":["cli","command line","options","parser"],"engines":{"node":">=0.10.30"},"dependencies":{"hoek":"2.x.x"},"devDependencies":{"lab":"4.x.x"},"scripts":{"test":"make test-cov"},"licenses":[{"type":"BSD","url":"http://github.com/hapijs/bossy/raw/master/LICENSE"}],"contributors":[{"name":"Eran Hammer","email":"eran@hammer.io","url":"http://hueniverse.com"},{"name":"Wyatt Preul","email":"wpreul@gmail.com","url":"http://jsgeek.com"}],"gitHead":"8268286225d9160c08fe97adbbfef3635629b991","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy","_id":"bossy@0.0.2","_shasum":"2ad1b7cf1b1516d6f9a329967e9aba612da16d4a","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"wpreul@gmail.com"},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"}],"dist":{"shasum":"2ad1b7cf1b1516d6f9a329967e9aba612da16d4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-0.0.2.tgz","integrity":"sha512-uZJXkIMxU0GbkUi1EUer+RBCY6eQ3XNFkecVM3FiBs+yEpp6aGXi9bvekrPqgmpMAnu9wwuL8j1ubz6dOqxt9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUVqw0q1HvmCIGa4gO2Hxya+/+UNs/S/xOaDBLC3+YNAIgdRRXxDSQBQl5cOmMg62IX3lckUaqxrrKlcSV1U2lC3s="}]},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"1.0.0":{"name":"bossy","description":"Command line options parser","version":"1.0.0","repository":{"type":"git","url":"git://github.com/hapijs/bossy"},"main":"index","keywords":["cli","command line","options","parser"],"engines":{"node":">=0.10.30"},"dependencies":{"hoek":"2.x.x"},"devDependencies":{"lab":"4.x.x"},"scripts":{"test":"make test-cov"},"licenses":[{"type":"BSD","url":"http://github.com/hapijs/bossy/raw/master/LICENSE"}],"contributors":[{"name":"Eran Hammer","email":"eran@hammer.io","url":"http://hueniverse.com"},{"name":"Wyatt Preul","email":"wpreul@gmail.com","url":"http://jsgeek.com"}],"gitHead":"550c94a124f43c852bc9042c420379e113219a8c","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy","_id":"bossy@1.0.0","_shasum":"90cc53fcf989cd8e3b00b787704ff14a3037446f","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"wpreul@gmail.com"},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"}],"dist":{"shasum":"90cc53fcf989cd8e3b00b787704ff14a3037446f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-1.0.0.tgz","integrity":"sha512-qv9bkhirTG8N3Fgwx/PKsVAXP8YQQqja1lmN+ul3e3NBTTYAHviSjtxcU86kAJdHFgcyXPk06M4he2vuZb8AeQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJ5Ji40L3V0wc7jv4irQO1Scb2QtDQm+mcQwEbJ9rhPgIgcXf8m5fSkosF4HPJcV46GTMAh0DJa92UWkUM2xwlRJk="}]},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"1.0.1":{"name":"bossy","description":"Command line options parser","version":"1.0.1","repository":{"type":"git","url":"git://github.com/hapijs/bossy"},"main":"index","keywords":["cli","command line","options","parser"],"engines":{"node":">=0.10.30"},"dependencies":{"hoek":"2.x.x"},"devDependencies":{"lab":"4.x.x"},"scripts":{"test":"make test-cov"},"licenses":[{"type":"BSD","url":"http://github.com/hapijs/bossy/raw/master/LICENSE"}],"contributors":[{"name":"Eran Hammer","email":"eran@hammer.io","url":"http://hueniverse.com"},{"name":"Wyatt Preul","email":"wpreul@gmail.com","url":"http://jsgeek.com"}],"gitHead":"bd78b38f942568a951326f12318725c5924baa68","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy","_id":"bossy@1.0.1","_shasum":"62ca604c770f48289cee25065f9b86f6507755af","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"wpreul@gmail.com"},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"}],"dist":{"shasum":"62ca604c770f48289cee25065f9b86f6507755af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-1.0.1.tgz","integrity":"sha512-IKG2O62Fv/riLysKei8ZfqMkvxIyw1pj6Ya1TW4rGvIkQoilEDJ/SRIm2oMBg7RAg4qumzdR5ZaSKfjKtp/1RA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDiCKSET1l6hupnsyLA+FhrP7pmFdwcozfxdf2slqUVVgIhAOvy06b8MNMK5ZDCdTdEY98UdVajbifJNH0heDvui53I"}]},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"1.0.2":{"name":"bossy","description":"Command line options parser","version":"1.0.2","repository":{"type":"git","url":"git://github.com/hapijs/bossy"},"main":"index","keywords":["cli","command line","options","parser"],"engines":{"node":">=0.10.30"},"dependencies":{"hoek":"2.x.x"},"devDependencies":{"lab":"4.x.x"},"scripts":{"test":"make test-cov"},"licenses":[{"type":"BSD","url":"http://github.com/hapijs/bossy/raw/master/LICENSE"}],"contributors":[{"name":"Eran Hammer","email":"eran@hammer.io","url":"http://hueniverse.com"},{"name":"Wyatt Preul","email":"wpreul@gmail.com","url":"http://jsgeek.com"}],"gitHead":"92c6a6723877aca7f3eabc9a4bbab3d1af7f7eda","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy","_id":"bossy@1.0.2","_shasum":"07d7191cd6607a329402823cc72b8f3349cbe827","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"wpreul@gmail.com"},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"},{"name":"anonymous","email":"arbretz@gmail.com"}],"dist":{"shasum":"07d7191cd6607a329402823cc72b8f3349cbe827","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-1.0.2.tgz","integrity":"sha512-Y5pZnyL66WVXwOWJp8SOf/c0N7ZkH8NopjpHDl9rj5XXRAJ9SYUr4fY/18OsMeO4wGbZ/HEs7bwi8Ztw8NRRcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDPJfJ3Qt1nfd/5IiKXPVGatC4ta8aGxru9Zv08zsdKfwIhAOQ54NgJpy2+S3kup5ntgB64F9B/NOuxJhk5YD5aQwuT"}]},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"1.0.3":{"name":"bossy","description":"Command line options parser","version":"1.0.3","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"index","keywords":["cli","command line","options","parser"],"engines":{"node":">=0.10.30"},"dependencies":{"hoek":"2.x.x"},"devDependencies":{"lab":"5.x.x","code":"1.x.x"},"scripts":{"test":"make test-cov"},"licenses":[{"type":"BSD","url":"http://github.com/hapijs/bossy/raw/master/LICENSE"}],"gitHead":"fe01bf21d2f47b5f4c1525d78125a584c95f74ad","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@1.0.3","_shasum":"a7d2478ae0c2df75f47098b9bad7bd641eed5faf","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"alunassertiva@gmail.com"},"dist":{"shasum":"a7d2478ae0c2df75f47098b9bad7bd641eed5faf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-1.0.3.tgz","integrity":"sha512-SClh/uGtcbrVZakPioQTIHBJryzG4zlY0IQSNZ/dbxkVfWXXbzFNC6mgNCc4lDDamCSzUxYXVQWz+xIyERATpw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdFOnB3f0hAR9yyQbPN1vT7B2GvIep4ieNXejBHHHZ/gIhALbboZHUW+EgYBdunEI6kGDYsLYKJpZx7i6v6imoMjfe"}]},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"},{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"alunassertiva@gmail.com"}],"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"2.0.0":{"name":"bossy","description":"Command line options parser","version":"2.0.0","repository":{"type":"git","url":"git://github.com/hapijs/bossy"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=0.10.30"},"dependencies":{"hoek":"2.x.x","joi":"6.x.x"},"devDependencies":{"lab":"5.x.x","code":"1.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"5dfd8e532534d21ff7bc65f964ec3b875861ea38","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy","_id":"bossy@2.0.0","_shasum":"e9281d3c6abba38d210067349ef6c4f5c479e514","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"alunassertiva@gmail.com"},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"},{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"alunassertiva@gmail.com"}],"dist":{"shasum":"e9281d3c6abba38d210067349ef6c4f5c479e514","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-2.0.0.tgz","integrity":"sha512-8oZ7IKET0V+qAVnJInOfhnwr2LEAPsL/GwX/C95+eTRrrY7WnI+TmiJO4ADtKHhtzKo77y7yZbg1Y8dxpet22A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEUu5jAMWB8XJ0KsVfj9ISdw32EKo0W+fSjwfEKUqY4oAiAhldjoFxndSbkIOdtF/zRbcuSy1ll7AziIN3NJYlYIqQ=="}]},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"2.0.1":{"name":"bossy","description":"Command line options parser","version":"2.0.1","repository":{"type":"git","url":"git://github.com/hapijs/bossy"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=0.10.30"},"dependencies":{"hoek":"2.x.x","joi":"6.x.x"},"devDependencies":{"lab":"5.x.x","code":"1.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"3de9a1a04153300dee56f8a0fe00c99ea91ac8b2","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy","_id":"bossy@2.0.1","_shasum":"b37d8d8d2492caa511708357ac1fc8c3386f3b60","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"alunassertiva@gmail.com"},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"},{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"alunassertiva@gmail.com"}],"dist":{"shasum":"b37d8d8d2492caa511708357ac1fc8c3386f3b60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-2.0.1.tgz","integrity":"sha512-7tF3Rk/e0YoOEsv4Mf+JyvMasFVgVY7sBqrJkcIycNPBuJyAHLw8W2KtAPtRYn6xeVkYu01r/GNxwGjf5eNhvQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDTXmgmrkLTKNo7r8we6kUKBHk9bTl7qVlZbrdX+R6UnwIgcerhNEH/yCTvAY7UVaYTLZQUdV18MpTfETyCpISY9+w="}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/bossy-2.0.1.tgz_1455305210547_0.5252308489289135"},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"3.0.0":{"name":"bossy","description":"Command line options parser","version":"3.0.0","repository":{"type":"git","url":"git://github.com/hapijs/bossy"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=4.0"},"dependencies":{"hoek":"2.x.x","joi":"6.x.x"},"devDependencies":{"code":"2.x.x","lab":"10.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"04557c6ecaa3a2d2e8ce364435d5e6a6414dc14c","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy","_id":"bossy@3.0.0","_shasum":"9fcc6aa97af7094403fa4e3d6966335d9978d250","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"alunassertiva@gmail.com"},"maintainers":[{"name":"anonymous","email":"wpreul@gmail.com"},{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"alunassertiva@gmail.com"}],"dist":{"shasum":"9fcc6aa97af7094403fa4e3d6966335d9978d250","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-3.0.0.tgz","integrity":"sha512-amL2skM3II+o0JlK9UQ0hNuSD0EZk7AfaCQ7KA2V+BOjR9BkFK3UlbAln1JSxO+WKILSQKD7HhpiWSVr3/I7dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF2VdsbCb0Ku7SJRIdlF7gZE2yYZZDtKj0444iXC2axXAiEAyMuWvAcdGvK5aXeuNGxwxy5HFmyBdsHKvwbuaRfcTVY="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bossy-3.0.0.tgz_1461875492207_0.9942992164287716"},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"3.0.1":{"name":"bossy","description":"Command line options parser","version":"3.0.1","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=4.0"},"dependencies":{"hoek":"4.x.x","joi":"9.x.x"},"devDependencies":{"code":"3.x.x","lab":"10.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"fdfa106d1e7a93c00ed0f87f0babfdde6f59aa92","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@3.0.1","_shasum":"85a73448b3c230950d2419996e5ea30d703a432c","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"shasum":"85a73448b3c230950d2419996e5ea30d703a432c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-3.0.1.tgz","integrity":"sha512-d5hUTavcwVQQuQtR+5aJhFvIuYmn+b5Cj8/beNI5uleVphG6H5fobBQ+T6rQ7boiVoJV3K/UWBcV8qlWlB9CDg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD1Vf66v3kg0QC/deUDfiODbeObvnxqteNJ2x5+B0Ky+QIgSJbcMhhj4r4wtORPWvfXNwj8ASM/DTimOhyu8qMHsJ4="}]},"maintainers":[{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"alunassertiva@gmail.com"},{"name":"anonymous","email":"wpreul@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bossy-3.0.1.tgz_1469819528182_0.035215711453929543"},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"3.0.2":{"name":"bossy","description":"Command line options parser","version":"3.0.2","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=4.0"},"dependencies":{"hoek":"4.x.x","joi":"9.x.x"},"devDependencies":{"code":"3.x.x","lab":"10.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"2f88358514c497a283ccaf8520b02e3cc3893252","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@3.0.2","_shasum":"87fe996e6039060fd91b8d07ba097c384656876b","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"alunassertiva@gmail.com"},"maintainers":[{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"alunassertiva@gmail.com"},{"name":"anonymous","email":"wpreul@gmail.com"}],"dist":{"shasum":"87fe996e6039060fd91b8d07ba097c384656876b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-3.0.2.tgz","integrity":"sha512-Kd+jycQyAgZKKuqydAF5Eq18Q5Nn63b1Cm5PlVe58+41oxQHHxP3t36bNUwv+Qi1gU138v+AZYs2AubL3YlDZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC+3x8uohUVw3ZxV9+Dfx7f9RYm/aMV+NNPkY0F9+b76AiEA9uhqXO3jNPlbl4aRaQ2IhJX4Z9vAkYmBjtCeqd/HaJw="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bossy-3.0.2.tgz_1476826763351_0.4199452924076468"},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"3.0.3":{"name":"bossy","description":"Command line options parser","version":"3.0.3","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=4.0.0"},"dependencies":{"hoek":"4.x.x","joi":"10.x.x"},"devDependencies":{"code":"4.x.x","lab":"11.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"435dd36266e98d2b9624c25f31610b9cd03e9901","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@3.0.3","_shasum":"2ae02c731f80631a2a99b90f848167bf0d449115","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"shasum":"2ae02c731f80631a2a99b90f848167bf0d449115","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-3.0.3.tgz","integrity":"sha512-O/Bdg5k5+/FLEQrG4XwEQw1vojMvyM7WTF1Wi49W+bhAAYIeTNMdfcOissj3gtA2H9cdwq8XjvocJtQNPcOkWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG8FZ6g4HVp0kfP9h+Vy/abwt+dMajxdTcKdQd9VCtEHAiEAmeS0GshPPz+BqnIJ4ftw5RrqpCIt37IcAENeBZU8QxI="}]},"maintainers":[{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"alunassertiva@gmail.com"},{"name":"anonymous","email":"wpreul@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bossy-3.0.3.tgz_1480563706680_0.03957563894800842"},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"3.0.4":{"name":"bossy","description":"Command line options parser","version":"3.0.4","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=4.0.0"},"dependencies":{"hoek":"4.x.x","joi":"10.x.x"},"devDependencies":{"code":"4.x.x","lab":"11.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"1237cfc3d7ab8839d4035e36481ef276adb5a7b2","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@3.0.4","_shasum":"f9ae9f26e81b41a318f4ee0d83686e4a5c2507b9","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.0.0","_npmUser":{"name":"anonymous","email":"alunassertiva@gmail.com"},"maintainers":[{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"alunassertiva@gmail.com"},{"name":"anonymous","email":"wpreul@gmail.com"}],"dist":{"shasum":"f9ae9f26e81b41a318f4ee0d83686e4a5c2507b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-3.0.4.tgz","integrity":"sha512-kmr2xDwDRb/wQb5gLv/tFU5po4o/wqpoC+PkyTR0f96PMKoUqZJBN44Uurk6T+y1+Em46PYATWIagcPTcU0Zsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwEM4dnLfR/bDdeCoQOhIRpXhVEr63+BeyEA0vdVAhcgIhAPmNA5pNV/8YzYKq1pFE0lfIEnoN30MOCHO0X42vk5n0"}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bossy-3.0.4.tgz_1483036981201_0.8139927128795534"},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"4.0.0":{"name":"bossy","description":"Command line options parser","version":"4.0.0","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=8.7.0"},"dependencies":{"hoek":"5.x.x","joi":"13.x.x"},"devDependencies":{"code":"5.x.x","lab":"14.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"cfdf14b854395cc1502086f56e0e7b76543cc0fa","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@4.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"integrity":"sha512-iMl2/lXpLs7Ka++lIBsS2rB5z7upiNZgJhm0DpiQ91+iydj48osKK/3PcOE5WHFWDi1ptoMV9Q/X3DkkOhuKrA==","shasum":"c0f6aab5dab5bc7643aa48d6284e8e5ba05b96bc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-4.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGCWBE8U0aSYM3vg1fLOeRhZO8OBYXh+UDo4SL4LIbe3AiAdB682pm/gtsN6y0N89A6t1Wt4yxSIJxmbfhxX2eCsyg=="}]},"maintainers":[{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"alunassertiva@gmail.com"},{"name":"anonymous","email":"wpreul@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/bossy-4.0.0.tgz_1508787666095_0.20522444299422204"},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"4.0.1":{"name":"bossy","description":"Command line options parser","version":"4.0.1","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=8.9.0"},"dependencies":{"boom":"7.x.x","hoek":"5.x.x","joi":"13.x.x"},"devDependencies":{"code":"5.x.x","lab":"15.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"c28a6f430591185a773a3c17fdf9b9db3f6ed7d4","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@4.0.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"integrity":"sha512-IrXZdXnDrjfk9ZVtnnmehlcTGK/KRqUJuNZJteMGU2/cJdXC6yWf2yhkAAbAgjOTsJJHXdlYloTeFH1ZgRNllw==","shasum":"2a57c904988ca869954f2060b96fa0ecb12262ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-4.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB/KUvnxKDPruhuPs5xTvYVpfFUkmMaR8G6vHJM2g1FeAiA3tUlPo85ApVqLgEYxhYAUdxIF+jc6XDSqiwxH5atTKA=="}]},"maintainers":[{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"alunassertiva@gmail.com"},{"name":"anonymous","email":"wpreul@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/bossy-4.0.1.tgz_1509691592982_0.8817007984034717"},"directories":{},"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"4.0.2":{"name":"bossy","description":"Command line options parser","version":"4.0.2","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=8.12.0"},"dependencies":{"boom":"7.x.x","hoek":"5.x.x","joi":"14.x.x"},"devDependencies":{"code":"5.x.x","lab":"17.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"b51f97de7ed810726b15b3abaca78b56161b25ea","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@4.0.2","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"integrity":"sha512-FkMsGa4P7SNod3K1qlNKs5R+cN/EowJNvqqgN0V10gfWSsMBSU0gjJt9N8ty0JAE/wnxhj4oFxWazqAuIw0yNQ==","shasum":"e37dfe45082d3ce4d20d41332b40b2a67e3fe9b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-4.0.2.tgz","fileCount":6,"unpackedSize":15483,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2ThrCRA9TVsSAnZWagAA6gQP/iI3fZu7jecziaD3keY7\nbQHd7vo+bXcW02nKXdaB+7NpiT49ho5rvDVwZoapQNyDhghYFnK1pE9FiOgU\nIEZcTwLSbcnGsdNn7A4u2lcl3LJMJnz8LwrOl2flfwDdlDGzEQNNVSvJDa8j\nUyPXPxgJHQjjXQcDzI24p/TG256zKPI+bpEFRLIYSinJbQ0kAh7A5GnVlb0n\nO8mb45+X0tT4AQGEb73wUG0jLmxy0gMO9VD1pFWPVeGnGK0Gt+Y5HHHu9AlN\ny7oB1z4u1bmBpTJWdBRXSUmaxVy1a20OMKvYZkafBsxzm4Wz2eNbiiaeIlvb\niP4wiExUh3JGp+XPrBzVSd1TsvVSzWK/KoOaIqb5rXafJt3f9QZHlB+HLvoD\nOg3cV/WKTEnGjrdi3XumVuWjxwntKinfD6dLi3TMkDwp/p2YudwKzbVsbpOV\nvR3ygOfZVNu+YxDgrwfO3UN34RbHm78BPM39KHJWEf8H799aOiwGt8t5xoJg\nWtHjyBscKIehH80BXEV4ya9IqQzlbEa8fhUGiFu8RSAGhC0gzJbMHbvJD+lm\nHd62GEPJlkoFIfeXE9cCp8FQY0vcETjbCdDYr/igNxYTvlzg9Zq3JyCir87s\nXYW6S3ZckkG68+9ZBWvGI6FMZlw1kyoNUfjU5fzVqkYCYmXJG5xrI5/obBka\nMlJk\r\n=hMH1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCnT9jt5mAjI/Ut/YMNgofziByt+9yg3ciU628GS47CuwIgTN402YJvv8EkfmLMPkrQg1Bmv0LIKENbSL/078uHPtw="}]},"maintainers":[{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"alunassertiva@gmail.com"},{"name":"anonymous","email":"wpreul@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/bossy_4.0.2_1540962410729_0.8797292616961923"},"_hasShrinkwrap":false,"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."},"4.0.3":{"name":"bossy","description":"Command line options parser","version":"4.0.3","repository":{"type":"git","url":"git://github.com/hapijs/bossy.git"},"main":"lib/index.js","keywords":["cli","command line","options","parser"],"engines":{"node":">=8.12.0"},"dependencies":{"boom":"7.x.x","hoek":"6.x.x","joi":"14.x.x"},"devDependencies":{"code":"5.x.x","lab":"17.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"b2632698f4ded6988070d41926f0971d49ea5a48","bugs":{"url":"https://github.com/hapijs/bossy/issues"},"homepage":"https://github.com/hapijs/bossy#readme","_id":"bossy@4.0.3","_npmVersion":"6.4.1","_nodeVersion":"8.12.0","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"integrity":"sha512-2Hr2cgtwNi/BWIxwvrr3UbwczPV8gqoHUS8Wzuawo+StFNHDlj/7HGlETh1LX6SqMauBCU8lb+lLBuIFpBNuTA==","shasum":"52ecc3f3fc3b35799970f77871df024c41d19c39","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/bossy/-/bossy-4.0.3.tgz","fileCount":6,"unpackedSize":15579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2qu5CRA9TVsSAnZWagAAdjwP/RQkzWKnbRQ5VZGBgn7H\nVmh54CvX1qudZGxJackodvAtJwFJS0wPGp8S1RdrPSXQJyUi78a7YTqTddBj\nvpo7oKw757b9/1R6LtjexpLgtPKoV3cD1aOoF1gwPIVyVmVIkqUqKnR6aPyH\n/6JLJenBgy5gMbsvrsnBnoL6hBJ5SaWs19cslQqjTWWpG5fB8XHj98/TE0VO\nl4XmauupcUYQLgAqHL7PxypyeIU0sDStWafcukxjM34m6jnFskQP5Sy2DGU9\n7YfTjylvl4W5HEjaETNvip1u+vmqqStLTk/iRaZ0LZ/aHy/Zy0t2bDpeoRNM\n9b+bRdzcpIglxGqOkTvZ4uYqtijRo3iaRhxOj6kRr3gQ3zDDu6idRVKgU93o\n/v5/VdapipOArFkxY2lX19bnaS0NPLQzDrIpZqb9uUWfVz78/0vCzXiIF00b\n9/3Ip2nsFHZf/TXEl4b01g6KGxLr/aUay+uM+fGaWpefKL0aX2DEWCpEnpSy\nb5kQcTTz745OGf0WVV70zi36u759EXdsQyrP4NbZcyKALS3xFBqFnuXXqSbX\nihljzDlMYBDXYcCOYAOwhz6hhKl89V4Cr67BHKEUbcy+Z469lDBxaZO3pLMo\nkC9rpEDR+r5u6sMn0oGUBP+acZvence36WovijlPtE4M7US3EWfYudpj3GHe\n5XNp\r\n=y2TU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUuCmrEOPzPkHzwgsatibw+40MeoFwWbGkIgZZlkWtGwIgG9Ad49r+A4ix/9ou8zRaf3UTHWoGX3yzk91qIzmkw+0="}]},"maintainers":[{"name":"anonymous","email":"arbretz@gmail.com"},{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"alunassertiva@gmail.com"},{"name":"anonymous","email":"wpreul@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/bossy_4.0.3_1541057464388_0.797191838313513"},"_hasShrinkwrap":false,"deprecated":"This module has moved and is now available at @hapi/bossy. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues."}},"name":"bossy","time":{"modified":"2023-12-01T08:26:25.147Z","created":"2014-09-10T18:23:35.762Z","0.0.1":"2014-09-10T18:23:35.762Z","0.0.2":"2014-09-11T02:29:32.630Z","1.0.0":"2014-09-11T23:35:52.311Z","1.0.1":"2014-09-12T15:41:17.987Z","1.0.2":"2014-09-15T18:59:28.739Z","1.0.3":"2015-05-29T21:44:12.025Z","2.0.0":"2015-07-05T20:53:47.504Z","2.0.1":"2016-02-12T19:26:52.581Z","3.0.0":"2016-04-28T20:31:34.262Z","3.0.1":"2016-07-29T19:12:09.964Z","3.0.2":"2016-10-18T21:39:25.458Z","3.0.3":"2016-12-01T03:41:46.903Z","3.0.4":"2016-12-29T18:43:01.876Z","4.0.0":"2017-10-23T19:41:06.178Z","4.0.1":"2017-11-03T06:46:33.099Z","4.0.2":"2018-10-31T05:06:50.855Z","4.0.3":"2018-11-01T07:31:04.605Z"},"readmeFilename":"README.md","homepage":"https://github.com/hapijs/bossy#readme"}