MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/.npm/registry.npmjs.org/meow/.cache.json
{"_id":"meow","_rev":"113-ada7b31f108f2dfeb1e147845a729b66","name":"meow","time":{"modified":"2018-10-18T08:03:10.097Z","created":"2013-01-24T03:46:08.917Z","0.0.0":"2013-01-24T03:46:15.395Z","1.0.0":"2014-10-12T14:29:21.941Z","2.0.0":"2014-10-21T21:49:43.338Z","2.1.0":"2015-01-08T09:25:01.893Z","3.0.0":"2015-01-23T15:56:16.289Z","3.1.0":"2015-02-26T04:57:36.384Z","3.3.0":"2015-06-18T23:18:00.331Z","3.4.0":"2015-10-03T16:49:46.630Z","3.4.1":"2015-10-03T18:05:20.683Z","3.4.2":"2015-10-07T06:51:39.741Z","3.5.0":"2015-10-30T05:04:51.853Z","3.6.0":"2015-11-15T12:55:03.287Z","3.7.0":"2016-01-04T14:20:49.240Z","4.0.0":"2017-11-26T10:49:43.309Z","4.0.1":"2018-04-25T03:05:56.651Z","5.0.0":"2018-04-25T03:22:50.133Z"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist-tags":{"latest":"5.0.0"},"description":"CLI app helper","readme":"# meow [![Build Status](https://travis-ci.org/sindresorhus/meow.svg?branch=master)](https://travis-ci.org/sindresorhus/meow)\n\n> CLI app helper\n\n![](meow.gif)\n\n\n## Features\n\n- Parses arguments\n- Converts flags to [camelCase](https://github.com/sindresorhus/camelcase)\n- Outputs version when `--version`\n- Outputs description and supplied help text when `--help`\n- Makes unhandled rejected promises [fail loudly](https://github.com/sindresorhus/loud-rejection) instead of the default silent fail\n- Sets the process title to the binary name defined in package.json\n\n\n## Install\n\n```\n$ npm install meow\n```\n\n\n## Usage\n\n```\n$ ./foo-app.js unicorns --rainbow\n```\n\n```js\n#!/usr/bin/env node\n'use strict';\nconst meow = require('meow');\nconst foo = require('.');\n\nconst cli = meow(`\n\tUsage\n\t  $ foo <input>\n\n\tOptions\n\t  --rainbow, -r  Include a rainbow\n\n\tExamples\n\t  $ foo unicorns --rainbow\n\t  🌈 unicorns 🌈\n`, {\n\tflags: {\n\t\trainbow: {\n\t\t\ttype: 'boolean',\n\t\t\talias: 'r'\n\t\t}\n\t}\n});\n/*\n{\n\tinput: ['unicorns'],\n\tflags: {rainbow: true},\n\t...\n}\n*/\n\nfoo(cli.input[0], cli.flags);\n```\n\n\n## API\n\n### meow(options, [minimistOptions])\n\nReturns an `Object` with:\n\n- `input` *(Array)* - Non-flag arguments\n- `flags` *(Object)* - Flags converted to camelCase\n- `pkg` *(Object)* - The `package.json` object\n- `help` *(string)* - The help text used with `--help`\n- `showHelp([code=2])` *(Function)* - Show the help text and exit with `code`\n- `showVersion()` *(Function)* - Show the version text and exit\n\n#### options\n\nType: `Object` `Array` `string`\n\nCan either be a string/array that is the `help` or an options object.\n\n##### flags\n\nType: `Object`\n\nDefine argument flags.\n\nThe key is the flag name and the value is an object with any of:\n\n- `type`: Type of value. (Possible values: `string` `boolean`)\n- `alias`: Usually used to define a short flag alias.\n- `default`: Default value when the flag is not specified.\n\nExample:\n\n```js\nflags: {\n\tunicorn: {\n\t\ttype: 'string',\n\t\talias: 'u',\n\t\tdefault: 'rainbow'\n\t}\n}\n```\n\n\n##### description\n\nType: `string` `boolean`<br>\nDefault: The package.json `\"description\"` property\n\nDescription to show above the help text.\n\nSet it to `false` to disable it altogether.\n\n##### help\n\nType: `string` `boolean`\n\nThe help text you want shown.\n\nThe input is reindented and starting/ending newlines are trimmed which means you can use a [template literal](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/template_strings) without having to care about using the correct amount of indent.\n\nThe description will be shown above your help text automatically.\n\n##### version\n\nType: `string` `boolean`<br>\nDefault: The package.json `\"version\"` property\n\nSet a custom version output.\n\n##### autoHelp\n\nType: `boolean`<br>\nDefault: `true`\n\nAutomatically show the help text when the `--help` flag is present. Useful to set this value to `false` when a CLI manages child CLIs with their own help text.\n\n##### autoVersion\n\nType: `boolean`<br>\nDefault: `true`\n\nAutomatically show the version text when the `--version` flag is present. Useful to set this value to `false` when a CLI manages child CLIs with their own version text.\n\n##### pkg\n\nType: `Object`<br>\nDefault: Closest package.json upwards\n\npackage.json as an `Object`.\n\n*You most likely don't need this option.*\n\n##### argv\n\nType: `Array`<br>\nDefault: `process.argv.slice(2)`\n\nCustom arguments object.\n\n##### inferType\n\nType: `boolean`<br>\nDefault: `false`\n\nInfer the argument type.\n\nBy default, the argument `5` in `$ foo 5` becomes a string. Enabling this would infer it as a number.\n\n##### booleanDefault\n\nType: `boolean` `null` `undefined`<br>\nDefault: `false`\n\nValue of `boolean` flags not defined in `argv`.\nIf set to `undefined` the flags not defined in `argv` will be excluded from the result.\nThe `default` value set in `boolean` flags take precedence over `booleanDefault`.\n\nExample:\n\n```js\nconst cli = meow(`\n\tUsage\n\t  $ foo\n\n\tOptions\n\t  --rainbow, -r  Include a rainbow\n\t  --unicorn, -r  Include a unicorn\n\n\tExamples\n\t  $ foo\n\t  🌈 unicorns 🌈\n`, {\n\tbooleanDefault: undefined,\n\tflags: {\n\t\trainbow: {\n\t\t\ttype: 'boolean',\n\t\t\tdefault: true\n\t\t\talias: 'r'\n\t\t},\n\t\tunicorn: {\n\t\t\ttype: 'boolean',\n\t\t\tdefault: false\n\t\t\talias: 'u'\n\t\t},\n\t\tcake: {\n\t\t\ttype: 'boolean',\n\t\t\talias: 'c'\n\t\t}\n\t}\n});\n/*\n{\n\tflags: {rainbow: true, unicorn: false},\n\t…\n}\n*/\n```\n\n## Promises\n\nMeow will make unhandled rejected promises [fail loudly](https://github.com/sindresorhus/loud-rejection) instead of the default silent fail. Meaning you don't have to manually `.catch()` promises used in your CLI.\n\n\n## Tips\n\nSee [`chalk`](https://github.com/chalk/chalk) if you want to colorize the terminal output.\n\nSee [`get-stdin`](https://github.com/sindresorhus/get-stdin) if you want to accept input from stdin.\n\nSee [`conf`](https://github.com/sindresorhus/conf) if you need to persist some data.\n\nSee [`update-notifier`](https://github.com/yeoman/update-notifier) if you want update notifications.\n\n[More useful CLI utilities…](https://github.com/sindresorhus/awesome-nodejs#command-line-utilities)\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n","versions":{"1.0.0":{"name":"meow","version":"1.0.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv"],"dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"gitHead":"5e64f799fe4665587f10615f3dfcbd7703734d78","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@1.0.0","_shasum":"d0ac10fe5b7a53796e7101e7068ff02ab698178b","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"d0ac10fe5b7a53796e7101e7068ff02ab698178b","tarball":"http://registry.npmjs.org/meow/-/meow-1.0.0.tgz"},"directories":{}},"2.0.0":{"name":"meow","version":"2.0.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv"],"dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"gitHead":"fe0271306137c613527d38b920667d7aa4380197","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@2.0.0","_shasum":"8f530a8ecf5d40d3f4b4df93c3472900fba2a8f1","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"8f530a8ecf5d40d3f4b4df93c3472900fba2a8f1","tarball":"http://registry.npmjs.org/meow/-/meow-2.0.0.tgz"},"directories":{}},"2.1.0":{"name":"meow","version":"2.1.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv"],"dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^2.0.0"},"devDependencies":{"ava":"0.0.4"},"gitHead":"ff65ef46ae2395ac39ce38829e0e1fff61d391cc","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@2.1.0","_shasum":"3a63f77977c150c16fd84484d0cef677c4182799","_from":".","_npmVersion":"2.1.16","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"3a63f77977c150c16fd84484d0cef677c4182799","tarball":"http://registry.npmjs.org/meow/-/meow-2.1.0.tgz"},"directories":{}},"3.0.0":{"name":"meow","version":"3.0.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv"],"dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^2.0.0"},"devDependencies":{"ava":"0.0.4"},"gitHead":"1683d8290db551edb8abe78b5419187bd98110a4","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@3.0.0","_shasum":"07c0edaade76c77498618d119aebb18a28d91b6d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"07c0edaade76c77498618d119aebb18a28d91b6d","tarball":"http://registry.npmjs.org/meow/-/meow-3.0.0.tgz"},"directories":{}},"3.1.0":{"name":"meow","version":"3.1.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv"],"dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^2.0.0"},"devDependencies":{"ava":"0.0.4"},"gitHead":"70a811351fe7a551d82e689e20f96eb8d10037e7","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@3.1.0","_shasum":"5974708a0fe0dcbf27e0e6a49120b4c5e82c3cea","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"5974708a0fe0dcbf27e0e6a49120b4c5e82c3cea","tarball":"http://registry.npmjs.org/meow/-/meow-3.1.0.tgz"},"directories":{}},"3.3.0":{"name":"meow","version":"3.3.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^3.0.0"},"devDependencies":{"ava":"0.0.4"},"gitHead":"0ec1cbe26d544d93533eef1ad31c0b351b4106a3","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@3.3.0","_shasum":"f8777fd0db67f73d1de1beee08c97c8665efc6ed","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"f8777fd0db67f73d1de1beee08c97c8665efc6ed","tarball":"http://registry.npmjs.org/meow/-/meow-3.3.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.4.0":{"name":"meow","version":"3.4.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"gitHead":"ab891aad597806246af4f98e419e786b2eacb06b","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@3.4.0","_shasum":"e21ea52f050bb9053a8b96793d749f2961a16716","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"e21ea52f050bb9053a8b96793d749f2961a16716","tarball":"http://registry.npmjs.org/meow/-/meow-3.4.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.4.1":{"name":"meow","version":"3.4.1","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"gitHead":"db0c0512b4c52ee0235db171952982bb80f561d2","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@3.4.1","_shasum":"efbd3318202976592efc7c0feefb2e37fd793cea","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"efbd3318202976592efc7c0feefb2e37fd793cea","tarball":"http://registry.npmjs.org/meow/-/meow-3.4.1.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.4.2":{"name":"meow","version":"3.4.2","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"gitHead":"77d36e3edc90939044c852518b15c9f69fc028ac","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@3.4.2","_shasum":"5f11a00596301d7adc352d1b86fc8573df0b93f0","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"5f11a00596301d7adc352d1b86fc8573df0b93f0","tarball":"http://registry.npmjs.org/meow/-/meow-3.4.2.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.5.0":{"name":"meow","version":"3.5.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"gitHead":"4dacf47d674e96d07a1be3807189682bdb92944a","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@3.5.0","_shasum":"bc5a5d8b5b848ef6aa50158be0570182eb0d5e4d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"bc5a5d8b5b848ef6aa50158be0570182eb0d5e4d","tarball":"http://registry.npmjs.org/meow/-/meow-3.5.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.6.0":{"name":"meow","version":"3.6.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/meow"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^2.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"gitHead":"9812414dabbfff8dac0929265c95622e10167093","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow","_id":"meow@3.6.0","_shasum":"e7a535295cb89db0e0782428e55fa8615bf9e150","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"e7a535295cb89db0e0782428e55fa8615bf9e150","tarball":"http://registry.npmjs.org/meow/-/meow-3.6.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.7.0":{"name":"meow","version":"3.7.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/meow.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^2.0.0","decamelize":"^1.1.2","loud-rejection":"^1.0.0","map-obj":"^1.0.1","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","execa":"^0.1.1","indent-string":"^2.1.0","xo":"*"},"gitHead":"9a5c90af79fb8f5f29c97e6b92b63f41e2df4f34","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow#readme","_id":"meow@3.7.0","_shasum":"72cb668b425228290abbfa856892587308a801fb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"72cb668b425228290abbfa856892587308a801fb","tarball":"http://registry.npmjs.org/meow/-/meow-3.7.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"4.0.0":{"name":"meow","version":"4.0.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/meow.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^4.0.0","decamelize-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","minimist-options":"^3.0.1","normalize-package-data":"^2.3.4","read-pkg-up":"^3.0.0","redent":"^2.0.0","trim-newlines":"^2.0.0"},"devDependencies":{"ava":"*","execa":"^0.8.0","indent-string":"^3.0.0","xo":"*"},"xo":{"rules":{"unicorn/no-process-exit":"off"}},"gitHead":"8c82a18c70e1081771d97f88a6d5f5ce9b00005d","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow#readme","_id":"meow@4.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-Me/kel335m6vMKmEmA6c87Z6DUFW3JqkINRnxkbC+A/PUm0D5Fl2dEBQrPKnqCL9Te/CIa1MUt/0InMJhuC/sw==","shasum":"fd5855dd008db5b92c552082db1c307cba20b29d","tarball":"https://registry.npmjs.org/meow/-/meow-4.0.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/meow-4.0.0.tgz_1511693382432_0.692835133522749"},"directories":{}},"4.0.1":{"name":"meow","version":"4.0.1","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/meow.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^4.0.0","decamelize-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","minimist-options":"^3.0.1","normalize-package-data":"^2.3.4","read-pkg-up":"^3.0.0","redent":"^2.0.0","trim-newlines":"^2.0.0"},"devDependencies":{"ava":"*","execa":"^0.8.0","indent-string":"^3.0.0","xo":"*"},"xo":{"rules":{"unicorn/no-process-exit":"off"}},"gitHead":"e9ff0fb2ec1c381d85fbc2bf6b6dcc4c11258f36","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow#readme","_id":"meow@4.0.1","_npmVersion":"5.6.0","_nodeVersion":"10.0.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==","shasum":"d48598f6f4b1472f35bf6317a95945ace347f975","tarball":"https://registry.npmjs.org/meow/-/meow-4.0.1.tgz","fileCount":4,"unpackedSize":8773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3/CVCRA9TVsSAnZWagAAKcQP/0tVUT4F/G87EvbspBrH\nI2gZps6h1Jol06dpEJGSzr4OH3hA/2bBhIfsvfIEv+rpcJKWKbRxjtgcwmG5\nZhSdgF1st2iorXpb1GWoLNCE/DSQ9ZES/00qi5hEGVJKIusQnRynESOxuLsD\ntIefEkE5NZGHir9OeeKgMA80zadTP7vzTwVcqS+121W2e3c8dgFhTYby5qfm\nuisFZmtEaKJd79HJ/dKpLqpxPLuvsV9I/QEe3heehF7rFySCoIqUD8gDgl9V\n5jSva5U0nwqIYB12fa+ZGi7vBaAHDzuI24YQPqRfaxLzFNh9oJfu95dqIEE3\nuewGbPnH0szHtrY8IoyYCUrm/tlgYJXDjJlRNMrAVpPEdgsBcYtgE5+U+/be\nshtxUcLo4I7QxBO900DJFJ/EGtWQM5DenBzXpwFOTp1pj0q7NZuGltzUiO1Q\nNl814649m6/1cW8lCapAZFJRfbifB+Py10uIJSOHCbB5NG2KKibfpU07nFKP\n4k6YGJLeJepSprNIjzBg7F1qOq3KzpB12YNcH07xByvEoJAK6FoRPdXjteqw\npiwypPCLYfL5bJ+KRWYs/EDN5/u2mCuYKDvT2FMquAxB+IWytPuXwLGWxNfn\njgpDTz6riUkoPEBUappwWE9H4Oj/6Nbr24q7jfbvQJZi02T35I/xYgsGZwma\nnBIm\r\n=XACV\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/meow_4.0.1_1524625556547_0.6038605365423053"},"_hasShrinkwrap":false},"5.0.0":{"name":"meow","version":"5.0.0","description":"CLI app helper","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/meow.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dependencies":{"camelcase-keys":"^4.0.0","decamelize-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist-options":"^3.0.1","normalize-package-data":"^2.3.4","read-pkg-up":"^3.0.0","redent":"^2.0.0","trim-newlines":"^2.0.0","yargs-parser":"^10.0.0"},"devDependencies":{"ava":"*","execa":"^0.10.0","indent-string":"^3.0.0","xo":"*"},"xo":{"rules":{"unicorn/no-process-exit":"off"}},"gitHead":"e04760557cca1200af91d96a60072f47d6a06aa1","bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"homepage":"https://github.com/sindresorhus/meow#readme","_id":"meow@5.0.0","_npmVersion":"5.6.0","_nodeVersion":"10.0.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==","shasum":"dfc73d63a9afc714a5e371760eb5c88b91078aa4","tarball":"https://registry.npmjs.org/meow/-/meow-5.0.0.tgz","fileCount":4,"unpackedSize":10123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3/SLCRA9TVsSAnZWagAAqOcP/0vi4WF6tYsGcx+2O05H\nmgKUqG8+QgUPbXihJgh9BC4ycp40//NFAFKBrW/m6fq8FjxXf7xvPhH9ehHj\npPlyb6R1IDaflGKszMFUwgE1HiBIbJ+kPQ+NxIKoiO/X12BqbNqYluD8Dc+U\nuvhftPlc2s5J92v9ew/CarpmOGnMoXSvZ4V3omrnhjkVJEDS6q8kTSW2/Kay\nexO60D/AYMt5DSPxJx/rFSUbdzen/1cC0JQ1tQoedAmfK0J7kkypVudLpizi\nN/O1UZ3h4w1IiD05SDt0UO0OokIxrBQTtW7byUgizPWVKslOfCRARJmFQqFc\nWOjkEVMjsYJ1CAOjjy3OO2xzRKbSw9aCdxOxSw22B2qwTk/cLj8jo93a3SZS\neY+6Qe5k1jfgULTdabA7+suLmSrp9pKD+XuzHMgFJDhELMnxJ9VyOZo3WyvZ\nJswLfMyPC3XkpL0Upt9lsV8tl++jJZWu7ARPvmy/eF5O9Eha5MDlJzeFQUMR\n9Ew7n8Q3N3iVx8BOmZEujOB4xdMYhNEWgziY/UQuCsOu9vJGGJ8geLI+PJP8\nRNgSgSCg8kq4nThrJWdwlj4rGuvkY84Xn7VOm8EY/QvZ+zryrp6awEk0ggkQ\nMzCxOjUp51/dS0glnMDh9QK0RslT7rToaVXWJ/nLEwyjmaq2zaME8Y+W5Gmv\niG3p\r\n=sT83\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/meow_5.0.0_1524626569972_0.17133376895214236"},"_hasShrinkwrap":false}},"homepage":"https://github.com/sindresorhus/meow#readme","keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"repository":{"type":"git","url":"git+https://github.com/sindresorhus/meow.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"license":"MIT","readmeFilename":"readme.md","users":{"ionutvmi":true,"maxogden":true,"pid":true,"mage3k":true,"solygen":true,"goodseller":true,"guiambros":true,"s4g6":true,"phalanxia":true,"ddffx":true,"anhulife":true,"forivall":true,"eijs":true,"bojand":true,"ugarz":true,"timdp":true,"knksmith57":true,"goblindegook":true,"allenmoore":true,"eshinn":true,"jerrywu":true,"heineiuo":true,"nichoth":true,"rochejul":true,"sakura":true,"brennebeck":true,"recursion_excursion":true,"j.su":true,"ctesniere":true,"panlw":true,"icedemon":true,"otbe":true,"edm00se":true,"jonahss":true,"dannyfritz":true,"jonathas":true,"penglu":true,"yoking":true,"whitelynx":true,"monjer":true,"langri-sha":true,"jedaviata":true,"theoryofnekomata":true,"soenkekluth":true,"wickie":true,"seangenabe":true,"shreyawhiz":true,"leonzhao":true,"onel0p3z":true,"daizch":true,"nickleefly":true,"brandonb927":true,"jasonmelgoza":true,"ukuli":true,"saadbinsaeed":true,"imaginary":true,"g120hbq":true,"mrxf":true,"mlcdf":true,"usex":true,"stone_breaker":true,"clpo13":true,"joaquin.briceno":true,"iuykza":true,"xinwangwang":true,"waawal":true,"icodeforcookies":true,"ahmedfarooki":true,"broadway69":true,"isayme":true,"bsdprojects":true,"yologith":true,"detj":true,"ksketo":true,"izolate":true,"three":true},"_etag":"W/\"97f484fda79c711d21da4650cd784b3c\"","_lastModified":"Thu, 18 Oct 2018 08:03:11 GMT"}