{"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"keywords":["cli","bin","util","utility","helper","argv","command","line","meow","cat","kitten","parser","option","flags","input","cmd","console"],"dist-tags":{"latest":"3.7.0"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"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 using [minimist](https://github.com/substack/minimist)\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 --save meow\n```\n\n\n## Usage\n\n```\n$ ./foo-app.js unicorns --rainbow-cake\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  -r, --rainbow  Include a rainbow\n\n\tExamples\n\t  $ foo unicorns --rainbow\n\t  🌈 unicorns 🌈\n`, {\n\talias: {\n\t\tr: 'rainbow'\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` *(object)* - The help text used with `--help`\n- `showHelp([code=0])` *(function)* - Show the help text and exit with `code`\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##### description\n\nType: `string`, `boolean`\nDefault: The package.json `\"description\"` property\n\nA description 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\n<del>If it's an array each item will be a line.</del>  \n*(Still supported, but you should use a template literal instead.)*\n\nThe description will be shown above your help text automatically.\n\nSet it to `false` to disable it altogether.\n\n##### version\n\nType: `string`, `boolean`  \nDefault: The package.json `\"version\"` property\n\nSet a custom version output.\n\nSet it to `false` to disable it altogether.\n\n##### pkg\n\nType: `string`, `object`  \nDefault: Closest package.json upwards\n\nRelative path to package.json or as an object.\n\n##### argv\n\nType: `array`  \nDefault: `process.argv.slice(2)`\n\nCustom arguments object.\n\n#### minimistOptions\n\nType: `object`  \nDefault: `{}`\n\nMinimist [options](https://github.com/substack/minimist#var-argv--parseargsargs-opts).\n\nKeys passed to the minimist `default` option are [decamelized](https://github.com/sindresorhus/decamelize), so you can for example pass in `fooBar: 'baz'` and have it be the default for the `--foo-bar` flag.\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 [`update-notifier`](https://github.com/yeoman/update-notifier) if you want update notifications.\n\nSee [`configstore`](https://github.com/yeoman/configstore) if you need to persist some data.\n\n[More useful CLI utilities.](https://github.com/sindresorhus/awesome-nodejs#command-line-utilities)\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/meow.git"},"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,"danielbayley":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},"bugs":{"url":"https://github.com/sindresorhus/meow/issues"},"license":"MIT","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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/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://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/meow/-/meow-3.7.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}}},"name":"meow","time":{"modified":"2017-05-18T05:36:45.614Z","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"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/meow#readme"}