{"_id":"layouts","_rev":"92-931da345aec0fb74a8cb5255236f05d4","name":"layouts","time":{"modified":"2022-06-19T10:54:54.502Z","created":"2013-10-30T20:40:05.309Z","0.0.0":"2013-10-30T20:40:10.640Z","0.1.0":"2014-07-28T05:52:55.543Z","0.1.1":"2014-07-29T18:08:13.145Z","0.2.0":"2014-08-01T04:11:21.713Z","0.2.1":"2014-08-01T04:12:32.455Z","0.2.2":"2014-08-01T04:48:32.933Z","0.2.3":"2014-08-05T01:45:10.994Z","0.2.4":"2014-08-05T02:42:57.695Z","0.2.5":"2014-08-05T02:44:41.865Z","0.2.6":"2014-08-07T00:49:24.517Z","0.2.7":"2014-08-07T01:29:53.119Z","0.2.8":"2014-08-07T21:29:24.400Z","0.2.9":"2014-08-13T21:51:53.392Z","0.2.10":"2014-08-14T19:16:10.133Z","0.2.11":"2014-08-15T03:59:01.757Z","0.2.12":"2014-08-17T18:32:42.375Z","0.3.0":"2014-08-19T02:27:02.018Z","0.3.1":"2014-08-19T02:31:09.484Z","0.3.2":"2014-08-29T10:30:57.625Z","0.4.0":"2014-09-06T08:56:26.767Z","0.5.0":"2014-09-28T14:54:59.407Z","0.5.1":"2014-09-29T07:29:18.523Z","0.5.2":"2014-10-12T13:32:45.902Z","0.5.3":"2014-10-14T03:26:42.149Z","0.6.0":"2014-11-19T20:22:50.416Z","0.7.0":"2015-02-13T20:50:46.264Z","0.7.1":"2015-02-13T21:22:51.713Z","0.8.0":"2015-03-08T04:26:54.716Z","0.8.1":"2015-03-08T04:31:07.628Z","0.9.0":"2015-03-11T18:14:07.603Z","0.10.0":"2015-07-17T05:31:28.878Z","0.10.1":"2015-07-17T07:12:33.512Z","0.10.2":"2015-08-21T08:57:39.480Z","0.10.3":"2015-08-21T15:24:34.935Z","0.10.4":"2015-09-08T10:59:26.495Z","0.10.5":"2015-09-08T11:00:17.453Z","0.10.6":"2015-10-02T17:23:18.034Z","0.11.0":"2016-01-21T11:09:30.864Z","0.12.0":"2016-07-15T16:11:37.075Z","0.12.1":"2016-07-15T19:39:53.784Z","0.13.0":"2016-07-26T00:58:44.502Z","0.13.1":"2016-07-26T01:09:40.082Z","0.13.2":"2016-07-26T01:30:00.319Z","1.0.0":"2017-08-07T10:29:28.222Z","2.0.0":"2018-03-19T07:01:39.834Z","2.0.1":"2018-03-24T04:04:17.155Z","3.0.0":"2018-04-21T20:10:31.781Z","3.0.1":"2018-04-21T20:16:19.608Z","3.0.2":"2019-04-11T15:35:43.633Z"},"maintainers":[{"email":"brian.woodward@gmail.com","name":"doowb"},{"email":"github@sellside.com","name":"jonschlinkert"}],"dist-tags":{"latest":"3.0.2"},"description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","readme":"# layouts [![NPM version](https://img.shields.io/npm/v/layouts.svg?style=flat)](https://www.npmjs.com/package/layouts) [![NPM monthly downloads](https://img.shields.io/npm/dm/layouts.svg?style=flat)](https://npmjs.org/package/layouts) [![NPM total downloads](https://img.shields.io/npm/dt/layouts.svg?style=flat)](https://npmjs.org/package/layouts) [![Linux Build Status](https://img.shields.io/travis/doowb/layouts.svg?style=flat&label=Travis)](https://travis-ci.org/doowb/layouts)\n\n> Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. Layouts can also be vinyl files.\n\nPlease consider following this project's author, [Brian Woodward](https://github.com/doowb), and consider starring the project to show your :heart: and support.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save layouts\n```\n\n## Usage\n\n```js\nconst renderLayouts = require('layouts');\n\nrenderLayouts(file, layoutCollection, options);\n```\n\n* `file` - a file object (or [vinyl](https://github.com/gulpjs/vinyl) file) with a `file.contents` property that must be a buffer\n* `layoutCollection` - an object of file objects to use as layouts\n* `options` - see [available options](#options)\n\n## Heads up!\n\nThis library does not clone the file object. If you want to prevent `file.contents` from being mutated (after rendering layouts), clone the file first before passing it to this library.\n\n## Example\n\n```js\nconst renderLayouts = require('layouts');\n\nconst file = {\n  contents: Buffer.from('<div>Wrap me with a layout!!!</div>'),\n  layout: 'one'\n};\n\nconst layoutCollection = {\n  one: { contents: Buffer.from('one before\\n{% body %}\\none after'), layout: 'two' },\n  two: { contents: Buffer.from('two before\\n{% body %}\\ntwo after') }\n};\n\nconst res = renderLayouts(file, layoutCollection);\nconsole.log(res.contents.toString());\n// two before\n// one before\n// <div>Wrap me with a layout!!!</div>\n// one after\n// two after\n```\n\n## Options\n\n### options.disableHistory\n\n**Type**: `boolean`\n\n**Default**: `undefined`\n\nBy default, layouts are prevented from being applied multiple times to the same string. Disable this by setting `disableHistory` to true.\n\n**Example**\n\n```js\nlayouts(file, layoutCollection, { disableHistory: true });\n```\n\n### options.layoutDelims\n\nCustom delimiters to use for injecting contents into layouts.\n\n**Type**: `regex`\n\n**Default**: `/{% (body) %}/g`\n\n### options.preserveWhitespace\n\nPreserve leading whitespace when injecting a string into a layout.\n\n**Type**: `boolean`\n\n**Default**: `undefined`\n\n## History\n\n### 1.0.0\n\n**Breaking changes**\n\n* renames `layoutHistory` to `layoutStack`\n* layouts in `layoutStack` are now the actual layout object, instead of the layout name\n\n**Added**\n\n* Adds support for a function as the last argument. If passed, the function is called on the file and each layout with this signature: `fn(file, layout)`.\n\n### 0.13.0\n\n**Breaking changes**\n\n* The main `layouts()` function now expects a `file` object as the first argument. This can be an object with `path`, `layout` and `contents` properties, or a valid [vinyl](https://github.com/gulpjs/vinyl) file. See the [API docs](#api) for more details.\n\n### 0.12.0\n\n**Breaking changes**\n\n* change `options.tag` to `options.contentTag`\n\n**Housekeeping**\n\n* update tests to use `assert` instead of `should`\n\n### 0.11.0\n\n* All view objects must now have a `path` property, following [vinyl](https://github.com/gulpjs/vinyl) conventions.\n\n## About\n\n<details>\n<summary><strong>Contributing</strong></summary>\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n</details>\n\n<details>\n<summary><strong>Running Tests</strong></summary>\n\nRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:\n\n```sh\n$ npm install && npm test\n```\n\n</details>\n\n<details>\n<summary><strong>Building docs</strong></summary>\n\n_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_\n\nTo generate the readme, run the following command:\n\n```sh\n$ npm install -g verbose/verb#dev verb-generate-readme && verb\n```\n\n</details>\n\n### Related projects\n\nYou might also be interested in these projects:\n\n* [assemble](https://www.npmjs.com/package/assemble): Get the rocks out of your socks! Assemble makes you fast at creating web projects… [more](https://github.com/assemble/assemble) | [homepage](https://github.com/assemble/assemble \"Get the rocks out of your socks! Assemble makes you fast at creating web projects. Assemble is used by thousands of projects for rapid prototyping, creating themes, scaffolds, boilerplates, e-books, UI components, API documentation, blogs, building websit\")\n* [templates](https://www.npmjs.com/package/templates): System for creating and managing template collections, and rendering templates with any node.js template engine… [more](https://github.com/jonschlinkert/templates) | [homepage](https://github.com/jonschlinkert/templates \"System for creating and managing template collections, and rendering templates with any node.js template engine. Can be used as the basis for creating a static site generator or blog framework.\")\n* [verb](https://www.npmjs.com/package/verb): Documentation generator for GitHub projects. Verb is extremely powerful, easy to use, and is used… [more](https://github.com/verbose/verb) | [homepage](https://github.com/verbose/verb \"Documentation generator for GitHub projects. Verb is extremely powerful, easy to use, and is used on hundreds of projects of all sizes to generate everything from API docs to readmes.\")\n\n### Contributors\n\n| **Commits** | **Contributor** |\n| --- | --- |\n| 151 | [jonschlinkert](https://github.com/jonschlinkert) |\n| 26  | [doowb](https://github.com/doowb) |\n\n### Author\n\n**Brian Woodward**\n\n* [GitHub Profile](https://github.com/doowb)\n* [Twitter Profile](https://twitter.com/doowb)\n* [LinkedIn Profile](https://linkedin.com/in/woodwardbrian)\n\n### License\n\nCopyright © 2019, [Brian Woodward](https://github.com/doowb).\nReleased under the [MIT License](LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 11, 2019._\n","versions":{"0.1.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can use/refer to other layouts, allowing them to be nested.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nunjucks","page","qejs","ractive","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.1.0","_shasum":"8b619d2da25e0a90fddaae275b94d146531027bc","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"8b619d2da25e0a90fddaae275b94d146531027bc","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.1.0.tgz","integrity":"sha512-FEzjnGEh2VSK0YBd83EgY6GAArq3Wqcklwpw+s0lEaVWibfwOyxjJLs6wpUHVvSiyQXVqwMmumdW/Bv2InceJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID/JmUFTHGtH/5m0eeSHhVQftcAIoP8+ZLxv6m0NVekYAiBXElWIivPBa1GDToZdBQ/KB9Jegvs+QD96sZSF7bGOBQ=="}]},"directories":{}},"0.1.1":{"name":"layouts","description":"Wrap templates with layouts. Layouts can use/refer to other layouts, allowing them to be nested.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nunjucks","page","qejs","ractive","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"falsey":"^0.1.0","lodash":"^2.4.1"},"gitHead":"951d4b3e83bbfd646bb624df2f555112f647e7a2","_id":"layouts@0.1.1","_shasum":"d0f64db406232a00c10e4d412329dc7f15c9ca9e","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"d0f64db406232a00c10e4d412329dc7f15c9ca9e","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.1.1.tgz","integrity":"sha512-12jzj8rv/c1ift6s8ZjMBqsg6sUr349b6v5ViWyEOLDulf0hj/Dk2dEF3W4j2vHkoW+tB8ETM3WYQzFOgxNqGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEBoAZtOzFOWVcz95b5yTR8lcb8iw+mhMzQiLspWxp+vAiEA007Om9GqEV95TpFwIsu5dlNisLSLmk31Hhod4oFv37E="}]},"directories":{}},"0.2.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.0","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"debug":"^1.0.4","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.2.0","_shasum":"a0e4cb084a4577ba310def98976ed615ab92a686","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"a0e4cb084a4577ba310def98976ed615ab92a686","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.0.tgz","integrity":"sha512-1ZDxBQGkuo7G5lxCOJ4m24eHaLbmuwqu4ZzTY/M/vt1MSPTpiH59Gihn7VKUXf9UWaKIySR9FjVcgQe7KGWl6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA60Bi1O0CDe7V5MzYqUpHgk3/CQqgW9zgj/giLP9RoqAiBbq+081oIFx98rXaBZqppjG1y8JFU98sFkoCvbk93eFg=="}]},"directories":{}},"0.2.1":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.1","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"debug":"^1.0.4","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.2.1","_shasum":"784483be86601de737ab9dec71910e816ba23c9b","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"784483be86601de737ab9dec71910e816ba23c9b","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.1.tgz","integrity":"sha512-l2+myvUdMpgXtyym9jwCxVgDsRQuMlMCMewwQnWo+RF/YYRfYUY/IidH1KZNXBlJQ0TC/djUO540S/TYQcwSPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5CYXMn2rZBUCeJbr2c3RsW66Nr9Zj5hdE9auSX2PVfQIgFOk0DhG3aP26iwlpCvSiv4i0xKQjnpKizNDUsoTLYuA="}]},"directories":{}},"0.2.2":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.2","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"debug":"^1.0.4","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.2.2","_shasum":"e016949d3f95d0b90438335cd48ec721b5f11aa4","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"e016949d3f95d0b90438335cd48ec721b5f11aa4","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.2.tgz","integrity":"sha512-+U4ZBOMZr6XfnMcWOxm3X9H0I+tLH9OIfFJtAPU1Vax7YZRudB6eRZzm+//cUYY042/fBLp6JshRUmZ6bOhuvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC+4pPRf/lf4PLw0AoMgf3vH+ujGUXD/pI6O9eTbJDYggIhAOCiq/+qTAmaFZ3KMDdgF/+ZdBwGQqP+ZW3mZClrI74T"}]},"directories":{}},"0.2.3":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.3","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.2.3","_shasum":"94d3782e5cb6ec7a80c510b51e758d56d5423498","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"94d3782e5cb6ec7a80c510b51e758d56d5423498","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.3.tgz","integrity":"sha512-GvzVh6EsAubhlNLO+Y7+c23CCKoUHFCpWWDuIt+NDfb1TUq7PuLNFxpmBEMNG6mVF8PWm2cmSeLBHjs2uBq6vQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH/i3xLAw3ZXsB/afIsGmICDlIabpy2NB8uAooPeD2r1AiAY2eOakPGM0iqFNEpQkuLHLzWNOd3CXVfbayBxWr0nYQ=="}]},"directories":{}},"0.2.4":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.4","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.2.4","_shasum":"2b6a7180c3d924d0e7e1301ce0bb987ff1d5173a","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"2b6a7180c3d924d0e7e1301ce0bb987ff1d5173a","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.4.tgz","integrity":"sha512-t4PhSlckKbPwSv47KKxmlHQMwkbjk39RNsIydEYvgVu0krXFsGHRhTo869gi2FKWo3W9AaR5kGTauU4JuNoeyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDpZ4I5dUBHh1TQxOg6uZfFLx2MxxzTpxvVYTz8oZmEuAiATLjeUdI5FcY4Yfm/e3hfcFzHL4mviHUhgNNaFethLTA=="}]},"directories":{}},"0.2.5":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.5","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.2.5","_shasum":"1d03a2ecd7cd767f814cf422cf037c7cf4ffedd1","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"1d03a2ecd7cd767f814cf422cf037c7cf4ffedd1","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.5.tgz","integrity":"sha512-mJQztQh1OozoY7tn2MqmaMJ4fL0HZTbAB+9BoGYJOkdynsBIvrY6pgd6kPVSofki042ODIUym4A69GrjNx1kaA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG9D2LuaJxHKjb6QBwtQT//UY617Q6qA45JnFmHAe4ALAiEA+f9oOpuF9E0SIUqqWXnATQxEqR9EVxth2cCrVmu66l0="}]},"directories":{}},"0.2.6":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.6","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","falsey":"^0.1.0","lodash":"^2.4.1"},"gitHead":"d33aabd200635d15ddcc3f2da110aecc6a93aa19","_id":"layouts@0.2.6","_shasum":"2e6721d06ada0046876cb8c1ff9fb223f7e05835","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"2e6721d06ada0046876cb8c1ff9fb223f7e05835","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.6.tgz","integrity":"sha512-k4YdeiuVFInYF2QCGbAOP4Nx0UVNlapWtVzod9OHHEsURlxlRAadRylESl7b06p4G7UjXrARCIqrwHw+jJA02g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDoKKz1D9CuKgMjNVRI1iCN8UztRYTgT4hl7OoZOy/wvAIhAPJzm0rxmNobzEOHMiwXgISdTEf1ikR5wFNCPdWa+rbz"}]},"directories":{}},"0.2.7":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.7","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"gitHead":"85435814e501ea3a7f87f96fcdf581953174617a","_id":"layouts@0.2.7","_shasum":"71e1dd8c9b65b39cfcc251ce2a8f5b80e2c7b55d","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"71e1dd8c9b65b39cfcc251ce2a8f5b80e2c7b55d","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.7.tgz","integrity":"sha512-d3bjcn3sJcLYMyY5dreslb1aeUZJaCv73wECb4Aom0YkspOXV1pDPY4nJX/RkOfD051Qj2L+Sfb/nsjwVtTPdg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeIuQCrdn531h6lpEIakw2naNVANX3siYwEOAN6ObnxAIga0TauermNhTQr5lOI8ofGsl0Qulyd2ihlONTrtMlIpk="}]},"directories":{}},"0.2.8":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.8","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"gitHead":"76cde0f57473e12ee8a20e3ef640076e340ad3eb","_id":"layouts@0.2.8","_shasum":"73057115aaa3ffd1749e9560c2e83426a40aac47","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"73057115aaa3ffd1749e9560c2e83426a40aac47","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.8.tgz","integrity":"sha512-TD2h3dPEZmKKX5T6WQt1pcw3uMc5OecNuLJ97AR4avLpRJLI8RkbwlwMDImpMakfVBUphiQoksUfMSip7jw3aA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQsHhEtL+FzHPJb8H0jddHZreFeXiUhg5eBIR3mfmj7wIhAJ/PIKfs5gBMq909aa/IB9HGAe1yBIazDc6yjChSG8kv"}]},"directories":{}},"0.2.9":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.9","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"gitHead":"9abcaaa44e56969645aae09d24bca6e7d9c88982","_id":"layouts@0.2.9","_shasum":"d13b7620b2769915946e1f2396978c6879dc51b9","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"d13b7620b2769915946e1f2396978c6879dc51b9","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.9.tgz","integrity":"sha512-yVX72Whj4T3pcVIpS8eZJR9/YysoK9WH8/xDAm9vS4SBxcAwT+s56oFniTj9uIJunJK/HHatsfwa6Fh/YO0PgA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEicSMyuvi+RrK5eJ7Edhs40Gl+q/wEmX2httb7+2wIYAiAN7uFQpCQ9mCRmqY85LnRDnfHIC2HG/kqxme15CnydjQ=="}]},"directories":{}},"0.2.10":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.10","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"gitHead":"11859a4b85f5a39161dc464ff8dd2c99ca6e232d","_id":"layouts@0.2.10","_shasum":"9e0464712bb9b524fa7922767248a59ba570cf34","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"9e0464712bb9b524fa7922767248a59ba570cf34","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.10.tgz","integrity":"sha512-snYbPyaxDBNSBsvXBZ14pKdWiQl5Eqt19vZjZ96wom6lWcF/FwwxK1SX60VY2WkX7Uoaf9uu3ky8USx0VTDIUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbomxP/0fsWf4hf48cGSoM3J/DJJO47ACZqyYxfIVOdwIhALIGssor5A3TSUQGEzHtWdV2ILlbPAysbMnW1Dc+tAJT"}]},"directories":{}},"0.2.11":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.11","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":">= 0.1.4"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"gitHead":"6812b307d971e62afb11691ff4919f4acb194184","_id":"layouts@0.2.11","_shasum":"3e8d23ac7043c92ef3dd15c006b53ec8acc6234d","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"3e8d23ac7043c92ef3dd15c006b53ec8acc6234d","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.11.tgz","integrity":"sha512-0KWD5WyV+Za4hPka5IAOJS4YIAcLHCpncq+o7r8sCQmHzIrmVVUqylVozAGKu79e+WFC4h/Hi9NxPK7Td4CZPg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAcHll1AO0N7OV42kj4mArEjSHVnBLgt3L1rkvgkjFROAiEAyGIlP1vmZqyyd+6Pu60MCvbWXYWXG8S8nsweSkHO5D4="}]},"directories":{}},"0.2.12":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.2.12","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":"^0.2.0"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.2.12","_shasum":"7b1113f6ad744a96ad2d7fa00d8e23ce573c08b8","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"7b1113f6ad744a96ad2d7fa00d8e23ce573c08b8","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.2.12.tgz","integrity":"sha512-sm1rgic2mvvTuzd5cKUnlJk5Y6eDC78xw5x1OLT4m1VI0WXPOFDnnMpGpJHLYLsy1HQrYQPbrBzA0FiU8zfDXg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDInofPSMT/XT0nPU94TeJbdeNEwr17St2ahcktOpFyKgIhANLCyfX0MkyRH7id+o3i18cqLv99OfkH5M6Do0+sOc6y"}]},"directories":{}},"0.3.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.3.0","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":"^0.2.0"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.3.0","_shasum":"3b1228b5a7fce4ea316aea00d1e3f54eb043da76","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"3b1228b5a7fce4ea316aea00d1e3f54eb043da76","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.3.0.tgz","integrity":"sha512-h8eJEvcngp+jBeRbMOOxwu12UCYDn141Y2PQbLDy0rpz7wyikOPcMBvwJa/x7woLUp4K8z+ml3i/O0p6hnkT3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD6PgR+oUIzYPHdcDMuW4OLa5H/VUq2sWK58A0m+Cma1wIgMLAgHa56DgwLVlOGhBkjF7cA0QnqipiSCqwZ6JDkOkM="}]},"directories":{}},"0.3.1":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.3.1","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":"^0.2.0"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.3.1","_shasum":"0426c69ed109431f63f698f10d453e7ede960fad","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"0426c69ed109431f63f698f10d453e7ede960fad","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.3.1.tgz","integrity":"sha512-h8Ujb3/cT+Qwz/IcBJk9cnFEPEtFHxEG+w+24Ah7bgrJ3yfKs3zogAP88CX/w8tLDOBfGOb2dr3COgfUud8brQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDkQLvREsdHcJ4PBVJ2cI0aACeLK5sbC4jn2DECb1Em6AiAmljjt/PQvtYTY0xUc5OkEJfuJGB9uL+SnMd4izS12UQ=="}]},"directories":{}},"0.3.2":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.3.2","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":"^0.2.2"},"dependencies":{"config-cache":"^0.1.5","debug":"^1.0.4","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1"},"_id":"layouts@0.3.2","_shasum":"4efda07f12736e01e96e9be249a20eb58a748625","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"4efda07f12736e01e96e9be249a20eb58a748625","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.3.2.tgz","integrity":"sha512-R+zdy8ZAgXl6l4fGkb6oGk+oV80/pIwaLzXvayZlnyo2w7flbt7ZhWIgHwveolwB7uoRSTKDo74VsGEBy5agaw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaG2dD9c379Ku4forkaP8uqCGGlTrO1u2JORB0SxgfugIhAOLvd6VLYu4jBZlOK1PmkSpJI5qZET7+Tlxj4ZJoiPZ1"}]},"directories":{}},"0.4.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.4.0","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6"},"dependencies":{"config-cache":"^0.1.5","delims":"^0.3.0","falsey":"^0.1.0","lodash":"^2.4.1","verb-tag-jscomments":"^0.2.2"},"_id":"layouts@0.4.0","_shasum":"7fb0c44dd67f869e29ea1703fee33c701d14d103","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"7fb0c44dd67f869e29ea1703fee33c701d14d103","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.4.0.tgz","integrity":"sha512-aSk5cVmuIMBjKNumxMPTMZnKP9/aOXT5m4gQozmtgM0v5nRvPyjrJcQYXQr4kj8lDIcllk0sk/GYMUEhcPa0Uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB1lLzPj7HnbvTnbYkV/0vyV3m3c37e4J5rIMmDhn6T8AiEA457a4JkIQ7h220++4Ljcy+I7BZ032cmPe6dBIk9RX6Q="}]},"directories":{}},"0.5.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.5.0","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","verb-tag-jscomments":"^0.2.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6"},"dependencies":{"delims":"^0.4.0","falsey":"^0.1.0","load-templates":"^0.4.0","lodash":"^2.4.1"},"_id":"layouts@0.5.0","_shasum":"cf03bf3c7b437b88f7e9e62a16aaecc0a8a53311","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"cf03bf3c7b437b88f7e9e62a16aaecc0a8a53311","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.5.0.tgz","integrity":"sha512-G9rhSKmbKTaFopeqEhzGbJnSLwQAEXqwy6HVLPoc8+5IhWW9XfLzBchKq6LapoCz0SipZGQ2gX+ZQwl2FGu/lA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCieTafEGBS3LVZ6YisaY6Iqj2dvdniaNd/gNFEGpomLwIgWvWWBh4/QoSzREp1GL9eNkEnv1cSIue6QScbkr9ML8g="}]},"directories":{}},"0.5.1":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.5.1","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.4.2","verb-tag-jscomments":"^0.2.2","mocha":"*","should":"^4.0.4","verb":">= 0.2.6"},"dependencies":{"debug":"^2.0.0","delims":"^0.4.0","falsey":"^0.1.0","is-plain-object":"^0.1.0","load-templates":"^0.4.0","lodash":"^2.4.1","mixin-deep":"^0.1.0","object-pick":"^0.1.0","omit-keys":"^0.1.0","reduce-object":"^0.1.3"},"_id":"layouts@0.5.1","_shasum":"f7e022374a21fa49262e12bcddb13c1578e1e79f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"f7e022374a21fa49262e12bcddb13c1578e1e79f","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.5.1.tgz","integrity":"sha512-6iT0kuENSEkc7MVz70X6ESK5DYXSDGn3rWf88JhycxTx/b0t9ng6X/E37+dGQSOlbefII6tSBmGOSjkAWRbRag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGafdAJ9eDt5jaKtKm7/wapXurggXeWzGIR2qlYRwJCTAiBZq0vHnX+80E0tBP/2Sxrd59I1zlocCVzng0CxKdU5Kw=="}]},"directories":{}},"0.5.2":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.5.2","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"chalk":"^0.5.1","globby":"^0.1.1","gray-matter":"^0.5.1","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":"^0.2.2"},"dependencies":{"debug":"^2.0.0","delims":"^0.4.0","falsey":"^0.1.0","isobject":"^0.2.0","kind-of":"^0.1.0","load-templates":"^0.4.2","lodash":"^2.4.1","object.omit":"^0.2.0","object.pick":"^0.1.1","object.reduce":"^0.1.3","options-cache":"^0.3.1"},"_id":"layouts@0.5.2","_shasum":"f28006aa2fbfb6566e456d083c4a0543401ca4c5","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"f28006aa2fbfb6566e456d083c4a0543401ca4c5","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.5.2.tgz","integrity":"sha512-wkBhoNmBe4JPQnNi7TCGNJ4884gLyhK2N5clbfJnzTFTgXawDk2zfl+UW00gR2h+TI5Tb2oJweXieTgDnA3BXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDHwGcl4qd1NE82uCqRQ9DHEqMy4zQ0v4wip1eHsyzUEwIgAlY61yyyZlnrSyZA7b2/FjQS7CjyJUNN7Bs0zBQqd3Y="}]},"directories":{}},"0.5.3":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.5.3","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"globby":"^0.1.1","gray-matter":"^0.5.1","mocha":"*","should":"^4.0.4","verb":">= 0.2.6","verb-tag-jscomments":"^0.2.2"},"dependencies":{"debug":"^2.0.0","delims":"^0.4.0","falsey":"^0.1.0","kind-of":"^0.1.0","load-templates":"^0.4.2","lodash":"^2.4.1","option-cache":"^0.1.1"},"_id":"layouts@0.5.3","_shasum":"344e7fa92833052554e823c1696830bf85a68ff5","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"344e7fa92833052554e823c1696830bf85a68ff5","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.5.3.tgz","integrity":"sha512-/WKt0khufUpd3x1l1DM7cQ9HJhpp6rH7i8TWM3D08vI5chDoIyNX49eN+64ADztilr3JYT2kL0/IodlNsN4Psg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDeaXd/4Pw8lF2Q4Pm4Xj+aBJ7wdIMT0NRKzW4KuiHjHQIhAOWYfJO4FdtCDja1qzUHe0/b6ytuo5VbnzfV1JY2qUDL"}]},"directories":{}},"0.6.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.6.0","homepage":"https://github.com/jonschlinkert/layouts","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/layouts.git"},"bugs":{"url":"https://github.com/jonschlinkert/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/layouts/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"mocha":"*","should":"^4.3.0"},"dependencies":{"chalk":"^0.5.1","delims":"^0.4.0","get-value":"^0.3.2","kind-of":"^0.1.2","layout-stack":"^0.1.1"},"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"gitHead":"5937b0d612ed7dd79785c6a518ff8e9a5442d963","_id":"layouts@0.6.0","_shasum":"6477c914fde23aa28b7c539d327477d995f3aa6b","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"6477c914fde23aa28b7c539d327477d995f3aa6b","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.6.0.tgz","integrity":"sha512-+k9DIc3D27pKRBGtKR4WMUNVyjnB+RgauqCkLrw0UwmnZWaVTtv/8i/2yUVdr0tgFtYjM5L2XvTSNelRt+fdNg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD0xllLzb+4i9nTILflgcgYwvSHKWKp2FZ39OFJuGYHagIgElcv1yWPTa13Crz1LzYG9BKiu3ZKah/ArtID93VQZds="}]},"directories":{}},"0.7.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.7.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/doowb/layouts/blob/master/LICENSE"}],"files":["index.js","lib/"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*","should":"^4.3.0"},"dependencies":{"chalk":"^0.5.1","get-value":"^1.0.2","kind-of":"^1.1.0","layout-stack":"^0.1.1"},"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"gitHead":"5937b0d612ed7dd79785c6a518ff8e9a5442d963","_id":"layouts@0.7.0","_shasum":"f0e2850505f5e559e287ad920417e9e1190f9354","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"f0e2850505f5e559e287ad920417e9e1190f9354","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.7.0.tgz","integrity":"sha512-j994jngqC/allylXnxDiAc/YwUIvFgt9XFm5s0n6Tjxom6vm+xBYrT2shhL6sRxbPq916e2Acuzu/EvMVGL6Hw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDvG9eMCQlOHO0hLDS53Qz+s2KhkqCY9VkjD3dJ3EQ5GAiEA8Jf3GPxdY7ZXkl2vmtmxsQGAOws/NO70Tp1y7uwCWjg="}]},"directories":{}},"0.7.1":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.7.1","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/doowb/layouts/blob/master/LICENSE"}],"files":["index.js","lib/"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*","should":"^4.3.0"},"dependencies":{"chalk":"^0.5.1","delimiter-regex":"^1.3.0","get-value":"^1.0.2","kind-of":"^1.1.0","layout-stack":"^0.1.1"},"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"gitHead":"ea86ed634aae60082e81cf49c7013b06053f5767","_id":"layouts@0.7.1","_shasum":"3ba5cd2bf174e339268dabd2a679105dbcf24003","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"3ba5cd2bf174e339268dabd2a679105dbcf24003","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.7.1.tgz","integrity":"sha512-YpRVBtiOYaAWzP+mwk+5UZ+tWcY0T4UnxPZ9zJOFu3fHEwxFvUh3LINYjsLt81CzYN57PyjvaRSPPdmHTtt6Mw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICxyDWCpqPdFmrYvamWhDwp8NM6IuXnlb1GQwa1c9cZ2AiEA5L1SS2M9WjrSdItZOyRlHNiYiyI2oxsxeWjk+qQAygk="}]},"directories":{}},"0.8.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.8.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"licenses":[{"type":"MIT","url":"https://github.com/doowb/layouts/blob/master/LICENSE"}],"files":["index.js","lib/"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"^2.2.0","should":"^4.3.0"},"dependencies":{"chalk":"^1.0.0","delimiter-regex":"^1.3.0","falsey":"^0.2.1","get-value":"^1.0.4"},"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"gitHead":"3481f2ff05a8d04b65d21a6d44ace9e809cb675a","_id":"layouts@0.8.0","_shasum":"a766041cffb308d78d55b7c1e49c6290e5b93268","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"a766041cffb308d78d55b7c1e49c6290e5b93268","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.8.0.tgz","integrity":"sha512-+mlbWwANtY1GOVklR9uwVI0apRbm5pIJt7QJXiDFx+Nt+Ks5X9jTs0dMpc/QxnpkX8xtbl/2Nz8bjGFgK5n0bw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTfRJDKrDWvANNUJoY/34fpotx6KESFgg3wYNS35NGIAIhAIbclvytGWW5B6QOypjA91ruBaBbTfeb/YiV/tHnI2HK"}]},"directories":{}},"0.8.1":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.8.1","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":{"type":"MIT","url":"https://github.com/doowb/layouts/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"chalk":"^1.0.0","delimiter-regex":"^1.3.0","falsey":"^0.2.1","get-value":"^1.0.4"},"devDependencies":{"mocha":"^2.2.0","should":"^4.3.0"},"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"gitHead":"a6adccf946a8db4efc7be426623d540d8d1abc11","_id":"layouts@0.8.1","_shasum":"15f53aee2625bf78bb91a2f45eab08942ef95630","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"15f53aee2625bf78bb91a2f45eab08942ef95630","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.8.1.tgz","integrity":"sha512-vBHBtd9tFSkp5pgXpOBjfvyS8hBM5KLU+UEfUcYsFng080eP049X/Fu6hMsWjT6glysxt4p9Aw0iKsw74GXnjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCf4UTD/bv1iBj+R0zaapDB45pls+pF7ie0x+ie5zo8HAIgCIERKy9ZkxccP35mF7M8oDNbGD/zLN7SVkYMrPoXNzM="}]},"directories":{}},"0.9.0":{"name":"layouts","description":"Wrap templates with layouts. Layouts can be nested and optionally use other layouts.","version":"0.9.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":{"type":"MIT","url":"https://github.com/doowb/layouts/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.0","falsey":"^0.2.1","get-value":"^1.0.4"},"devDependencies":{"lodash":"^3.5.0","mocha":"^2.2.0","should":"^5.1.0"},"keywords":["atpl","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml-coffee","hamljs","handlebars","hogan.js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"gitHead":"1ea3db7cbec599daac585ddbac1abeb53d1daf83","_id":"layouts@0.9.0","_shasum":"29ced985f16a0131581ea10ddff1aa019453ae09","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"29ced985f16a0131581ea10ddff1aa019453ae09","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.9.0.tgz","integrity":"sha512-/Tg7XzyLpcuSYkBIv0TIh6JXepIx2/jyiJK7LMFyE5SEBAyql8GrpTkbtyX9KOtMUyZxSM6Wj9QBv47u7e8Fqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFgcwCTOTsb6vGjnpCAv0Rqi/7I+5ihhPrTOMpkUXn/gIgApEuVAdKMr5SGKQNAtyUnX/twhFTbIjtweFdtiAOLds="}]},"directories":{}},"0.10.0":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc.","version":"0.10.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.1","falsey":"^0.2.1","get-value":"^1.1.5"},"devDependencies":{"lodash":"^3.10.0","mocha":"^2.2.5","should":"^7.0.2"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"related":{"list":["template","assemble","verb","handlebars-helpers","template-helpers"]}},"gitHead":"1ea3db7cbec599daac585ddbac1abeb53d1daf83","_id":"layouts@0.10.0","_shasum":"ff80a299961c0384c5def3d7b107df995e5add80","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"ff80a299961c0384c5def3d7b107df995e5add80","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.10.0.tgz","integrity":"sha512-vRMCAPSA6IbIjzyLSEMoh1IwM8DTFjoUSvF0/LfVoLJWxGo6Lj6sJ2Ov1hlhUL5EStnmD6khu/yrKnqpw7lYwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBLkMAvSau2k7qFrrReergLGAjoyp0z+W6a4fyJQaSuJAiEAqZBaV18YqUfAj8T9vfFexfOUM+UxXXe3r41kcy587V0="}]},"directories":{}},"0.10.1":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.10.1","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.1","falsey":"^0.2.1","get-value":"^1.1.5"},"devDependencies":{"lodash":"^3.10.0","mocha":"^2.2.5","should":"^7.0.2","to-vinyl":"^0.2.0","vinyl":"^0.5.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"related":{"list":["template","assemble","verb","handlebars-helpers","template-helpers"]}},"gitHead":"6a11ac87e07a052be21742fbe8d30d7851798e46","_id":"layouts@0.10.1","_shasum":"de6fef117f3685ae21eb4de586dce8f60f150571","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"de6fef117f3685ae21eb4de586dce8f60f150571","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.10.1.tgz","integrity":"sha512-RJFKf52LJxUKw2n9IOQpMSaTrt/s/R5pynHRsF6803BX3YE1pBVZiCHnAE6VFi95O2sond7g4fTckX7ZQqw7QQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWi66iyQoEPwbD0aBYHlqms/0VaQpxcaRop2TX++Eb2wIhAN65Se7JQ90VATAQxjvJz9RU6NMFKHkuaqCJV3UfGJM2"}]},"directories":{}},"0.10.2":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.10.2","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","prepublish":"browserify -o browser.js -e index.js -s index --bare"},"dependencies":{"delimiter-regex":"^1.3.1","extend-shallow":"^2.0.1","falsey":"^0.2.1","get-value":"^1.1.5","is-buffer":"^1.0.2","isobject":"^2.0.0","kind-of":"^2.0.0","lazy-cache":"^0.2.3","noncharacters":"^1.1.0"},"devDependencies":{"lodash":"^3.10.0","mocha":"^2.2.5","should":"^7.0.2","to-vinyl":"^0.2.0","vinyl":"^0.5.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"related":{"list":["template","assemble","verb","handlebars-helpers","template-helpers"]}},"gitHead":"3c0e922cbe3055f179ceb1cc09dfe8d474458639","_id":"layouts@0.10.2","_shasum":"c987d3681cafa5aeb85ddd95036cbf15bd31b2b5","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"c987d3681cafa5aeb85ddd95036cbf15bd31b2b5","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.10.2.tgz","integrity":"sha512-Hv9JRj2Oxqet2WrU7WmPZK8tbghq8D81+H35Lv9JOoH3MUBqGl1YSBSsauzRJXvyp9SX9e3k0BOKLaYW11ScjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCb6/WcFE1H16Ntqy9rLCvyum5wOIlg7cJg3RN4M1pmdgIgNYgXxhlhk+1u7VI/oFwakY37nLV+Yh5Ll4fG+9Qz9WI="}]},"directories":{}},"0.10.3":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.10.3","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","prepublish":"browserify -o browser.js -e index.js -s index --bare"},"dependencies":{"delimiter-regex":"^1.3.1","extend-shallow":"^2.0.1","falsey":"^0.2.1","get-value":"^1.1.5","is-buffer":"^1.0.2","isobject":"^2.0.0","kind-of":"^2.0.0","lazy-cache":"^0.2.3","noncharacters":"^1.1.0"},"devDependencies":{"browserify":"^11.0.1","lodash":"^3.10.0","mocha":"^2.2.5","should":"^7.0.2","to-vinyl":"^0.2.0","vinyl":"^0.5.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"related":{"list":["template","assemble","verb","handlebars-helpers","template-helpers"]}},"gitHead":"087475474a3d9b9d527132cdf59954e80744cc3e","_id":"layouts@0.10.3","_shasum":"66c30b281740178e5f5cd96a632602f1c841cf2a","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"66c30b281740178e5f5cd96a632602f1c841cf2a","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.10.3.tgz","integrity":"sha512-Db/0OGrcpBpSPPYoCb/AHjUGZFd72tNLjLN702N5MQuibX1u8R5pdXKq/H7lyFECAlDMoOnAEyXrSxmWaGeHAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHw6AvphDIuCoNmFPqt3a88cONRLigCpiuYlrQWB0zlXAiAc77lNHWf/XcGCSuRAuTO8pZSw8bZ23UICW86PtbMGaw=="}]},"directories":{}},"0.10.4":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.10.4","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.1","falsey":"^0.2.1","is-buffer":"^1.0.2","lazy-cache":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-istanbul":"^0.10.0","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","jshint-stylish":"^2.0.1","lodash":"^3.10.0","mocha":"^2.2.5","should":"^7.0.2","to-vinyl":"^0.2.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"related":{"list":["template","assemble","verb","handlebars-helpers","template-helpers"]}},"gitHead":"087475474a3d9b9d527132cdf59954e80744cc3e","_id":"layouts@0.10.4","_shasum":"130fe6fa953e24dea464695d36c3f02122316ed3","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"130fe6fa953e24dea464695d36c3f02122316ed3","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.10.4.tgz","integrity":"sha512-Kf8MTETbAZzzhKKD8Yz7MT9+SxKELuOzVDNHHPreklUydJrorcUaaCUJehFF/dzSixV9UoZqDdW5niFdb1K4aQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCR7H/KuIALUA+OgVw6AMiD2j6ucK7Q9g8X4wCmFpP4XwIgCR9/5dNdiT+cKE1H+Bjtxc0jgjey8vW4RE8LoBs3tPw="}]},"directories":{}},"0.10.5":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.10.5","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.1","falsey":"^0.2.1","is-buffer":"^1.0.2","lazy-cache":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-istanbul":"^0.10.0","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","jshint-stylish":"^2.0.1","lodash":"^3.10.0","mocha":"^2.2.5","should":"^7.0.2","to-vinyl":"^0.2.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"related":{"list":["template","assemble","verb","handlebars-helpers","template-helpers"]}},"gitHead":"087475474a3d9b9d527132cdf59954e80744cc3e","_id":"layouts@0.10.5","_shasum":"2dd24648a3aa2cd4eaae52e68f23cc50e4e82431","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"2dd24648a3aa2cd4eaae52e68f23cc50e4e82431","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.10.5.tgz","integrity":"sha512-+bGYuFEMpySW83ukg6SFTUHpXImk98tKCeUerYxtecpZrDTLEVvtgFMhmjj4Ydn9cep1moeeWSiVjfPDWZKTpw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDDm2vS4fxpYq5AXW/dKsY+x0yZuimN41lNtr4JYDHdTwIgO8c5HyEkgDf1aayL/oE6Rzqv7TDBV4oAK3zH/mV4ASs="}]},"directories":{}},"0.10.6":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.10.6","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.1","falsey":"^0.2.1","is-buffer":"^1.0.2","lazy-cache":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-istanbul":"^0.10.0","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","jshint-stylish":"^2.0.1","lodash":"^3.10.0","mocha":"^2.2.5","should":"^7.0.2","to-vinyl":"^0.2.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"related":{"list":["templates","assemble","inject-snippet","handlebars-layouts"]}},"gitHead":"69431149fbe7d9a508cef2301a55887e587ce57e","_id":"layouts@0.10.6","_shasum":"1cbfe54dc2af5fd1e44d4cb4680b55ca0789123e","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"1cbfe54dc2af5fd1e44d4cb4680b55ca0789123e","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.10.6.tgz","integrity":"sha512-Gc7GxVOsi0ods9scl1amxHigC+6zc01+XKazDQbn5opsjQvb6cqRalsTCDjcnEmCAnFUhvpvBCaNNJ/ZS8zhGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCCeP7miSvjNQL32fPRKOWlSeHBaM/gkdd4y9UHPg1s7QIhAJmtxcmYaRyspcTfKPEp1UL9J6i59d+h3iT6+d6wNA0U"}]},"directories":{}},"0.11.0":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.11.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.1","falsey":"^0.3.0","get-view":"^0.1.1","lazy-cache":"^1.0.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-istanbul":"^0.10.0","gulp-mocha":"^2.1.3","lodash":"^3.10.0","mocha":"*","should":"*","to-vinyl":"^0.2.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"related":{"list":["assemble","gulp","handlebars-layouts","inject-snippet","templates","verb","vinyl"]},"plugins":["gulp-format-md"],"layout":"default","reflinks":["vinyl"]},"gitHead":"bc385bb16e5999d3129100f1461f071d2220769b","_id":"layouts@0.11.0","_shasum":"c620e8b3cb88fc8c492db4538a7dd540a4df7f22","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"c620e8b3cb88fc8c492db4538a7dd540a4df7f22","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.11.0.tgz","integrity":"sha512-Zt65tua9otUMsfoQMAKmUSMGBwgkchSCc33ko/xBBSGnc/Q4+G8gJgouynZy7/iSnzpt3+myRRDQ9HQ5cctSog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG5VZuq4evXuhtefeIPvsU6JBstFpjAAzTGaREmPTzaVAiAMg7FGPBkitWlXmG3o83cf7Si1M3oDXMxsu/dl6mBk6A=="}]},"directories":{}},"0.12.0":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.12.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.1","falsey":"^0.3.0","get-view":"^0.1.1","lazy-cache":"^2.0.1"},"devDependencies":{"gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","lodash":"^4.13.1","mocha":"^2.5.3","to-vinyl":"^0.2.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","gulp","handlebars-layouts","inject-snippet","templates","verb","vinyl"]},"reflinks":["vinyl","verb-generate-readme","verb"],"lint":{"reflinks":true}},"gitHead":"f6ff7268fa4758c2402afcf05263844db477e8e8","_id":"layouts@0.12.0","_shasum":"b504d1f948ea25797370aa71bfbece9b6348c11c","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.1.1","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"dist":{"shasum":"b504d1f948ea25797370aa71bfbece9b6348c11c","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.12.0.tgz","integrity":"sha512-nJdo5tdea+Ts0bIHSEBHJ7TEY4XbJBJE9eOi8OKtxfIl6kKGm4mKFIbKlbahkjkKE/CGazHHxDjLbR2N3Du0wg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEMAHar+pX3E6KiF/kPAuXWoY44MZHMZTZOMujETtoYwAiARRBW2sHWntkG/Wi3IqRlkWUVSySF3WWdwM7iquez2dg=="}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/layouts-0.12.0.tgz_1468599096165_0.23209627508185804"},"directories":{}},"0.12.1":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.12.1","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^1.3.1","falsey":"^0.3.0","get-view":"^0.1.1","lazy-cache":"^2.0.1"},"devDependencies":{"gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","lodash":"^4.13.1","mocha":"^2.5.3","to-vinyl":"^0.2.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","gulp","handlebars-layouts","inject-snippet","templates","verb","vinyl"]},"reflinks":["vinyl","verb-generate-readme","verb"],"lint":{"reflinks":true}},"gitHead":"b91b98c8eb6460015fba21efa3c0f767a34fbb6b","_id":"layouts@0.12.1","_shasum":"6b99b3f1aa53e5e78c90ec75d4f491a6e0f57043","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"6b99b3f1aa53e5e78c90ec75d4f491a6e0f57043","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.12.1.tgz","integrity":"sha512-IU0CwMn6tCwpNy0cgTXuJNOXWd/HWipbDsSH7Lfqicy8Tp9buzu+S6CvEn8nGBDaYnrixfM4fEx1mH8SVG+wFg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCi05MCxiMfNkDGql40mqkFlMzzOdUoNaoX5kYPVYKcqQIgW2VlNNV8kTRuguBdS5KzzIwFwJ2BxXaRzzuz4ppoG5Q="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/layouts-0.12.1.tgz_1468611591301_0.3222707256209105"},"directories":{}},"0.13.0":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.13.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js","LICENSE","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^2.0.0","extend-shallow":"^2.0.1","falsey":"^0.3.0","get-view":"^0.1.2","isobject":"^2.1.0","lazy-cache":"^2.0.1"},"devDependencies":{"arr-union":"^3.1.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","mocha":"^2.5.3","to-vinyl":"^0.2.0","vinyl":"^1.1.1"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","gulp","handlebars-layouts","inject-snippet","templates","verb","vinyl"]},"reflinks":["verb","verb-generate-readme","vinyl"],"lint":{"reflinks":true}},"gitHead":"c55b3c8234fe1647b96b0771450488d20d988ba4","_id":"layouts@0.13.0","_shasum":"1f24ec10de53e19c932d7287c8fd6f0f7467fce0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"1f24ec10de53e19c932d7287c8fd6f0f7467fce0","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.13.0.tgz","integrity":"sha512-5v5pSnoCNsDu0GLNgtodZsqzkG5naYpDi7rKfd6c8AOu6SsFJgNiL5HkSJu4o3VLAmCbFsrOpcpccRf/z8Lq8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDW5fCuhJ88b8EJHSICgTr1sxEH4BM7cEydn86DXoQB2wIgXfWbI/CM+boGC6XDMq61WHghrS2QdpQUoSDyzaScGgg="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/layouts-0.13.0.tgz_1469494722544_0.31418927968479693"},"directories":{}},"0.13.1":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.13.1","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js","LICENSE","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^2.0.0","extend-shallow":"^2.0.1","falsey":"^0.3.0","get-view":"^0.1.2","isobject":"^2.1.0","lazy-cache":"^2.0.1"},"devDependencies":{"arr-union":"^3.1.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","mocha":"^2.5.3","to-vinyl":"^0.2.0","vinyl":"^1.1.1"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","gulp","handlebars-layouts","inject-snippet","templates","verb","vinyl"]},"reflinks":["verb","verb-generate-readme","vinyl"],"lint":{"reflinks":true}},"gitHead":"c55b3c8234fe1647b96b0771450488d20d988ba4","_id":"layouts@0.13.1","_shasum":"595ac544ef3d22a56dca718d92a1a521a02cb1dd","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"595ac544ef3d22a56dca718d92a1a521a02cb1dd","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.13.1.tgz","integrity":"sha512-MdR5x9PUDH+S0QUelDEp5em32DcnjZXMwJ62Zm5M1+dRRUXHYp+bzGTKiTIXvPE+qvvk9q/apKbVb9SR+r8jmw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCCI/ddDP12LrvjM4nBbhdF5N1l71HoUbBjc5NJ7olsVgIhAPunYg7sz3o3Zs1qI1MV3/HAVhpZhu92aSeYKSOgGdKT"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/layouts-0.13.1.tgz_1469495378186_0.4297087616287172"},"directories":{}},"0.13.2":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"0.13.2","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Jon Schlinkert,","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js","LICENSE","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^2.0.0","extend-shallow":"^2.0.1","falsey":"^0.3.0","get-view":"^0.1.2","isobject":"^2.1.0","lazy-cache":"^2.0.1"},"devDependencies":{"arr-union":"^3.1.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","mocha":"^2.5.3","to-vinyl":"^0.2.0","vinyl":"^1.1.1"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","gulp","handlebars-layouts","inject-snippet","templates","verb","vinyl"]},"reflinks":["verb","verb-generate-readme","vinyl"],"lint":{"reflinks":true}},"gitHead":"3910631727455259837cb8bb4994cae5ea4431a0","_id":"layouts@0.13.2","_shasum":"2514a36a4fac8cccdeb4d49e7107b0235bd87dc7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"shasum":"2514a36a4fac8cccdeb4d49e7107b0235bd87dc7","tarball":"https://registry.npmjs.org/layouts/-/layouts-0.13.2.tgz","integrity":"sha512-skzjcVoUomS++qnptAhWMLT+r4QkeiGBxJ3HsGdqkZIuW6MLwK0cGy8Rjwnr1zrI5Qu4w30pd4h64XZhJombCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnN3KFzIM9idUeuyc3i7EmZPUXG0WVmwEyXcSiCrDXLgIhAIifaKOl4VLnxCWbwAqSPhl2qhsGpBuFQYfzrUxIAaf+"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/layouts-0.13.2.tgz_1469496597915_0.7826693158131093"},"directories":{}},"1.0.0":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"1.0.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"delimiter-regex":"^2.0.0","falsey":"^0.3.0","get-view":"^0.1.3","isobject":"^3.0.1"},"devDependencies":{"arr-union":"^3.1.0","gulp":"^3.9.1","gulp-eslint":"^4.0.0","gulp-format-md":"^1.0.0","gulp-istanbul":"^1.1.2","gulp-mocha":"^3.0.1","mocha":"^3.5.0","to-vinyl":"^0.2.0","vinyl":"^2.1.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","gulp","handlebars-layouts","inject-snippet","templates","verb","vinyl"]},"reflinks":["verb","verb-generate-readme","vinyl"],"lint":{"reflinks":true}},"gitHead":"2ea9aef3e75b3453970fa1e9e4ac8c7604816f71","_id":"layouts@1.0.0","_npmVersion":"5.3.0","_nodeVersion":"7.7.3","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"}],"dist":{"integrity":"sha512-eaacjKkuigj+UD0emwHCEbKc5kUQezHne7Z1mQbVkX0KHhOfxWFc4v0zsHCXk54XaJLDxu3BufKyFrU8ULQgyw==","shasum":"3bab9f85ae504143f4eeb0d9cb6c5bc6adfe92fb","tarball":"https://registry.npmjs.org/layouts/-/layouts-1.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHA9EM3dHrIl/n/PrukAqX+a3ILRasdzEKI3g1CGzR8xAiAnUKXaE5i/Dqu2jCpN9HVUW+JEVUZnq1AvI0LxoO2NBg=="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/layouts-1.0.0.tgz_1502101767246_0.6620554067194462"},"directories":{}},"2.0.0":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"2.0.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=4"},"scripts":{"test":"nyc --reporter=text --reporter=html mocha"},"dependencies":{"falsey":"^1.0.0","get-view":"^2.0.0","kind-of":"^6.0.2"},"devDependencies":{"mocha":"^3.5.3","arr-union":"^3.1.0","vinyl":"^2.1.0","gulp-format-md":"^1.0.0","nyc":"^11.6.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","handlebars-layouts","hbs","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","templates","verb"]},"lint":{"reflinks":true}},"gitHead":"10c6d4341865b9b9914fda150f5e2d748b53c13b","_id":"layouts@2.0.0","_npmVersion":"5.7.1","_nodeVersion":"9.7.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-6qacAXstvsHRl1aLejuva4mqrNzfyOWP5gzbXOFaQQdCNj+lWGpIRXFCLkeJEK7/uw0aWUAXt1JdivAoBkdpTQ==","shasum":"d034d2b722e3a6b2adb57d5fd9124f50d7f1bd58","tarball":"https://registry.npmjs.org/layouts/-/layouts-2.0.0.tgz","fileCount":4,"unpackedSize":16891,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD49wii0AZ1gL3AMarwd6ozx8K9GqnAPKKbrF+C8xcfmQIgAdJOuxViIsUgmtGhXK8s3giHAMgamEshv+J1QTU3PYg="}]},"maintainers":[{"email":"brian.woodward@gmail.com","name":"doowb"},{"email":"github@sellside.com","name":"jonschlinkert"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/layouts_2.0.0_1521442899760_0.9165340773978705"},"_hasShrinkwrap":false},"2.0.1":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"2.0.1","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=4"},"scripts":{"test":"nyc --reporter=text --reporter=html mocha"},"dependencies":{"falsey":"^1.0.0","get-view":"^2.0.0","kind-of":"^6.0.2"},"devDependencies":{"mocha":"^3.5.3","arr-union":"^3.1.0","vinyl":"^2.1.0","gulp-format-md":"^1.0.0","nyc":"^11.6.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","handlebars-layouts","hbs","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","templates","verb"]},"lint":{"reflinks":true}},"gitHead":"10c6d4341865b9b9914fda150f5e2d748b53c13b","_id":"layouts@2.0.1","_npmVersion":"5.6.0","_nodeVersion":"9.9.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-60PHefTJ39cQr7ZNAOd9N1UqSTyNvHrgVmbi6lBaJ9PA0yQIPeT+CgdmoteZ0dQHrJWRq46IQVXZ8xDioGj1Iw==","shasum":"47a216c46947ee69ae8af761c2d304068797a3f7","tarball":"https://registry.npmjs.org/layouts/-/layouts-2.0.1.tgz","fileCount":4,"unpackedSize":15587,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEgL78q5Z5QuxN1mOdT8ZYaC++MCzZwGNMnrtqwyKYsBAiB2Uo98O+mImqxHxNLhHGOvi8BioppsG82LMuNtG9o+Ug=="}]},"maintainers":[{"email":"brian.woodward@gmail.com","name":"doowb"},{"email":"github@sellside.com","name":"jonschlinkert"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/layouts_2.0.1_1521864257065_0.9968816534742577"},"_hasShrinkwrap":false},"3.0.0":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"3.0.0","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=4"},"scripts":{"test":"nyc --reporter=text --reporter=html mocha"},"dependencies":{"get-view":"^2.0.0","kind-of":"^6.0.2"},"devDependencies":{"mocha":"^3.5.3","arr-union":"^3.1.0","vinyl":"^2.1.0","gulp-format-md":"^1.0.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","handlebars-layouts","hbs","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","templates","verb"]},"lint":{"reflinks":true}},"gitHead":"e15b448130c6d55db0ac3b2625222007d9e6314d","_id":"layouts@3.0.0","_npmVersion":"5.8.0","_nodeVersion":"9.9.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-D5rWFaG1pp4G2RFv0nXETHFVzMLEczDtjw5h0RnDk381nqeAQEfS3xXWvj4sxwcHSPLDYcWo9wl3vhr6p6rU9g==","shasum":"4c7cd2e038a79df25647e831e72a7c3c6a163dd6","tarball":"https://registry.npmjs.org/layouts/-/layouts-3.0.0.tgz","fileCount":4,"unpackedSize":15937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa25q5CRA9TVsSAnZWagAArC8P/38SvP87o6x5KXXI2ly2\ntNN7t126NQiGgDZwK8DlX44BlhcxN45DUe1MjgEA01P9xqN7T+EOHP0SenFB\nx6mfkg2MRmbDH0nrq6QRun97s2cX6ddG0KdZUuuPERtsIQXhyRgwgQDi2A6C\nOhMewEpUlbJzt/kyZcYDa49sw7MffR6BVsOSLYRcUeiUyfqh4ZbF7WbbZEEn\n1D4MKXuFanW1HFd18OXfGaJu+Ff07SbDHLMDqOBYa5ZoHsbcZowsImmriVXn\nHnngApDF6JL3lybRneQTpxZO5loz9O+Dy/Lrc7B7y6Yqw/2bPME0Ch2jCdva\njjnpXZqW/MIPKld4I6TY6q7e5SNbNwoVjR5dCkuaAS+IGJLb/qpDbH6XqKir\nMz6ZKQ4dXIHsdCM/c9geq1KiwdwMNuAqIVQYgoUJfGbJGsyO7No7QaJ+saLl\nYYosa+gV+MjXIB/L1+Xg3ktWcJZjdiFXWaQqSM4yGWRHxEqvhjKNAs9fqnfR\nU8172UAHxtQ2LmL80hGEngtiX9V/L/R9HmkD0mENvFooLXVFY1awa5+7yd1E\nGVtsGTdbQfpoOOPsMhsQTpAqwnNyGKFK/p6A4JraDUjQruz644A65uHHCZYr\ncBJ4wUBi6GekcWl3IY0VApR1H6UJV3yfFEOZuUedoLpb8i02IuRtDTCLH3tV\nx44F\r\n=pDzb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCNIqCL5v665D4YxK6Z40a1BkM1W18d4U4WCgVuMi2IrwIgH3SVIp2yZx1aM6Ur5mAj7JAaz03PXRui8QDBRjg/t8Q="}]},"maintainers":[{"email":"brian.woodward@gmail.com","name":"doowb"},{"email":"github@sellside.com","name":"jonschlinkert"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/layouts_3.0.0_1524341431657_0.08697528069356197"},"_hasShrinkwrap":false},"3.0.1":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"3.0.1","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=4"},"scripts":{"test":"nyc --reporter=text --reporter=html mocha"},"dependencies":{"get-view":"^2.0.0","kind-of":"^6.0.2"},"devDependencies":{"mocha":"^3.5.3","arr-union":"^3.1.0","vinyl":"^2.1.0","gulp-format-md":"^1.0.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","handlebars-layouts","hbs","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","templates","verb"]},"lint":{"reflinks":true}},"gitHead":"fcbecdb7a979848308ff4102eae3fca1a7778b92","_id":"layouts@3.0.1","_npmVersion":"5.8.0","_nodeVersion":"9.9.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-ww5dnqOWm4I+eMSB3oe7dout3wZ27UZmsq22CnCI6F+OACSLUydCNRlIqP93eSW0eRt81J4z996crbJHCs9h3w==","shasum":"eb706eacaa20521c1e2516df37d0e3a4971a0e98","tarball":"https://registry.npmjs.org/layouts/-/layouts-3.0.1.tgz","fileCount":4,"unpackedSize":15939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa25wUCRA9TVsSAnZWagAAS0oP/jE2hiI09F2rsIfroJ+x\nlGmUf3mHztnBP89jJJc/8FEl/4iPfumTiJq9KPSaQ8/m6IYYGFbaX1DiaHcN\n6if/KwQ21HM9nndFP3AHz066elhsw0+hmm9ajdrQ7kRok2/XiJ7ONQeeT0G6\nRBMme4eHd9BgqVoEG2MMl7bxggWGc8I4dEwEGk3PM5g/Gj9e0d0e852Kryzn\nO90+F367SY12FDwbXfjI5pGfopp3JsvO00AAg5Mu4tU77PhQxMwK4i0pKGy8\nfNjGU76EXTkMJyvnpn6q0t6eYMp9Qima6RCRQqHVQZmFtKKeEcEfx+NdV2jY\n6gyR7IuYwiyaI/LPrYwTtGhhps1umbxMg3JBNvmRQBKqKv8QMnKhnJw35dQW\nrZmexenvV7ZMGvYEq4GEFsCKY8USMz/OLJkzbNHRZvpDyDEwkakvfKS9hXkY\nqUS7nCHfQ46tc6UY2F75nPRvQYLbtmYLk4NJhqD7vwU6faWgpxsOlmIlHa4K\nUT0UtngyAOjfc80Xn+S007Dktd2zNoe7lzebgp3z1yXoJUnjQL7uG+5/9OpU\ngtTl770CQQ1kJRv2VAbMLzqtdwojB7dFOFKnzyVIojABC9RVcmeDWVFeOL83\nnA16TFrLd6JYQlJ9phhFxztvoD2FCI3A55u5g+AwdPUcN7lcdGSBtVaUvOOe\ns2JR\r\n=Miii\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICsEVXRh150pE++bBgTUtvzUzkbPpbbyZImlIzveTEQLAiA44oNIHTgVVKAdfORVT1ffeWV5bgu/GuQ5cVYf+zn1Qw=="}]},"maintainers":[{"email":"brian.woodward@gmail.com","name":"doowb"},{"email":"github@sellside.com","name":"jonschlinkert"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/layouts_3.0.1_1524341779504_0.7590469883622162"},"_hasShrinkwrap":false},"3.0.2":{"name":"layouts","description":"Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. La","version":"3.0.2","homepage":"https://github.com/doowb/layouts","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"license":"MIT","main":"index.js","engines":{"node":">=4"},"scripts":{"test":"nyc --reporter=text --reporter=html mocha"},"dependencies":{"get-view":"^2.0.0","kind-of":"^6.0.2"},"devDependencies":{"arr-union":"^3.1.0","gulp-format-md":"^1.0.0","mocha":"^3.5.3","nyc":"^13.3.0","vinyl":"^2.1.0"},"keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","handlebars-layouts","hbs","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","templates","verb"]},"lint":{"reflinks":true}},"gitHead":"7671e2a0d826d27d84a9077ed483b60cbefd237d","_id":"layouts@3.0.2","_npmVersion":"6.4.1","_nodeVersion":"10.15.2","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"dist":{"integrity":"sha512-5mDaJkza/0uze+TrQZNEy+m9mUu9FWBIKwc6T/CjzHzRHg0BXSf5apvsMm/1AGvakyv1Lgj94BnwSseCJS8YSA==","shasum":"3c2ceb15e5f53d1835c0d432f521d79013f86204","tarball":"https://registry.npmjs.org/layouts/-/layouts-3.0.2.tgz","fileCount":4,"unpackedSize":15960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr17QCRA9TVsSAnZWagAArZEP/jnAivlUDPl2H0zEdvyR\nBiYm01km4inn6x66ShIj4WWmacck+sArP353yxNDwHlkJS3r6HWZOzbhRWEm\nQmBcMCbpRckjAAmfphIas0qYzJnt4LWf/E/6ZU7bUeeyljOvTAUS+Og1EnfX\noR7KHlVdHwOrXHqn1VdX/tJX2r0P2uLmVXGRGypwtsTRULapE/tmFmtoNWhx\nxN2j+emK7+r53pfDQok7wG3pl2J+s4oLEEIPSJz8NX+OYtcpXMAE0b/9SJKq\nbe3chG5B+luVtWPj5p6ZGQSMm4GIj1lzAf6+Oaou5/oPyYcHy2MNhFMfow8w\nrrCKTxlKD3q47NbcK6HY3DuyGr1K6K+CkljMVBZl2GOSpQNNLfJj2XJ2roN3\nwTN0Q/wh6Z5tcqozXGp5eD+2MYRz0QtrHBmbG+cID5QizNac4STYp//QGxPo\nrDENRr8GidW8a4QW1lGwQkxW7GgGqQVRmIqEdZ1+a7BFGmWEniFnsKEpd2kr\n8N63zG3CLjw4YlvvtXTCAvs/SjFJKusSC+SqV+jhS/bxPw7UNJxLFr7FsZh+\nin4YsaTzlhMUSfxFI+KGullho8T17h3UwSXJqjmEXdW9P/JtshXzO6dzGsk7\ncRfkrKDxpKOomkG3j3b3d19iBRceOb7HygyvjEaHazXe2yoHVm/GCyRPimPZ\nExXW\r\n=UKl0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5R4ia1yH6PMzbt7WujzySXUFZd/0h4tB+6jT1zDtIBgIhANqWrLFsyOiQbUEY28DrBzy2oHeTj+EmZkabTAy+oli8"}]},"maintainers":[{"email":"brian.woodward@gmail.com","name":"doowb"},{"email":"github@sellside.com","name":"jonschlinkert"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/layouts_3.0.2_1554996943477_0.8136604953906872"},"_hasShrinkwrap":false}},"homepage":"https://github.com/doowb/layouts","keywords":["atpl","coffee","consolidate","dot","dust","eco","ect","ejs","engine","engines","express","haml","haml-coffee","hamljs","handlebars","handlebars-layouts","hbs","hogan","hogan-js","jade","jazz","jqtpl","layout","layouts","liquor","lodash","mote","mustache","nest","nested","nunjucks","page","qejs","ractive","stack","stacked","swig","template","templates","templayed","tmpl","toffee","transformers","underscore","walrus","whiskers","wrap"],"repository":{"type":"git","url":"git+https://github.com/doowb/layouts.git"},"author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"bugs":{"url":"https://github.com/doowb/layouts/issues"},"readmeFilename":"README.md","license":"MIT","contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"users":{"imaginegenesis":true,"davidbwaters":true}}