{"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","binary","command","inverse","opposite","invert","switch","construct","parse","parser","argv"],"dist-tags":{"latest":"8.1.0"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","readme":"# dargs\n\n> Reverse [`minimist`](https://github.com/substack/minimist). Convert an object of options into an array of command-line arguments.\n\nUseful when spawning command-line tools.\n\n## Install\n\n```\n$ npm install dargs\n```\n\n## Usage\n\n```js\nimport dargs from 'dargs';\n\nconst object = {\n\t_: ['some', 'option'],          // Values in '_' will be appended to the end of the generated argument list\n\t'--': ['separated', 'option'],  // Values in '--' will be put at the very end of the argument list after the escape option (`--`)\n\tfoo: 'bar',\n\thello: true,                    // Results in only the key being used\n\tcake: false,                    // Prepends `no-` before the key\n\tcamelCase: 5,                   // CamelCase is slugged to `camel-case`\n\tmultiple: ['value', 'value2'],  // Converted to multiple arguments\n\tpieKind: 'cherry',\n\tsad: ':('\n};\n\nconst excludes = ['sad', /.*Kind$/];  // Excludes and includes accept regular expressions\nconst includes = ['camelCase', 'multiple', 'sad', /^pie.*/];\nconst aliases = {file: 'f'};\n\nconsole.log(dargs(object, {excludes}));\n/*\n[\n\t'--foo=bar',\n\t'--hello',\n\t'--no-cake',\n\t'--camel-case=5',\n\t'--multiple=value',\n\t'--multiple=value2',\n\t'some',\n\t'option',\n\t'--',\n\t'separated',\n\t'option'\n]\n*/\n\nconsole.log(dargs(object, {excludes, includes}));\n/*\n[\n\t'--camel-case=5',\n\t'--multiple=value',\n\t'--multiple=value2'\n]\n*/\n\n\nconsole.log(dargs(object, {includes}));\n/*\n[\n\t'--camel-case=5',\n\t'--multiple=value',\n\t'--multiple=value2',\n\t'--pie-kind=cherry',\n\t'--sad=:('\n]\n*/\n\n\nconsole.log(dargs({\n\tfoo: 'bar',\n\thello: true,\n\tfile: 'baz'\n}, {aliases}));\n/*\n[\n\t'--foo=bar',\n\t'--hello',\n\t'-f', 'baz'\n]\n*/\n```\n\n## API\n\n### dargs(object, options?)\n\n#### object\n\nType: `object`\n\nObject to convert to command-line arguments.\n\n#### options\n\nType: `object`\n\n##### excludes\n\nType: `Array<string | RegExp>`\n\nKeys or regex of keys to exclude. Takes precedence over `includes`.\n\n##### includes\n\nType: `Array<string | RegExp>`\n\nKeys or regex of keys to include.\n\n##### aliases\n\nType: `object`\n\nMaps keys in `object` to an aliased name. Matching keys are converted to arguments with a single dash (`-`) in front of the aliased key and the value in a separate array item. Keys are still affected by `includes` and `excludes`.\n\n##### useEquals\n\nType: `boolean`\\\nDefault: `true`\n\nSetting this to `false` makes it return the key and value as separate array items instead of using a `=` separator in one item. This can be useful for tools that doesn't support `--foo=bar` style flags.\n\n```js\nimport dargs from 'dargs';\n\nconsole.log(dargs({foo: 'bar'}, {useEquals: false}));\n/*\n[\n\t'--foo', 'bar'\n]\n*/\n```\n\n##### shortFlag\n\nType: `boolean`\\\nDefault: `true`\n\nMake a single character option key `{a: true}` become a short flag `-a` instead of `--a`.\n\n```js\nimport dargs from 'dargs';\n\nconsole.log(dargs({a: true}));\n//=> ['-a']\n\nconsole.log(dargs({a: true}, {shortFlag: false}));\n//=> ['--a']\n```\n\n##### ignoreTrue\n\nType: `boolean`\\\nDefault: `false`\n\nExclude `true` values. Can be useful when dealing with argument parsers that only expect negated arguments like `--no-foo`.\n\n##### ignoreFalse\n\nType: `boolean`\\\nDefault: `false`\n\nExclude `false` values. Can be useful when dealing with strict argument parsers that throw on unknown arguments like `--no-foo`.\n\n##### allowCamelCase\n\nType: `boolean`\\\nDefault: `false`\n\nBy default, camel-cased keys will be hyphenated. Enabling this will bypass the conversion process.\n\n```js\nimport dargs from 'dargs';\n\nconsole.log(dargs({fooBar: 'baz'}));\n//=> ['--foo-bar', 'baz']\n\nconsole.log(dargs({fooBar: 'baz'}, {allowCamelCase: true}));\n//=> ['--fooBar', 'baz']\n```\n\n---\n\n<div align=\"center\">\n\t<b>\n\t\t<a href=\"https://tidelift.com/subscription/pkg/npm-dargs?utm_source=npm-dargs&utm_medium=referral&utm_campaign=readme\">Get professional support for this package with a Tidelift subscription</a>\n\t</b>\n\t<br>\n\t<sub>\n\t\tTidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.\n\t</sub>\n</div>\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"users":{"passy":true,"leesei":true,"manishrc":true,"jsw0528":true,"g13013":true,"itonyyo":true,"eijs":true,"prometheas":true,"chrisyipw":true,"heartnett":true,"xuu":true,"tdmalone":true,"zardoy":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"license":"MIT","versions":{"0.1.0":{"name":"dargs","version":"0.1.0","description":"Converts an object of options into an array of command-line arguments. Useful when calling command-line tools.","keywords":["options","arguments","args","flags","cli"],"homepage":"https://github.com/sindresorhus/dargs","bugs":"https://github.com/sindresorhus/dargs/issues","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"main":"dargs.js","repository":{"type":"git","url":"git://github.com/sindresorhus/dargs.git"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"~1.9.0"},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT"}],"files":["dargs.js"],"_id":"dargs@0.1.0","dist":{"shasum":"2364ad9f441f976dcd5fe9961e21715665a5e3c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-0.1.0.tgz","integrity":"sha512-vXbr4wzQJfmhlEZQ8iYVc1X3F10RSC1SaNAezBHXtexEdWqZJog8GcF2Eh6D7oFmveIS1d/CrBfDQ66g0JoRLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDeRUlt1cbzWE1hKRyJbh4tzBIwZ/8M6cQzelQDOkMyVwIhAMtro7i+wTEPpuQ8UWV++fU3KVxsLxY2VJPYbbS4bJ4o"}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"directories":{}},"1.0.0":{"name":"dargs","version":"1.0.0","description":"Converts an object of options into an array of command-line arguments","repository":{"type":"git","url":"git://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"0d109d7fdfb3c4455b23488d007b5e8fba676765","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@1.0.0","_shasum":"6e9fc85e0e434ed4f341257f2196dc6ecf333be9","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"6e9fc85e0e434ed4f341257f2196dc6ecf333be9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-1.0.0.tgz","integrity":"sha512-K/UhY9eAUrZ+iiULdFfgWO357ghl/ETITGuhSCKtWVsgSlEqPZEzisUKyA26+Te9zWzwdG5d+wplXHgHsvetlg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGa1ZLeJruoYziqSux2NtDP4mMh+QWGUM/9rKJr3eTFrAiEA6QvL3bjGJZzRXfK8v8Ci1SOz9kdmFavAjWsrZLgpzpk="}]},"directories":{}},"2.0.0":{"name":"dargs","version":"2.0.0","description":"Converts an object of options into an array of command-line arguments","repository":{"type":"git","url":"https://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"26bf5e94ff78ebed3d2e8e2e20e0302a9ea7883e","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@2.0.0","_shasum":"9fbfd26fa2cf7d9a7d07e33fc906f97e373ac36c","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"9fbfd26fa2cf7d9a7d07e33fc906f97e373ac36c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-2.0.0.tgz","integrity":"sha512-j2gPsH+OVRW1IDk65iNyopOpRfBWYxMWlSW6fLDXKNh9/r1Z27P9ZMsXUuZ0wb7t/mCpk3Ts9xow9FbqmgHHmw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCX5PY4Mmvx6rIPuzzh9LFOjMUvtmQAaNcaJRdZppzHkQIga7ePjL0XHW986sgn1qrXhOvlgXG8pYE2wZwflsu/j8Q="}]},"directories":{}},"2.0.1":{"name":"dargs","version":"2.0.1","description":"Converts an object of options into an array of command-line arguments","repository":{"type":"git","url":"git://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli","nopt","minimist"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@2.0.1","_shasum":"d75036aa359e85bd280a2a634e9864b0902deeaf","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"d75036aa359e85bd280a2a634e9864b0902deeaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-2.0.1.tgz","integrity":"sha512-fx0eEgKIJWvO72+hN03eLoaJZb1xqP44tuepmoPx6BWdyhfheRX54r4OvG1G0JYw1u2HAqmszzCNHeMoCZAVlQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHDauEo97G5sBsQXG0zN5T0hsJGRzcG/0vVs1tT78qPMAiBbwqfieeXxb4jgtkDmitpp+5kL11J5h3G0o4+gZyJEbQ=="}]},"directories":{}},"2.0.2":{"name":"dargs","version":"2.0.2","description":"Converts an object of options into an array of command-line arguments","repository":{"type":"git","url":"git://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli","nopt","minimist"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@2.0.2","_shasum":"9f238f298c923d76473306c8f5a32b2321c2f93f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"9f238f298c923d76473306c8f5a32b2321c2f93f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-2.0.2.tgz","integrity":"sha512-IUbDSc/ymjls21UNEmvvX3chKjKHprOUxiVd5I1HWI17geDXoLcrHjkQ23ehMgRiDEhB/89yCmvLXOCb+9qwWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCNsKY+Rne002NJYV7Nku7QmKOhTDNivPP47ZjvzGyf1gIgNwhVhDTigiuCVydRRyCug026uEytJ+Hc0jdTZUPJdUs="}]},"directories":{}},"2.0.3":{"name":"dargs","version":"2.0.3","description":"Converts an object of options into an array of command-line arguments","repository":{"type":"git","url":"git://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli","nopt","minimist"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@2.0.3","_shasum":"e9d33c9a2cedda730e0b64b7f0f8f0b669007032","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"e9d33c9a2cedda730e0b64b7f0f8f0b669007032","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-2.0.3.tgz","integrity":"sha512-ByAUuvdjNwhLzDcfrWZDtsn1XOBrVI9h9MAMlW+/AQZcZM7EWMhyYnMppGVg8S3WvG3teTIyCK8wivPF3y+RAA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICvHmk1t84PUwPiXeTkZQLb4k7NyFgqdEqFJLxs2/LZZAiEAul87Tt3+GJ4f70MKF+a5zg/TXcp//PCuAZq/KJdgLw8="}]},"directories":{}},"2.1.0":{"name":"dargs","version":"2.1.0","description":"Convert an object of options into an array of command-line arguments","repository":{"type":"git","url":"https://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli","nopt","minimist","bin","binary","command","cmd"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"e1f3e8ae83fe011a2b9ceb9aa596e2e54751e5cd","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@2.1.0","_shasum":"46c27ffab1ffb1378ef212597213719fe602bc93","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.32","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"46c27ffab1ffb1378ef212597213719fe602bc93","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-2.1.0.tgz","integrity":"sha512-CqqLtg0sIoyqegSSnBY7b4Jc9GiXBCmqj1x5i2xvTmyeGSo3bgRbTKdZr/T6MMSWLYYtR1QslRB1TUE/43Tb4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDkY3UhWFFqvvVqz3neuWDaZSELm7ViuYL6IVTJU6z37QIgM7nVsZYhP8B3iKxH6puV3vME1eaxOvg+numyw+1FTrM="}]},"directories":{}},"3.0.0":{"name":"dargs","version":"3.0.0","description":"Convert an object of options into an array of command-line arguments","repository":{"type":"git","url":"https://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli","nopt","minimist","bin","binary","command","cmd"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"scripts":{"test":"node test.js"},"devDependencies":{"array-equal":"^1.0.0","ava":"^0.0.4"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"66813d59e542d3c224665dbf24f965fce651171e","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@3.0.0","_shasum":"a13060200bcca826b3ae45029f448a84b4638cbb","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"a13060200bcca826b3ae45029f448a84b4638cbb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-3.0.0.tgz","integrity":"sha512-stafqw6DaIiOYdRf5fsaBFMj3idP17sGNBYdlClbANzduOdRG9hFuPUjw/hJg+gGxkgO9FQ7FYfAjg013gWRwg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDu6twGA/XsBUfFpenzcX2sgrD+TWKhVCb/0J3Pdtj0UgIgXC7lIcMfFm55th1tCKW9nqQRRGO7XnWgwIx4edwSukg="}]},"directories":{}},"3.0.1":{"name":"dargs","version":"3.0.1","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","repository":{"type":"git","url":"https://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli","nopt","minimist","bin","binary","command","cmd","reverse","inverse","opposite","invert","switch","construct","parse","parser","argv"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"scripts":{"test":"node test.js"},"devDependencies":{"array-equal":"^1.0.0","ava":"^0.0.4"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"7044fed5614b4ccc40ed1a5b0dac2e22b0f70729","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@3.0.1","_shasum":"5a1f3f4332341f3f1cd10829e0df23996dfd29be","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"5a1f3f4332341f3f1cd10829e0df23996dfd29be","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-3.0.1.tgz","integrity":"sha512-HDD43XnOTI/WjaSQvk5uGJeWlB7eeldLAqKJpG/TqCbs/zehaNYh87dU8z+yWnvTSIg99Qglx8ai7eo5rMfvZw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC1RFyr0/7UUqCORa2u8s4jmOrXTidSO6Cl9O5Wf8FihwIhALmYAc3uBRVS/SIWEsHA1N+syZ92t8ufTtmlQzf4Ztee"}]},"directories":{}},"4.0.0":{"name":"dargs","version":"4.0.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","repository":{"type":"git","url":"https://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli","nopt","minimist","bin","binary","command","cmd","reverse","inverse","opposite","invert","switch","construct","parse","parser","argv"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"scripts":{"test":"node test.js"},"devDependencies":{"array-equal":"^1.0.0","ava":"^0.0.4"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"32d3d9eecd039ff4f5036625763e766d1c60ccd8","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@4.0.0","_shasum":"86620b56317224f28607084abfa82be9cab0624c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"86620b56317224f28607084abfa82be9cab0624c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-4.0.0.tgz","integrity":"sha512-E4vKRb5WLAF0kh/G9/kwmAccKYGK8FMEHWqjm5CQ2WXrf9mZQI+0Vut/gAeFXYDANjlL9cmWq5kylPprW7VeFQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGcoQqLn/ceVZuyETiErSE5PPyC1ipgYK4qib49oOj45AiEAy6u1HElQXQZnNxCISWtvhBKQl6+hzZc0VZlg5GsmSYE="}]},"directories":{}},"4.0.1":{"name":"dargs","version":"4.0.1","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"keywords":["options","arguments","args","flags","cli","nopt","minimist","bin","binary","command","cmd","reverse","inverse","opposite","invert","switch","construct","parse","parser","argv"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"scripts":{"test":"node test.js"},"dependencies":{"number-is-nan":"^1.0.0"},"devDependencies":{"array-equal":"^1.0.0","ava":"^0.0.4"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"2b70c92a4f540f693760be1ffaa8c77785b82698","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@4.0.1","_shasum":"172ad43156f7837f85ec22e9dd7c46a6c093ef19","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.3","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"dist":{"shasum":"172ad43156f7837f85ec22e9dd7c46a6c093ef19","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-4.0.1.tgz","integrity":"sha512-tsz7KLKdB/CC4ysSqsGn9AShwWl2WnJ08hszDbHNYjLcSyoWrw1CYVRCl15BqWE7n25PXd5HPVm3TczCV1Yb2Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCeBjk+tTepgir23Rxx5Ido5GeIPF8P54CUJO0sHba37gIhAOYYZjtDUpatg+MZKJVAWlVnL7vIBTzc7eNBoXDbeGf0"}]},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"kevinmartensson@gmail.com"}],"directories":{}},"4.1.0":{"name":"dargs","version":"4.1.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","repository":{"type":"git","url":"https://github.com/sindresorhus/dargs"},"keywords":["options","arguments","args","flags","cli","nopt","minimist","bin","binary","command","cmd","reverse","inverse","opposite","invert","switch","construct","parse","parser","argv"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"scripts":{"test":"xo && ava"},"dependencies":{"number-is-nan":"^1.0.0"},"devDependencies":{"array-equal":"^1.0.0","ava":"*","xo":"*"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"048f7ac4167d72c1462d9ab1a94d121d940789c9","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs","_id":"dargs@4.1.0","_shasum":"03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"dist":{"shasum":"03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-4.1.0.tgz","integrity":"sha512-jyweV/k0rbv2WK4r9KLayuBrSh2Py0tNmV7LBoSMH4hMQyrG8OPyIOWB2VEx4DJKXWmK4lopYMVvORlDt2S8Aw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGv1jP9PSYRtF+zK4zKFSnVc/kHwMWWY/6wVNhs9QcrBAiEA60jD2+vmi19raGh1G2+imXgFNZwUZFESvoxP/kC0FWw="}]},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"kevinmartensson@gmail.com"}],"directories":{}},"5.0.0":{"name":"dargs","version":"5.0.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","bin","binary","command","cmd","inverse","opposite","invert","switch","construct","parse","parser","argv"],"devDependencies":{"ava":"*","xo":"*"},"xo":{"esnext":true},"gitHead":"d04c36dfb41761f729c7d3e155038c5bf53927d5","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@5.0.0","_shasum":"69689d5b302f9dd694a9c45f7325fb55eee6f5d8","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"dist":{"shasum":"69689d5b302f9dd694a9c45f7325fb55eee6f5d8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-5.0.0.tgz","integrity":"sha512-bo17Cs1in38YddJtkZx3rQujXUx9PZj70zho+x1/4LFz6+fOx3KA5D3QPegtzB9HCEHkHP5+GWY2UQDNsPJANQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCrnom8j9xYrChP+eemixaUNsbRa0gB/NYmMmnjYpomeAIgQkqqN2h64jNhgbSxLxTqeNWZGxmt+4ztIH04FLGS//w="}]},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dargs-5.0.0.tgz_1467327200331_0.7406640162225813"},"directories":{}},"5.0.1":{"name":"dargs","version":"5.0.1","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","bin","binary","command","cmd","inverse","opposite","invert","switch","construct","parse","parser","argv"],"devDependencies":{"ava":"*","xo":"*"},"xo":{"esnext":true},"gitHead":"964da885ebf48e0323a1553839ad5c1bee7bf11e","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@5.0.1","_shasum":"383f60efa682d4653fc3e85ace77eecb613a3f31","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"dist":{"shasum":"383f60efa682d4653fc3e85ace77eecb613a3f31","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-5.0.1.tgz","integrity":"sha512-zIkLHpnzwsvC7l1BH+BpQn6GfJbIo2i1TcdQsaO4TV8yJNEIBcAha9zd6O8V2WOHVs41NAZ43LmWP6qKwd0+6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDjXoyyoWjcSXVnnqIJ7nSpIcpIsBL0rc707cH9ZGrewgIgeMp4PGRsNpTMGSQEj810TsiMzZLj2CRzzlpwOO7HVeo="}]},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dargs-5.0.1.tgz_1467327336671_0.8395104785449803"},"directories":{}},"5.1.0":{"name":"dargs","version":"5.1.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","bin","binary","command","cmd","inverse","opposite","invert","switch","construct","parse","parser","argv"],"devDependencies":{"ava":"*","xo":"*"},"xo":{"esnext":true},"gitHead":"6f796ea830d0a6b1d75592f6c28ac619339f2965","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@5.1.0","_shasum":"ec7ea50c78564cd36c9d5ec18f66329fade27829","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"dist":{"shasum":"ec7ea50c78564cd36c9d5ec18f66329fade27829","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-5.1.0.tgz","integrity":"sha512-Mr5OxT76pdJv7BbLq3hF1gSP8zxlCyDA1afj2Iab2MPKmdAKV+aKGC8YJv6cT8ItdFXAf798JJQD7jmbWZcYTQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0ZeKhIu7VfR7v3FrCpbVhyKxYoc7lhulhZVW1HNJWZgIhALR3cWvxLL6XaRjXxMtjSDf3CSQripIiHb/zJVrGcS5f"}]},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dargs-5.1.0.tgz_1474564238125_0.8079354558140039"},"directories":{}},"6.0.0":{"name":"dargs","version":"6.0.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","bin","binary","command","cmd","inverse","opposite","invert","switch","construct","parse","parser","argv"],"devDependencies":{"ava":"*","xo":"*"},"gitHead":"926509985730c9d233b03fc8bf753f7b4208ff4b","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@6.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-6lJauzNaI7MiM8EHQWmGj+s3rP5/i1nYs8GAvKrLAx/9dpc9xS/4seFb1ioR39A+kcfu4v3jnEa/EE5qWYnitQ==","shasum":"da35d4633cd821de868f97d645f8d1f9b0353a24","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-6.0.0.tgz","fileCount":4,"unpackedSize":6974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCTSOCRA9TVsSAnZWagAAf3QQAJtvHrZte1/qJ8wnN5t5\n31a6RcoKJx2AAIG+kxJZ7hj0zSm0tEJwt+vnFe+qwxw7RUOQjGPJwgqJQV9R\ncWodc3FI+Bx3iQjLnchxhLlUiWGR3nbayaZrW8SdGP5qM1LORVCaR9dTahXA\nwbYWH1+DO9L1kmEvRv7c2c5RM3V06+MiCSXBqfp9MeqvwIflwX4j2wkX76UV\nrVRMIDw4KssZgS2nQVqLpCEeexTyyHvov/das8yMx4LgBflVzfYf7VSZn1L3\nMOwbOkH9HHK4hNDl9FB4hSBXTiwmn+iIuMPOCEpcPnLzFpljD8I788dnhT6I\ncdSg8jXLezMd15efBLJAtGqym0Kb9+JKN4Qwz8r7H9leJ1zmUabn5+Jy4X+I\n6PTo5UZDjS4Pg6o8SLu0efnaBrPBcYRWhplbvqPcPnpNgi8kZLiitmC4jke8\nUp2pKgM+E+mg6RR/NfDLuoagZ/FV/+gfLxHlNFZmYC0oiJIPZqT0yXyHr7Vb\nCCkCYQYgLivRz6hp6LEAgsL1vEq0bRfk4jK9H4vqT9ee7+qBYwvQDELjTxor\nOgo3lBBFgU+y8kG3ZpSXs62tRqsB4+I7VsmoHAObEPgfkps5tt/nFEVyO7jq\nsGiYqCAfX0fZhSt3GKQtBg8paOTRDPGfB8GjMiNdi4ejc7chRu7FzXWoyzC/\no3zn\r\n=/JF1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDX4P8vroq1nQVF1rmaxbrnDq296j5TOf12EzaZ1H8YowIhALNG1xIrAoat2Z0GHmXAahgbWbMoUyOcnxxhFah7r2ic"}]},"maintainers":[{"name":"anonymous","email":"kevinmartensson@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dargs_6.0.0_1527329933419_0.13146743229601499"},"_hasShrinkwrap":false},"6.1.0":{"name":"dargs","version":"6.1.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava && tsd"},"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","bin","binary","command","cmd","inverse","opposite","invert","switch","construct","parse","parser","argv"],"devDependencies":{"ava":"^1.4.1","tsd":"^0.7.2","xo":"^0.24.0"},"gitHead":"904bba20e357f4eeb3e1ac3db8b5bfbbfd3f47b5","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@6.1.0","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-5dVBvpBLBnPwSsYXqfybFyehMmC/EenKEcf23AhCTgTf48JFBbmJKqoZBsERDnjL0FyiVTYWdFsRfTLHxLyKdQ==","shasum":"1f3b9b56393ecf8caa7cbfd6c31496ffcfb9b272","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-6.1.0.tgz","fileCount":5,"unpackedSize":10648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrt1JCRA9TVsSAnZWagAAtVMQAKN95JsvT2mngLvRSYa/\n7FrYnBDHfieH31KIJ1TiMom1am5kE4hNaM82yejrjT9PCdu/bFJy2HXmz+tU\n1QVSQimQXiNTQBAp7TX5ajM1pZa+Mt9HlB5hcCiPBuBDjQP5SHBtGwzAZuLg\nHEgknq6WOgXR0dSMWhdIUFBfTJF1sbcK0ZB49eE8DIyYyLsXaV83MXOowa+V\nxl5ErGUnflcEydURWKJ5mMf1CWrezi0UtvjpA0HjqIhnmtgcUhGADyMcBiku\nVLCFHRnW6sK/FmptrCcggoBEGtz7HdgazsI32gdWAIBf1lYKFSE2I3xEj+58\nLW0fQyu58QPJ30cGikr+hL3mSE7yJrRJnHu6p+dTlD9Af1MtzMwGyI6SVrlF\njsOED0dMgyFrd/iiyA/oO7pl9AOKazQgvYnTWwhnZ2HO16/riVRMzKVzmp9p\nxyfe+HE6H8b470YTf2Q6APDp4QQNSNXTicd7k6rqh8qQzxnfDmg6SN6nxfAx\nigUL7j3cFsoARil6xdOKL8uEeyvc++dY1WplAWG1iWlSWO3Ps0jt2Q82w/VB\njhC/c+2l2vXFZ5Ju4fNH4leSfuP2fcOc2ZRMoeGehNH8KKlVXO5rKiOYZejn\ntGD807C+KpeS0Xap0yah6T/WOczrVyEZ7pOf+pi26BPvtts+TO6Ga9aPz+OD\nUSpE\r\n=J4Zq\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDpT35KOxAXSYRLmaA0v6lnJeR5ZKdz4xHm0hAOfYZInwIhAPWmk4zeQGEAIHLbOBPucgQt6QhequuQImTWJnMTVsTW"}]},"maintainers":[{"email":"sindresorhus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dargs_6.1.0_1554963784992_0.6728548021652732"},"_hasShrinkwrap":false},"7.0.0":{"name":"dargs","version":"7.0.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && ava && tsd"},"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","binary","command","inverse","opposite","invert","switch","construct","parse","parser","argv"],"devDependencies":{"ava":"^2.1.0","tsd":"^0.7.3","xo":"^0.24.0"},"gitHead":"5f9a3f9d2d62bd1aa068b3eb7b4f66443ca52d35","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@7.0.0","_nodeVersion":"8.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==","shasum":"04015c41de0bcb69ec84050f3d9be0caf8d6d5cc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-7.0.0.tgz","fileCount":5,"unpackedSize":11548,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDiYjCRA9TVsSAnZWagAAHvEP/jG6tr/94GU3noWe/RpH\nbt+HRHYG9ikEjrXtw4QoseVWRq3kAtCz5WHzYmAhvXTPyvXwTHyRBZGUx6ku\nXb1kMflb22tR4QbbuLCSk+VmQeNzRg35wrAsq/FYCAOyq3dyGYeRkX9uCFSN\nS3+/X5sW5DQjw6UkNEFf2tlVAbbz5Vt9xZZh70yMVqyRSgDSuOHrUkEPlU5h\nAkHYhGzlAah8XfoSLR2QE5aTkW4C5q0B2gJ0kEvnIh/2F4iebwupRfE7JmRl\ni9wDTSO65ViJ0E4xqtdytq2fW63CF07H55VPan5fRa2y/OlaZT/ty/cnGims\nyGNtb+n456LMHBveBxObKZnEtzBefVAZHadRfbiOG+K4xOIJWor3oI7MXJkV\nB+LRCGqevjw0ZLPEwDjXybwKZ6+YfUCo1kHakKSoYB1L17Pz06RrWx4rp81P\nPZrRFjXA8JEjSbj6z/cuADlDg/E5G7HNXsCa6eNdOJXDgDbnpisffwfdHzDH\nbSefn7VfbKqmbGygKvl9PFYRffEoxFobqqw2H5C7zBmicMIZJbgVuEAjZATW\nDRnTp7xHpJZ+5Ewm11+C52jVrT0hLnDlZ0XDm59dTazC9ylr8vQ5/z8X5ELC\nuTZw/TZKz5d5vhA/IxeQAut9FSkVJWJ5exKsb50nS/vZ0WNpLnVqgUj92bST\nWZK8\r\n=AhQX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA5CQ0odoRWRjvNf0ycMKo4pf5+0ngMm9BYMz2uI8khxAiAdCUMz7qQMvW3PuOebygMnu55SaQBsqEj1fRYSeFFubg=="}]},"maintainers":[{"email":"sindresorhus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dargs_7.0.0_1561208354704_0.45079454158630816"},"_hasShrinkwrap":false},"8.0.0":{"name":"dargs","version":"8.0.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","engines":{"node":">=12"},"scripts":{"test":"xo && ava && tsd"},"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","binary","command","inverse","opposite","invert","switch","construct","parse","parser","argv"],"devDependencies":{"ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"b80546a5bb2ba0dcb773efdf56601889c9168f0d","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@8.0.0","_nodeVersion":"16.0.0","_npmVersion":"7.10.0","dist":{"integrity":"sha512-uNt1339Xt7lA08sO/0umb/aB7DlLwzl+fV/2bLQIu8QiZ8n4z1CWMKd5UqWF1KMAakg24uIxqklAg+WfjJtcQQ==","shasum":"e754b058167f6eb7a973fa12c60bdd5d989f7cec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-8.0.0.tgz","fileCount":5,"unpackedSize":11876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgkA/LCRA9TVsSAnZWagAA8wcP/3MMuMvX6Et+UbpiUNoe\nHgjd+xn9wiQkwqp6d1dDDe3htj9ZecvIPr7Hjg0HzLuTM6SwNQ3jfdD5Y2ma\npAb/oJdIR2Yh5YHQ4L4j4Qr/dvOOYV5bvc37GVS3Wt9asl1OwTBSw8W36S2N\nQ117ft9oI2FP/Oe6T+4miYStz2KcO7TsmqIqh/NoSPQicf3WgNCyVnX7I6fr\nVBPZYCGZWHj2Drb2E98V6t/km/6MUxntLO7lsWjofg03KyJO4SVrjjJXT8CH\nUDSSGsYVolUtaAhXbIxo3+ptxHKkXoGgwoxO//RvOtxQW5CKjOtUDFy+9syH\nBeT6PqGM4DDR5Atc9/r3UCBhCWffBnxzTbip1Ld8F1oNONl3rY4l813TFi1+\nY751txw2HgciXCa7MT4NvtB4xkzVueNK4NCXcB1qHNtTpxFp5M3DKOZ2UQwr\nLHH2pcfGrah8VA1GcCEoCfU0yQtGD4yZwwnERMB/nt/gi5CHfZVgR1qNyzfC\n++3m5vIxaTxZEGOH/+xsynZQ7NgC7vefhNM3zNvT8OxdsiML55drPhnWNQLp\n+gIl3Vt+HAxfnub7qxRyP9MPFYTF3DEI1CForeUd8+W3mdlzSuw+iC0mvFw9\ntieVdONU4g9fbWVDDtXV1nihk+VWKHvf5pjTf3nWy4BKPjzJkK6Ncw6g55Hp\nHkdY\r\n=toG7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGAWlUBuUlXv/30DKhH2CUuhQz92LMD4f32R3wrxEMQCAiAKVTAWYriBDjUTNyCjEZAtj+S0FbbnbfdaZzV5VyBwtQ=="}]},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dargs_8.0.0_1620053963357_0.8533845973652829"},"_hasShrinkwrap":false},"8.1.0":{"name":"dargs","version":"8.1.0","description":"Reverse minimist. Convert an object of options into an array of command-line arguments.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/dargs.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","engines":{"node":">=12"},"scripts":{"test":"xo && ava && tsd"},"keywords":["reverse","minimist","options","arguments","args","flags","cli","nopt","commander","binary","command","inverse","opposite","invert","switch","construct","parse","parser","argv"],"devDependencies":{"ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"42150c59a5a9f5986b379b152f47ac390a2aa1e6","bugs":{"url":"https://github.com/sindresorhus/dargs/issues"},"homepage":"https://github.com/sindresorhus/dargs#readme","_id":"dargs@8.1.0","_nodeVersion":"12.22.1","_npmVersion":"7.10.0","dist":{"integrity":"sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==","shasum":"a34859ea509cbce45485e5aa356fef70bfcc7272","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dargs/-/dargs-8.1.0.tgz","fileCount":5,"unpackedSize":12261,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3Ap3CRA9TVsSAnZWagAAiasP/1BEuxnNdBqvCNHPog4u\nwLRUMt+4/Ei6h3CNQplHuSDjuKDBOE/JCfOLoIowCHefV9B/gDrODy1j6JJr\n0nIuKrU+C+W4e5ZQQgkCayMFuJjhDt+HCBEonIOxb+1ZufXeiPC+lmEhcp+A\nHqCi/d7AO5S1lLSIme/8w9KqOcGSc/pwZMaoTIUOldZssouwqsNaiP7KmSwa\ndmB7qG1Luyx1zjsn8s+sqMqVysUjbCNtZQbZoOJja1iFux6dqqhOq65i7BtG\nM6zcXLUa+KGIg3p/VBF6TT4V/dIMXN5/bB8gsPMQ9S5dHpUIioN1xW1ZxW1z\nSCTEOHg0GDM6yZ1WRFjgVY2eFegKmVjejeYrfi5sYh9MlpghRaXLCzDI1Yt/\nWlJvsTa5+bOnMsku5cSkvbHlqMx7qPQZhNmXRsTlBvz87+fsXyt9unktMaUL\nSO5wGx6bJ4WtaqF77+CjuiluR/9q6C4Revp8VYHrC9LSBqBjlKYjvTCqEWRH\n/R7FCGz832xPewLQF1XyhvmpdJEfawpXzKfb6oElTsvAmAB5avse4yBvLYSk\nQK+AJ58ZeULs2a/PrLHD71qbtc4xW7QiinPy0UKWMC2lHbvQlVm4OHCOiiZY\n//0WnlxMXZlfqYtFghCvCWo46NdBPtKpMABQRQebysaLYkU+zB8k20XULJwo\nZ97I\r\n=GwYl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYzHDpx3rxyaoBv/uixhP9Cv/Z7iIySWQktIOq3B8zVAIhAIQ5qSkg4EKUDs76b4fSPFIp/RKsJ79484IMQXGNzMtK"}]},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dargs_8.1.0_1625033335487_0.3675947660200256"},"_hasShrinkwrap":false}},"name":"dargs","time":{"modified":"2023-03-08T01:53:56.339Z","created":"2013-04-18T22:54:26.066Z","0.1.0":"2013-04-18T22:54:29.011Z","1.0.0":"2014-08-13T16:53:18.275Z","2.0.0":"2014-08-21T15:29:23.437Z","2.0.1":"2014-08-26T16:13:20.027Z","2.0.2":"2014-08-27T13:20:10.818Z","2.0.3":"2014-08-27T16:54:52.246Z","2.1.0":"2014-10-29T05:51:03.722Z","3.0.0":"2014-11-06T08:40:02.768Z","3.0.1":"2015-02-04T11:37:32.084Z","4.0.0":"2015-02-06T16:55:07.972Z","4.0.1":"2015-05-20T20:53:28.186Z","4.1.0":"2016-01-07T19:16:55.079Z","5.0.0":"2016-06-30T22:53:22.100Z","5.0.1":"2016-06-30T22:55:38.504Z","5.1.0":"2016-09-22T17:10:39.821Z","6.0.0":"2018-05-26T10:18:53.480Z","6.1.0":"2019-04-11T06:23:05.138Z","7.0.0":"2019-06-22T12:59:14.817Z","8.0.0":"2021-05-03T14:59:23.465Z","8.1.0":"2021-06-30T06:08:55.643Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/dargs#readme"}