{"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"dist-tags":{"latest":"2.0.0"},"author":{"name":"Mikael Brevik"},"description":"A custom render for marked to output to the Terminal","readme":"marked-terminal\n===\n\n> Custom Renderer for [marked](https://github.com/chjj/marked)\nallowing for printing Markdown to the Terminal. Supports pretty tables, syntax\nhighlighting for javascript, and overriding all colors and styles.\n\nCould for instance be used to print usage information.\n\n## Install\n\n```sh\nnpm install marked marked-terminal\n```\n\n## Example\n\n```javascript\nvar marked = require('marked');\nvar TerminalRenderer = require('marked-terminal');\n\nmarked.setOptions({\n  // Define custom renderer\n  renderer: new TerminalRenderer()\n});\n\n// Show the parsed data\nconsole.log(marked('# Hello \\n This is **markdown** printed in the `terminal`'));\n```\n\nThis will produce the following:\n\n![Screenshot of marked-terminal](./screenshot.png)\n\n\n### Syntax Highlighting\n\nAlso have support for syntax highlighting using [cardinal](https://github.com/thlorenz/cardinal).\nYou can override highlight defaults by passing in settings as the second argument for TerminalRenderer,\nor you can create a `.cardinalrc` as defined in the [cardinal README](https://github.com/thlorenz/cardinal).\n\nHaving the following markdown input:\n\n<pre>\n```js\nvar foo = function(bar) {\n  console.log(bar);\n};\nfoo('Hello');\n```\n</pre>\n\n...we will convert it into terminal format:\n\n```javascript\n// Show the parsed data\nconsole.log(marked(exampleSource));\n```\n\nThis will produce the following:\n\n![Screenshot of marked-terminal](./screenshot2.png)\n\n## API\n\nConstructur: `new TerminalRenderer([options][, highlightOptions])`\n\n### `options`\nOptional\nUsed to override default styling.\n\nDefault values are:\n\n```javascript\nvar defaultOptions = {\n  // Colors\n  code: chalk.yellow,\n  blockquote: chalk.gray.italic,\n  html: chalk.gray,\n  heading: chalk.green.bold,\n  firstHeading: chalk.magenta.underline.bold,\n  hr: chalk.reset,\n  listitem: chalk.reset,\n  table: chalk.reset,\n  paragraph: chalk.reset,\n  strong: chalk.bold,\n  em: chalk.italic,\n  codespan: chalk.yellow,\n  del: chalk.dim.gray.strikethrough,\n  link: chalk.blue,\n  href: chalk.blue.underline,\n\n  // Formats the bulletpoints and numbers for lists\n  list: function (body, ordered) {/* ... */},\n\n  // Reflow and print-out width\n  width: 80, // only applicable when reflow is true\n  reflowText: false,\n\n  // Should it prefix headers?\n  showSectionPrefix: true,\n\n  // Whether or not to undo marked escaping\n  // of enitities (\" -> &quot; etc)\n  unescape: true,\n\n  // Whether or not to show emojis\n  emoji: true,\n\n  // Options passed to cli-table\n  tableOptions: {},\n\n  // The size of tabs in number of spaces or as tab characters\n  tab: 3 // examples: 4, 2, \\t, \\t\\t\n};\n```\n\n#### Example of overriding defaults\n```javascript\nmarked.setOptions({\n  renderer: new TerminalRenderer({\n    codespan: chalk.underline.magenta,\n  })\n});\n```\n\n### `highlightOptions`\nOptions passed into [cardinal](https://github.com/thlorenz/cardinal). See\nreadme there to see what options to pass.\n\n\nSee [more examples](./example/)\n","repository":{"type":"git","url":"git+https://github.com/mikaelbr/marked-terminal.git"},"users":{"finnpauls":true,"mrkev":true,"octalmage":true,"nfd":true,"tjfwalker":true,"makediff":true,"omnidan":true,"pandao":true,"nelix":true,"redmonkeydf":true,"hendrik.bunnick":true},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"license":"MIT","versions":{"0.1.0":{"name":"marked-terminal","version":"0.1.0","description":"A customr render for marked to output to the Terminal","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","optionalDependencies":{"marked":"^0.3.2"},"dependencies":{"chalk":"^0.5.1","cli-table":"^0.3.0","marked":"^0.3.2"},"_id":"marked-terminal@0.1.0","dist":{"shasum":"1aab7c6a3a161bd9feef2c0d2bb93b5999844b5d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"directories":{}},"1.0.0":{"name":"marked-terminal","version":"1.0.0","description":"A customr render for marked to output to the Terminal","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","optionalDependencies":{"marked":"^0.3.2"},"dependencies":{"cardinal":"^0.4.4","chalk":"^0.5.1","cli-table":"^0.3.0","node.extend":"^1.0.10","marked":"^0.3.2"},"_id":"marked-terminal@1.0.0","_shasum":"5f0c2f21830804523697436386de51d503a3b1b1","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"5f0c2f21830804523697436386de51d503a3b1b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"marked-terminal","version":"1.1.0","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests.js --reporter spec"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","optionalDependencies":{"marked":"^0.3.2"},"dependencies":{"cardinal":"^0.4.4","chalk":"^0.5.1","cli-table":"^0.3.0","node.extend":"^1.0.10","marked":"^0.3.2"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.2","mocha":"^1.21.4"},"repository":{"type":"git","url":"https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","_id":"marked-terminal@1.1.0","_shasum":"87f1812d5e0279e468564663be449b6dc081bbc1","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"87f1812d5e0279e468564663be449b6dc081bbc1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.1.0.tgz"}},"1.1.1":{"name":"marked-terminal","version":"1.1.1","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests.js --reporter spec"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","optionalDependencies":{"marked":"^0.3.2"},"dependencies":{"cardinal":"^0.4.4","chalk":"^0.5.1","cli-table":"^0.3.0","node.extend":"^1.0.10","marked":"^0.3.2"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.2","mocha":"^1.21.4"},"repository":{"type":"git","url":"https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","_id":"marked-terminal@1.1.1","_shasum":"f9defa8cb9496b2cd64ffd24e5c58958fd25e371","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"f9defa8cb9496b2cd64ffd24e5c58958fd25e371","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.1.1.tgz"}},"1.1.2":{"name":"marked-terminal","version":"1.1.2","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests.js --reporter spec"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","optionalDependencies":{"marked":"^0.3.2"},"dependencies":{"cardinal":"^0.4.4","chalk":"^0.5.1","cli-table":"^0.3.0","node.extend":"^1.0.10","marked":"^0.3.2"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.2","mocha":"^1.21.4"},"repository":{"type":"git","url":"https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"e1cc933467863d2b6e580393f1ae17aa00ba6fbf","_id":"marked-terminal@1.1.2","_shasum":"82f4fac1f91727c2bc3b715a2942db01313c73e4","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.21","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"82f4fac1f91727c2bc3b715a2942db01313c73e4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.1.2.tgz"}},"1.1.3":{"name":"marked-terminal","version":"1.1.3","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests.js --reporter spec"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.2"},"dependencies":{"cardinal":"^0.4.4","chalk":"^0.5.1","cli-table":"^0.3.0","node.extend":"^1.0.10"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.2","mocha":"^1.21.4"},"repository":{"type":"git","url":"https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"804c7ed9c358ee267f413e0e5ae4ca11c185bed9","_id":"marked-terminal@1.1.3","_shasum":"52f6d607842ac295e7d491d295330d17dbd5269b","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"52f6d607842ac295e7d491d295330d17dbd5269b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.1.3.tgz"}},"1.2.0":{"name":"marked-terminal","version":"1.2.0","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests.js --reporter spec"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.2"},"dependencies":{"cardinal":"^0.5.0","chalk":"^0.5.1","cli-table":"^0.3.0","node.extend":"^1.0.10"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.2","mocha":"^1.21.4"},"repository":{"type":"git","url":"https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"20b6cb9b3b1c7abe921c18c31e2be9ebbd1f2cbb","_id":"marked-terminal@1.2.0","_shasum":"be37c4acebe16eed99a8878f66d9d537da1f6296","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"be37c4acebe16eed99a8878f66d9d537da1f6296","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.2.0.tgz"}},"1.3.0":{"name":"marked-terminal","version":"1.3.0","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests.js --reporter spec"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.2"},"dependencies":{"cardinal":"^0.5.0","chalk":"^0.5.1","cli-table":"^0.3.0","node.extend":"^1.0.10"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.2","mocha":"^1.21.4"},"repository":{"type":"git","url":"https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"06da120828fd2efc9c0152ef9293a5c8a47f09ae","_id":"marked-terminal@1.3.0","_shasum":"3fc25d38baa4bc8b394372032f08939ddae0fba4","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"3fc25d38baa4bc8b394372032f08939ddae0fba4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.3.0.tgz"}},"1.4.0":{"name":"marked-terminal","version":"1.4.0","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests/*.js --reporter spec"},"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.3"},"dependencies":{"cardinal":"^0.5.0","chalk":"^1.0.0","cli-table":"^0.3.1","lodash.assign":"^3.0.0","node-emoji":"^0.1.0"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.3","mocha":"^2.2.4"},"repository":{"type":"git","url":"https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"1de70b88a7624cbfc8cfdafafee5cc0165833852","_id":"marked-terminal@1.4.0","_shasum":"a0bb0e7aef3e3f729207e2c5f674f1b5df4af542","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"a0bb0e7aef3e3f729207e2c5f674f1b5df4af542","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.4.0.tgz"}},"1.5.0":{"name":"marked-terminal","version":"1.5.0","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests/*.js --reporter spec"},"files":["index.js"],"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.3"},"dependencies":{"cardinal":"^0.5.0","chalk":"^1.0.0","cli-table":"^0.3.1","lodash.assign":"^3.0.0","node-emoji":"^0.1.0"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.3","mocha":"^2.2.4"},"repository":{"type":"git","url":"https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"8f36202b08782acd7727078c4eb89e8eaf6c34af","_id":"marked-terminal@1.5.0","_shasum":"f9acc53ec6734a17b7dc3b01207aad09063fbef3","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"f9acc53ec6734a17b7dc3b01207aad09063fbef3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.5.0.tgz"}},"1.6.0":{"name":"marked-terminal","version":"1.6.0","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests/*.js --reporter spec"},"files":["index.js"],"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.3"},"dependencies":{"cardinal":"^0.5.0","chalk":"^1.0.0","cli-table":"^0.3.1","lodash.assign":"^3.0.0","node-emoji":"^0.1.0"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.3","mocha":"^2.2.4"},"repository":{"type":"git","url":"git+https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"486d0d38d4030a0a8078608a2606a7a2521339f0","_id":"marked-terminal@1.6.0","_shasum":"1739c818b0cdb07d7a097bb6d8516ca4b8e73743","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.5","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"1739c818b0cdb07d7a097bb6d8516ca4b8e73743","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.6.0.tgz"}},"1.6.1":{"name":"marked-terminal","version":"1.6.1","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests/*.js --reporter spec"},"files":["index.js"],"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.3"},"dependencies":{"cardinal":"^0.5.0","chalk":"^1.0.0","cli-table":"^0.3.1","lodash.assign":"^3.0.0","node-emoji":"^0.1.0"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.3","mocha":"^2.2.4"},"repository":{"type":"git","url":"git+https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"90fec0ba33bbb10a0a970cd84bbfc77d3fd27237","_id":"marked-terminal@1.6.1","_shasum":"04cd1c7c8b0ef48db3f68010d73a57a9661c6ccf","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.5","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"04cd1c7c8b0ef48db3f68010d73a57a9661c6ccf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.6.1.tgz"}},"1.6.2":{"name":"marked-terminal","version":"1.6.2","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests/*.js --reporter spec"},"files":["index.js"],"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.3"},"dependencies":{"cardinal":"^1.0.0","chalk":"^1.0.0","cli-table":"^0.3.1","lodash.assign":"^4.2.0","node-emoji":"^1.3.1"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.3","mocha":"^3.0.2"},"repository":{"type":"git","url":"git+https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"c91390406c7cb1d03c3769092f5b8443b5104795","_id":"marked-terminal@1.6.2","_shasum":"44c128d69b5d9776c848314cdf69d4ec96322973","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"dist":{"shasum":"44c128d69b5d9776c848314cdf69d4ec96322973","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.6.2.tgz"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/marked-terminal-1.6.2.tgz_1472844488066_0.4338298556394875"}},"1.7.0":{"name":"marked-terminal","version":"1.7.0","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests/*.js --reporter spec"},"files":["index.js"],"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.3"},"dependencies":{"cardinal":"^1.0.0","chalk":"^1.1.3","cli-table":"^0.3.1","lodash.assign":"^4.2.0","node-emoji":"^1.4.1"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.6","mocha":"^3.1.2"},"repository":{"type":"git","url":"git+https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"c043e41193e26beb26d4adb6b46e1b983697a92f","_id":"marked-terminal@1.7.0","_shasum":"c8c460881c772c7604b64367007ee5f77f125904","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"dist":{"shasum":"c8c460881c772c7604b64367007ee5f77f125904","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-1.7.0.tgz"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/marked-terminal-1.7.0.tgz_1477416137016_0.9057166781276464"}},"2.0.0":{"name":"marked-terminal","version":"2.0.0","description":"A custom render for marked to output to the Terminal","main":"index.js","scripts":{"test":"mocha tests/*.js --reporter spec"},"files":["index.js"],"keywords":["marked","render","terminal","markdown","markdown-to-terminal"],"author":{"name":"Mikael Brevik"},"license":"MIT","peerDependencies":{"marked":"^0.3.6"},"dependencies":{"cardinal":"^1.0.0","chalk":"^1.1.3","cli-table":"^0.3.1","lodash.assign":"^4.2.0","node-emoji":"^1.4.1"},"directories":{"example":"example"},"devDependencies":{"marked":"^0.3.6","mocha":"^3.1.2"},"repository":{"type":"git","url":"git+https://github.com/mikaelbr/marked-terminal.git"},"bugs":{"url":"https://github.com/mikaelbr/marked-terminal/issues"},"homepage":"https://github.com/mikaelbr/marked-terminal","gitHead":"12aa1c6b1a2420321c37772addb62f8e2597c77d","_id":"marked-terminal@2.0.0","_shasum":"5eaf568be66f686541afa52a558280310a31de2d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"mikaelb","email":"mikaelbre@gmail.com"},"maintainers":[{"name":"mikaelb","email":"mikaelbre@gmail.com"}],"dist":{"shasum":"5eaf568be66f686541afa52a558280310a31de2d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/marked-terminal/-/marked-terminal-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/marked-terminal-2.0.0.tgz_1479111428629_0.6575095951557159"}}},"name":"marked-terminal","time":{"modified":"2016-11-16T23:56:40.112Z","created":"2014-07-28T19:57:35.477Z","0.1.0":"2014-07-28T19:57:35.477Z","1.0.0":"2014-08-06T21:41:29.133Z","1.1.0":"2014-08-12T18:19:39.013Z","1.1.1":"2014-08-14T16:26:41.687Z","1.1.2":"2014-12-25T17:05:37.997Z","1.1.3":"2015-02-08T13:05:43.734Z","1.2.0":"2015-03-04T20:41:19.763Z","1.3.0":"2015-03-26T13:43:28.060Z","1.4.0":"2015-04-16T07:13:07.606Z","1.5.0":"2015-05-18T07:53:27.744Z","1.6.0":"2015-07-30T06:03:10.837Z","1.6.1":"2015-07-30T06:14:28.545Z","1.6.2":"2016-09-02T19:28:10.364Z","1.7.0":"2016-10-25T17:22:18.976Z","2.0.0":"2016-11-14T08:17:10.542Z"},"readmeFilename":"README.md","homepage":"https://github.com/mikaelbr/marked-terminal"}