{"_id":"assemble-core","maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"keywords":["assemble","assembleplugin","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cli","cli-app","collection","command-line","compile","component","components","core","create","dev","development","doc","docs","documentation","engines","framework","front","front-matter","frontend","generate","generator","handlebars","helpers","html","inflections","init","jekyll","layout","markdown","pages","partial","partials","plugin","post","project","project-template","projects","render","scaffold","scaffolder","scaffolding","scaffolds","site","static","static-site","template","templates","templating","view","views","web","webapp","website","yaml","yeoman","yo"],"dist-tags":{"latest":"0.31.0"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","readme":"<p align=\"center\">\n\n<a href=\"https://github.com/assemble/assemble\">\n<img height=\"250\" width=\"250\" src=\"https://raw.githubusercontent.com/assemble/assemble-core/master/docs/logo.png\">\n</a>\n</p>\n\n# assemble-core\n\n[![NPM version](https://img.shields.io/npm/v/assemble-core.svg?style=flat)](https://www.npmjs.com/package/assemble-core) [![NPM monthly downloads](https://img.shields.io/npm/dm/assemble-core.svg?style=flat)](https://npmjs.org/package/assemble-core) [![Build Status](https://img.shields.io/travis/assemble/assemble-core.svg?style=flat)](https://travis-ci.org/assemble/assemble-core) [![Gitter](https://badges.gitter.im/join_chat.svg)](https://gitter.im/assemble/assemble-core)\n\nBuilt on top of [base](https://github.com/node-base/base) and [templates](https://github.com/jonschlinkert/templates), assemble-core is used in [assemble](https://github.com/assemble/assemble) to provide the baseline features and API necessary for rendering templates, working with the file system, and running tasks.\n\nImplementors and hackers can use assemble-core to create rich and powerful build tooling, project scaffolding systems, documentation generators, or even your completely custom static site generators.\n\n<details>\n<summary><strong>Table of contents</strong></summary>\n- [What can I do with assemble-core?](#what-can-i-do-with-assemble-core)\n- [Install](#install)\n- [Install](#install-1)\n- [Usage](#usage)\n- [Examples](#examples)\n- [API](#api)\n  * [File System API](#file-system-api)\n    + [.src](#src)\n    + [.dest](#dest)\n    + [.copy](#copy)\n    + [.symlink](#symlink)\n  * [Task API](#task-api)\n    + [.task](#task)\n    + [.build](#build)\n    + [.watch](#watch)\n- [FAQ](#faq)\n- [Toolkit suite](#toolkit-suite)\n- [About](#about)\n  * [Related projects](#related-projects)\n  * [Tests](#tests)\n  * [Contributing](#contributing)\n  * [Release History](#release-history)\n  * [Authors](#authors)\n  * [License](#license)\n\n_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_\n</details>\n\n## What can I do with assemble-core?\n\nCreate your own:\n\n* blog engine\n* project generator / scaffolder\n* e-book development framework\n* build system\n* landing page generator\n* documentation generator\n* front-end UI framework\n* rapid prototyping framework\n* static site generator\n* web application\n\n## Install\n\n**NPM**\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save assemble-core\n```\n\n**yarn**\n\nInstall with [yarn](yarnpkg.com):\n\n```sh\n$ yarn add assemble-core && yarn upgrade\n```\n\n## Usage\n\n```js\nvar assemble = require('assemble-core');\nvar app = assemble();\n```\n\n## Examples\n\n**view collections**\n\nCreate a custom view collection:\n\n```js\nvar app = assemble();\napp.create('pages');\n```\n\nNow you can add pages with `app.page()` or `app.pages()`:\n\n```js\napp.page('home.hbs', {content: 'this is the home page!'});\n```\n\n**render**\n\nRender a view:\n\n```js\nvar app = assemble();\n\nvar view = app.view('foo', {content: 'Hi, my name is <%= name %>'});\n\napp.render(view, { name: 'Brian' }, function(err, res) {\n  console.log(res.content);\n  //=> 'Hi, my name is Brian'\n});\n```\n\nRender a view from a collection:\n\n```js\nvar app = assemble();\napp.create('pages');\n\napp.page('foo', {content: 'Hi, my name is <%= name %>'})\n  .set('data.name', 'Brian')\n  .render(function (err, res) {\n    console.log(res.content);\n    //=> 'Hi, my name is Brian'\n  });\n```\n\n## API\n\n### [Assemble](index.js#L22)\n\nCreate an `assemble` application. This is the main function exported by the assemble module.\n\n**Params**\n\n* `options` **{Object}**: Optionally pass default options to use.\n\n**Example**\n\n```js\nvar assemble = require('assemble');\nvar app = assemble();\n```\n\n***\n\n### File System API\n\nAssemble has the following methods for working with the file system:\n\n* [src](#src)\n* [dest](#dest)\n* [copy](#copy)\n* [symlink](#symlink)\n\nAssemble v0.6.0 has full [vinyl-fs](http://github.com/wearefractal/vinyl-fs) support, so any [gulp](http://gulpjs.com) plugin should work with assemble.\n\n#### .src\n\nUse one or more glob patterns or filepaths to specify source files.\n\n**Params**\n\n* `glob` **{String|Array}**: Glob patterns or file paths to source files.\n* `options` **{Object}**: Options or locals to merge into the context and/or pass to `src` plugins\n\n**Example**\n\n```js\napp.src('src/*.hbs', {layout: 'default'});\n```\n\n#### .dest\n\nSpecify the destination to use for processed files.\n\n**Params**\n\n* `dest` **{String|Function}**: File path or custom renaming function.\n* `options` **{Object}**: Options and locals to pass to `dest` plugins\n\n**Example**\n\n```js\napp.dest('dist/');\n```\n\n#### .copy\n\nCopy files from A to B, where `A` is any pattern that would be valid in [app.src](#src) and `B` is the destination directory.\n\n**Params**\n\n* `patterns` **{String|Array}**: One or more file paths or glob patterns for the source files to copy.\n* `dest` **{String|Function}**: Desination directory.\n* `returns` **{Stream}**: The stream is returned, so you can continue processing files if necessary.\n\n**Example**\n\n```js\napp.copy('assets/**', 'dist/');\n```\n\n#### .symlink\n\nGlob patterns or paths for symlinks.\n\n**Params**\n\n* `glob` **{String|Array}**\n\n**Example**\n\n```js\napp.symlink('src/**');\n```\n\n***\n\n### Task API\n\nAssemble has the following methods for running tasks and controlling workflows:\n\n* [task](#task)\n* [build](#build)\n* [watch](#watch)\n\n#### .task\n\nDefine a task. Tasks are functions that are stored on a `tasks` object, allowing them to be called later by the [build](#build) method. (the [CLI](https://github.com/assemble/assemble-cli) calls [build](#build) to run tasks)\n\n**Params**\n\n* `name` **{String}**: Task name\n* `fn` **{Function}**: function that is called when the task is run.\n\n**Example**\n\n```js\napp.task('default', function() {\n  return app.src('templates/*.hbs')\n    .pipe(app.dest('dist/'));\n});\n```\n\n#### .build\n\nRun one or more tasks.\n\n**Params**\n\n* `tasks` **{Array|String}**: Task name or array of task names.\n* `cb` **{Function}**: callback function that exposes `err`\n\n**Example**\n\n```js\napp.build(['foo', 'bar'], function(err) {\n  if (err) console.error('ERROR:', err);\n});\n```\n\n#### .watch\n\nWatch files, run one or more tasks when a watched file changes.\n\n**Params**\n\n* `glob` **{String|Array}**: Filepaths or glob patterns.\n* `tasks` **{Array}**: Task(s) to watch.\n\n**Example**\n\n```js\napp.task('watch', function() {\n  app.watch('docs/*.md', ['docs']);\n});\n```\n\n## FAQ\n\n**How does assemble-core differ from [assemble](https://github.com/assemble/assemble)?**\n\n| **feature** | **assemble-core** | **assemble** | **notes** | \n| --- | :---: | :---: | --- |\n| front-matter parsing | No | Yes | use [assemble](https://github.com/assemble/assemble) or use [parser-front-matter](https://github.com/jonschlinkert/parser-front-matter) as an `.onLoad` middleware. |\n| CLI | No | Yes | Create your own CLI experience, or use [assemble](https://github.com/assemble/assemble) |\n| Built-in template collections | No | Yes | Use `.create()` to add collections |\n| Built-in template engine | No | Yes | [assemble](https://github.com/assemble/assemble) ships with [engine-handlebars](https://github.com/jonschlinkert/engine-handlebars). Use `.engine()` to register any [consolidate](https://github.com/visionmedia/consolidate.js)-compatible template engine. |\n\n## Toolkit suite\n\nassemble-core is a standalone application that was created using applications and plugins from the [toolkit suite](https://github.com/node-toolkit/getting-started):\n\n**Building blocks**\n\n* [base](https://github.com/node-base/base): framework for rapidly creating high quality node.js applications, using plugins like building blocks.\n* [templates](https://github.com/jonschlinkert/templates): used to create the foundation of assemble-core's API, along with support for managing template collections, template engines and template rendering support\n\n**Plugins**\n\n* [assemble-fs](https://github.com/assemble/assemble-fs): adds support for using [gulp](http://gulpjs.com) plugins and working with the file system\n* [assemble-streams](https://github.com/assemble/assemble-streams): adds support for pushing views and view collections into a [vinyl](https://github.com/gulpjs/vinyl) stream\n* [base-task](https://github.com/node-base/base-task): adds flow control methods\n\n## About\n\n### Related projects\n\nAssemble is built on top of these great 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* [boilerplate](https://www.npmjs.com/package/boilerplate): Tools and conventions for authoring and using declarative configurations for project \"boilerplates\" that can be… [more](https://github.com/jonschlinkert/boilerplate) | [homepage](https://github.com/jonschlinkert/boilerplate \"Tools and conventions for authoring and using declarative configurations for project \"boilerplates\" that can be consumed by any build system or project scaffolding tool.\")\n* [composer](https://www.npmjs.com/package/composer): API-first task runner with three methods: task, run and watch. | [homepage](https://github.com/doowb/composer \"API-first task runner with three methods: task, run and watch.\")\n* [generate](https://www.npmjs.com/package/generate): Command line tool and developer framework for scaffolding out new GitHub projects. Generate offers the… [more](https://github.com/generate/generate) | [homepage](https://github.com/generate/generate \"Command line tool and developer framework for scaffolding out new GitHub projects. Generate offers the robustness and configurability of Yeoman, the expressiveness and simplicity of Slush, and more powerful flow control and composability than either.\")\n* [scaffold](https://www.npmjs.com/package/scaffold): Conventions and API for creating declarative configuration objects for project scaffolds - similar in format… [more](https://github.com/jonschlinkert/scaffold) | [homepage](https://github.com/jonschlinkert/scaffold \"Conventions and API for creating declarative configuration objects for project scaffolds - similar in format to a grunt task, but more portable, generic and can be used by any build system or generator - even gulp.\")\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### Tests\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### Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\nPlease read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.\n\nIf Assemble doesn't do what you need, [please let us know](../../issues).\n\n### Release History\n\n#### key\n\nChangelog entries are classified using the following labels from [keep-a-changelog](https://github.com/olivierlacan/keep-a-changelog):\n\n* `added`: for new features\n* `changed`: for changes in existing functionality\n* `deprecated`: for once-stable features removed in upcoming releases\n* `removed`: for deprecated features removed in this release\n* `fixed`: for any bug fixes\n\nCustom labels used in this changelog:\n\n* `dependencies`: bumps dependencies\n* `housekeeping`: code re-organization, minor edits, or other changes that don't fit in one of the other categories.\n\n**Heads up!**\n\nPlease [let us know](../../issues) if any of the following heading links are broken. Thanks!\n\n#### [0.31.0](https://github.com/assemble/assemble-core/compare/0.30.0...0.31.0) - 2017-11-2011\n\n**dependencies**\n\n* Bumps [assemble-streams](https://github.com/assemble/assemble-streams) to ensure that `view` is decorated with `.toStream()` when created by app (instead of a collection). This is arguably a bugfix, but it might break someone's code.\n\n#### [0.30.0](https://github.com/assemble/assemble-core/compare/0.29.0...0.30.0) - 2017-08-01\n\n**dependencies**\n\n* Bumps [assemble-fs](https://github.com/assemble/assemble-fs) and [assemble-render-file](https://github.com/assemble/assemble-render-file) to get updates that merge the dest path information onto the context so that it can be used to calculate relative paths for navigation, pagination, etc.\n\n#### [0.29.0](https://github.com/assemble/assemble-core/compare/0.28.0...0.29.0) - 2017-02-01\n\n**dependencies**\n\n* Bumps [assemble-fs](https://github.com/assemble/assemble-fs) to v0.9.0 to take advantage of improvements to `.dest()` handling.\n\n#### [0.28.0](https://github.com/assemble/assemble-core/compare/0.27.0...0.28.0) - 2017-02-01\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v1.2.0 to take advantage of new methods available on `list`s\n\n#### [0.27.0](https://github.com/assemble/assemble-core/compare/0.26.0...0.27.0) - 2016-12-27\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v1.0.0 to take advantage of new template inheritance features!\n* Bumps [assemble-fs](https://github.com/assemble/assemble-fs) to v0.8.0\n\n#### [0.26.0](https://github.com/assemble/assemble-core/compare/0.25.0...0.26.0) - 2016-08-06\n\n**dependencies**\n\n* Bumps [assemble-fs](https://github.com/assemble/assemble-fs) to v0.7.0 to take advantage of `handle.once`\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.25.0 to take advantage of async collection loaders. No changes to existing API.\n\n#### [0.25.0](https://github.com/assemble/assemble-core/compare/0.24.0...0.25.0) - 2016-07-05\n\n**changed**\n\n* Minor code organization and [private properties were changed](https://github.com/assemble/assemble-core/commit/5746164004647f2b7dc8883a3323922839f56958). This is technically a housekeeping change since these methods weren't exposed on the API, but it's possible someone was using them in an unintended way.\n\n#### [0.24.0](https://github.com/assemble/assemble-core/compare/0.23.0...0.24.0)\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.24.0 to use the latest [base-data](https://github.com/node-base/base-data)\n\n**removed**\n\n* The bump in `templates` removes the `renameKey` option from the `.data` method. Use the `namespace` option instead.\n\n#### [0.23.0](https://github.com/assemble/assemble-core/compare/0.22.0...0.23.0)\n\n**fixed**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.23.0 to fix bug with double rendering in [engine-cache](https://github.com/jonschlinkert/engine-cache).\n\n#### [0.22.0](https://github.com/assemble/assemble-core/compare/0.21.0...0.22.0)\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.22.0 to take advantage of fixes and improvements to lookup methods: `.find` and `getView`. No API changes were made. Please [let us know](../../issues) if regressions occur.\n* Bumps [base](https://github.com/node-base/base) to take advantages of code optimizations.\n\n**fixed**\n\n* fixes `List` bug that was caused collection helpers to explode\n\n**changed**\n\n* Improvements to lookup functions: `app.getView()` and `app.find()`\n\n#### [0.21.0](https://github.com/assemble/assemble-core/compare/0.20.0...0.21.0)\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.21.0.\n\n**removed**\n\n* Support for the `queue` property was removed on collections. See [templates](https://github.com/jonschlinkert/templates) for additional details.\n\n#### [0.20.0](https://github.com/assemble/assemble-core/compare/0.19.0...0.20.0)\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.20.0.\n\n**changed**\n\n* Some changes were made to context handling that effected one unit test out of ~1,000. although it's unlikely you'll be effected by the change, it warrants a minor bump\n\n#### [0.19.0](https://github.com/assemble/assemble-core/compare/0.18.0...0.19.0)\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.19.0\n\n**housekeeping**\n\n* Externalizes tests (temporarily) to base-test-runner, until we get all of the tests streamlined to the same format.\n\n#### [0.18.0](https://github.com/assemble/assemble-core/compare/0.17.0...0.18.0)\n\n**dependencies**\n\n* Bumps [assemble-loader](https://github.com/assemble/assemble-loader) to v0.5.0, which includes which fixes a bug where `renameKey` was not always being used when defined on collection loader options.\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.18.0, which includes fixes for resolving layouts\n\n#### [0.17.0](https://github.com/assemble/assemble-core/compare/0.16.0...0.17.0)\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.17.0\n\n#### [0.16.0](https://github.com/assemble/assemble-core/compare/0.15.0...0.16.0)\n\n**dependencies**\n\n* Bumps [assemble-render-file](https://github.com/assemble/assemble-render-file) to v0.5.0 and [templates](https://github.com/jonschlinkert/templates) to v0.16.0\n\n#### [0.15.0](https://github.com/assemble/assemble-core/compare/0.14.0...0.15.0)\n\n**dependencies**\n\n* Bumps [assemble-streams](https://github.com/assemble/assemble-streams) to v0.5.0\n\n#### [0.14.0](https://github.com/assemble/assemble-core/compare/0.13.0...0.14.0)\n\n**dependencies**\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to v0.15.1\n\n**deprecated**\n\n* `.handleView` method is now deprecated, use `.handleOnce` instead\n\n**changed**\n\n* Private method `.mergePartialsSync` rename was reverted to `.mergePartials` to be consistent with other updates in `.render` and `.compile`.\n\n**added**\n\n* adds logging methods from [base-logger](https://github.com/node-base/base-logger) (`.log`, `.verbose`, etc)\n* No other breaking changes, but some new features were added to [templates](https://github.com/jonschlinkert/templates) for handling context in views and helpers.\n\n#### [0.13.0](https://github.com/assemble/assemble-core/compare/0.9.0...0.13.0)\n\n* Breaking change: bumps [templates](https://github.com/jonschlinkert/templates) to v0.13.0 to fix obscure rendering bug when multiple duplicate partials were rendered in the same view. But the fix required changing the `.mergePartials` method to be async. If you're currently using `.mergePartials`, you can continue to do so synchronously using the `.mergePartialsSync` method.\n\n#### [0.9.0](https://github.com/assemble/assemble-core/compare/0.8.0...0.9.0)\n\n* Updates [composer](https://github.com/doowb/composer) to v0.11.0, which removes the `.watch` method in favor of using the [base-watch](https://github.com/node-base/base-watch) plugin.\n\n#### [0.8.0](https://github.com/assemble/assemble-core/compare/0.7.0...0.8.0)\n\n* Bumps several deps. [templates](https://github.com/jonschlinkert/templates) was bumped to 0.9.0 to take advantage of event handling improvements.\n\n#### [0.7.0](https://github.com/assemble/assemble-core/compare/0.6.0...0.7.0)\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to 0.8.0 to take advantage of `isType` method for checking a collection type, and a number of improvements to how collections and views are instantiated and named.\n\n#### [0.6.0](https://github.com/assemble/assemble-core/compare/0.5.0...0.6.0)\n\n* Bumps [assemble-fs](https://github.com/assemble/assemble-fs) plugin to 0.5.0, which introduces `onStream` and `preWrite` middleware handlers.\n* Bumps [templates](https://github.com/jonschlinkert/templates) to 0.7.0, which fixes how non-cached collections are initialized. This was done as a minor instead of a patch since - although it's a fix - it could theoretically break someone's setup.\n\n#### [0.5.0](https://github.com/assemble/assemble-core/compare/0.4.0...0.5.0)\n\n* Bumps [templates](https://github.com/jonschlinkert/templates) to latest, 0.6.0, since it uses the latest [base-methods](https://github.com/jonschlinkert/base-methods), which introduces prototype mixins. No API changes.\n\n#### [0.4.0]\n\n* Removed [emitter-only](https://github.com/doowb/emitter-only) since it was only includes to be used in the default listeners that were removed in an earlier release. In rare cases this might be a breaking change, but not likely.\n* Adds lazy-cache\n* Updates [assemble-streams](https://github.com/assemble/assemble-streams) plugin to latest\n\n_(Changelog generated by [helper-changelog](https://github.com/helpers/helper-changelog))_\n\n### Authors\n\n**Jon Schlinkert**\n\n* [github/jonschlinkert](https://github.com/jonschlinkert)\n* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n**Brian Woodward**\n\n* [github/doowb](https://github.com/doowb)\n* [twitter/doowb](http://twitter.com/doowb)\n\n### License\n\nCopyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).\nMIT\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.4.2, on February 11, 2017._","repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","versions":{"0.6.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.6.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.1","assemble-render-file":"^0.3.0","assemble-streams":"^0.3.0","base-tasks":"^0.1.2","lazy-cache":"^1.0.2","templates":"^0.6.3"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.6.1","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.2","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.1","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.4.4","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","composer","generate","boilerplate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["<%= Object.keys(dependencies) %>","<%= related.list %>","gulp","vinyl-fs","handlebars","assemble-cli","assemble-streams","emitter-only","base-methods"]},"gitHead":"7367f388bf28fd3b8066b688817455598e59abcc","_id":"assemble-core@0.6.0","_shasum":"135954d1617da2d9fced4cf9685f2a1a1b37cc53","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"135954d1617da2d9fced4cf9685f2a1a1b37cc53","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.6.0.tgz","integrity":"sha512-b0rZrFz9N3GJQQZGB4sXxqnT9R/aHYrFfzmlZ016TReNWmZ8Pn8qhx62zwIX/1IRvVSj6Eq8QMLFnoJniKK8Iw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDkbrg975MFQm2wXlHVstZVSewC0GjI1wJZy2fcaCiXGAIhAIEv/lBR7AeHK4qBIPjJ3N052uIpBu40oneHNgKOYOof"}]}},"0.4.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.4.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.3.0","assemble-streams":"^0.3.0","base-tasks":"^0.1.2","lazy-cache":"^0.2.4","templates":"^0.5.0"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.5.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.0","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.0","kind-of":"^3.0.2","load-pkg":"^2.0.1","look-up":"^0.8.2","minimist":"^1.2.0","mocha":"^2.3.4","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.4.4","should":"^7.1.1","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"7cfef86f7f98c083c0756a9e8d2d5254a7c0fd62","_id":"assemble-core@0.4.0","_shasum":"896a520ec2171f185dbf95e06429217232d0f523","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"896a520ec2171f185dbf95e06429217232d0f523","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.4.0.tgz","integrity":"sha512-jTUqyTHJ1BtIDOJmClWXMY9/NelHC5VJgBIyIVjKSCye+oCuXVxwQC5FRYU5uGD0pY6btpFtbHJQWOsIKPnSZw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAN0nWfWnIdJd0pdJBiqPp4sUDjpE1MF0BgIyZim2B77AiBQFIrH3dFYEtUCA7unezuOBgZ5+6k4MCd64PC0Vfosow=="}]}},"0.8.2":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.8.2","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.5","assemble-render-file":"^0.3.1","assemble-streams":"^0.3.1","base-tasks":"^0.1.2","lazy-cache":"^1.0.3","templates":"^0.10.6"},"devDependencies":{"assemble-loader":"^0.2.6","async":"^1.5.0","base-questions":"^0.2.3","base-store":"^0.3.2","buffer-equal":"0.0.1","composer-runtimes":"^0.7.0","consolidate":"^0.13.1","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.2","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-extname":"^0.2.0","gulp-format-md":"^0.1.4","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.1","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.5.0","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["<%= Object.keys(dependencies) %>","<%= related.list %>","assemble-cli","assemble-streams","base-methods","emitter-only","gulp","handlebars","vinyl-fs"]},"gitHead":"364cfad8ec0c471eb8d364c2b8f653e27d87c5a5","_id":"assemble-core@0.8.2","_shasum":"8c4c4a3ae9acba9d13a49b9ca2e12b07b627d245","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"8c4c4a3ae9acba9d13a49b9ca2e12b07b627d245","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.8.2.tgz","integrity":"sha512-biX7xN65n6GkyFfXrbmWRrrq9//Kq2ByHDymKVqcscQc+SfBzpOBupQEBMH4q0durNOizMdC+V7Ex56hBktCjg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHWkGWldqcyjkLJk87ZmO5NIVOdsluMOBp9OsiF0wE/8AiAfyddFNTRh6DDEW+sh7M/x+w6FaGFwOASVUh1Qq4Z0RQ=="}]}},"0.8.3":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.8.3","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.5","assemble-render-file":"^0.3.1","assemble-streams":"^0.3.1","base-tasks":"^0.1.2","lazy-cache":"^1.0.3","templates":"^0.10.7"},"devDependencies":{"assemble-loader":"^0.2.6","async":"^1.5.0","base-questions":"^0.2.3","base-store":"^0.3.2","buffer-equal":"0.0.1","composer-runtimes":"^0.7.0","consolidate":"^0.13.1","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.2","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-extname":"^0.2.0","gulp-format-md":"^0.1.4","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.1","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.5.0","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["<%= Object.keys(dependencies) %>","<%= related.list %>","assemble-cli","assemble-streams","base-methods","emitter-only","gulp","handlebars","vinyl-fs"]},"gitHead":"b6b845e01ce86fc91250664537c2479681fab62a","_id":"assemble-core@0.8.3","_shasum":"5c772894f8e70a2aed68f4cf0e03d0ef820cedfb","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"5c772894f8e70a2aed68f4cf0e03d0ef820cedfb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.8.3.tgz","integrity":"sha512-/QPSCACyVX4gINXuFM5gi9II51hRrEBPF7fyWQnE3gaAhmmYtojI42arVdYaxBfhsb6Mq8HfjsxBZmqrfvqUaw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLALS7TFrevCrD9FK5JdOtfW39Wz5LwJ8ZtK1MGuQZDQIgaIGUGMeRPzE6Evo7NmxcZMAbs566fqkDyEoD19aqZPA="}]}},"0.8.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.8.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.2","assemble-render-file":"^0.3.0","assemble-streams":"^0.3.0","base-tasks":"^0.1.2","lazy-cache":"^1.0.3","templates":"^0.9.2"},"devDependencies":{"assemble-loader":"^0.2.6","async":"^1.5.0","base-methods":"^0.6.2","base-questions":"^0.2.3","base-store":"^0.3.2","buffer-equal":"0.0.1","composer-runtimes":"^0.7.0","consolidate":"^0.13.1","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.2","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-extname":"^0.2.0","gulp-format-md":"^0.1.4","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.1","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.5.0","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["<%= Object.keys(dependencies) %>","<%= related.list %>","assemble-cli","assemble-streams","base-methods","emitter-only","gulp","handlebars","vinyl-fs"]},"gitHead":"e6e6571d11e10f88ec7a2e130c30e9b17aaeee21","_id":"assemble-core@0.8.0","_shasum":"6212915c3452f99d0aba2f43e40e9a3b756ba98a","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"6212915c3452f99d0aba2f43e40e9a3b756ba98a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.8.0.tgz","integrity":"sha512-V0dRMwhKgx8OGm3RZnvEG5NmIWtai2eq9S8oCDW+3TGLx1cUSGg1/HeHCEdzsspT2rs/Uqh0PbS50Kr2Iu688Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAhwNYdyCSGId6LilED86Pe7kAvjN6/sNsAYuyXH1a8SAiBpdUmRQype51LHU1DrUFcaun9hjZDGaIMlt9aMKcCLOA=="}]}},"0.8.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.8.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.5","assemble-render-file":"^0.3.1","assemble-streams":"^0.3.0","base-tasks":"^0.1.2","lazy-cache":"^1.0.3","templates":"^0.10.2"},"devDependencies":{"assemble-loader":"^0.2.6","async":"^1.5.0","base-questions":"^0.2.3","base-store":"^0.3.2","buffer-equal":"0.0.1","composer-runtimes":"^0.7.0","consolidate":"^0.13.1","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.2","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-extname":"^0.2.0","gulp-format-md":"^0.1.4","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.1","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.5.0","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["<%= Object.keys(dependencies) %>","<%= related.list %>","assemble-cli","assemble-streams","base-methods","emitter-only","gulp","handlebars","vinyl-fs"]},"gitHead":"b53bf62e760b975d87d86ec2ce983c0cfcef1cbe","_id":"assemble-core@0.8.1","_shasum":"672c78c8c7b34f74f6061fcccb9c9bd19e226a61","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"672c78c8c7b34f74f6061fcccb9c9bd19e226a61","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.8.1.tgz","integrity":"sha512-nrm86eAqhe7CE/O1hIrXA+fJRkBU26cdC5X07O7KEIkTRLjmeksAqsULpWbOsUT0xAUPoDdrhRusBLMtvlZkcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDM1E6wOOpPUXPThG9UM041K7OGJm3rKLV2SMPM/6G6bAIhAKFZjXzSVsoBjFHPB3avh8g5XgQOdiQPlPuTPm+RrAtk"}]}},"0.22.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.22.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.5.2","assemble-render-file":"^0.7.0","assemble-streams":"^0.6.0","base-task":"^0.6.1","define-property":"^0.2.5","lazy-cache":"^2.0.1","templates":"^0.22.2"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.1.10","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0"},"keywords":["api","app","assemble","assembleplugin","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","core","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","plugin","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl","vinyl-fs","vinyl-item","vinyl-view"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"79918c2e5f5c324aaf30982d71429bf09a9dcbd3","_id":"assemble-core@0.22.0","_shasum":"80b62bd98b102ab227a79b980a8dc4ba1a4dbefc","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"80b62bd98b102ab227a79b980a8dc4ba1a4dbefc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.22.0.tgz","integrity":"sha512-NowftVPgDVAr4RgDnuaSATEAJILoW9GlFcxBmnEHjEY3Yg+IT9u9wagIKEPanrvQyf81BLfFYovnQsF5NwZMAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCDnnp3TMdK87oh2xpR6pxXtbpjoCTC5gKI8Hi0l9fvwwIgatayqqi02wslp+aJBzdQyWfy/mdNVLQqJrs2ALsfPrg="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.22.0.tgz_1466001454806_0.6423274928238243"}},"0.24.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.24.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.5.2","assemble-render-file":"^0.7.1","assemble-streams":"^0.6.0","base-task":"^0.6.1","define-property":"^0.2.5","lazy-cache":"^2.0.1","templates":"^0.24.0"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.1.12","gulp":"^3.9.1","gulp-eslint":"^2.1.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0"},"keywords":["api","app","assemble","assembleplugin","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","core","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","plugin","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-cache","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl","vinyl-fs","vinyl-item","vinyl-view","base-data"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"7420bc2dbe55bce1538af65708b896d8d4a0a303","_id":"assemble-core@0.24.0","_shasum":"c06a283d4223d2bf9d83a5a2c1164942fe7cbf2c","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.1.1","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"dist":{"shasum":"c06a283d4223d2bf9d83a5a2c1164942fe7cbf2c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.24.0.tgz","integrity":"sha512-N66LoPRDsKgM8nYRwScnq3R5teN6wu3YNwBkR7frRAmMZNJGc+yiMk+1KJpiao57XJ2CLesNjkCNWXqntZafNA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBSYn5MZuz7IbzeojMDnGP3dNc2e5B71OoijK08eaLSsAiEA0tAd96aXx+V+IkwvsBI9vG8UiGpiwtwT69kzsTiT6sA="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.24.0.tgz_1467475851751_0.7820483110845089"}},"0.2.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.2.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.2.0","assemble-streams":"^0.2.0","composer":"^0.7.0","emitter-only":"^0.1.0","templates":"^0.4.6"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.4.1","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.0","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.0","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.4.3","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"28d0952f24e74786b110f987cdeca1aed08d50cf","_id":"assemble-core@0.2.0","_shasum":"97c6b95183a23722cc015d523600594956238c4a","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"97c6b95183a23722cc015d523600594956238c4a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.2.0.tgz","integrity":"sha512-YVfsaXg+cuzFOPyXeU9Y86VaPve+Q6bUCMBJFhcWAdLcRz+ShWB45scv3WcHpvwDbr57md/Mbn7fJKYY1P7esA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDINgknb//Y/Yz1d3MvytBN+RISmpXHoFm1HZtBPX14qQIgf0xXu/B3oGoHg2ieRvtqQ7sPyRxMHnjgwC82pQU4s/I="}]}},"0.26.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.26.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.7.0","assemble-render-file":"^0.7.2","assemble-streams":"^0.7.0","base-task":"^0.6.1","define-property":"^0.2.5","lazy-cache":"^2.0.1","templates":"^0.25.0"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.2.3","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","helper-changelog":"^0.3.0"},"keywords":["add","api","app","apply","assemble","assembleplugin","async","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cache","clear","collection","compile","component","components","copy","core","create","define","del","dest","doc","docs","documentation","emit","engines","error","event","expose","extend","find","format","front","front-matter","generate","generator","group","handlebars","has","helpers","html","inflections","init","is","item","items","jekyll","layout","list","listen","listener","listeners","markdown","matter","md","mixin","mixins","off","once","options","pages","partial","partials","plugin","post","registered","remove","render","resolve","rethrow","scaffold","scaffolds","set","site","src","static","static-site","symlink","task","tasks","templates","templating","type","types","union","view","views","visit","web","website","yaml","yeoman"],"verb":{"toc":true,"layout":false,"tasks":["readme"],"helpers":["helper-changelog"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-data","base-logger","base-methods","base-task","base-watch","composer","consolidate","emitter-only","engine-cache","engine-handlebars","gulp","helper-changelog","keep-a-changelog","parser-front-matter","templates","verb","vinyl","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"6371b4505058372f8586697453cab93691f500f9","_id":"assemble-core@0.26.0","_shasum":"9bbf66df53f87202724ad26e566e80d2a709cf66","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"9bbf66df53f87202724ad26e566e80d2a709cf66","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.26.0.tgz","integrity":"sha512-ZjsWsAkhpKQsejTJydscAmlMy/0SbuqLRw1DaSxXU3L2ddmbAge2wQ0ZE+y8OsXTqnSa3a70kEiMbnx0WFkntA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCX7ZNDm2xsXbsZeMyFcY8d9wwz3YtaSVZomF0tOy7SMgIhAJWCHZcVv+x0Gr/ozspReDq+SGFRJ3jRRyRwf4Vq1+tb"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.26.0.tgz_1470490908225_0.5086806658655405"}},"0.2.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.2.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.3.0","assemble-streams":"^0.2.0","composer":"^0.7.0","emitter-only":"^0.1.0","templates":"^0.4.6"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.4.1","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.0","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.0","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.4.3","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"28d0952f24e74786b110f987cdeca1aed08d50cf","_id":"assemble-core@0.2.1","_shasum":"93d9b82f213b89f716ebd6fe6f3e47538849996f","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"93d9b82f213b89f716ebd6fe6f3e47538849996f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.2.1.tgz","integrity":"sha512-Okh4mPrp1MJ99/U3nSc49N/d0b1rkwnwpLeF/eNkrsHPRWbFP/dTwn9oqTQJ3QYbuQ2KirZTfG8Obf51bumWew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfmSEduxoGUXnSt41koPNfeLqeAftkYssaVD/rooFXewIgQKOqBQzpGJaYWBSzCASBx3jNbZ+TFLtbhjv+TdS5vzI="}]}},"0.28.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.28.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.8.0","assemble-render-file":"^0.7.2","assemble-streams":"^0.7.0","base-task":"^0.7.0","define-property":"^0.2.5","lazy-cache":"^2.0.2","templates":"^1.2.0"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.4.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.11","gulp-istanbul":"^1.1.1","gulp-mocha":"^3.0.1","helper-changelog":"^0.3.0"},"keywords":["add","api","app","apply","assemble","assembleplugin","async","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cache","clear","cli","cli-app","collection","command-line","compile","component","components","copy","core","create","define","del","dest","dev","development","doc","docs","documentation","emit","engines","error","event","expose","extend","find","format","framework","front","front-matter","frontend","generate","generator","group","handlebars","has","helpers","html","inflections","init","is","item","items","jekyll","layout","list","listen","listener","listeners","markdown","matter","md","mixin","mixins","off","once","options","pages","partial","partials","plugin","post","project","projects","registered","remove","render","resolve","rethrow","scaffold","scaffolder","scaffolding","scaffolds","set","site","src","static","static-site","symlink","task","tasks","template","templates","templating","type","types","union","view","views","visit","web","webapp","website","yaml","yeoman","yo"],"verb":{"toc":true,"layout":false,"tasks":["readme"],"helpers":["helper-changelog"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-data","base-logger","base-methods","base-task","base-watch","composer","consolidate","emitter-only","engine-cache","engine-handlebars","gulp","helper-changelog","parser-front-matter","templates","vinyl","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"9f2766812380e9fe1d6a20b9019701c18ca17574","_id":"assemble-core@0.28.0","_shasum":"44a13565b01f9a2e3c5040b394c80a2db1988139","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"44a13565b01f9a2e3c5040b394c80a2db1988139","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.28.0.tgz","integrity":"sha512-9E/zL4AkQa5KBbkxyirDxW6qKAe42BPouj9cxNIpWYa4Lp+e3kKd7nj2GAUbfKcQW7iabSPlhG77qptmvzCw6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCm3IK8G755OX6WRqDSCRKjbTTfCO2LTZPmdA7Ic6OUrQIgVAs6IFfbe3wnC7T4gXbpxyQ5cYyhd+4DYNNwdZrHaBI="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.28.0.tgz_1485985995167_0.636829836294055"}},"0.31.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.31.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^1.0.0","assemble-render-file":"^1.0.0","assemble-streams":"^1.0.0","base-task":"^0.7.0","define-property":"^0.2.5","lazy-cache":"^2.0.2","templates":"^1.2.6"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.4.2","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.11","gulp-istanbul":"^1.1.1","gulp-mocha":"^3.0.1","helper-changelog":"^0.3.0"},"keywords":["assemble","assembleplugin","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cli","cli-app","collection","command-line","compile","component","components","core","create","dev","development","doc","docs","documentation","engines","framework","front","front-matter","frontend","generate","generator","handlebars","helpers","html","inflections","init","jekyll","layout","markdown","pages","partial","partials","plugin","post","project","project-template","projects","render","scaffold","scaffolder","scaffolding","scaffolds","site","static","static-site","template","templates","templating","view","views","web","webapp","website","yaml","yeoman","yo"],"verb":{"toc":true,"layout":false,"tasks":["readme"],"helpers":["helper-changelog"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"lint":{"reflinks":true},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-data","base-logger","base-methods","base-task","base-watch","composer","consolidate","emitter-only","engine-cache","engine-handlebars","gulp","helper-changelog","parser-front-matter","templates","vinyl","vinyl-fs"]},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"b5ce8fa15b81753fa2354926345ef14973a474c6","_id":"assemble-core@0.31.0","_shasum":"4628741f6517e7f7493184c38a3e3888f02563e4","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"4628741f6517e7f7493184c38a3e3888f02563e4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.31.0.tgz","integrity":"sha512-Nt0/nxIGHHz/OwyWWgLz8CFvhvfzjPnVgY+9Nvm/MmD/VNKo9xwDxmZDnob8ZxJolvAxIZ7QFHPsZ52pJK2YYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCoe0MRYy+o9THx29y1FNDXZRbbbEVX5IAMxJpoKbK0ewIgUw9MUpvp12kNAyMObqmk5x25QzSdyqCpklu47jbdLic="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.31.0.tgz_1486830999886_0.4166731263976544"}},"0.10.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.10.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.6","assemble-render-file":"^0.3.1","assemble-streams":"^0.4.0","base-tasks":"^0.2.0","lazy-cache":"^1.0.3","templates":"^0.11.0"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.13.1","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.6.1","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"^2.3.4","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.0","should":"^8.1.1","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"lintDeps":{"ignore":["examples","docs"]},"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["<%= Object.keys(dependencies) %>","<%= related.list %>","assemble-cli","assemble-streams","base-methods","emitter-only","gulp","handlebars","vinyl-fs"]},"gitHead":"ffb751c60a4c9958f7e6b3f5b995dcf9546cd155","_id":"assemble-core@0.10.0","_shasum":"8e5779862c5660b2b68c0f4c9ebdbcb0ad206271","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.1.1","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"dist":{"shasum":"8e5779862c5660b2b68c0f4c9ebdbcb0ad206271","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.10.0.tgz","integrity":"sha512-VIZf10MPxahOY3TY1GAQY0f5/+q6BtwWWImfd2Z/2noeec6CN9nNEx3kjg7OOmPSMhPmOrMFeURYnS+tq/VwoA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDim9Tx8V+hP2aiAkMNNBCP6HQCAtUgJzr2BOOkMq2NXwIgSbyuc5nz0fhZ4WvvfYdzBm0VhZO2UAbYJsKzcUxn+RE="}]}},"0.18.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.18.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.7","assemble-render-file":"^0.6.1","assemble-streams":"^0.5.0","base-task":"^0.5.0","lazy-cache":"^2.0.1","templates":"^0.18.2"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.9","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.16.0","get-value":"^2.0.5","graceful-fs":"^4.1.3","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.8","gulp-git":"^1.7.1","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","is-buffer":"^1.1.3","istanbul":"^0.4.3","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"^2.4.5","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.2","should":"^8.3.1","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.1","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"c4e29dedb69793693b32d460ec751a7d0bb3c4bc","_id":"assemble-core@0.18.0","_shasum":"1c327e51c3ae7e1a409481f151e9a0ada02672f9","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"1c327e51c3ae7e1a409481f151e9a0ada02672f9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.18.0.tgz","integrity":"sha512-AbAmpoClqToqMZNfEXRXOgCvRP6ZGFZLcyplPfQ8D7BVCrheASDiuQE7yjs13DlIat+vOYECP8G3AXHNlOSReA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCXOTuJAyaLRwDyD8QxVc3VNPpI+qU2D9eO+NuAjHcUggIhAIapZJYsNcA62zxM1LPqt4fK/2aZ7jvX8s+yj/6Sw2fP"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.18.0.tgz_1463859750904_0.4956100310664624"}},"0.14.3":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.14.3","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.3","assemble-render-file":"^0.4.1","assemble-streams":"^0.4.2","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.15.6"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.14.0","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs","base-logger"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"5d240bab67968c16827c295bfd44e6749ca0f1e1","_id":"assemble-core@0.14.3","_shasum":"a2bee72197eab8cac8ac73cd0d3489c890c59f78","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"a2bee72197eab8cac8ac73cd0d3489c890c59f78","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.14.3.tgz","integrity":"sha512-qQjl7myX1+OPTgM+YgtswizdtMZEzxQ/NpVl8PnGLYyOY9aJej0xY2pYDIeg9faHnNP85IvuqDRwAO9I51f81g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDAcb/k6Oms4/pyc33W6ZIdVB2LAGHfzzCCM/BdmSxXnQIgc0YVI1yo3qX0nDwdqbrQGQ1+xvsISX9bFRgxnRlHl+Y="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.14.3.tgz_1457710897383_0.37633868982084095"}},"0.16.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.16.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.6","assemble-render-file":"^0.5.1","assemble-streams":"^0.5.0","base-task":"^0.4.2","lazy-cache":"^1.0.3","templates":"^0.16.1"},"devDependencies":{"async":"^2.0.0-rc.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.9","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.16.0","get-value":"^2.0.5","graceful-fs":"^4.1.3","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.3","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"^2.4.5","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.2","should":"^8.3.0","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.1","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs","base-logger","parser-front-matter","engine-handlebars","consolidate"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"4c417bde42c8d70fc04a72ff39de40e6d96cf222","_id":"assemble-core@0.16.1","_shasum":"7193d07396aa0543c01331a50e05510a52608b8a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"7193d07396aa0543c01331a50e05510a52608b8a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.16.1.tgz","integrity":"sha512-Dbt4b6YzbFRvID4l7zDRZDTKPoQMzEaBiXbW1X52NTRQ9Q4NKEIpIbat2CPi4cJtPeb+8nR9S/0bsYhCygB5ow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFWbitJuv0azWGBJ2Ob3qMlG9HRpLjw8Sbm/X2EGTG0KAiATH5loCJYquJw5mwervsGDrHG0GRdrfvOJFa7x1hp/8w=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.16.1.tgz_1459838647825_0.5563295590691268"}},"0.14.2":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.14.2","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.3","assemble-render-file":"^0.4.1","assemble-streams":"^0.4.2","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.15.6"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.14.0","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs","base-logger"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"457ecea77a96c86a77a805b949d6d00c716ee9fa","_id":"assemble-core@0.14.2","_shasum":"6d3c20ae2445088f416f1392e312021b61c63ec6","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"6d3c20ae2445088f416f1392e312021b61c63ec6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.14.2.tgz","integrity":"sha512-d2BTX23bGwOTRz2Bk+t2DQgCdIlfHlYiCQaWOtpYLMQSBb884PRdJzYhd7Ct4pUtMl9K2kP3tP2Aun/HtAB64w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCa49vdADKDGJSgvoqf9Y9z7mIutKM0POvTy8mD+dMPcAIhAI7LEyGSF0AJfZI0rZhwPwpcEoJ2aC140aqzmQZrUZuL"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.14.2.tgz_1457561925039_0.43993453332223"}},"0.16.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.16.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.6","assemble-render-file":"^0.5.0","assemble-streams":"^0.5.0","base-task":"^0.4.2","lazy-cache":"^1.0.3","templates":"^0.16.0"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.14.0","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs","base-logger"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"777c02f5a80937469f5ca48b73778937fef4ee7f","_id":"assemble-core@0.16.0","_shasum":"fa5463fb6f95e5961fe3740da5da517a9d7867fc","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.1.1","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"dist":{"shasum":"fa5463fb6f95e5961fe3740da5da517a9d7867fc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.16.0.tgz","integrity":"sha512-F0/mRw5e28jurbWt81EN2PBxi3gBJOtAFIe2ZFYjPrugK5fl7qckBZdwVvH0LPFGkaDF60wCvLlKg5LsJZiqsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICFfVrQ3AKjY+7vn2sT9rF2VqP9/3WJgLplp2c5jADt7AiAsgrmBp0Qx5rQDyQv+visb5v5ZH5F1+EelZJAdo8zdjg=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.16.0.tgz_1459176119334_0.9776260184589773"}},"0.14.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.14.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.4.1","assemble-streams":"^0.4.2","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.15.4"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.14.0","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs","base-logger"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"a6ec6e3c03edc4377cf04041c57bf4e991d3d64f","_id":"assemble-core@0.14.1","_shasum":"d38dd6f4c490b4dc993e88cf3b0f6044976191fb","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"d38dd6f4c490b4dc993e88cf3b0f6044976191fb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.14.1.tgz","integrity":"sha512-c58M33G+/BURLQpCj8n5DR5Alv5jLnpptA+2FQRormiFtKG5adB5FhPhN7AJT8ccuDlKtZA0+bRV19Ud+7s27Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDK4607/HPjrUlNkUeV8ZcHgcrlhYpjehELHdj6RRaGpgIgHi9wC7MAOevJBc9BIJR8SDsmwJ84lETlbBtl1t+zTvU="}]},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.14.1.tgz_1457322328701_0.4592759076040238"}},"0.12.2":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.12.2","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.3.3","assemble-streams":"^0.4.1","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.13.7"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"f3e498cbe6e8a72828fdecb8420cae3b9970405a","_id":"assemble-core@0.12.2","_shasum":"791662ded0a6e65d8e6987a3bcafe13d98f8795f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"791662ded0a6e65d8e6987a3bcafe13d98f8795f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.12.2.tgz","integrity":"sha512-uaD/yjDBEKGZMC2hlbsoTd2QYhoRDBZGv6Gi6K/xcF4J3Ue/gEP7q5MK8jnXqZmO0+Lo1utGfna0QQOuEDwmJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCs3Xxff8QvHXngQWuqcvCuMB0lp4xo+/aHsFF5vLtpgQIgWT5elDNA69q5irRb6NfoqMK58eUnqbMLe4jSkg+cA8o="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.12.2.tgz_1456347915265_0.9713384970091283"}},"0.14.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.14.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.4.0","assemble-streams":"^0.4.1","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.15.1"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.14.0","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs","base-logger"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"a6ec6e3c03edc4377cf04041c57bf4e991d3d64f","_id":"assemble-core@0.14.0","_shasum":"1a114564b9a9d527edbec422cd69950bbdd78e7c","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"1a114564b9a9d527edbec422cd69950bbdd78e7c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.14.0.tgz","integrity":"sha512-KKdXWBv4q488AqS+kWW2zEmevlFNDvji3yiFNlbJMjkfRxECJI15IeD6cL3H2PPlu35c5SJujIFYJocL14GzjQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB7Zpl74/QTSBFwzlZcsW/uQP+gLFXqJ/ViekpBlkGPDAiBLBAULchBFXbrCvaul47fw+K2Enq9NeAcUDFgJmtrUdQ=="}]},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.14.0.tgz_1456921212881_0.16398503305390477"}},"0.12.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.12.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.3.1","assemble-streams":"^0.4.1","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.13.3"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"af722ebb132c5dcd2eff81e3905a2c833aba7096","_id":"assemble-core@0.12.1","_shasum":"1fd77568b01cd76fb7281d6d890212257aac3f72","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"1fd77568b01cd76fb7281d6d890212257aac3f72","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.12.1.tgz","integrity":"sha512-2zBn2N+tfmbliRmBXbIhdnLkWpC8PyKzPZI8PCk+UKJsAwnfKuD6sux3/Yo9oEBZAuqCa8h4ab4PbxTBG6vwJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHVlOBl4oi4JiK4XugDmI6kE2BOCoUscNsUGMuJZdvO0AiEAhE5l4T3qwxUDNiloDXH6XvmB/AvBemUcJVBcNI0C5xc="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.12.1.tgz_1455725370452_0.2218171041458845"}},"0.12.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.12.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.3.1","assemble-streams":"^0.4.1","base-task":"^0.4.0","lazy-cache":"^1.0.3","templates":"^0.12.0"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"17829ec763087a552b3c7df033a828894a678cbc","_id":"assemble-core@0.12.0","_shasum":"35103005c7171ce8af72e92f1c941f464d0b125f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"35103005c7171ce8af72e92f1c941f464d0b125f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.12.0.tgz","integrity":"sha512-W3vfOnBNN8e2xZK4qGFiCa14oBkAtMevqlYJdYOb3EQQIlFWeheeNEBsxDRqVbCkreXfSu6i2YyJA7VbQlMPGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDK6XX3zjuHKwCmGL/VmUqBKcCCryn8O+VAvIOSwkCZVQIhANx46HwsliAEezpaFvEe80rZVEX0pqEgyPRga2meJMpN"}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.12.0.tgz_1455083575529_0.38296486251056194"}},"0.18.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.18.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha","lint":"update && normalize-pkg && sync-pkg && verb && deps"},"dependencies":{"assemble-fs":"^0.4.7","assemble-render-file":"^0.6.1","assemble-streams":"^0.5.0","base-task":"^0.5.0","lazy-cache":"^2.0.1","templates":"^0.18.2"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.9","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.16.0","get-value":"^2.0.5","graceful-fs":"^4.1.3","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.8","gulp-git":"^1.7.1","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","is-buffer":"^1.1.3","istanbul":"^0.4.3","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"^2.4.5","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.2","should":"^8.3.1","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.1","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl-fs","assemble-loader"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"03ad9c41fa87936218dacd6d7bcff2312ebf6134","_id":"assemble-core@0.18.1","_shasum":"e436e93ad8de82ce331668ae563beff2d1a9c124","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"e436e93ad8de82ce331668ae563beff2d1a9c124","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.18.1.tgz","integrity":"sha512-kzogJCA7270Pczl4zHQ3IA30PMpnh4Yt6WN+UMmBYvwJ+0oC+xUhh0k2g6wXTqhnfh+bZR2fVbyUnjU/RfzK0w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwmCw3U6xQTPpx0lLAWaQrhtNWqqkJYFPDUcYWuhG20QIhALELHgWXJsgTWBuz72NRpBYpeSMOOjXidpC9tLEPXSSv"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.18.1.tgz_1463873002631_0.4941740760114044"}},"0.21.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.21.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.5.2","assemble-render-file":"^0.7.0","assemble-streams":"^0.6.0","base-task":"^0.6.1","define-property":"^0.2.5","lazy-cache":"^2.0.1","templates":"^0.21.0"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.1.9","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-git":"^1.7.2","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","rimraf":"^2.5.2"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"9bafc0d79403b583f7698c41585240c3798749d0","_id":"assemble-core@0.21.0","_shasum":"3b46922eb32794f8c95c8bbd240c6ec56568f351","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"3b46922eb32794f8c95c8bbd240c6ec56568f351","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.21.0.tgz","integrity":"sha512-XXbn95XAcvJ8esKnxXnJlDG7aNR/yDyL/sbyFgnjR85eM9z7hiVFZywZHgF/4DjbpnaV3l+vW9+qQ2L6TLW7mQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmAQRlzIlvqd3q+ZCOPLyeg8N1H4K75MmeZRRdg+04PQIhANUeFvAmmCcKfgfAjhGhDCxsEQrV/CpKL3UXt4180kLX"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.21.0.tgz_1464966035406_0.3977736080996692"}},"0.1.5":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.5","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.1.1","assemble-streams":"^0.2.0","composer":"^0.6.0","emitter-only":"^0.1.0","templates":"^0.4.0"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.4.2","base-methods":"^0.3.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.4.0","jshint-stylish":"^2.0.1","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"^2.3.3","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.3","rimraf":"^2.4.3","should":"^7.1.1","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"authors":["Jon Schlinkert (https://github.com/jonschlinkert)","Brian Woodward (https://github.com/doowb)"],"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"99c8aec0b55201ab0c4296c27242718e22e2ed18","_id":"assemble-core@0.1.5","_shasum":"7deee1f1ebd38bf47b3b2112ba279e456800f715","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"7deee1f1ebd38bf47b3b2112ba279e456800f715","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.5.tgz","integrity":"sha512-Xwy+NKablyz9tjNDHVUpFRfaGdVR1lwc+BVSGVmgORRP1ANHnPJlZqUb7LUnBRAN5qFhlKX3fGHNmlEmGh5PdA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAZh8xOjGZxYPsvmvyIsCQasF9OIuMKjz5nokY4NFK1FAiAJ9jVs494nA2nJiJM8CNseKaO4N4/w3bPosvPZ08o6HQ=="}]}},"0.1.6":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.6","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.1.1","assemble-streams":"^0.2.0","composer":"^0.6.0","emitter-only":"^0.1.0","templates":"^0.4.2"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.4.2","base-methods":"^0.3.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.4.0","jshint-stylish":"^2.0.1","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"^2.3.3","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.3","rimraf":"^2.4.3","should":"^7.1.1","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"authors":["Jon Schlinkert (https://github.com/jonschlinkert)","Brian Woodward (https://github.com/doowb)"],"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"b40eccd8d492a58137c896bf192c4b4bc9c0bb9c","_id":"assemble-core@0.1.6","_shasum":"06a931a4acdb2461b7131324f00d47bb4437a669","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"06a931a4acdb2461b7131324f00d47bb4437a669","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.6.tgz","integrity":"sha512-FO4Mj65Ochh55eha5yL8DMocSnnG4Wx//47SaV1WhwYENyTk9ssbk10CgINgJq3K7stjKjxYGEGbCoz4LW09oA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEX0c33kopPDEGJ782HbJTr0iSHBSDmKt8Ayn1m9KiI3AiEAmUtmjFJUOJ9950j3bjfpycTneyHFmkmFko2qwvx5GWE="}]}},"0.7.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.7.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.1","assemble-render-file":"^0.3.0","assemble-streams":"^0.3.0","base-tasks":"^0.1.2","gulp-extname":"^0.2.0","lazy-cache":"^1.0.2","templates":"^0.8.0"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.6.1","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","composer-runtimes":"^0.7.0","consolidate":"^0.13.1","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.2","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.1","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.4.4","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","composer","generate","boilerplate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["<%= Object.keys(dependencies) %>","<%= related.list %>","gulp","vinyl-fs","handlebars","assemble-cli","assemble-streams","emitter-only","base-methods"]},"gitHead":"e279c958e1d665dd4c0cee22e651dad3089d2d9c","_id":"assemble-core@0.7.0","_shasum":"1b85e88faa95fa48a8a15a45e3ddd63de4e312db","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"1b85e88faa95fa48a8a15a45e3ddd63de4e312db","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.7.0.tgz","integrity":"sha512-DaRU9ZjsoIRqfxLY/TmZ01fnHs0lrrdAa/6jTlJzhtpglbaoCOiWlo5P+B+IvTYVfVPJMqf6IulnqgnzXbtkCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmAYAReMHtpPfpORuUb+WVEZhZ6fCWjg2LDtub4iZQfAIhALW/N6DvQvizuPEyO3Y4gBCNk45dOqImxNNq2M72iEGy"}]}},"0.1.3":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.3","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.1.1","assemble-streams":"^0.2.0","composer":"^0.5.2","emitter-only":"^0.1.0","templates":"^0.3.9"},"devDependencies":{"async":"^1.4.2","base-methods":"^0.2.14","buffer-equal":"0.0.1","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.1","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-git":"^1.5.0","gulp-istanbul":"^0.10.1","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.3.22","jshint-stylish":"^2.0.1","kind-of":"^2.0.1","load-pkg":"^1.3.0","look-up":"^0.8.1","mocha":"^2.3.3","parser-front-matter":"^1.2.5","resolve-glob":"^0.1.2","rimraf":"^2.4.3","should":"^7.1.0","sinon":"^1.17.1","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.0.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"authors":["Jon Schlinkert (https://github.com/jonschlinkert)","Brian Woodward (https://github.com/doowb)"],"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"2cc452f7d77a49d49e91dd9944d3cb321dc1cd15","_id":"assemble-core@0.1.3","_shasum":"916554e57f3d57f67457450588547f0a1a4c8543","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"916554e57f3d57f67457450588547f0a1a4c8543","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.3.tgz","integrity":"sha512-iktC+Hp+A/8JA6gx2U8VwyTeU0u+/DzQR3idiF4XAHrrHhsjRSkNvLf52WfmvVVqE+ht/GtHdnM2s4fxtVCC1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCBlTA5LdaAhG9+sUnng8SWWDkDWOznkHfSqVX0gFrvmwIhAJW9235E2p85enJJsCwTD0jcqu//A2f7ts4kla1b+Mrb"}]}},"0.1.4":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.4","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.1.1","assemble-streams":"^0.2.0","composer":"^0.6.0","emitter-only":"^0.1.0","templates":"^0.3.9"},"devDependencies":{"async":"^1.4.2","base-methods":"^0.2.14","buffer-equal":"0.0.1","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.1","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-git":"^1.5.0","gulp-istanbul":"^0.10.1","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.3.22","jshint-stylish":"^2.0.1","kind-of":"^2.0.1","load-pkg":"^1.3.0","look-up":"^0.8.1","mocha":"^2.3.3","parser-front-matter":"^1.2.5","resolve-glob":"^0.1.2","rimraf":"^2.4.3","should":"^7.1.0","sinon":"^1.17.1","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.0.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"authors":["Jon Schlinkert (https://github.com/jonschlinkert)","Brian Woodward (https://github.com/doowb)"],"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"96a6d5bd101241b4386f7ebb9bf6366db2806583","_id":"assemble-core@0.1.4","_shasum":"fe608327d9cf73b497b53acecfde7edf6ad8b1dd","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"fe608327d9cf73b497b53acecfde7edf6ad8b1dd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.4.tgz","integrity":"sha512-W7Knw5+jeU5IAsfRbZFoxGLOocws88d6Xs4sGIUYfj4ETqrAGU56sR/oMk+R7UybVAOIJP2qWFGWOuqOpsNGsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDDl6vteeWzDmn8PaNuqjXNcdIIgdLU/qLZ+Vrz8pOeJAiBmc59FVV+q/FVck7mBsUw7zIsI4TA5860aharwoW/Mtw=="}]}},"0.5.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.5.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.3.0","assemble-streams":"^0.3.0","base-tasks":"^0.1.2","lazy-cache":"^0.2.4","templates":"^0.6.0"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.5.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.0","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.0","kind-of":"^3.0.2","load-pkg":"^2.0.1","look-up":"^0.8.2","minimist":"^1.2.0","mocha":"^2.3.4","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.4.4","should":"^7.1.1","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"be8b10d711ffb4bc8d85a75f617e1ea7f4d3dd80","_id":"assemble-core@0.5.0","_shasum":"c303cfbbddf98011e1fe9b49c77d7089d692a74d","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"c303cfbbddf98011e1fe9b49c77d7089d692a74d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.5.0.tgz","integrity":"sha512-D6gpvOZtWoYMhZpSltP+xuBdT6P5wIRESvow2Sbk5aTEWO+6JhElumyuWFbwxVc50H/GUOt48UeacPhBHRNSgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD25LcHgETCaiBL8TOZME1bwx2mWESOk0nNmeHsFD3+8QIgBJ5hks5qWmT8z8nlib47vGv1iHKWJsJNvnb6KA3eeK0="}]}},"0.1.9":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.9","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","to-grunt.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.2.0","assemble-streams":"^0.2.0","composer":"^0.6.0","emitter-only":"^0.1.0","templates":"^0.4.5"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.4.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.4.0","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.3","rimraf":"^2.4.3","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"84bd8f8a750c58c5524d36acb1dcf4accd58e571","_id":"assemble-core@0.1.9","_shasum":"462d1e835dd395b8204611f2b591c8d39c1256f9","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"462d1e835dd395b8204611f2b591c8d39c1256f9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.9.tgz","integrity":"sha512-BOJ3MRO9V39WzkPRMW+9fXuFoNhkJvrY2r7bmAq16opCEreqsfkGzxK2Nkd5OcvyDVxfU9fvyNq72hZdX1a4sw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICY7Mf3H7ibLlceUObixQE9+0ruxmHiBvP/rorxwJYbyAiBdkNh+Y21YPtTmEugvRNV2vQL74vvWY1IiIl6/ashoWA=="}]}},"0.1.7":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.7","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"authors":["Jon Schlinkert (https://github.com/jonschlinkert)","Brian Woodward (https://github.com/doowb)"],"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.1.1","assemble-streams":"^0.2.0","composer":"^0.6.0","emitter-only":"^0.1.0","templates":"^0.4.2"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.4.2","base-methods":"^0.3.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.4.0","jshint-stylish":"^2.0.1","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"^2.3.3","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.3","rimraf":"^2.4.3","should":"^7.1.1","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"29ce683d1478b4b99c15ef8edcd7a5264813460f","_id":"assemble-core@0.1.7","_shasum":"80038c14027bace92248bd119ddab2a7d031835b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"80038c14027bace92248bd119ddab2a7d031835b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.7.tgz","integrity":"sha512-9Sfm13avypx9fEP8AvCk23PsnvApp9/Xw2lYff3u8alWs8gAwxM1496Aj7xnVs0kPBc/ONTca1/g4pb+1UVgew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD3/5T6XctkPKEigJaWlFlsdvqGUZ6klhtsfTiRqlPG0QIgKEcuzVdcISxdmVkr5/eSeK7u38c07Ss2nd1q+rULJis="}]}},"0.1.8":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.8","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","to-grunt.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.1.1","assemble-streams":"^0.2.0","composer":"^0.6.0","emitter-only":"^0.1.0","templates":"^0.4.5"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.4.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.4.0","jshint-stylish":"^2.0.1","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.3","rimraf":"^2.4.3","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"97f5f3b6471c4c4e86cd7dda90dc819c4b276856","_id":"assemble-core@0.1.8","_shasum":"9107a340491b0ad0811c7a9e9a57faa9b29d7bab","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"9107a340491b0ad0811c7a9e9a57faa9b29d7bab","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.8.tgz","integrity":"sha512-dem56jzbfx/3A8Zh7azmOKUdgdYTF5Rdhgw4x7zysLW9oeQwrUgV9Pu9lmxqfa6Q2HtHhxoWgjfahqyZIrgcXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDamPT7L9XAwgZhQF50nShtfIX2YMBhEF1k0a7MIiqdsAIgYiglVGI9lJ3917y3TAOC/lHkCvuOFfDxvC0I+sq+nAo="}]}},"0.9.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.9.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.6","assemble-render-file":"^0.3.1","assemble-streams":"^0.4.0","base-tasks":"^0.1.3","lazy-cache":"^1.0.3","templates":"^0.11.0"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.13.1","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.6.1","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"^2.3.4","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.0","should":"^8.1.1","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"lintDeps":{"ignore":["examples","docs"]},"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["<%= Object.keys(dependencies) %>","<%= related.list %>","assemble-cli","assemble-streams","base-methods","emitter-only","gulp","handlebars","vinyl-fs"]},"gitHead":"bd59ae70efe25ab91507f57aabcacf1b2ebd584a","_id":"assemble-core@0.9.0","_shasum":"bdcba33fc06d53621cfacee37f68a131b6a8d63b","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"bdcba33fc06d53621cfacee37f68a131b6a8d63b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.9.0.tgz","integrity":"sha512-VJqNLRU0k9UsNe9uR3Su/ZNO8u0uw/yoSZqJ/YYBvfOg2lbSx8p++wYwIlN2e2cV6/efYzz1DhNQd2d9lqbERA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHb/yT8nC1xF9eQ0ErdlvRpzlYP0Mle9I4sYqPBqQXzkAiEA/Fsqu0dTqx7VjvBiLz2mFJe983K6P5u/Jo0n43NgnXM="}]}},"0.23.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.23.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.5.2","assemble-render-file":"^0.7.1","assemble-streams":"^0.6.0","base-task":"^0.6.1","define-property":"^0.2.5","lazy-cache":"^2.0.1","templates":"^0.23.0"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.1.10","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0"},"keywords":["api","app","assemble","assembleplugin","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","core","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","plugin","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl","vinyl-fs","vinyl-item","vinyl-view","engine-cache"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"a8ba431c5bbd4aae129b38c323a05502235cb92c","_id":"assemble-core@0.23.0","_shasum":"25516090d6a6bd92cfae1a90bdbd4e17a125b419","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.1.1","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"dist":{"shasum":"25516090d6a6bd92cfae1a90bdbd4e17a125b419","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.23.0.tgz","integrity":"sha512-cIDqi6tSED+gf+h6fRg4rUW/uexfTGCVd4MVKHdpRSJQn88fiDNCJgl1R5ufZP76b2ZiwCTJIv3Sxruhbbo8rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHR+25gtt2CKRdXzbi0ZhbxD4AIQhfoiVzcWfiVBkxjuAiAi/ncbalM7J0e+r+HZrFOpklV9fFO0ywCfHMQo/kgMyQ=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.23.0.tgz_1467127285053_0.7200849051587284"}},"0.25.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.25.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.6.0","assemble-render-file":"^0.7.1","assemble-streams":"^0.6.0","base-task":"^0.6.1","define-property":"^0.2.5","lazy-cache":"^2.0.1","templates":"^0.24.0"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.1.12","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","verb-readme-generator":"^0.1.17"},"keywords":["add","api","app","apply","assemble","assembleplugin","async","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cache","clear","collection","compile","component","components","copy","core","create","define","del","dest","doc","docs","documentation","emit","engines","error","event","expose","extend","find","format","front","front-matter","generate","generator","group","handlebars","has","helpers","html","inflections","init","is","item","items","jekyll","layout","list","listen","listener","listeners","markdown","matter","md","mixin","mixins","off","once","options","pages","partial","partials","plugin","post","registered","remove","render","resolve","rethrow","scaffold","scaffolds","set","site","src","static","static-site","symlink","task","tasks","templates","templating","type","types","union","view","views","visit","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-data","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-cache","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl","vinyl-fs","vinyl-item","vinyl-view","base-task"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"43561e91c02728349c09bdc81b15c6217df4f0f2","_id":"assemble-core@0.25.0","_shasum":"65917bfcaf9cd6b14d9b91d031a0dd99aaf43964","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"65917bfcaf9cd6b14d9b91d031a0dd99aaf43964","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.25.0.tgz","integrity":"sha512-5vS/XZK0ke3gIHoKTyl88brqOR9zw3niz5jJHrEgrDLlZGEri4a1Wr4badallKCx4M4/TWG12GT/O5wABZjaVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBE0vG2LIN1reHYSYqLjigQrxheEmrEMEjglRaskGBOrAiBzR8OjxxMNY6NEFfjc8IBmngXeWgStAQToCHd/jjX4vQ=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.25.0.tgz_1467714682937_0.2110993720125407"}},"0.1.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.1.1","assemble-streams":"^0.2.0","composer":"^0.5.2","emitter-only":"^0.1.0","templates":"^0.3.5"},"devDependencies":{"async":"^1.4.2","base-methods":"^0.2.14","buffer-equal":"0.0.1","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.1","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-git":"^1.5.0","gulp-istanbul":"^0.10.1","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.3.22","jshint-stylish":"^2.0.1","kind-of":"^2.0.1","load-pkg":"^1.3.0","look-up":"^0.8.1","mocha":"^2.3.3","parser-front-matter":"^1.2.5","resolve-glob":"^0.1.2","rimraf":"^2.4.3","should":"^7.1.0","sinon":"^1.17.1","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.0.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"authors":["Jon Schlinkert (https://github.com/jonschlinkert)","Brian Woodward (https://github.com/doowb)"],"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"b1505ae3dd2e676e4fc61f004be30e60ef7b7621","_id":"assemble-core@0.1.1","_shasum":"cca08a920f25aed105e04cd21c558e187b121de0","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"cca08a920f25aed105e04cd21c558e187b121de0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.1.tgz","integrity":"sha512-sOMv/1TqVykuMjNdMuA0g8s4wITolbXTS2Y3r7QnuSjplaoSD4fVXvQcoY8sYVjAWhDsph/j8cqfvtnC+N3C3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLMZfheVe5CtHCc8OWD0u6dfjJHtJVDE22Y6wbu5Y9/gIhALIgG4OY4SM8ejk2AGjgzZEbABDKZ79zXc8HdWxkgu6+"}]}},"0.3.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.3.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.3.0","assemble-streams":"^0.2.0","base-tasks":"^0.1.2","emitter-only":"^0.1.0","templates":"^0.5.0"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.5.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.0","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.2.0","is-buffer":"^1.1.0","istanbul":"^0.4.0","kind-of":"^3.0.2","load-pkg":"^2.0.1","look-up":"^0.8.2","minimist":"^1.2.0","mocha":"^2.3.4","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.7","rimraf":"^2.4.4","should":"^7.1.1","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"836cb8641ba29f01e6a3f7fcefa1ed4c0710bd31","_id":"assemble-core@0.3.0","_shasum":"6647f6e7bc4df32ed30b0d006976e886f763faa0","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"6647f6e7bc4df32ed30b0d006976e886f763faa0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.3.0.tgz","integrity":"sha512-zRiplJvZYBgOTL43WuxnjmtHDC8OMH9RH68SvvegOGVoax5Q17/r3dvLiuysyLU3ychC+XmcBM2Jf/0nY8g9kQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmV/dWtjeXX4RUso0R1ZcRDBX79w0LeUMnLK71z7lAEAIhAIOIoSYNsxQ6yDzfAYo30DTiefAabc/d8LSFRqC2+hlL"}]}},"0.27.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.27.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.8.0","assemble-render-file":"^0.7.2","assemble-streams":"^0.7.0","base-task":"^0.7.0","define-property":"^0.2.5","lazy-cache":"^2.0.2","templates":"^1.0.0"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.3.1","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.11","gulp-istanbul":"^1.1.1","gulp-mocha":"^3.0.1","helper-changelog":"^0.3.0"},"keywords":["add","api","app","apply","assemble","assembleplugin","async","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cache","clear","collection","compile","component","components","copy","core","create","define","del","dest","doc","docs","documentation","emit","engines","error","event","expose","extend","find","format","front","front-matter","generate","generator","group","handlebars","has","helpers","html","inflections","init","is","item","items","jekyll","layout","list","listen","listener","listeners","markdown","matter","md","mixin","mixins","off","once","options","pages","partial","partials","plugin","post","registered","remove","render","resolve","rethrow","scaffold","scaffolds","set","site","src","static","static-site","symlink","task","tasks","templates","templating","type","types","union","view","views","visit","web","website","yaml","yeoman"],"verb":{"toc":true,"layout":false,"tasks":["readme"],"helpers":["helper-changelog"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-data","base-logger","base-methods","base-task","base-watch","composer","consolidate","emitter-only","engine-cache","engine-handlebars","gulp","helper-changelog","parser-front-matter","templates","vinyl","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"336b9d2db03a19f91bd7a1ebbf72c89806060959","_id":"assemble-core@0.27.0","_shasum":"9c6d1365280bb3827a087e6b39e7350860ba35c1","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"9c6d1365280bb3827a087e6b39e7350860ba35c1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.27.0.tgz","integrity":"sha512-dZVVK+JdeSpsgqrE38qqp6KyZ5hcusHf0OxH+g0zr7++g5Ii9uktlph9TIHmMI/vTD1XkuNVADV0QAMT5QoO0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCcrdZWNoPBVJjdDHZ6eSZbNgpgLejYStbzupAyyhKONgIgMxfy4LnhidGEK3rMwtijKV6wQ74FKz1xVGguF8+TUmc="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.27.0.tgz_1483002429751_0.5562624863814563"}},"0.27.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.27.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.8.0","assemble-render-file":"^0.7.2","assemble-streams":"^0.7.0","base-task":"^0.7.0","define-property":"^0.2.5","lazy-cache":"^2.0.2","templates":"^1.1.1"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.3.2","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.11","gulp-istanbul":"^1.1.1","gulp-mocha":"^3.0.1","helper-changelog":"^0.3.0"},"keywords":["add","api","app","apply","assemble","assembleplugin","async","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cache","clear","collection","compile","component","components","copy","core","create","define","del","dest","doc","docs","documentation","emit","engines","error","event","expose","extend","find","format","front","front-matter","generate","generator","group","handlebars","has","helpers","html","inflections","init","is","item","items","jekyll","layout","list","listen","listener","listeners","markdown","matter","md","mixin","mixins","off","once","options","pages","partial","partials","plugin","post","registered","remove","render","resolve","rethrow","scaffold","scaffolds","set","site","src","static","static-site","symlink","task","tasks","templates","templating","type","types","union","view","views","visit","web","website","yaml","yeoman"],"verb":{"toc":true,"layout":false,"tasks":["readme"],"helpers":["helper-changelog"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-data","base-logger","base-methods","base-task","base-watch","composer","consolidate","emitter-only","engine-cache","engine-handlebars","gulp","helper-changelog","parser-front-matter","templates","vinyl","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"cc239b9890d89c0b800bb0406154d1fe9c334cf4","_id":"assemble-core@0.27.1","_shasum":"3ed9c7ed3e6c7662bd200bc93b25bb72a3afbd10","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"3ed9c7ed3e6c7662bd200bc93b25bb72a3afbd10","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.27.1.tgz","integrity":"sha512-/PgpN8T4fAjfMIzGFZ+DSWI2kyHX5wFslWW09BCEck52ognaTz7yKp7F1CB1VdPQsPu3QABDgtenEj2Pk0ltgA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA6EvhmmgBl9s117pynSv7h1g8PNdvIrKhnoJVxuhtCSAiEAgOo/QiWF8me/GxaQ5bVCBTP1iDO4pCa7r1U8T4yGii4="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.27.1.tgz_1485376562393_0.12431113328784704"}},"0.29.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.29.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.9.0","assemble-render-file":"^0.7.2","assemble-streams":"^0.7.0","base-task":"^0.7.0","define-property":"^0.2.5","lazy-cache":"^2.0.2","templates":"^1.2.0"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.11","gulp-istanbul":"^1.1.1","gulp-mocha":"^3.0.1","helper-changelog":"^0.3.0"},"keywords":["assemble","assembleplugin","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cli","cli-app","collection","command-line","compile","component","components","core","create","dev","development","doc","docs","documentation","engines","framework","front","front-matter","frontend","generate","generator","handlebars","helpers","html","inflections","init","jekyll","layout","markdown","pages","partial","partials","plugin","post","project","project-template","projects","render","scaffold","scaffolder","scaffolding","scaffolds","site","static","static-site","template","templates","templating","view","views","web","webapp","website","yaml","yeoman","yo"],"verb":{"toc":true,"layout":false,"tasks":["readme"],"helpers":["helper-changelog"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"lint":{"reflinks":true},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-data","base-logger","base-task","base-watch","composer","consolidate","emitter-only","engine-cache","engine-handlebars","gulp","helper-changelog","parser-front-matter","templates","vinyl","vinyl-fs"]},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"ccb3b2ce829521305270a5e530d5847a94d90346","_id":"assemble-core@0.29.0","_shasum":"fcb3cdd15fbea85aa6d3215a95eb1aed22def0f3","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"fcb3cdd15fbea85aa6d3215a95eb1aed22def0f3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.29.0.tgz","integrity":"sha512-lcIq4XChVM0qrZx0Cc/0GwcGwzjeM//ApBjpkZjAwFGViL11sqFBVSjj4fo8k82/pL4xWgP3Gvdqyqagp8r1FQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBlUQm98RSDLtCtSclBpPYH8ks3oNl8qtze9gJnvujX4AiAlmSs3r0RqEiL0UwiiN6G9Muhcel20V+FSsqJGsWMk0w=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.29.0.tgz_1486092818758_0.5892667449079454"}},"0.30.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.30.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^1.0.0","assemble-render-file":"^1.0.0","assemble-streams":"^0.7.0","base-task":"^0.7.0","define-property":"^0.2.5","lazy-cache":"^2.0.2","templates":"^1.2.2"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.11","gulp-istanbul":"^1.1.1","gulp-mocha":"^3.0.1","helper-changelog":"^0.3.0"},"keywords":["assemble","assembleplugin","base","blog","boilerplate","boilerplates","bootstrap","build","builder","cli","cli-app","collection","command-line","compile","component","components","core","create","dev","development","doc","docs","documentation","engines","framework","front","front-matter","frontend","generate","generator","handlebars","helpers","html","inflections","init","jekyll","layout","markdown","pages","partial","partials","plugin","post","project","project-template","projects","render","scaffold","scaffolder","scaffolding","scaffolds","site","static","static-site","template","templates","templating","view","views","web","webapp","website","yaml","yeoman","yo"],"verb":{"toc":true,"layout":false,"tasks":["readme"],"helpers":["helper-changelog"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"lint":{"reflinks":true},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base","base-data","base-logger","base-task","base-watch","composer","consolidate","emitter-only","engine-cache","engine-handlebars","gulp","helper-changelog","parser-front-matter","templates","vinyl","vinyl-fs"]},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"797a68a958a22247fd5772ba40ed248fd4929c82","_id":"assemble-core@0.30.0","_shasum":"d583d393c74a9c7a3e12c38a89e3742bc6fc7b84","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"d583d393c74a9c7a3e12c38a89e3742bc6fc7b84","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.30.0.tgz","integrity":"sha512-yhuwOvdgoi389YWrMs1iKeZ89YnX+QXS6PKQgpo822eJlMqdxpNOpRqLqpcukBbJJr5ViSoqs+EZ4BIqT8GJ4Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEvjjEbTDGzFs0I0eQ4LwsiIpi0nNy/dUOIHd70IeIvPAiEAxyB9EFR8SESQnNV1KyOvZWHTPNIHkK7MJsIix8DxJI8="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.30.0.tgz_1486601712341_0.7429091681260616"}},"0.17.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.17.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.6","assemble-render-file":"^0.5.2","assemble-streams":"^0.5.0","base-task":"^0.4.2","lazy-cache":"^1.0.3","templates":"^0.17.0"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.9","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.16.0","get-value":"^2.0.5","graceful-fs":"^4.1.3","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.8","gulp-git":"^1.7.1","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","is-buffer":"^1.1.3","istanbul":"^0.4.3","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"^2.4.5","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.2","should":"^8.3.1","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.1","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"888bf0d320f04c0513b0675baa3cb7597e98077b","_id":"assemble-core@0.17.1","_shasum":"6bb2aa218d1c76dc13a6de7624fde667c0428b6a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"6bb2aa218d1c76dc13a6de7624fde667c0428b6a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.17.1.tgz","integrity":"sha512-aG8PBXd+2GUOSXqhRHlhRC+LGveq2LU0Q7Mcso6mvgmb2/vC8ozl0KXWu0CNz9qUupbUv6FZwUPN6kv4lEj9jQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDEqP/3KbSfHJyUtPw8/nvC7SOIqRjxeHmCxhAzhKPxdwIgE9+I0n+evTkRNmQEblkiI2vmBdjyH6m/A7zSMQawZI8="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.17.1.tgz_1461212283276_0.15469404123723507"}},"0.17.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.17.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.6","assemble-render-file":"^0.5.2","assemble-streams":"^0.5.0","base-task":"^0.4.2","lazy-cache":"^1.0.3","templates":"^0.17.0"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.9","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.16.0","get-value":"^2.0.5","graceful-fs":"^4.1.3","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.8","gulp-git":"^1.7.1","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","is-buffer":"^1.1.3","istanbul":"^0.4.3","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"^2.4.5","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.2","should":"^8.3.1","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.1","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs","base-logger","parser-front-matter","engine-handlebars","consolidate"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"355da2b10bbeaf139d0bf30b02cad35388f403ac","_id":"assemble-core@0.17.0","_shasum":"72c68737bb8bed57e60ecdb4119afdcdd0cbd233","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"72c68737bb8bed57e60ecdb4119afdcdd0cbd233","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.17.0.tgz","integrity":"sha512-43LpZ5Asu2lEINPWE63cM7DaM7yJ34jZDeYyOb74WJ6IpL6bJYbcQUqelWOu7miSKQgEM6QPkZJFwUjFwlxjFw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFjf1W19X0/C8RufaG+zbEW//cbppazwmQr2c+MlrlMNAiBLAbcuEioB6Jkjw100WKXT/DaQc/lPTpBLilZ78mkCaA=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.17.0.tgz_1461187271446_0.33110154676251113"}},"0.13.2":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.13.2","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.4.0","assemble-streams":"^0.4.1","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.14.4"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"355795dd003ef1701585215cfaa8b82b61698013","_id":"assemble-core@0.13.2","_shasum":"7d247f3afc6fe1824b306a54cc1bdce1b0b0c0f0","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.1.1","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"dist":{"shasum":"7d247f3afc6fe1824b306a54cc1bdce1b0b0c0f0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.13.2.tgz","integrity":"sha512-NPi7cpAJI6vPEg4ZTl8DeSNEe5cxtpysZUEeSI4Wsx2zNeCaIZeujdeXnkbZkalP2YCGGD5wrO6mZMhzgmGSZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG3DgQ/AG4hIg/tRveqr2OYXW+bcHWA4+4WRzoOM4WYKAiAZsbjKligXSJdBtVUG7dCBa0QaDYjck87vKLqsMAWwsA=="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.13.2.tgz_1456518181046_0.19838370312936604"}},"0.15.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.15.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.6","assemble-render-file":"^0.4.1","assemble-streams":"^0.5.0","base-task":"^0.4.2","lazy-cache":"^1.0.3","templates":"^0.15.12"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.14.0","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs","base-logger"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"c69765b8c57b2f911871bc862f83efc4411c669f","_id":"assemble-core@0.15.0","_shasum":"1abea6d6601e179219f1e9dfe092b0532b412fab","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.1.1","_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"dist":{"shasum":"1abea6d6601e179219f1e9dfe092b0532b412fab","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.15.0.tgz","integrity":"sha512-wfLmHsP4pZbQJRNwGcJHKsp9KkUcvUCh+/krxpqSyTZ5E1IhQ9ys4NbKZgKhaDXMB3K1jkr3rzIrBLTDfZkoPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC85KmDKrxmkw0HCSw7+XAU3Yrk+m8zjRqfrCXZZDSbxwIhALuF9sYhoutcIosavvf6A766Nd5zx+s8pt5cKLgmPIIZ"}]},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.15.0.tgz_1458584372136_0.4597463652025908"}},"0.13.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.13.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.3.3","assemble-streams":"^0.4.1","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.14.1"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"4cd2fdb1457f4f18689c3921b0974b67d3a7bee1","_id":"assemble-core@0.13.1","_shasum":"533e0f76264becfa7f9f453f08a684adb301db43","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"533e0f76264becfa7f9f453f08a684adb301db43","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.13.1.tgz","integrity":"sha512-vBvemReoiWXlGY5rRTzMb1+7BQkftuNsb+Mpal2p1xuZH2PXI7LsxBfYt9K2n182G7uG0MiGNefHUtsB+dDmYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGni+o58GlAko8ZmEKJyygFFI1h/SesS/AitJZnD/3MgIgZrMrAiFPEiw4b6e4f5AN3duJvosvqe204P87z/qyx3I="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.13.1.tgz_1456381526973_0.9186554851476103"}},"0.11.2":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.11.2","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.3.1","assemble-streams":"^0.4.0","base-task":"^0.4.0","lazy-cache":"^1.0.3","templates":"^0.11.4"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"1334267ff823a989254f9955c2add31b36472c06","_id":"assemble-core@0.11.2","_shasum":"79e7022b54f9f8d8e1501ee6f4f6987374eabf53","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"79e7022b54f9f8d8e1501ee6f4f6987374eabf53","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.11.2.tgz","integrity":"sha512-TKLE++6p/8Qd7KNbgPil94tEG74d/TI1It2vOcizvvPL8SEPPFEgZwH6whMqlZcaS06OvisYHTFjcc8BeAp/XQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEjwbex+IQd5cZOPEgI21sr/97Nhwj8HPD7vM46dfPPpAiAUrkpkJXGbv9ktg4crYf0njwSato2j0Hg6qrearZUflA=="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.11.2.tgz_1454531617434_0.6449698233045638"}},"0.13.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.13.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.1","assemble-render-file":"^0.3.1","assemble-streams":"^0.4.1","base-task":"^0.4.1","lazy-cache":"^1.0.3","templates":"^0.13.1"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"toc":true,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"17829ec763087a552b3c7df033a828894a678cbc","_id":"assemble-core@0.13.0","_shasum":"8d91fa8ecc4a6bfec7ccc7d0874945caebec4eed","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"8d91fa8ecc4a6bfec7ccc7d0874945caebec4eed","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.13.0.tgz","integrity":"sha512-Zg8xAKSjhX8zte8HaOq+9501Lr4oeckyM+LcwJNfDbOst3cVSM0i8PeK2YVWIzaQBFOIHM9kaZU7+N//mw01+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCkzjufJpHhCw9ZASyKAFjW4jwv8SkzY2HmLLADtgQC2wIhANSoCw/S3PJp5udKSzKjpY+2irQ+1FsuLagW8GD2yHk1"}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.13.0.tgz_1455549278410_0.7153322019148618"}},"0.11.1":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.11.1","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.0","assemble-render-file":"^0.3.1","assemble-streams":"^0.4.0","base-tasks":"^0.3.0","lazy-cache":"^1.0.3","templates":"^0.11.3"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"6ce6d96b63680c1769f0aed058514e295e0f0090","_id":"assemble-core@0.11.1","_shasum":"7e0f40588e29bb7c24ab7db11ad824bf102ec2bb","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"7e0f40588e29bb7c24ab7db11ad824bf102ec2bb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.11.1.tgz","integrity":"sha512-rOjz/xYjm5eT3bv5yT7Y02BilJCVEKntHbVeP/xbFTz/dZLbNx/K5lYgEH9TfE8XSAMDfur6G7CKVYi4DHPbzw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHfuyy9AzEKfG2aeuyejF+V5zdf9DKQXhLHyACZ7/gvAAiEA4KfF9yI9I9GPnry17fu/NZ1wW+cPrhoKhr2dzJCS5PM="}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.11.1.tgz_1454389395929_0.9028262454085052"}},"0.11.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.11.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.3.6","assemble-render-file":"^0.3.1","assemble-streams":"^0.4.0","base-tasks":"^0.3.0","lazy-cache":"^1.0.3","templates":"^0.11.0"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.6","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.3","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-git":"^1.7.0","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","is-buffer":"^1.1.1","istanbul":"^0.4.2","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"*","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.1","should":"*","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.0","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"plugins":["gulp-format-md"],"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-methods","base-tasks","base-watch","boilerplate","composer","emitter-only","generate","gulp","handlebars","lazy-cache","scaffold","templates","verb","vinyl-fs"]},"lintDeps":{"ignore":["examples","docs"]},"gitHead":"6ce6d96b63680c1769f0aed058514e295e0f0090","_id":"assemble-core@0.11.0","_shasum":"eab886c5c9508aa94d364675fd17db9e9bdbce5d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"eab886c5c9508aa94d364675fd17db9e9bdbce5d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.11.0.tgz","integrity":"sha512-213TCM7lY43YCBIad7u7vF9ykazFwGz6KTio30m/r7/rPzGMZt4sbUel1DMzi/TDqmzKqi+tM62p8Iopr0r9BA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCu1ll4GlaBerrVVCl5GAKv7lNZqdnISO2Tf8rcaU1MIwIhAPXGUYjtRD5Hi3xi5PwcPbELh3XAtb1PdLAOzl6ls9eF"}]}},"0.17.2":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.17.2","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Brian Woodward","url":"https://github.com/doowb"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.4.7","assemble-render-file":"^0.5.2","assemble-streams":"^0.5.0","base-task":"^0.4.3","lazy-cache":"^2.0.1","templates":"^0.17.1"},"devDependencies":{"async":"^1.5.2","buffer-equal":"^1.0.0","consolidate":"^0.14.0","coveralls":"^2.11.9","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","expect":"^1.16.0","get-value":"^2.0.5","graceful-fs":"^4.1.3","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.8","gulp-git":"^1.7.1","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","is-buffer":"^1.1.3","istanbul":"^0.4.3","kind-of":"^3.0.2","load-pkg":"^3.0.1","minimist":"^1.2.0","mocha":"^2.4.5","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.8","rimraf":"^2.5.2","should":"^8.3.1","sinon":"^1.17.3","swig":"^1.4.2","through2":"^2.0.1","vinyl":"^1.1.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-render-file","assemble-streams","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"49d754f289d5a6c80e0a7f40e70b22b40e6be884","_id":"assemble-core@0.17.2","_shasum":"187eda1b62b9b785751af8f419c7112512e3cff5","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"187eda1b62b9b785751af8f419c7112512e3cff5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.17.2.tgz","integrity":"sha512-qQ+Mhh6kQvjchgE3oDxTkYVrzlOpGnJiuvH6dYbVHxdsbtYTRHNDwXNz7jM5s+bkpeP9ifhuavV9g80OKg8RZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC0+dCxG+dL+cc8oha41bUjep5eniRga3pHUyTpDdiVcAIgGwE2R4M5l7DDAQIs3n6mGKu1hpNpy0yWTktuMdIxf/I="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.17.2.tgz_1462648709690_0.13946133386343718"}},"0.19.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.19.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.5.0","assemble-render-file":"^0.7.0","assemble-streams":"^0.6.0","base-task":"^0.5.0","define-property":"^0.2.5","lazy-cache":"^2.0.1","templates":"^0.19.0"},"devDependencies":{"base-test-runner":"^0.1.1","base-test-suite":"^0.1.3","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-git":"^1.7.2","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.5.2","rimraf":"^2.5.2","through2":"^2.0.1"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"37b3c9cc0da48ae3245fba719f6aa501f9078532","_id":"assemble-core@0.19.0","_shasum":"b81134272157f7d26f7d5016006b85cae2c9f7fc","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"b81134272157f7d26f7d5016006b85cae2c9f7fc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.19.0.tgz","integrity":"sha512-m0VAHrzVn/ldVBNEtmZPg2lXr6+U5OjLuHOls3kgC2Dy0CTZ2mCkQRamUH8ZXA//7vf7NDUVNY5085LbK2Rbvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF7wY78awp48RdaTPsacn92ranBW1YxsyYzfgr6mVzDfAiEA/BxgIsJXxGGBXvTMRr8PbBcbM19KIfWWmD33yrA3Om8="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/assemble-core-0.19.0.tgz_1464208036563_0.837629565037787"}},"0.20.0":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.20.0","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.5.1","assemble-render-file":"^0.7.0","assemble-streams":"^0.6.0","base-task":"^0.5.0","define-property":"^0.2.5","lazy-cache":"^2.0.1","templates":"^0.20.1"},"devDependencies":{"base-test-runner":"^0.2.0","base-test-suite":"^0.1.6","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-git":"^1.7.2","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","rimraf":"^2.5.2"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"run":true,"toc":false,"layout":false,"tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["assemble","boilerplate","composer","generate","scaffold","templates","verb"]},"reflinks":["assemble","assemble-cli","assemble-fs","assemble-loader","assemble-render-file","assemble-streams","base-logger","base-methods","base-tasks","base-watch","boilerplate","composer","consolidate","emitter-only","engine-handlebars","generate","gulp","handlebars","lazy-cache","parser-front-matter","scaffold","templates","verb","vinyl-fs"],"lint":{"reflinks":true}},"lintDeps":{"ignore":["docs","examples"]},"gitHead":"14e7c3651d56fee859d85839917cbde6a7274166","_id":"assemble-core@0.20.0","_shasum":"885a9574b4fa2d85a835c19f3a9f6948facd3774","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"885a9574b4fa2d85a835c19f3a9f6948facd3774","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.20.0.tgz","integrity":"sha512-AXen0j34H9jTP6fgGlWHcNKRT3RedfqVSpuQtDzte/iwZVsGx//MwnaFe1n/R3t71lP+zJ8LEkrz+g/0vDQKPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH6OVaRED4dfjwuLKrpgJB69dlgg/4xuULKOkOUIveW6AiEAlqGelFcKfeXgWji+qCbjYHQXlADImA+upGYeJhMAlRo="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/assemble-core-0.20.0.tgz_1464295963845_0.23230627784505486"}},"0.1.11":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.11","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.2.0","assemble-streams":"^0.2.0","composer":"^0.6.0","emitter-only":"^0.1.0","templates":"^0.4.6"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.4.1","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^2.0.0","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.4.0","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.3","rimraf":"^2.4.3","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"59d4f7171e5ad42f40edbc34cbdd161bc998c224","_id":"assemble-core@0.1.11","_shasum":"81fc76025c278499b1bd984ab0a2066a3ac73197","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"81fc76025c278499b1bd984ab0a2066a3ac73197","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.11.tgz","integrity":"sha512-3tyURO7tBd77i3opXMfv1AMrAFwbzgyaPgGG9roQfhb652iMokCrAW1cIZuOtApO0kDiut1IHmFiGkCqLI+xCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZTuoo9kHeQYS/9LpWyVtPNH4Y1X+wL6G+Z4iH3NOcnwIgTk7J/gbTRcHszk2x3N3KSbWikG33blt6yFsZVRbdh/8="}]}},"0.1.10":{"name":"assemble-core","description":"The core assemble application with no presets or defaults. All configuration is left to the implementor.","version":"0.1.10","homepage":"https://github.com/assemble/assemble-core","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"contributors":[{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},{"name":"Brian Woodward","url":"https://github.com/doowb"}],"repository":{"type":"git","url":"git+https://github.com/assemble/assemble-core.git"},"bugs":{"url":"https://github.com/assemble/assemble-core/issues"},"license":"MIT","files":["index.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"assemble-fs":"^0.2.1","assemble-render-file":"^0.2.0","assemble-streams":"^0.2.0","composer":"^0.6.0","emitter-only":"^0.1.0","templates":"^0.4.5"},"devDependencies":{"assemble-ask":"^0.1.4","assemble-loader":"^0.2.4","async":"^1.5.0","base-methods":"^0.4.0","buffer-equal":"0.0.1","cli-prompt":"^0.4.2","consolidate":"^0.13.1","coveralls":"^2.11.4","define-property":"^0.2.5","engine-base":"^0.1.2","engine-handlebars":"^0.8.0","event-stream":"^3.3.2","get-value":"^1.2.1","graceful-fs":"^4.1.2","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-git":"^1.6.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","is-buffer":"^1.1.0","istanbul":"^0.4.0","kind-of":"^2.0.1","load-pkg":"^2.0.1","look-up":"^0.8.1","minimist":"^1.2.0","mocha":"*","myth":"^1.5.0","parser-front-matter":"^1.3.0","resolve-glob":"^0.1.3","rimraf":"^2.4.3","should":"*","sinon":"^1.17.2","swig":"^1.4.2","through2":"^2.0.0","to-file":"^0.1.5","vinyl":"^1.1.0"},"keywords":["api","app","assemble","blog","boilerplate","boilerplates","bootstrap","build","builder","component","components","create","doc","docs","documentation","front","front-matter","generate","generator","handlebars","helpers","html","jekyll","markdown","matter","md","pages","partial","partials","post","scaffold","scaffolds","site","static","static-site","task","templates","templating","web","website","yaml","yeoman"],"verb":{"related":{"list":["composer","generate","boilerplate","scaffold","templates","verb"]},"reflinks":["assemble","scaffold","boilerplate","template","template","verb"]},"gitHead":"84bd8f8a750c58c5524d36acb1dcf4accd58e571","_id":"assemble-core@0.1.10","_shasum":"f46c30d169ceaf4483f8661d1ca30a50e35c9289","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"f46c30d169ceaf4483f8661d1ca30a50e35c9289","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/assemble-core/-/assemble-core-0.1.10.tgz","integrity":"sha512-LzFt17u3RcDx0u/0eM+ZV1T8NkmBlCHYAFawVS9u46GP4urh6pCRMiUfW6C0KyW94QjzcZJbsNhqJ9yS+Q9uzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnS2Qr+5m4iDYhL1OiC7Y38Q/PMIfO8Y6Tx6uXWJa7owIhANlGY5y/A4U3tT+5MF/5UutJGUXom+dAVj5IrtvTVEs6"}]}}},"name":"assemble-core","time":{"0.6.0":"2015-12-14T06:10:07.763Z","0.4.0":"2015-12-01T11:01:33.559Z","0.8.2":"2016-01-19T10:04:05.296Z","0.8.3":"2016-01-19T20:51:05.983Z","0.8.0":"2015-12-28T21:42:26.804Z","0.8.1":"2016-01-12T08:36:23.015Z","0.22.0":"2016-06-15T14:37:37.530Z","0.24.0":"2016-07-02T16:10:55.387Z","0.2.0":"2015-11-17T09:55:56.363Z","0.26.0":"2016-08-06T13:41:50.263Z","0.2.1":"2015-11-17T14:12:31.443Z","0.28.0":"2017-02-01T21:53:15.951Z","0.31.0":"2017-02-11T16:36:42.073Z","0.10.0":"2016-01-27T15:53:28.902Z","modified":"2025-05-07T15:11:26.812Z","0.18.0":"2016-05-21T19:42:31.975Z","0.14.3":"2016-03-11T15:41:39.715Z","0.16.1":"2016-04-05T06:44:10.289Z","0.14.2":"2016-03-09T22:18:47.520Z","0.16.0":"2016-03-28T14:42:01.670Z","0.14.1":"2016-03-07T03:45:31.996Z","0.12.2":"2016-02-24T21:05:18.353Z","0.14.0":"2016-03-02T12:20:15.526Z","0.12.1":"2016-02-17T16:09:34.732Z","created":"2015-10-16T20:09:08.315Z","0.12.0":"2016-02-10T05:52:59.088Z","0.18.1":"2016-05-21T23:23:25.059Z","0.21.0":"2016-06-03T15:00:36.930Z","0.1.5":"2015-10-24T07:45:48.752Z","0.1.6":"2015-10-24T08:43:42.437Z","0.7.0":"2015-12-16T06:37:10.790Z","0.1.3":"2015-10-21T21:52:14.907Z","0.1.4":"2015-10-22T17:47:25.309Z","0.5.0":"2015-12-03T16:49:57.299Z","0.1.9":"2015-11-05T18:54:53.221Z","0.1.7":"2015-10-27T10:56:23.407Z","0.1.8":"2015-11-02T07:57:11.601Z","0.9.0":"2016-01-21T16:54:44.028Z","0.23.0":"2016-06-28T15:21:26.133Z","0.25.0":"2016-07-05T10:31:25.001Z","0.1.1":"2015-10-16T20:09:08.315Z","0.3.0":"2015-11-21T01:06:00.570Z","0.27.0":"2016-12-29T09:07:11.882Z","0.27.1":"2017-01-25T20:36:04.416Z","0.29.0":"2017-02-03T03:33:40.946Z","0.30.0":"2017-02-09T00:55:13.147Z","0.17.1":"2016-04-21T04:18:05.711Z","0.17.0":"2016-04-20T21:21:12.516Z","0.13.2":"2016-02-26T20:23:04.210Z","0.15.0":"2016-03-21T18:19:34.697Z","0.13.1":"2016-02-25T06:25:29.565Z","0.11.2":"2016-02-03T20:33:40.594Z","0.13.0":"2016-02-15T15:14:40.662Z","0.11.1":"2016-02-02T05:03:17.001Z","0.11.0":"2016-01-29T07:03:07.730Z","0.17.2":"2016-05-07T19:18:32.111Z","0.19.0":"2016-05-25T20:27:19.012Z","0.20.0":"2016-05-26T20:52:45.631Z","0.1.11":"2015-11-09T23:19:17.491Z","0.1.10":"2015-11-06T22:24:44.825Z"},"readmeFilename":"README.md","homepage":"https://github.com/assemble/assemble-core"}