{"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@segment.com"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"dist-tags":{"latest":"2.6.3"},"description":"An extremely simple, pluggable static site generator.","readme":"# Metalsmith\n\n[![npm: version][npm-badge]][npm-url]\n[![ci: build][ci-badge]][ci-url]\n[![code coverage][codecov-badge]][codecov-url]\n[![license: MIT][license-badge]][license-url]\n[![Gitter chat][gitter-badge]][gitter-url]\n\n> An extremely simple, _pluggable_ static site generator for NodeJS.\n\nIn Metalsmith, all of the logic is handled by plugins. You simply chain them together.\n\nHere's what the simplest blog looks like:\n\n```js\nimport { fileURLToPath } from 'node:url'\nimport { dirname } from 'path'\nimport Metalsmith from 'metalsmith'\nimport layouts from '@metalsmith/layouts'\nimport markdown from '@metalsmith/markdown'\n\nconst __dirname = dirname(fileURLToPath(import.meta.url))\n\nMetalsmith(__dirname)\n  .use(markdown())\n  .use(\n    layouts({\n      pattern: '**/*.html'\n    })\n  )\n  .build(function (err) {\n    if (err) throw err\n    console.log('Build finished!')\n  })\n```\n\n## Installation\n\nNPM:\n\n```\nnpm install metalsmith\n```\n\nYarn:\n\n```\nyarn add metalsmith\n```\n\n## Quickstart\n\nWhat if you want to get fancier by hiding unfinished drafts, grouping posts in collections, and using custom permalinks? Just add plugins...\n\n```js\nimport { fileURLToPath } from 'node:url'\nimport { dirname } from 'node:path'\nimport Metalsmith from 'metalsmith'\nimport collections from '@metalsmith/collections'\nimport layouts from '@metalsmith/layouts'\nimport markdown from '@metalsmith/markdown'\nimport permalinks from '@metalsmith/permalinks'\nimport drafts from '@metalsmith/drafts'\n\nconst __dirname = dirname(fileURLToPath(import.meta.url))\nconst t1 = performance.now()\nconst devMode = process.env.NODE_ENV === 'development'\n\nMetalsmith(__dirname) // parent directory of this file\n  .source('./src') // source directory\n  .destination('./build') // destination directory\n  .clean(true) // clean destination before\n  .env({\n    // pass NODE_ENV & other environment variables\n    DEBUG: process.env.DEBUG,\n    NODE_ENV: process.env.NODE_ENV\n  })\n  .metadata({\n    // add any variable you want & use them in layout-files\n    sitename: 'My Static Site & Blog',\n    siteurl: 'https://example.com/',\n    description: \"It's about saying »Hello« to the world.\",\n    generatorname: 'Metalsmith',\n    generatorurl: 'https://metalsmith.io/'\n  })\n  .use(drafts(devMode)) // only include drafts when NODE_ENV === 'development'\n  .use(\n    collections({\n      // group all blog posts by adding key\n      posts: 'posts/*.md' // collections:'posts' to metalsmith.metadata()\n    })\n  ) // use `collections.posts` in layouts\n  .use(\n    markdown({\n      // transpile all md file contents into html\n      keys: ['description'], // and also file.description\n      globalRefs: {\n        // define links available to all markdown files\n        home: 'https://example.com'\n      }\n    })\n  )\n  .use(permalinks()) // change URLs to permalink URLs\n  .use(\n    layouts({\n      // wrap layouts around html\n      pattern: '**/*.html'\n    })\n  )\n  .build((err) => {\n    // build process\n    if (err) throw err // error handling is required\n    console.log(`Build success in ${((performance.now() - t1) / 1000).toFixed(1)}s`)\n  })\n```\n\n## How does it work?\n\nMetalsmith works in three simple steps:\n\n1. Read all the files in a source directory.\n2. Invoke a series of plugins that manipulate the files.\n3. Write the results to a destination directory!\n\nEach plugin is invoked with the contents of the source directory, and each file can contain YAML front-matter that will be attached as metadata, so a simple file like...\n\n```yml\n---\ntitle: A Catchy Title\ndate: 2024-01-01\n---\nAn informative article.\n```\n\n...would be parsed into...\n\n```js\n{\n  'path/to/my-file.md': {\n    title: 'A Catchy Title',\n    date: new Date(2024, 1, 1),\n    contents: Buffer.from('An informative article'),\n    stats: fs.Stats\n  }\n}\n```\n\n...which any of the plugins can then manipulate however they want. Writing plugins is incredibly simple, just take a look at the [example drafts plugin](examples/drafts-plugin/index.js).\n\nOf course they can get a lot more complicated too. That's what makes Metalsmith powerful; the plugins can do anything you want!\n\n## Plugins\n\nA [Metalsmith plugin](https://metalsmith.io/api/#Plugin) is a function that is passed the file list, the metalsmith instance, and a done callback.\nIt is often wrapped in a plugin initializer that accepts configuration options.\n\nCheck out the official plugin registry at: https://metalsmith.io/plugins.  \nFind all the core plugins at: https://github.com/search?q=org%3Ametalsmith+metalsmith-plugin  \nSee [the draft plugin](examples/drafts-plugin) for a simple plugin example.\n\n## API\n\nCheck out the full API reference at: https://metalsmith.io/api.\n\n## CLI\n\nIn addition to a simple [Javascript API](#api), the Metalsmith CLI can read configuration from a `metalsmith.json` file, so that you can build static-site generators similar to [Jekyll](https://jekyllrb.com) or [Hexo](https://hexo.io) easily. The example blog above would be configured like this:\n\n`metalsmith.json`\n\n```json\n{\n  \"source\": \"src\",\n  \"destination\": \"build\",\n  \"clean\": true,\n  \"metadata\": {\n    \"sitename\": \"My Static Site & Blog\",\n    \"siteurl\": \"https://example.com/\",\n    \"description\": \"It's about saying »Hello« to the world.\",\n    \"generatorname\": \"Metalsmith\",\n    \"generatorurl\": \"https://metalsmith.io/\"\n  },\n  \"plugins\": [\n    { \"@metalsmith/drafts\": true },\n    { \"@metalsmith/collections\": { \"posts\": \"posts/*.md\" } },\n    { \"@metalsmith/markdown\": true },\n    { \"@metalsmith/permalinks\": \"posts/:title\" },\n    { \"@metalsmith/layouts\": true }\n  ]\n}\n```\n\nThen run:\n\n```bash\nmetalsmith\n\n# Metalsmith · reading configuration from: /path/to/metalsmith.json\n# Metalsmith · successfully built to: /path/to/build\n```\n\nOptions recognised by `metalsmith.json` are `source`, `destination`, `concurrency`, `metadata`, `clean` and `frontmatter`.\nCheckout the [static site](examples/static-site), [Jekyll](examples/jekyll) examples to see the CLI in action.\n\n### Local plugins\n\nIf you want to use a custom plugin, but feel like it's too domain-specific to be published to the world, you can include plugins as local npm modules: (simply use a relative path from your root directory)\n\n```json\n{\n  \"plugins\": [{ \"./lib/metalsmith/plugin.js\": true }]\n}\n```\n\n## The secret...\n\nWe often refer to Metalsmith as a \"static site generator\", but it's a lot more than that. Since everything is a plugin, the core library is just an abstraction for manipulating a directory of files.\n\nWhich means you could just as easily use it to make...\n\n- [A project scaffolder.](examples/project-scaffolder)\n- [A build tool for Sass files.](examples/build-tool)\n- [A simple static site generator.](examples/static-site)\n- [A Jekyll-like static site generator.](examples/jekyll)\n\n## Resources\n\n- [Gitter Matrix community chat](https://app.gitter.im/#/room/#metalsmith_community:gitter.im) for chat, questions\n- [X (formerly Twitter) announcements](https://x.com/@metalsmithio) and the [metalsmith.io news page](https://metalsmith.io/news) for updates\n- [Awesome Metalsmith](https://github.com/metalsmith/awesome-metalsmith) - great collection of resources, examples, and tutorials\n- [emmer.dev on metalsmith](https://emmer.dev/blog/tag/metalsmith/) - A good collection of various how to's for metalsmith\n- [glinka.co on metalsmith](https://www.glinka.co/blog/) - Another great collection of advanced approaches for developing metalsmith\n- [Getting to Know Metalsmith](http://robinthrift.com/post/getting-to-know-metalsmith/) - a great series about how to use Metalsmith for your static site.\n\n## Troubleshooting\n\nSet `metalsmith.env('DEBUG', '*metalsmith*')` to debug your build. This will log debug logs for all plugins using the built-in `metalsmith.debug` debugger.\nFor older plugins using [debug](https://github.com/debug-js/debug/) directly, run your build with `export DEBUG=metalsmith-*,@metalsmith/*` (Linux) or `set DEBUG=metalsmith-*,@metalsmith/*` for Windows.\n\n### Node Version Requirements\n\nFuture Metalsmith releases will at least support the oldest supported Node LTS versions.\n\nMetalsmith 2.6.x supports NodeJS versions 14.18.0 and higher.  \nMetalsmith 2.5.x supports NodeJS versions 12 and higher.  \nMetalsmith 2.4.x supports NodeJS versions 8 and higher.  \nMetalsmith 2.3.0 and below support NodeJS versions all the way back to 0.12.\n\n### Compatibility & support policy\n\nMetalsmith is supported on all common operating systems (Windows, Linux, Mac).\nMetalsmith releases adhere to [semver (semantic versioning)](https://semver.org/) with 2 minor gray-area exceptions for what could be considered breaking changes:\n\n- Major Node version support for EOL (End of Life) versions can be dropped in minor releases\n- If a change represents a major improvement that is backwards-compatible with 99% of use cases (not considering outdated plugins), they will be considered eligible for inclusion in minor version updates.\n\n## Credits\n\nSpecial thanks to [Ian Storm Taylor](https://github.com/ianstormtaylor), [Andrew Meyer](https://github.com/Ajedi32), [Dominic Barnes](https://github.com/dominicbarnes), [Andrew Goodricke](https://github.com/woodyrew), [Ismay Wolff](https://github.com/ismay), [Kevin Van Lierde](https://github.com/webketje) and [others](https://github.com/segmentio/metalsmith/graphs/contributors) for their contributions!\n\n## [License](LICENSE)\n\n[npm-badge]: https://img.shields.io/npm/v/metalsmith.svg\n[npm-url]: https://www.npmjs.com/package/metalsmith\n[ci-badge]: https://github.com/metalsmith/metalsmith/actions/workflows/test.yml/badge.svg\n[ci-url]: https://github.com/metalsmith/metalsmith/actions/workflows/test.yml\n[codecov-badge]: https://coveralls.io/repos/github/metalsmith/metalsmith/badge.svg?branch=master\n[codecov-url]: https://coveralls.io/github/metalsmith/metalsmith?branch=master\n[license-badge]: https://img.shields.io/github/license/metalsmith/metalsmith\n[license-url]: LICENSE\n\n[gitter-badge]: https://img.shields.io/badge/[gitter:matrix]-join-blue.svg\n[gitter-url]: https://app.gitter.im/#/room/#metalsmith_community:gitter.im\n","repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"users":{"cobaimelan":true,"dpobel":true,"tunnckocore":true,"madeofpeople":true,"binnng":true,"astra8331":true,"davidchubbs":true,"rhythm19":true,"knownasilya":true,"robloach":true,"aaronhans":true,"cwonrails":true,"ajedi32":true,"stany":true,"awynter":true,"leodutra":true,"timdp":true,"eesur":true,"ristostevcev":true,"monjer":true,"lassevolkmann":true,"shenbin":true,"flozz":true,"kontrax":true,"rnbee":true,"shaomingquan":true,"alexxnica":true,"crankincrankin":true,"htz":true,"gurunate":true,"doublejosh":true,"seangenabe":true,"irj":true,"gindis":true,"sternelee":true,"hewenxuan":true,"webketje":true},"bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"license":"MIT","versions":{"0.0.0":{"name":"metalsmith","description":"An extremely simple, pluggable static site generator.","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.0.0","license":"MIT","main":"lib/index.js","dependencies":{"front-matter":"~0.2.0","consolidate":"~0.10.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","marked":"~0.3.1","swig":"~1.3.2"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.0.0","dist":{"shasum":"62c277d037988a8f48cc0e9ecd22f11a4658a527","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.0.0.tgz","integrity":"sha512-UR7GD+abI2OVcI/abM4fJ72o9YyJD4BGD1/Bt9/TWs+fy6M6wShMfuOOghe+pJhJp/kJ7nf7yA1l5myAZ2s5aQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCW1h9O3GKURDqPnR4un1MNZe7yBZ63YjDJYm0ZU/PUcwIgELVnYGJ7lsWDuliV6sTwHe8OWA7xsReF5T3wIQ105So="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.0.1":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.0.1","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","metalsmith-templates":"0.0.1","swig":"~1.3.2"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.0.1","dist":{"shasum":"d33a39180d63d404f5996ba92395933bad89eb80","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.0.1.tgz","integrity":"sha512-llYL2kVCZJSAp2De93jab2onKWEpck6eVevmpqZN08uz03KT6X6WitI2+lnNQXxvohV/jBksTDJqMnnUtGtCrA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDAxd0deXpUUbI1vqtc3RIdTfBo4V3oczSnetKkx9Xg+gIgJl19o0oJrjm3YambIRE3O54UqKgc3BiPClFbtu6cgzk="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.0.2":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.0.2","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","metalsmith-templates":"0.0.2","swig":"~1.3.2"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.0.2","dist":{"shasum":"f242a37d0a04f7db88a12d0a2f019087c5a137cd","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.0.2.tgz","integrity":"sha512-ZuUppn1LZZWLKUhSm3XzctA3zd0Gg5OG5CSaK7bHhvjq3l+sgtQ/pwUaWss9HWBUe8H5sizgUIGuuirB0KRwiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFY9wc0H6x7qCg+tOlaXfzsBAJPzWcdovhB+cb+GIJvEAiAXQdUz4dVZm2NaOzklcTgQix+vu9iwMgsCYa6uBlZnog=="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.0.4":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.0.4","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","metalsmith-templates":"0.0.2","swig":"~1.3.2","assert-dir-equal":"~0.1.0"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.0.4","dist":{"shasum":"dcf243d4c07988e367be0f3ecc9608d22348df73","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.0.4.tgz","integrity":"sha512-Slt/t75cwbG4TKEfyqQbKOOqTqylDPpQUpvvIMbc7Du5xgzDtv7SQp4ak5Y78mbslwRU9UgDJH4Mvidhk9TPEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC9jl/SNFTu0pErGtorProooqTRJkc0Kjds13yvDa+XzAIgTNkC7Pv2v4VhqYIeHElEtBSGT4nmeScutSk0fAJGRt0="}]},"_from":".","_npmVersion":"1.3.26","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.1.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.1.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","swig":"~1.3.2","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.1.0","dist":{"shasum":"2bffb8051ee945bdd1e6ff1cdbeca6120ef015b4","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.1.0.tgz","integrity":"sha512-OgIS7B9gfEgb4SfiFPpAwEQa/T5YqXlDQNX54231mygB1SvrhtJQq4K2O464YCoErMGDcwTuHNDaIP5x6jd3pw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCmxyV3Me8M15tcsaatICa7h5ENwkjcbNSjtndrk1PdIwIgB3jo/a3s0ImDVnB3ba6VIlLZxsngrodoF1GyrofJggM="}]},"_from":".","_npmVersion":"1.3.26","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.2.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.2.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","colors":"~0.6.2"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","swig":"~1.3.2","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1","handlebars":"~2.0.0-alpha.1","metalsmith-markdown":"~0.2.1","metalsmith-templates":"0.0.6","metalsmith-permalinks":"0.0.2","jade":"~1.2.0"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.2.0","dist":{"shasum":"ca795b5d076d3badf27e3fdaaef90431a83417a3","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.2.0.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.2.1":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.2.1","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","swig":"~1.3.2","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1","handlebars":"~2.0.0-alpha.1","metalsmith-markdown":"~0.2.1","metalsmith-templates":"0.0.6","metalsmith-permalinks":"0.0.2","jade":"~1.2.0"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.2.1","dist":{"shasum":"d01ba887bc8f3bb134a0e7ee9a3a86398e747e54","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.2.1.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.2.2":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.2.2","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.2.2","dist":{"shasum":"d2c3ef2e85561c7c39ef9d05df11cde1bd1f774a","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.2.2.tgz","integrity":"sha512-+qOBG9NwEDqLNP3wNnnBysELNw9gLTDvvA02nMfHtOSyCjMcVakSwYmpIDYKkfNE9u4FT9CmGsElcg9Idms/PQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE2sb8aeZBBW4pZ1cShXDXe8tpxtMgV2bk51v2Pdjq6FAiEAtniZncm3FVn2RuUDyuW1Sm/JIJE45tYesrK9DEPY5Fc="}]},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.2.3":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.2.3","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.2.3","dist":{"shasum":"ddfe922300caacca0115a7c1494e2fea7e1a6990","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.2.3.tgz","integrity":"sha512-g2LrdM+qgq2FmQSZnrwqJLVeu5AoAYhr7EVidVez9rtwU2JmNNvARhuy/CjQk7g7vobaiOHDdanOaQKUeb0lQQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDdngHnJMUuNEKPOOfqqQuE7ddv9MCwdMyrcWU2SoWo8QIhANWG6bD/2y34O7ynA+Dpyf5Rh3z9OUZnYFigc0dBie05"}]},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.3.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.3.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.3.0","dist":{"shasum":"3041c35b802f3e0054556a871d56d18375f163aa","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.3.0.tgz","integrity":"sha512-jWV85R5EzeRafXe5QrF8dctxss/gEDeApFMM96jGKo9gfLmE8UrrcX+WiFjiRd0uf/J+3Ndpx18XFDpmujLVcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAWRqqOIYFUhtZ1BF1cASKm+vA5IuomiDiPuZYLOTBoWAiBnsi8tvGeLD7fQ5ho5+Hrnc4jl2Eu91EZ4Otkw8C2mKA=="}]},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.4.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.4.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0","clone":"^0.1.11"},"devDependencies":{"mocha":"1.x","rimraf":"~2.2.6","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.4.0","dist":{"shasum":"47e6c85f9238e87a9eb880ddd0651d081833042b","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.4.0.tgz","integrity":"sha512-wVv7Zxr0goaxj35ygLZRlPbeOJRjmfaq+IcH3WkhBacqX6fbQUoi66QJw9+iUGQZNk15xf40J+EVaaoLMgxlnw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA8eLTAb1P1NtJI5TkdMl71nBaY5ZyXE/8DOb3KZf/aWAiEAlXT2OKBg+ol9Szi1F9ROwOu7mP6uR3y6aRwWPAupofQ="}]},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.5.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.5.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0","clone":"^0.1.11","rimraf":"^2.2.6"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.5.0","dist":{"shasum":"3e29dfe375382440cac263c669ddfa4a3b3eddf6","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.5.0.tgz","integrity":"sha512-BWIm3GGqCCpWRYOpiHWQxAEOiW/Nnq5qGqmEKPI+Utrk7owQTfoNgPgZd26sJdCwlwY2R2v0vmkok6mOSz/QWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDY/6F6JajNc+LEO2WhAdO3Zkxc/LGLqviPVdFd60GhOAIgSUAk8rGtoKRaJCPDBstQsWeCZ5iCNbtvbXggQ9Boepc="}]},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.6.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.6.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.2.1","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0","clone":"^0.1.11","rimraf":"^2.2.6","stat-mode":"^0.2.0"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.6.0","dist":{"shasum":"b208b96c82fe07826ee5d13283853599ec146933","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.6.0.tgz","integrity":"sha512-B/5cma4I2Ix+alVpu5vQpLyc2KthBfF8qNN1suq7Z6xh+0yndwmmqqCZoTbiOquLfwB9NROqtOfMR+6WmvPy0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDcsaW/beOHhzCtNM5D19j011fWqJrQ5f3REscz171hygIhAIR3s5mzfIGgNtp3vrVV1ZZnLxalysnU6swJpWHDsBTT"}]},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.6.1":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.6.1","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.3.0","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0","clone":"^0.1.11","rimraf":"^2.2.6","stat-mode":"^0.2.0"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.6.1","dist":{"shasum":"6b402cca6c3eed2ddb1a0a8a3ccac9af665fb868","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.6.1.tgz","integrity":"sha512-kgPjjCg8f4cH+k2ifnPO3Y220yURwzQaUoePbsHyZkRh0h190sanIJ5ZDuk80d2iwGP+k+BedVhZdDbHigJkFQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGg2gweyXUyJolh3UYBkg3gUpT1HVdCtJa6KPnGpyncrAiEA9VHB18abHcRnl80t5q3stM67vVkVMtZ+ldLRHp6yH/M="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.7.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.7.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.3.0","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0","clone":"^0.1.11","rimraf":"^2.2.6","stat-mode":"^0.2.0"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.7.0","dist":{"shasum":"c328451b36f348f425eac1641f4740db2c83ee46","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.7.0.tgz","integrity":"sha512-tYSKv6ueEe3R2w852boBlpYRWBiVp+wUJ4IRuXUJDVtwhquCAWAFFJJSb9Oqoe9TEx6+I5GFDc9oajf8LtOycw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDW12DQ002Wu/ugAYSFArANlq1OvtDzqS3yfoRRRNkPcAiEAwAf9MZ3Onks5SFLyDcSHpfT8oCvx7iDZjOcBaF5CskE="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.8.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.8.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"front-matter":"~0.2.0","ware":"~0.3.0","recursive-readdir":"0.0.2","async":"~0.2.10","fs-extra":"~0.8.1","defaults":"~1.0.0","is-utf8":"~0.2.0","chalk":"^0.4.0","clone":"^0.1.11","rimraf":"^2.2.6","stat-mode":"^0.2.0"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.1","assert-dir-equal":"~0.1.0","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.8.0","dist":{"shasum":"e9f3a855d1f5f045400b23f0ee12899fe63fa987","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.8.0.tgz","integrity":"sha512-LCTkHUFMo4YGVxQKhxsbkg318uV2Sj19r/aLIVJGYw/fQVhNXj0OQGrai38gOXkdjnuAMW6A5zYhKN8XIqXypg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEl9VRAQ1p50E5EsKu6hDaoUTgWhl/XGSPRRzZdjuPQiAiEAxbPkF8zn6icVrPwfC2podMa+HqJMGTuKgGPTf/tQhFM="}]},"_from":".","_npmVersion":"1.3.22","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.8.1":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.8.1","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","defaults":"~1.0.0","front-matter":"~0.2.0","fs-extra":"~0.10.0","is-utf8":"~0.2.0","recursive-readdir":"1.1.2","rimraf":"^2.2.8","stat-mode":"^0.2.0","ware":"~0.3.0"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.2","assert-dir-equal":"~1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.8.1","_shasum":"b2f9cba7ff0587fa9e886499c64ca8d751c51475","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"dist":{"shasum":"b2f9cba7ff0587fa9e886499c64ca8d751c51475","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.8.1.tgz","integrity":"sha512-Ei8vhNzp+QD3GicfP7YW5QEaKph05AOK9DKgA4F36ex9++BGn9PdVcnY+jYgkdeEVb7jSIfGnPXPZL9GdbNy7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEi6DQacmoly+xvOcNnHRPQBcOhaY0lAkopumVEPQ8s/AiEAvgGkKHKBKxLxK1AHsN8vyIDelTyLli8z+Kaw9GHR1Zg="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.9.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.9.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","defaults":"~1.0.0","front-matter":"~0.2.0","fs-extra":"~0.10.0","is-utf8":"~0.2.0","recursive-readdir":"1.1.2","rimraf":"^2.2.8","stat-mode":"^0.2.0","ware":"~0.3.0"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.2","assert-dir-equal":"~1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1"},"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.9.0","_shasum":"e1519053ac0fb118eab3fc9fa63722849baeb91a","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"segmentio","email":"team@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"dist":{"shasum":"e1519053ac0fb118eab3fc9fa63722849baeb91a","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.9.0.tgz","integrity":"sha512-LnY+XqE+mQJZ9C7XM/6hurp4GV/Y+E2GFo+hGUs5jK66KDExG+nb5lAvaI8MiZfwWZJ7nkLKQKjCWkMP6r/amw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCtU9V5fck9gof29hvUXh6qS67LDfhSyuzMRrHvbuTREQIhAIKoiCEZ/KNZEV/U9ykIfkvbiV7yZIWwUd/kb7VokV9e"}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.10.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.10.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","defaults":"~1.0.0","front-matter":"~0.2.0","fs-extra":"~0.10.0","is-utf8":"~0.2.0","recursive-readdir":"1.1.2","rimraf":"^2.2.8","stat-mode":"^0.2.0","ware":"~0.3.0"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.2","assert-dir-equal":"~1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1"},"gitHead":"f32bfcab9b1e137cd860850df07e618c8e7be889","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.10.0","_shasum":"5aee2a02900f7e898163676e1ac808a844db2ca8","_from":".","_npmVersion":"1.4.20","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"dist":{"shasum":"5aee2a02900f7e898163676e1ac808a844db2ca8","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.10.0.tgz","integrity":"sha512-BGDFhftb0+CYpg0tiUV1Eb1soMheehXnV5vv+9KILPaQK7YbuIu5B+UrfxGGlEOvvWl1UJiTZwcvTIUKx3j9Sg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMG5abEb8zcsGCnDtqEWV/SLIQmMT20jp9vKS5NAow/AIhANXnI3TOelAnB/EbP4f8N3Y321Jtncb3ose0NsZjXgrn"}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"0.11.0":{"name":"metalsmith","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"version":"0.11.0","license":"MIT","description":"An extremely simple, pluggable static site generator.","keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"main":"lib/index.js","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","front-matter":"~0.2.0","fs-extra":"~0.10.0","is-utf8":"~0.2.0","recursive-readdir":"1.1.2","rimraf":"^2.2.8","stat-mode":"^0.2.0","ware":"~0.3.0"},"devDependencies":{"mocha":"1.x","fs-readdir-recursive":"0.0.2","assert-dir-equal":"~1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1"},"gitHead":"1476615a57d88e794966b859aa462acab87231a2","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@0.11.0","_shasum":"72560227c9e35413cc7a3af3e4e8dbe8966fb531","_from":".","_npmVersion":"1.4.20","_npmUser":{"name":"segmentio","email":"friends@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"dist":{"shasum":"72560227c9e35413cc7a3af3e4e8dbe8966fb531","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-0.11.0.tgz","integrity":"sha512-wS2Bz8HyiWTYFk0nhgW9nfx0NPRAknI5z1Ck9oKDec7CLK4i2/T+T9fWhNyXy7R1ogsurr/0WmIFtsPVLmQ5uQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAF+yTXZkv1RVGAbl3GXa7sL8BNfqCtR2PaeDkgCB3AZAiEAgRwQSq0VV3zJ9YkA8nagfm4Vvcp8pqTFMoFXrk4Ow7w="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.0.0":{"name":"metalsmith","version":"1.0.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","front-matter":"~0.2.0","fs-extra":"~0.10.0","is-utf8":"~0.2.0","recursive-readdir":"1.1.2","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","gnode":"^0.1.0","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"f55e43814801929c9f7f9745fa583d5d5038b913","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.0.0","_shasum":"92c4f5355c29386a23c6bff5b34ddf97091d9807","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"dist":{"shasum":"92c4f5355c29386a23c6bff5b34ddf97091d9807","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.0.0.tgz","integrity":"sha512-9tXMWzrboq+xaK/yrABjxjvLQTYoR2lgd/XywSqs4T/8UGiIpCsioYpeM7ADcDQEWHGM75dHfn7HR0vnPclaqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB6p9HBs7gJkBOwxytmL/VJcE4lH07P/q4caSU/k8V7sAiBFfo0gRf4lHjYeYG81OPw+/IkaA/EGgF36lAPKIknbAw=="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.0.1":{"name":"metalsmith","version":"1.0.1","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","front-matter":"~0.2.0","fs-extra":"~0.10.0","gnode":"^0.1.0","is-utf8":"~0.2.0","recursive-readdir":"1.1.2","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"9d69b5fa7d198a5e6b48254b1a09ea277f5fdb4b","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.0.1","_shasum":"b68635434f86c81f09b79fbdb9b3bba04ac8e667","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"dist":{"shasum":"b68635434f86c81f09b79fbdb9b3bba04ac8e667","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.0.1.tgz","integrity":"sha512-nX61BweOw4ZhgjckXbW5X1FGJZaZ6l45j7oi2kE0G0DCY7kmPMkIV3uhO3Zz7f+CcDq986x6LOM8UNE69Ipu2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHT6cjK0rULXWT97dh2NsNSZQ1QxKM8JP2jF+xsVNBCeAiEAskHtGmn6iiND7WGT6QV5BhGFZi0aMDTz4O5cV9Ozrwg="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.1.1":{"name":"metalsmith","version":"1.1.1","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","front-matter":"~0.2.0","fs-extra":"~0.10.0","gnode":"^0.1.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"cd71439b5733000398d8198578061329fd9a15c1","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.1.1","_shasum":"b5ccebc4b2813ba7d4253f801c273b2ce702b5dd","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"dist":{"shasum":"b5ccebc4b2813ba7d4253f801c273b2ce702b5dd","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.1.1.tgz","integrity":"sha512-QTo5Se+3ixR1tCU+cTv0yszY/+o5xtQZ8Aw7MzzmpzfEcGqHcFULPtPEPyvW8fmSJC1DhVljvEEaydx/rTwrzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7Qc0me9gDg6utyez1Ilm7TwMWKlFaDKT2Hc48FlnQEwIgIY4LOyFyk9TNhbaoY7cnLgbZpn7tSi5n7g8ShVq9/d0="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.2.0":{"name":"metalsmith","version":"1.2.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","front-matter":"~0.2.0","fs-extra":"~0.10.0","gnode":"^0.1.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"b86abd84202a24f935a8fc2d9cf042b5d5025c34","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.2.0","_shasum":"3005765afa4d319f482d149e637d5194e482719f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"}],"dist":{"shasum":"3005765afa4d319f482d149e637d5194e482719f","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.2.0.tgz","integrity":"sha512-gLd4xUvZTTDUubEnR9rjHtYjNEmKyfY3uHByuk4s11Xex5kqHWKQG+MX3bIOi+Ll/4yvvJfxwDLhpm7yjsPGMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDoHUMqFXKjHM7e1SnzeBz6/RhPZ9T0ax90szZ4P8kq6AiBWl9PY7klE0Pvvgy31C18cSEUcZo7gXR4Cg2/RKpXoCQ=="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.3.0":{"name":"metalsmith","version":"1.3.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","front-matter":"~0.2.0","fs-extra":"~0.10.0","gnode":"^0.1.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.3.0","_shasum":"c9d0b324fda19ed3c2cba3e6fcfe8b7fbbc3ffc1","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"segment","email":"tj@segment.io"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"c9d0b324fda19ed3c2cba3e6fcfe8b7fbbc3ffc1","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.3.0.tgz","integrity":"sha512-aJpKkR90G6bIloWaKf5HKZFDJXLj6j00c2l7yROjOGY8zwzGX3WsIkfJqGuQxys+HXvgoHjxmV5EkSRVnAYrHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaZDUmFVeF4H4m/9hO1d5aHCyMAgTBarL+KhNDPe3X0AIhALqgWR1QFDkhQ1oQgsMX8xicxxpaLfpSEf58uoYmcOOJ"}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.4.0":{"name":"metalsmith","version":"1.4.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","front-matter":"~0.2.0","fs-extra":"~0.10.0","gnode":"^0.1.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"af36d36cb6e5458c3213ff4c340d125d53787225","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.4.0","_shasum":"25da00d4e00aa6441e7dac85e44529cf58b2f261","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"25da00d4e00aa6441e7dac85e44529cf58b2f261","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.4.0.tgz","integrity":"sha512-RfIMWeZwwEW0SCSzFjltNxP7gCA7nkOnY8UQJJmTsOHm749qOpelZXxGTOQG1KLrMvSqSWesQtxf4nMUmyhfJg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDgll9AdYEw40m3129VeswYtjrCxksSuFU59T+JkYkxnAIhAMuA7TUjbnh3NnLiLelIK/mdvANmQOXz5CIrQLnL/VtS"}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.4.1":{"name":"metalsmith","version":"1.4.1","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","front-matter":"~0.2.0","fs-extra":"~0.10.0","gnode":"^0.1.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"0122ddfab30f9f3d85579b8ecef187a70ccd7c44","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.4.1","_shasum":"08d49b6a792aec1aab3234870af42c8cdcd3b399","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"08d49b6a792aec1aab3234870af42c8cdcd3b399","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.4.1.tgz","integrity":"sha512-dF8igqDR4jdvUszKhfzVuHHBo6ysRztD5D/st6wNt0s8dOaxSGOneytgzPiYhVFustASKR715Y7Yh6hIM0DswQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA/3Q88pOdBqthBP/kbOlRlHdvDHJE6wcBKpyD8dYQMaAiB6tn1wmIzXFlOXciAfah+H9yl6XA8FF9J4UjRoC/fvqQ=="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.4.2":{"name":"metalsmith","version":"1.4.2","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gnode":"^0.1.0","gray-matter":"^2.0.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"28e5c7a807d5606e1a430d1d6985ef735cd7a75c","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.4.2","_shasum":"a8d59b761c7aef6d16c4306aea4279d4f6ba2c2c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"a8d59b761c7aef6d16c4306aea4279d4f6ba2c2c","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.4.2.tgz","integrity":"sha512-bvkqXLUXubITKbYScxiXIXm5PfCCoQSiKAHViniaRzCaEX+PQAS57yRBOTUvZ350faboFOGc1TDyKHftmVAFaA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAOZBLGqbqG6/2SAIenqWFmjYULk8/vbI/IcFJ3nBA51AiEAhOuuFxTaN9DCe2SC10UlZDKWRf0PM7wPzaG5+ow8FIY="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.4.3":{"name":"metalsmith","version":"1.4.3","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gnode":"^0.1.0","gray-matter":"^2.0.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"a70b042b838b89121ff721807fc17b0c883da437","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.4.3","_shasum":"169f51e30c0dd2cd724dfc8985e338380651ab47","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"169f51e30c0dd2cd724dfc8985e338380651ab47","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.4.3.tgz","integrity":"sha512-RIYluyXKPA1XxSzxsI74mr+7fAU/pYV+0ktuqPnKPaBLWgX8JAvZIelXCA02sT0Fjs7iJsVvgETx1c4rFWCkzQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrj6T9DLZhR0XG0zUkfQJy0A9lMJbPbGm7l/xp5xEt7QIhAK9iYOuSSEqk1WDmVbcflBh6HnCxZBsI0/BJKL/EeqUR"}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.4.4":{"name":"metalsmith","version":"1.4.4","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gnode":"^0.1.0","gray-matter":"^2.0.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"6efa29c7332292f2c44449ab4aa9941600be9b14","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.4.4","_shasum":"ef066dd13b631819e3c93ab8fff60b3636d95c77","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"ef066dd13b631819e3c93ab8fff60b3636d95c77","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.4.4.tgz","integrity":"sha512-eS83py7RpfvuL2AzgNmPCTk9aCCEwqFZwWNedFFI1afbg3C5SSd8ZXDCusyORRCZfvZ62IX6LLYrzLgw30SlAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLHh1KVnzUCc6bkO40TryNcocKSW5A12znRpObF2JJJAIhAM3zddP++gwwLDNyAkRNRk0WFyHwp8N343lFnULKR75a"}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.4.5":{"name":"metalsmith","version":"1.4.5","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gnode":"^0.1.0","gray-matter":"^2.0.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"55f853ca473833d41ecd058c7a3b81c7b2c22429","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.4.5","_shasum":"443c13da1bbbdc3f715ce1873043db130b8c47a3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"443c13da1bbbdc3f715ce1873043db130b8c47a3","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.4.5.tgz","integrity":"sha512-9g0/Wbt7SdjpZRyCAX74tig59ed4M+s1rYCt8WQzb0gFcxO1VjArtG0+oAPhCZ8SieA1JY86kD22RgIMkr3BZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9hFlHbbN7DOxKTv8dNmURFolYdUVd2cBLGW1v44STKwIhAO+ZY6dkGf70WQixQsobxVpjd9tM2OlM69drHe6R+2UT"}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.5.0":{"name":"metalsmith","version":"1.5.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gnode":"^0.1.0","gray-matter":"^2.0.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"36fa436bcfdad7ae77e762dc7bf40c75a2dbd7ce","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.5.0","_shasum":"e9fb0223c1402dbdcf16c23e9e1a7e6d26c3eb89","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.11.16","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"e9fb0223c1402dbdcf16c23e9e1a7e6d26c3eb89","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.5.0.tgz","integrity":"sha512-p2hrnFj3TlmogK1GmDd1o1BekEDA1con+urcZ6bSjzygZOR3buef+TcNAp30SfWu7NFy+g4czr2BQ/gEOIO9eg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHfErlGKYmjUKX+kJwGDEEripI8wHt71nSSMjVzBKHB1AiAy8E79Y0HYoqrCVTNJBt1Usiz+Aqyw7D0VTRoT+pFXKA=="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.6.0":{"name":"metalsmith","version":"1.6.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gnode":"^0.1.0","gray-matter":"^2.0.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"ade8cbcfa9c071f5981d2b1fb99d54413c63d3d8","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.6.0","_shasum":"36b056337cd04c8a554b8f3d060e39450f2ccb3d","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"36b056337cd04c8a554b8f3d060e39450f2ccb3d","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.6.0.tgz","integrity":"sha512-gFk23tiAWMGJAeQo9oMOQhzxN6HOxeoD/BTUCK2SjZdtlWNHyBoPYI4ZuLd5N5B/B5UrDIKFYFtLiC71dsgt9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFq+f+Te67YL1n++ri++Grca4bqLYnB7r+rQ3DJYctRuAiEApZXYqCfjZrl6OIxDqMpQOkIwcrin/BlF28+tD6mkyM4="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"1.7.0":{"name":"metalsmith","version":"1.7.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gnode":"^0.1.0","gray-matter":"^2.0.0","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^1.21.4"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"d005f023a0df7e272752ace6eed7b9a049f5b078","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@1.7.0","_shasum":"cb6860d5010d8036ada27c4496d149abe2a3504d","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"cb6860d5010d8036ada27c4496d149abe2a3504d","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-1.7.0.tgz","integrity":"sha512-JSu70FzGnvpYEyLS86yDComhCQq/e49pztJTmvT8AcpGEOJsk8DRW391+wYqokSyJdL9L4wnhZ5/KIt+PFQ3eA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCu+6Znwr5zHMve3c6Md5BsCzzISpTH8IGr5e+ISCu3pAIgbHxbqBbesIp87RJl7VscdcpcUvsC++emSvHQYppfUQM="}]},"directories":{},"deprecated":"This version of Metalsmith is no longer supported"},"2.0.1":{"name":"metalsmith","version":"2.0.1","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith","_metalsmith":"bin/_metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gray-matter":"^2.0.0","has-generators":"^1.0.1","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0","win-fork":"^1.1.1"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^2.2.5"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"eb43dfdb3fc7ccd5f9c7b1b501819c07cea8d162","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith#readme","_id":"metalsmith@2.0.1","_shasum":"ef776635853b53ad81fb71f91f1806175e849df0","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"segment","email":"tools+npm@segment.com"},"dist":{"shasum":"ef776635853b53ad81fb71f91f1806175e849df0","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.0.1.tgz","integrity":"sha512-ELekNhBJwkx3TS2Ikhrsh/7EC9ojCNDzWA0+m+RTJwNCazeKGmNiteYwWRwW+XSs31LotGCCHS2VWiQ2mLIsnQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGwpttoCx4oG0m9oRljX0+u+dynY9fmlmHA9zq/OLvF1AiEAr1hXrhu0wNjtLdnDf/ITuvka0NBziBjRWLtOX0qaibc="}]},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"directories":{}},"2.1.0":{"name":"metalsmith","version":"2.1.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith","_metalsmith":"bin/_metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gray-matter":"^2.0.0","has-generators":"^1.0.1","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.2.1","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0","win-fork":"^1.1.1"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^2.2.5"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"e1d6e93206e56a5a1394939da69d220db4c242bb","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith","_id":"metalsmith@2.1.0","_shasum":"2d1781c13f4def7650f708f9342dd1052918a576","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},"maintainers":[{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segmentio","email":"team@segment.io"},{"name":"segment","email":"tj@segment.io"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"}],"dist":{"shasum":"2d1781c13f4def7650f708f9342dd1052918a576","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.1.0.tgz","integrity":"sha512-uAA1JxEa4GzqE9hfzgYVa8IQFcaTXa+zVNfOsCSYGeKTteXq/VoZ0KhdRJnFNSHEk7MMoq/hsiiaCwxb8Hxg2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGqqy6Y9wRLSpBlUy64dMrLrmYf9KBueSuKaEzBTqytwIhANGMro8IE77whsQA5XmFE3YyMgF3QBvSOM0FTuSGweYY"}]},"directories":{}},"2.2.0":{"name":"metalsmith","version":"2.2.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith","_metalsmith":"bin/_metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gray-matter":"^2.0.0","has-generators":"^1.0.1","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.3.0","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0","win-fork":"^1.1.1"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","coveralls":"^2.11.6","istanbul":"^0.4.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^2.2.5"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"6b4db3e10c1af04d05da4fde09200f23ab124554","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith#readme","_id":"metalsmith@2.2.0","_shasum":"1d665c16ffb030c2a929215630fe31048a16f82f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"woodyrew","email":"npm@andrewgoodricke.com"},"dist":{"shasum":"1d665c16ffb030c2a929215630fe31048a16f82f","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.2.0.tgz","integrity":"sha512-Z5Sd4zzsquBmOsy52LaTFmMaPklWM1g/8zQoxqNtI2URpmdsljA4ymXum5xHB6XP5FMgeEGEnbE7ZUzQTaQYJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCn5oqAXxAwOhnGMrSBw2Wekc7+uzi3DDzDqYuPWozfTAIhAMkUFsTkyGhmovAuLwJg867zZDdmDA6fsRUcM6ws/Gm2"}]},"maintainers":[{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segment","email":"tools+npm@segment.com"},{"name":"segmentio","email":"tools@segment.com"},{"name":"woodyrew","email":"npm@andrewgoodricke.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/metalsmith-2.2.0.tgz_1471016931999_0.2735222578048706"},"directories":{}},"2.2.1":{"name":"metalsmith","version":"2.2.1","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith","_metalsmith":"bin/_metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","chalk":"^1.1.3","clone":"^1.0.2","co-fs-extra":"^1.2.1","commander":"^2.6.0","gray-matter":"^2.0.0","has-generators":"^1.0.1","is":"^3.1.0","is-utf8":"~0.2.0","recursive-readdir":"^2.1.0","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0","win-fork":"^1.1.1"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","coveralls":"^2.11.6","istanbul":"^0.4.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^3.0.2"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"4fd2cf77642979d891c15e9dbac97cde7f7338b2","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith#readme","_id":"metalsmith@2.2.1","_shasum":"ef21333d65630bbdad3b809fadd75931b55f4402","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"woodyrew","email":"npm@andrewgoodricke.com"},"dist":{"shasum":"ef21333d65630bbdad3b809fadd75931b55f4402","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.2.1.tgz","integrity":"sha512-9SNcwXz39PM9doGgq1t0yt9n3lKiLJmuGJ5xvjReTsLTCUCCqc/x43cf8IzRFKkHsfDebtoX+np14uzR50C6bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHP6vkwaax4iesJXIm/vfD72O7dZr1+GWQALD+TWwBMgAiBXcgCR/+vL6ZC0KBucQAocnGrWcyM3TlLUD3F6QQHkdA=="}]},"maintainers":[{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segment-admin","email":"tools+npm@segment.com"},{"name":"segmentio","email":"tools@segment.com"},{"name":"woodyrew","email":"npm@andrewgoodricke.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/metalsmith-2.2.1.tgz_1477600801244_0.8731624251231551"},"deprecated":"This release was mistakenly versioned as a SemVer-patch version when it should have been released as a SemVer-minor version. Please use versions `<= 2.2.0` or `>= 2.2.2` instead.","directories":{}},"2.3.0":{"name":"metalsmith","version":"2.3.0","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith","_metalsmith":"bin/_metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","chalk":"^1.1.3","clone":"^1.0.2","co-fs-extra":"^1.2.1","commander":"^2.6.0","gray-matter":"^2.0.0","has-generators":"^1.0.1","is":"^3.1.0","is-utf8":"~0.2.0","recursive-readdir":"^2.1.0","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0","win-fork":"^1.1.1"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","coveralls":"^2.11.6","istanbul":"^0.4.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^3.0.2"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"6596912d089e8e0a55b958f424822b192d03ecd8","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith#readme","_id":"metalsmith@2.3.0","_shasum":"833afbb5a2a6385e2d9ae3d935e39e33eaea5231","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"woodyrew","email":"npm@andrewgoodricke.com"},"dist":{"shasum":"833afbb5a2a6385e2d9ae3d935e39e33eaea5231","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.3.0.tgz","integrity":"sha512-0ZfnymBNlAQQN++8DZXoxPtetARvxTaczeuGHr17aLgLx/iZttuAB6ie0d3vHT+J59zyKJPYAu1HbCAs1/MGEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtyDMEJck/XFhBqKcz6p/ptXc53Z8xo+h8gt4Jl8HpkQIgJXUxeNwBDfmbpHaQAQ1O6UglSu0lW/FldqRX28FmpLA="}]},"maintainers":[{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segment-admin","email":"tools+npm@segment.com"},{"name":"segmentio","email":"tools@segment.com"},{"name":"woodyrew","email":"npm@andrewgoodricke.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/metalsmith-2.3.0.tgz_1477620538953_0.471402779687196"},"directories":{}},"2.2.2":{"name":"metalsmith","version":"2.2.2","license":"MIT","repository":{"type":"git","url":"git://github.com/segmentio/metalsmith.git"},"description":"An extremely simple, pluggable static site generator.","bin":{"metalsmith":"bin/metalsmith","_metalsmith":"bin/_metalsmith"},"scripts":{"test":"make test"},"dependencies":{"absolute":"0.0.1","async":"~0.9.0","chalk":"^0.5.0","clone":"^0.1.11","co-fs-extra":"0.0.2","commander":"^2.6.0","fs-extra":"~0.10.0","gray-matter":"^2.0.0","has-generators":"^1.0.1","is":"^2.2.0","is-utf8":"~0.2.0","recursive-readdir":"^1.3.0","rimraf":"^2.2.8","stat-mode":"^0.2.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.2.0","win-fork":"^1.1.1"},"devDependencies":{"assert-dir-equal":"~1.0.1","co-mocha":"^1.0.1","coveralls":"^2.11.6","istanbul":"^0.4.1","metalsmith-drafts":"0.0.1","metalsmith-markdown":"0.2.1","mocha":"^2.2.5"},"keywords":["static","file","site","website","blog","generator","markdown","jekyll","wintersmith","blacksmith"],"gitHead":"5aa014c34bfcf101eda244e2df6625b412b4e9dd","bugs":{"url":"https://github.com/segmentio/metalsmith/issues"},"homepage":"https://github.com/segmentio/metalsmith#readme","_id":"metalsmith@2.2.2","_shasum":"f16febe197b1ee876d5ca3af3ad906b581dbc3c4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"woodyrew","email":"npm@andrewgoodricke.com"},"dist":{"shasum":"f16febe197b1ee876d5ca3af3ad906b581dbc3c4","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.2.2.tgz","integrity":"sha512-2uBldb2NZj13deikRV0n1huKX2kM3BvxwWSHPcxVg6tOZbroj6Gv5W/mrk39gGMcQHiDNUAkZa3wyGH2MIFx/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGkpgayCn80EQFnVWyVhJtkDdBXqw1eMRlm+bKvgafSYAiB6Zpa41hc+QgaQ6vkge3iaRnWth6GnpPlwKzsAfNNytw=="}]},"maintainers":[{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"segment-admin","email":"tools+npm@segment.com"},{"name":"segmentio","email":"tools@segment.com"},{"name":"woodyrew","email":"npm@andrewgoodricke.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/metalsmith-2.2.2.tgz_1477621307901_0.4161433696281165"},"directories":{}},"2.4.0":{"name":"metalsmith","version":"2.4.0","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"_metalsmith":"bin/_metalsmith","metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"scripts":{"coverage":"nyc report --reporter=text-lcov > ./coverage.info","coveralls":"npm run coverage && cat ./coverage.info | coveralls","lint":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"nyc mocha","pretest-debug":"npm install","test-debug":"mocha debug","release":"release-it"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"chalk":"^3.0.0","clone":"^2.1.2","co-fs-extra":"^1.2.1","commander":"^6.2.1","cross-spawn":"^7.0.3","gray-matter":"^4.0.3","is-utf8":"~0.2.0","micromatch":"^4.0.4","rimraf":"^3.0.2","stat-mode":"^1.0.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.1.0","@metalsmith/markdown":"^1.3.0","assert-dir-equal":"^1.1.0","coveralls":"^3.1.1","eslint":"^8.6.0","eslint-config-prettier":"^8.3.0","mocha":"^7.2.0","nyc":"^15.1.0","prettier":"^2.5.1","release-it":"^14.11.8","toml":"^3.0.0"},"engines":{"node":">=8.6"},"gitHead":"82f4b0692cf32faffd1044d0aab1a97368ee8513","_id":"metalsmith@2.4.0","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-bBFMvfSw1XxAQ2bwtilNghmJQLPPBbT5edTcgRLfRl75iJUgAmwzCgcKl3el72S5zYmiKaFgO+6sS8AW5S0lxA==","shasum":"1fc438695a3c90929d0978ad0494b0750aefa565","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.4.0.tgz","fileCount":9,"unpackedSize":47964,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9/BTCRA9TVsSAnZWagAATKoP/1YQ21prq/JsdocexXB2\nDitCAMdfHL4ZJYSP2Vj77equE5+Ch3lny7Gp2GIfEoxR8jDjyPWvrBwUltpo\n7eVg+BiA1rhnkarsiJylCwfVM7RE2gjq9ouX3ejVZoUw3qQRoX3cRsOGc+JM\n/ngvCl3rQJzHmCyPelwvFKBIoBfAj56TrmRrRQzTFI4snLApvKlrpW+z5/dO\nn8eAKTz8rVD16hXHp5fnyCQwEpa9naFjqbe6HxRVSr4qcApcWO6FhL6Jaliv\n/LKtlCxncMwvGWrsXeixfq8kwvWO91A1SBc/P7VUZpv0Ms6bJCMVLqFqNKvy\nktpvg5PPfhjra3ev6OHsazokZr/AzFAKSJkow2dSp/+vHg0zg91DXPXjLO2+\nRn15xnWsWo3yVo0Udlk77iYFFUfaYYYa9PB79fQEVahXxiBKzK6YrS99uP15\n7x42YbhJvkO6j+TW33IEFTd267M9QvLXj5HKcl1VvdB8Yn0TNRsz/sKqQTVt\nwMJ3vs4Sop6OBr+nGLH45IvvtWTevgoiDAa7BQf/oKpTtnV/4dLjxBQRVCRq\nr1bZ3cx01DyVrZ9PSxYQo2vA8jiaXPKXuKba7OIYtiXe5OhbYC6RBQzE5bxv\nfGj+vwZVTdJaxCRhErjktFNTAmi8D85gOWW+bMUdm/df69WzI8Cv0rNkFAIp\n3v9x\r\n=JD2P\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDe1GtzFy37XpeaOFGgB7Ej9xt8r7Sz4WhpUgEdTml7zAiEAr7pRuHN6Owr/3YbduFu4f+pRprwzv+o+ghxDyT9qJ1U="}]},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"segmentio","email":"tools@segment.com"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"segment-admin","email":"tools+npm@segment.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.4.0_1643638867443_0.2078506909170046"},"_hasShrinkwrap":false},"2.4.1":{"name":"metalsmith","version":"2.4.1","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"_metalsmith":"bin/_metalsmith","metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"scripts":{"coverage":"nyc report --reporter=text-lcov > ./coverage.info","coveralls":"npm run coverage && cat ./coverage.info | coveralls","lint":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"nyc mocha","pretest-debug":"npm install","test-debug":"mocha debug","release":"release-it"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"chalk":"^3.0.0","clone":"^2.1.2","co-fs-extra":"^1.2.1","commander":"^6.2.1","cross-spawn":"^7.0.3","gray-matter":"^4.0.3","is-utf8":"~0.2.0","micromatch":"^4.0.4","rimraf":"^3.0.2","stat-mode":"^1.0.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.1.0","@metalsmith/markdown":"^1.3.0","assert-dir-equal":"^1.1.0","coveralls":"^3.1.1","eslint":"^8.6.0","eslint-config-prettier":"^8.3.0","mocha":"^7.2.0","nyc":"^15.1.0","prettier":"^2.5.1","release-it":"^14.11.8","toml":"^3.0.0"},"engines":{"node":">=8.6"},"gitHead":"06fed35489029d06092b6452e017b9e4080dc2f8","_id":"metalsmith@2.4.1","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-k8Q6mEJL21GmcmAb7PuawSff68/GcV2ctyFyZgoQgSc+2MrdCZxkZPqQY0EfZ6o4KqsBvdHvgNYUMzZQGTmxBQ==","shasum":"e3f7689a5f59b1fe8647398847956de2f9818ef8","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.4.1.tgz","fileCount":10,"unpackedSize":48119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+DAfCRA9TVsSAnZWagAAXUIP/2MEhRBH0BOltiAHtkoF\njC1Z6K2UNoBDsS7dWiMS0hVtkX1asuwUJZXdEOWMI6kG84Xc2pl4N61IFer8\nBb/rfreL+/FTvOmqtJMIyvmXGulvnZdKAm1PFuW35aJx2qTAyfLFZqOoGbBS\nPxJDFMckJHnM8povmRd1AeryiPWtPp01Yiqy3VjXaVetE2oMw3fGhw6VGoeL\nv/G0Jr5Bvre29j3kG4ALsIhuGtLWO3ytvqzIp/D+6ZPITEJ2+/GwV87wkQ0d\nZop6VN9BdNu0vAYNPzqFEXTzsGy+x8jb+A8UKKrk2uj/ylAQZ6CvfEsBkPjq\nCLGfTm7l9Dl5X2PHWHKRj0WUjhcUSwz9KcXa1CxCwG0156zU3E3Ecp7w03NQ\nJSmBNx3nQL0iNSQ3aUHaLZ6ENOUDE3NxErJJUWQT3v8IA/qKd2Fw5Nf6TLe2\nY5aKLCazBGelN7PQUpNq1ayWkOQ3yDI/rR2jClSxkLiBOtOkH01NFc2W4eOc\nWGBpKupJYERnCDfQirBR4ymL2H0WwEmABsseL8coiTzx/oV2yIEOxrfmF0VR\nHo8/XcPSrl3RceGqQ6YpGmctuVGyffZzFYlT4XgGROh0Wn0cMs972RMM/l/s\n4y5e0WyGhS0bN7PXbSTWF2eEp5WjDQlLFovazSIdmmna9XaaHdw2spRMfcd7\n1f6G\r\n=kvky\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDxQgbdb47apvnUDos9EBl42HAr9lxoCAKa+NTcyv/kLAIhAMph9sPuTpQ4K+g8YNA+rDLGrWIp3jpXQlOJvkYvzUrQ"}]},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"segmentio","email":"tools@segment.com"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"segment-admin","email":"tools+npm@segment.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.4.1_1643655199636_0.9541640859299287"},"_hasShrinkwrap":false},"2.4.2":{"name":"metalsmith","version":"2.4.2","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"_metalsmith":"bin/_metalsmith","metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"scripts":{"coverage":"nyc report --reporter=text-lcov > ./coverage.info","lint:check":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","lint":"eslint --fix index.js lib/* bin/* test/*.js","format:check":"prettier --list-different \"**/*.{yml,md,js,json}\"","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"nyc mocha","release":"release-it"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"chalk":"^4.1.2","clone":"^2.1.2","co-fs-extra":"^1.2.1","commander":"^6.2.1","cross-spawn":"^7.0.3","gray-matter":"^4.0.3","is-utf8":"~0.2.0","micromatch":"^4.0.4","rimraf":"^3.0.2","stat-mode":"^1.0.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.1.1","@metalsmith/markdown":"^1.4.0","assert-dir-equal":"^1.1.0","eslint":"^8.8.0","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.25.4","eslint-plugin-node":"^11.1.0","mocha":"^7.2.0","nyc":"^15.1.0","prettier":"^2.5.1","release-it":"^14.12.3","toml":"^3.0.0"},"engines":{"node":">=8.6"},"gitHead":"428b8c0b30cb8395a54ea441357570740c78ab2e","_id":"metalsmith@2.4.2","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-HS/MRADloJS3+O5V/+4f/khBkwtdYUQFWEGqeviLT/7wNgHWknMiIflV99JeYzj0hbw+L0aTb2spPlnWW4/Adg==","shasum":"69e2cdb64620791ec0cd7173c68608c83ff92f06","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.4.2.tgz","fileCount":10,"unpackedSize":46205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCW6uCRA9TVsSAnZWagAANf4P/2BfHdNn5jKFl9Uc/iC4\nWv1maNHY7RgqjhTV9p4FNQ68NTjlZtbSs90dwBD4Gulle9AHziNTnERcwtiU\nFPX20HxuyiW7i9HzzN8qY1u2FBAobSqLnoOAY/K3tm2NlNcKMSE0r6eeSIlW\n4DiHwSguTNsWLno8SlFkatELDeqxHM6j6zR/abF2n/mdPyQFIYUXq+at1waN\nB5Li0xXREPM58jviuoSFD+a2dPdV0hemfJDSBtIFAQfVhVZruB/qmFh1Rz3J\nPcCOkzv6sl1eD6zgWWAIuheLHeIUaJNwgH9TQ6AgLPZCcfCeji19MaFlpJ6m\nvitdD376Wu0t0vSdSwZry8q3N0JM86hVF/+wOg1H9aXQndfSQNhdJXCpFNXX\ndP/61GyK3mUpdWxK6UJ7HNfP7U7YHBWUHMn6mP7yqoeZsKHlhcrI8ZLFyTqs\n+cvIQ+AlErdCxePZu7kV8qNSVEOYAshi6ztNCU7M0L7c1Jcde/mBdptsMMHK\nzRWkX5aLxNnFTCrMlGHlQOT4MY2x1HQrw4mGxwII6HCHXHB2c0uEjWtDMk6I\nay3bMWEqDA7kZ27ZbIL2z82YPjETYfPl24oD34nYw2QH6dJGZYbUKlndJZm+\nqeSqVNdZX06FJzXdnbgcOYwZw23v0I0I9ck5h1uetWsYxKgFGugvT0BStt0b\n7pOv\r\n=sRtS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCHvqPFKVK7hKmSgqgFkDXnrfbD8BECnlUB2Y12MBXZdAIhALCUGHwUixm+RoUoRiy8a5vdT836Ky9drI2jKKASG46O"}]},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.4.2_1644785326410_0.9459545972923153"},"_hasShrinkwrap":false},"2.4.3":{"name":"metalsmith","version":"2.4.3","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"_metalsmith":"bin/_metalsmith","metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"scripts":{"coverage":"nyc report --reporter=text-lcov > ./coverage.info","lint:check":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","lint":"eslint --fix index.js lib/* bin/* test/*.js","format:check":"prettier --list-different \"**/*.{yml,md,js,json}\"","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"nyc mocha","release":"release-it"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"chalk":"^4.1.2","clone":"^2.1.2","co-fs-extra":"^1.2.1","commander":"^6.2.1","cross-spawn":"^7.0.3","gray-matter":"^4.0.3","is-utf8":"~0.2.0","micromatch":"^4.0.5","rimraf":"^3.0.2","stat-mode":"^1.0.0","thunkify":"^2.1.2","unyield":"0.0.1","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.1.1","@metalsmith/markdown":"^1.4.0","assert-dir-equal":"^1.1.0","eslint":"^8.8.0","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.25.4","eslint-plugin-node":"^11.1.0","mocha":"^7.2.0","nyc":"^15.1.0","prettier":"^2.5.1","release-it":"^14.12.3","toml":"^3.0.0"},"engines":{"node":">=8.6"},"gitHead":"40a7de8c750043ab5e01e103fa80a75b2ae7ab81","_id":"metalsmith@2.4.3","_nodeVersion":"16.8.0","_npmVersion":"7.21.0","dist":{"integrity":"sha512-W54oznz5wrBuE6lGj9ITq9Cj8HdAX8BkLptR+TInbhrkObinR7pm4z8zspYkCUVW/3UJnvZZJ55/LdikblC1vw==","shasum":"fdff9e25be70213bde72166feb62123588120a19","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.4.3.tgz","fileCount":10,"unpackedSize":46576,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFpJUbJrcsiZ5Oo2eetjF3Ptu132FTYHgZIpAA5MIFhxAiEAmzX3dPzdCukDP/I3x7bQhy018DVZpYAwgRX+CUGmH9c="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigrSfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2Fg//Rtsd++5fkMT5V5wsdk6Gb2YZlKPLvx+zdaUfcVsuPSHltx4D\r\n0NrzwP5CFPKz2E/NVH5LQezdkYiBAzs9Eft8ii5jZjucaEJX4DFo9iPqt7lO\r\n+g/qx5MRYbzmjJZtlAdR+VB7VWkyqvtXj0C+RyPXdjp1xqaSiJkpmNJdFsHd\r\n9/AjJvqpV9opNgV5Au2GrRAs+2w/5VcQocalpluZY1awJIjQM1YyouE9eU7s\r\nJCB/u9poeCNbVatBy2LEuStIQS/b3zkZJpGbKE8zmOMoJAGUEPGqE4UBJDfP\r\nAAjt5EoAIpc94/0bqldZRikWb7WQwd7/9Je/rdNTHRvsOVm+eUJUAWQYeuFR\r\n7Dnv7Gr5hiFrtuIb2QDXviEm5KrvoDND9L4ydBEuN5YNr20x/WwgJiFaKmUt\r\n2gXeJD6Myjne0JHHfsDW+KBnhIyrkXSbxuitJ2Dx+ERqhWn34F2VYAy+0G+B\r\nSoS/QiRqhlz1naowL7Apka6YcDnvPjZLfYfLXB+/wHzzvcOAggT7j3RWRaGR\r\nrbRV3ZlSBtkvvbmvf3Fovrs2+yWP0r5MNuZ9E2/MxXQVIwUpLYjnsXA4RDe8\r\nkamKtccFW1EKSnWp/s5X9PZ+zyzhW6kTrGb5kmmiAKNhjSVn69kQQyq7CVjr\r\n+Ug6D5x8YhPEreYfhZHFtNQWGWPWZwGZYZo=\r\n=agkw\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.4.3_1652733087397_0.4035547836734874"},"_hasShrinkwrap":false},"2.5.0":{"name":"metalsmith","version":"2.5.0","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"_metalsmith":"bin/_metalsmith","metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"scripts":{"coverage":"nyc report --reporter=text-lcov > ./coverage.info","lint:check":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","lint":"eslint --fix index.js lib/* bin/* test/*.js","format:check":"prettier --list-different \"**/*.{yml,md,js,json}\"","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"nyc mocha","release":"release-it","postinstall":"node metalsmith-migrated-plugins.js"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"commander":"^6.2.1","cross-spawn":"^7.0.3","debug":"^4.3.3","gray-matter":"^4.0.3","is-utf8":"~0.2.0","micromatch":"^4.0.5","rimraf":"^3.0.2","stat-mode":"^1.0.0","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.1.1","@metalsmith/markdown":"^1.5.0","assert-dir-equal":"^1.1.0","eslint":"^8.16.0","eslint-config-prettier":"^8.5.0","eslint-plugin-import":"^2.26.0","eslint-plugin-node":"^11.1.0","mocha":"^9.2.2","nyc":"^15.1.0","prettier":"^2.6.2","release-it":"^15.0.0","toml":"^3.0.0"},"engines":{"node":">=12"},"gitHead":"3a0517c3abdf471b396e1a35cd6e270220639e46","_id":"metalsmith@2.5.0","_nodeVersion":"18.2.0","_npmVersion":"8.9.0","dist":{"integrity":"sha512-tBFpCMq8t/ZeD8qbvyWSLjyW7aO8RJYeFSk8LyclgHYaeMWiSPrMxXc3NORVCJ3iG17aRxuL/+nla58Qq3DBcQ==","shasum":"eed2697abdf889aa16f45b5516bdf0c0cef45e51","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.5.0.tgz","fileCount":12,"unpackedSize":61387,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGSn5aEU6olZFbuzeJ3O6uPe2mJdwd3/AE4P0Pa2hI1JAiAa1NVyENIn/aZx3tI1FEFM3oWMRWo4x0+PAO7j48rrwQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJio3EmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqK6BAAiypMRpzKNQozyjqOUqsqR8fLQqHXPNNWtS0WnE45rYbw+Ype\r\nlD/i/UUT/Oxt4jO7aPr/gLMCPENkDZBMD79d+wFbiYMisDPYfnDo0/EYab4j\r\nqBCeA33lBZq2lGUygouGvODfHsVMhhjDk3Fc09TK5eHDZgdSIV36pm3VbAe6\r\nfzUTKgAxbATgS1NWmEfufsrGFemJnAMVN5QfMs/NKYcizdH/bYwxc9M/l5+r\r\nZzxZSzroqUhzesZzVUH+MpBjRx3Jw8kwt0PKm4QGdcQmfn2U3X49trrNGr9w\r\nmBVzYdGi+vGaVAowbywM3rkdV2IhMcMHSua1M6dtDVzO1wr+SrC5pdljyCig\r\nmWFUAHb8vNiCU29Br4HoMvoEcpfQla6pN3yClIZwFjVbn1UcHa239DuMnNDI\r\nr2lPqYKGnK9O8+KQY0IP2oETm+Xh4RooVaEhrHP5JKVWVY+5q+FbV/LE0Agb\r\nv5b2RnAbfT29rrU7LRBuhAHqDqzqyadfe13AfdIYocp8QW9T+Z0P4kzDc4i1\r\nIhZL4yLdaZr6TzhpNAQld6EkK5pKRAtbBSoV9Lri/CaG1c6JebMgj7aGdieA\r\n1VLsRwITNGOaLTebVjaChaAkQ2pOaDOQvrh0VyEe841K8iyX1KxfO028JsUb\r\nXHKYLiuml7FdlJUZ0kjkazWVoOqm9TlUUo0=\r\n=PUI1\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.5.0_1654878501761_0.4494872796865228"},"_hasShrinkwrap":false},"2.5.1":{"name":"metalsmith","version":"2.5.1","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"_metalsmith":"bin/_metalsmith","metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"scripts":{"coverage":"nyc report --reporter=text-lcov > ./coverage.info","lint:check":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","lint":"eslint --fix index.js lib/* bin/* test/*.js","format:check":"prettier --list-different \"**/*.{yml,md,js,json}\"","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"nyc mocha","release":"release-it","postinstall":"node metalsmith-migrated-plugins.js || exit 0"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"commander":"^6.2.1","cross-spawn":"^7.0.3","debug":"^4.3.4","gray-matter":"^4.0.3","is-utf8":"~0.2.0","micromatch":"^4.0.5","rimraf":"^3.0.2","stat-mode":"^1.0.0","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.2.0","@metalsmith/markdown":"^1.5.0","assert-dir-equal":"^1.1.0","eslint":"^8.24.0","eslint-config-prettier":"^8.5.0","eslint-plugin-import":"^2.26.0","eslint-plugin-node":"^11.1.0","mocha":"^9.2.2","nyc":"^15.1.0","prettier":"^2.7.1","release-it":"^15.5.0","toml":"^3.0.0"},"engines":{"node":">=12"},"gitHead":"149c6f6e9f40bff93c8856e70f57078e0a24be88","_id":"metalsmith@2.5.1","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-/jpf9JXYAvA16VlJDRlZRktcsjTgMHDwusiNLo1byU7ocUNWm2F7zQukrVtBslNNNi1gWnXbcxTINYdsi5zrAA==","shasum":"253b1a29084da759cde06eff773ae1817a1ba629","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.5.1.tgz","fileCount":12,"unpackedSize":62806,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEL/LOelH1L36gru6SrWpE1CC5c5bEQUu7CP1p09WJ0JAiBqAXblm08CxUPiZ/W9+Gv8jazPSViYuFJUHOIICKJb7Q=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjP2xzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoTrQ//TkUijgDzVb2FFMOl7IUFE0ur0StN956a1c+uZ72mVEePy0VO\r\nOskteMyxGEpya/NDcKAEOF+rBqdVQLPBn65A1egON/v7bIEegFziEYMGMLQ/\r\n8hjU1eaaXd8w0bNsAParME7/YEa69r7L8P+QbSFPf6eM59mErX1LmQ1p2ssB\r\ngFTAfri0ejdh0DXVfJSLQCkpGk91CzXsgHFLGSFghRCYV4MooKsGUozOYNC/\r\nycHJNRrhXJ2cLihbEKVU6uBZiUN9xzpPZf+YiJ4EiisWNR5rxXE2S9i4hhYT\r\nb3TM42ir5wC9sx66QfqxXiZoZK/vXSM/xaH/Q/iRzb6pOl3kBrEjlx61AsBU\r\nDTdVg1r1MoTrllk56b5UsIWj0eRgENUuQ3PYZyD/IqVzTsq9gSLqWlm4eqIu\r\nar2zCHLGHSRomCs6KXVdme+HXlBREMVoW6YWuWJ59Z6lQAPv2ZsXYbKfLdxF\r\nDdRkJBhqCJOCvbfR19PJITRwH2LzdN/hg4rzmcQ1GF4qzlGo8aP8+LBPisJh\r\nGUn2tKIX1CROqXhemb2MAKAJdT11Ur/wChWd6QgmUqOx6GaxOjVvDKmhJmVf\r\nlZRaN2JcStPkrhqyuYQgw2OtGSMT5nLEG8XJCDCEMvqw1rQEatLN1aBfT4GU\r\n/C69TYYgpQocbpLrSJj7CCCBQQ7nIHqXzBk=\r\n=uSO2\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.5.1_1665100914806_0.1632070490673414"},"_hasShrinkwrap":false},"2.6.0":{"name":"metalsmith","version":"2.6.0","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"types":"types/index.d.ts","scripts":{"coverage":"npm test && c8 report --reporter=text-lcov > coverage.info","lint:check":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","lint":"eslint --fix index.js lib/* bin/* test/*.js","format:check":"prettier --list-different \"**/*.{yml,md,js,json}\"","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"c8 mocha","test:types":"tsc","release":"release-it","postinstall":"node metalsmith-migrated-plugins.js || exit 0"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"chokidar":"^3.5.3","commander":"^10.0.1","debug":"^4.3.4","gray-matter":"^4.0.3","is-utf8":"~0.2.0","lodash.clonedeepwith":"^4.5.0","micromatch":"^4.0.5","stat-mode":"^1.0.0","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.3.0","@metalsmith/markdown":"^1.9.1","@types/debug":"^4.1.7","@types/micromatch":"^4.0.2","@types/node":"^14.14.0","assert-dir-equal":"^1.1.0","c8":"^7.14.0","eslint":"^8.38.0","eslint-config-prettier":"^8.8.0","eslint-plugin-import":"^2.27.5","eslint-plugin-n":"^15.7.0","mocha":"^9.2.2","prettier":"^2.8.7","release-it":"^15.10.1","toml":"^3.0.0","typescript":"^4.9.5"},"engines":{"node":">=14.14.0"},"gitHead":"ba18d85a787915de3b41f213570b409ebe883dfc","_id":"metalsmith@2.6.0","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-YgcpGZboY/Sw85a+bkaY+hPaGMONCBjP2X1ila4yYxCJBOwZT+0tg0mIIHmd5bGwADr+TORYhTwTO0sAggSmTA==","shasum":"98c8b7dfcbdd5a1c7aa962f0f89f4b9c491fc14c","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.6.0.tgz","fileCount":14,"unpackedSize":103194,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGaLiCsI0Xysnj1lxOq2/Bapsqlh44s4Zc1hHT6MSLaEAiBVTw+j2fggSJHQ8WZ4kcEqIqfbYeuM0OkvoaEGDvvVhg=="}]},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@segment.com"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.6.0_1685397970114_0.31191055387023425"},"_hasShrinkwrap":false},"2.6.1":{"name":"metalsmith","version":"2.6.1","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"types":"types/index.d.ts","scripts":{"coverage":"npm test && c8 report --reporter=text-lcov > coverage.info","lint:check":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","lint":"eslint --fix index.js lib/* bin/* test/*.js","format:check":"prettier --list-different \"**/*.{yml,md,js,json}\"","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"c8 mocha","test:types":"tsc","release":"release-it","postinstall":"node metalsmith-migrated-plugins.js || exit 0"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"chokidar":"^3.5.3","commander":"^10.0.1","debug":"^4.3.4","gray-matter":"^4.0.3","is-utf8":"~0.2.0","lodash.clonedeepwith":"^4.5.0","micromatch":"^4.0.5","stat-mode":"^1.0.0","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.3.0","@metalsmith/markdown":"^1.9.1","@types/debug":"^4.1.7","@types/micromatch":"^4.0.2","@types/node":"^14.14.0","assert-dir-equal":"^1.1.0","c8":"^7.14.0","eslint":"^8.38.0","eslint-config-prettier":"^8.8.0","eslint-plugin-import":"^2.27.5","eslint-plugin-n":"^15.7.0","mocha":"^9.2.2","prettier":"^2.8.7","release-it":"^15.10.1","toml":"^3.0.0","typescript":"^4.9.5"},"engines":{"node":">=14.14.0"},"gitHead":"4b454beae6af4c4ab536c088189768abb5a9abc1","_id":"metalsmith@2.6.1","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-uI6o6ctECf6ShH5kfrTNoLn2N16pV7AQVQKEBJ04b6uGdNcHknnkkgyhXSHI+khkEo77cXqBqsT0zWkNc1VGhg==","shasum":"43f5dd534c392fb5d9cc7c9c4f6043fdd304f103","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.6.1.tgz","fileCount":14,"unpackedSize":104937,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcyPGI+zIR8/j7wfgyFskTD+RXISNBNmdDqyZm9ayUqgIgRADEsYumyYhsprR8G16v16YQk76k4uwo1LAloSUcxhI="}]},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@segment.com"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.6.1_1689111046140_0.5104135671116561"},"_hasShrinkwrap":false},"2.6.2":{"name":"metalsmith","version":"2.6.2","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"types":"types/index.d.ts","scripts":{"coverage":"npm test && c8 report --reporter=text-lcov > coverage.info","lint:check":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","lint":"eslint --fix index.js lib/* bin/* test/*.js","format:check":"prettier --list-different \"**/*.{yml,md,js,json}\"","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"c8 mocha","test:types":"tsc","release":"release-it","postinstall":"node metalsmith-migrated-plugins.js || exit 0"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"chokidar":"^3.5.3","commander":"^10.0.1","debug":"^4.3.4","gray-matter":"^4.0.3","is-utf8":"~0.2.0","lodash.clonedeepwith":"^4.5.0","micromatch":"^4.0.5","stat-mode":"^1.0.0","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.3.0","@metalsmith/markdown":"^1.10.0","@types/debug":"^4.1.8","@types/micromatch":"^4.0.2","@types/node":"^14.14.0","assert-dir-equal":"^1.1.0","c8":"^8.0.1","eslint":"^8.49.0","eslint-config-prettier":"^9.0.0","eslint-plugin-import":"^2.28.1","eslint-plugin-n":"^16.1.0","mocha":"^10.2.0","prettier":"^3.0.3","release-it":"^16.1.5","toml":"^3.0.0","typescript":"^5.2.2"},"engines":{"node":">=14.14.0"},"gitHead":"af657f8f82c0cba41f03867587b87a94dc447f5b","_id":"metalsmith@2.6.2","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-O0Z+PrKiUKNR2n+0Xvil9CZ8cykC8jAcb3cbqWvIge4nYQqUQDEVt52kZ42PU9huTi625erDalGIivZePegL8A==","shasum":"f7551fdaabb8f38d6986bbcf64039bdd08fa9883","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.6.2.tgz","fileCount":14,"unpackedSize":105665,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEVsWAFlRyjRP1kzcwX1knWH8hzZnQZiKallHlS0lJf2AiBtoTF8A0a8KVNqringgZAYTvVs5s9UzAqfaz+sLLcyeg=="}]},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@segment.com"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.6.2_1700083003417_0.3753775766796883"},"_hasShrinkwrap":false},"2.6.3":{"name":"metalsmith","version":"2.6.3","description":"An extremely simple, pluggable static site generator.","keywords":["static","jamstack","file","site","website","blog","generator","markdown","jekyll","metalsmith","yaml"],"homepage":"https://metalsmith.io","bugs":{"url":"https://github.com/metalsmith/metalsmith/issues"},"repository":{"type":"git","url":"git+https://github.com/metalsmith/metalsmith.git"},"license":"MIT","bin":{"metalsmith":"bin/metalsmith"},"directories":{"lib":"lib","test":"test"},"types":"types/index.d.ts","scripts":{"coverage":"npm test && c8 report --reporter=text-lcov > coverage.info","lint:check":"eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js","lint":"eslint --fix index.js lib/* bin/* test/*.js","format:check":"prettier --list-different \"**/*.{yml,md,js,json}\"","format":"prettier --write \"**/*.{yml,md,js,json}\"","test":"c8 mocha","test:types":"tsc","release":"release-it","postinstall":"node metalsmith-migrated-plugins.js || exit 0"},"mocha":{"reporter":"spec","slow":500,"timeout":3000},"dependencies":{"chokidar":"^3.6.0","commander":"^10.0.1","debug":"^4.3.4","gray-matter":"^4.0.3","is-utf8":"~0.2.0","lodash.clonedeepwith":"^4.5.0","micromatch":"^4.0.5","stat-mode":"^1.0.0","ware":"^1.3.0"},"devDependencies":{"@metalsmith/drafts":"^1.3.0","@metalsmith/markdown":"^1.10.0","@types/debug":"^4.1.12","@types/micromatch":"^4.0.6","@types/node":"^14.14.0","assert-dir-equal":"^1.1.0","c8":"^9.1.0","eslint":"^8.56.0","eslint-config-prettier":"^9.1.0","eslint-plugin-import":"^2.29.1","eslint-plugin-n":"^16.6.2","mocha":"^10.3.0","prettier":"^3.2.5","release-it":"^17.1.1","toml":"^3.0.0","typescript":"^5.3.3"},"engines":{"node":">=14.18.0"},"_id":"metalsmith@2.6.3","gitHead":"f86f167e5d056b6197081c9dc668d1333cdabe9b","_nodeVersion":"18.19.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-nql0eDbeDdYY3cz0uDVmwQ/E9XDBAHBf5p3lz+IwZAlUvz72DAd5+F+vl7Fot7I+yQDVK59uB0CL9S+Ts7ELsw==","shasum":"ae13d513e2a617819d9d977a7618f8d595c94058","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/metalsmith/-/metalsmith-2.6.3.tgz","fileCount":14,"unpackedSize":107031,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXodokzPj49MFvUPyIwEGyYWqTyDZsOoFbUeEYZfJRlAIhANwsX1p/ym6uVTzxWrErUGesaQmVFkXhjuS5y3vPw/0x"}]},"_npmUser":{"name":"webketje","email":"kevin.van.lierde@gmail.com"},"maintainers":[{"name":"woodyrew","email":"npm@andrewgoodricke.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"dominicbarnes","email":"dominic@segment.com"},{"name":"ajedi32","email":"andrewm.bpi@gmail.com"},{"name":"webketje","email":"kevin.van.lierde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/metalsmith_2.6.3_1709600872394_0.7664150502362372"},"_hasShrinkwrap":false}},"name":"metalsmith","time":{"modified":"2024-03-05T01:07:53.004Z","created":"2014-02-05T05:23:38.888Z","0.0.0":"2014-02-05T05:23:38.888Z","0.0.1":"2014-02-05T06:15:41.270Z","0.0.2":"2014-02-05T19:46:03.157Z","0.0.4":"2014-02-06T02:04:12.398Z","0.1.0":"2014-02-06T02:28:06.750Z","0.2.0":"2014-03-06T18:45:20.830Z","0.2.1":"2014-03-07T19:16:17.029Z","0.2.2":"2014-03-07T19:27:36.133Z","0.2.3":"2014-03-07T20:19:49.469Z","0.3.0":"2014-03-08T21:33:04.086Z","0.4.0":"2014-03-14T23:56:47.879Z","0.5.0":"2014-03-21T15:07:39.707Z","0.6.0":"2014-04-02T20:24:13.564Z","0.6.1":"2014-04-25T00:21:09.391Z","0.7.0":"2014-04-29T20:25:31.255Z","0.8.0":"2014-05-06T18:32:33.495Z","0.8.1":"2014-07-07T21:56:31.038Z","0.9.0":"2014-07-14T01:19:31.712Z","0.10.0":"2014-08-20T02:53:18.702Z","0.11.0":"2014-09-12T22:00:42.856Z","1.0.0":"2014-09-29T22:57:34.136Z","1.0.1":"2014-09-30T18:38:08.433Z","1.1.1":"2015-01-26T01:26:43.027Z","1.2.0":"2015-02-04T19:33:37.773Z","1.3.0":"2015-02-06T21:11:19.610Z","2.0.0":"2015-03-25T19:54:22.147Z","1.4.0":"2015-03-25T20:04:25.761Z","1.4.1":"2015-03-25T20:28:13.886Z","1.4.2":"2015-03-27T03:07:44.008Z","1.4.3":"2015-03-28T00:35:22.796Z","1.4.4":"2015-03-28T00:55:32.174Z","1.4.5":"2015-03-28T01:32:52.440Z","1.5.0":"2015-03-30T01:04:19.866Z","1.6.0":"2015-04-15T01:27:05.714Z","1.7.0":"2015-05-01T02:06:51.031Z","2.0.1":"2015-07-14T18:26:45.223Z","2.1.0":"2015-09-24T21:57:33.718Z","2.2.0":"2016-08-12T15:48:52.284Z","2.2.1":"2016-10-27T20:40:01.497Z","2.3.0":"2016-10-28T02:09:02.570Z","2.2.2":"2016-10-28T02:21:51.480Z","2.4.0":"2022-01-31T14:21:07.576Z","2.4.1":"2022-01-31T18:53:19.789Z","2.4.2":"2022-02-13T20:48:46.554Z","2.4.3":"2022-05-16T20:31:27.548Z","2.5.0":"2022-06-10T16:28:21.968Z","2.5.1":"2022-10-07T00:01:55.150Z","2.6.0":"2023-05-29T22:06:10.357Z","2.6.1":"2023-07-11T21:30:46.412Z","2.6.2":"2023-11-15T21:16:43.577Z","2.6.3":"2024-03-05T01:07:52.559Z"},"readmeFilename":"README.md","homepage":"https://metalsmith.io"}