{"_id":"array-to-table","_rev":"4-a219d9e4d6fa92ca26665dfbfb63d2bf","name":"array-to-table","description":"Generate markdown table from array of objects","dist-tags":{"latest":"1.0.1"},"versions":{"1.0.0":{"name":"array-to-table","version":"1.0.0","description":"Generate markdown table from array of objects","main":"index.js","scripts":{"test":"node test.js"},"repository":{"type":"git","url":"git+https://github.com/Nijikokun/array-to-table.git"},"keywords":["array","table","markdown","convert","generate","helper","md","object","columns"],"author":{"name":"Nijiko Yonskai"},"license":"MIT","bugs":{"url":"https://github.com/Nijikokun/array-to-table/issues"},"homepage":"https://github.com/Nijikokun/array-to-table#readme","devDependencies":{"tess":"^1.0.0"},"gitHead":"1c9c3a460eafc600f5d0bd3c6a9886d0c14ee26c","_id":"array-to-table@1.0.0","_shasum":"8fc153945b96c971d5132e763d69c93fbf145669","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"nijikokun","email":"nijikokun@gmail.com"},"maintainers":[{"name":"nijikokun","email":"nijikokun@gmail.com"}],"dist":{"shasum":"8fc153945b96c971d5132e763d69c93fbf145669","tarball":"https://registry.npmjs.org/array-to-table/-/array-to-table-1.0.0.tgz","integrity":"sha512-PROADM7xhoHTBevbt9Pb4dcuOoZOgbYAeDlFfamRC5k2Y5MtvFA5pqFtcM9xTgP+da5NKSpu+qaQYkpDCFJV4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBJ7xtysGa++0OFAIu7cuLfgExDzXKCOyWOsTE6GU1uMAiBWllPjwPA12WBZ32uw7NuwA83iMY8AZfIop+YyJIp3Tg=="}]}},"1.0.1":{"name":"array-to-table","version":"1.0.1","description":"Generate markdown table from array of objects","main":"index.js","scripts":{"test":"node test.js"},"repository":{"type":"git","url":"git+https://github.com/Nijikokun/array-to-table.git"},"keywords":["array","table","markdown","convert","generate","helper","md","object","columns"],"author":{"name":"Nijiko Yonskai"},"license":"MIT","bugs":{"url":"https://github.com/Nijikokun/array-to-table/issues"},"homepage":"https://github.com/Nijikokun/array-to-table#readme","devDependencies":{"tess":"^1.0.0"},"gitHead":"6d10b283635bf0f336d9e4263fd77e8493148614","_id":"array-to-table@1.0.1","_shasum":"5dfa940911518af2bd89dc7d605dcfb9335755fe","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.12.3","_npmUser":{"name":"nijikokun","email":"nijikokun@gmail.com"},"maintainers":[{"name":"nijikokun","email":"nijikokun@gmail.com"}],"dist":{"shasum":"5dfa940911518af2bd89dc7d605dcfb9335755fe","tarball":"https://registry.npmjs.org/array-to-table/-/array-to-table-1.0.1.tgz","integrity":"sha512-TNCz52eAYD0/BHkQdmtSNWOyHC+E+gLYVUGcB+PkDi5JueyXwm8Q71S6ySdRd/Htmj+/HySnBUm4Rn+IkiVN7g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICtgbJJt+YkVmdtr18/q9qv+ZtpqGUoTmFfJ8hsmCYHzAiAxIHnBhRefEcbEX65eoIAqTGh7eOwK1C8XeClJy7/WDA=="}]}}},"readme":"# Array to Table\n\nConvert an array of objects to a simple markdown table.\n\n[![version][npm-version]][npm-url]\n[![License][npm-license]][license-url]\n[![Downloads][npm-downloads]][npm-url]\n[![Dependencies][david-image]][david-url]\n\n## Install\n\n- Download [the latest package][download]\n- NPM: `npm install array-to-table`\n\n## Usage\n\n**Node.js / Browserify**\n\n```js\nvar arrayToTable = require('array-to-table')\n```\n\n## Example\n\n**Input**\n\n```js\narrayToTable([{\n  Id: '004',\n  Icon: '![004](http://www.psypokes.com/dex/picdex/minis/004.png)',\n  Name: 'Charmander',\n},{\n  Id: '005',\n  Icon: '![005](http://www.psypokes.com/dex/picdex/minis/005.png)',\n  Name: 'Charmeleon',\n},{\n  Id: '006',\n  Icon: '![006](http://www.psypokes.com/dex/picdex/minis/006.png)',\n  Name: 'Charizard',\n},{\n  Id: '151',\n  Icon: '![151](http://www.psypokes.com/dex/picdex/minis/151.png)',\n  Name: 'Mew'\n}])\n```\n\n**Output**\n\nId | Icon | Name\n--- | --- | ---\n004 | ![004](http://www.psypokes.com/dex/picdex/minis/004.png) | Charmander\n005 | ![005](http://www.psypokes.com/dex/picdex/minis/005.png) | Charmeleon\n006 | ![006](http://www.psypokes.com/dex/picdex/minis/006.png) | Charizard\n151 | ![151](http://www.psypokes.com/dex/picdex/minis/151.png) | Mew\n\n## License\n\nLicensed under [The MIT License](LICENSE).\n\n[license-url]: https://github.com/Nijikokun/array-to-table/blob/master/LICENSE\n\n[travis-url]: https://travis-ci.org/Nijikokun/array-to-table\n[travis-image]: https://img.shields.io/travis/Nijikokun/array-to-table.svg?style=flat\n\n[npm-url]: https://www.npmjs.com/package/array-to-table\n[npm-license]: https://img.shields.io/npm/l/array-to-table.svg?style=flat\n[npm-version]: https://img.shields.io/npm/v/array-to-table.svg?style=flat\n[npm-downloads]: https://img.shields.io/npm/dm/array-to-table.svg?style=flat\n\n[codeclimate-url]: https://codeclimate.com/github/Nijikokun/array-to-table\n[codeclimate-quality]: https://img.shields.io/codeclimate/github/Nijikokun/array-to-table.svg?style=flat\n[codeclimate-coverage]: https://img.shields.io/codeclimate/coverage/github/Nijikokun/array-to-table.svg?style=flat\n\n[david-url]: https://david-dm.org/Nijikokun/array-to-table\n[david-image]: https://img.shields.io/david/Nijikokun/array-to-table.svg?style=flat\n\n[download]: https://github.com/Nijikokun/array-to-table/archive/v1.0.1.zip\n","maintainers":[{"name":"nijikokun","email":"nijikokun@gmail.com"}],"time":{"modified":"2022-06-13T03:28:57.228Z","created":"2015-07-31T07:10:24.037Z","1.0.0":"2015-07-31T07:10:24.037Z","1.0.1":"2015-07-31T07:15:24.745Z"},"homepage":"https://github.com/Nijikokun/array-to-table#readme","keywords":["array","table","markdown","convert","generate","helper","md","object","columns"],"repository":{"type":"git","url":"git+https://github.com/Nijikokun/array-to-table.git"},"author":{"name":"Nijiko Yonskai"},"bugs":{"url":"https://github.com/Nijikokun/array-to-table/issues"},"license":"MIT","readmeFilename":"readme.md"}