{"maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"danon0404@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"dist-tags":{"next":"4.0.18","latest":"8.4.0"},"author":{"name":"Steve Mao","email":"maochenyan@gmail.com","url":"https://github.com/stevemao"},"description":"Write logs based on conventional commits and templates.","readme":"# conventional-changelog-writer\n\n[![ESM-only package][package]][package-url]\n[![NPM version][npm]][npm-url]\n[![Node version][node]][node-url]\n[![Dependencies status][deps]][deps-url]\n[![Install size][size]][size-url]\n[![Build status][build]][build-url]\n[![Coverage status][coverage]][coverage-url]\n\n[package]: https://img.shields.io/badge/package-ESM--only-ffe536.svg\n[package-url]: https://nodejs.org/api/esm.html\n\n[npm]: https://img.shields.io/npm/v/conventional-changelog-writer.svg\n[npm-url]: https://npmjs.com/package/conventional-changelog-writer\n\n[node]: https://img.shields.io/node/v/conventional-changelog-writer.svg\n[node-url]: https://nodejs.org\n\n[deps]: https://img.shields.io/librariesio/release/npm/conventional-changelog-writer\n[deps-url]: https://libraries.io/npm/conventional-changelog-writer\n\n[size]: https://packagephobia.com/badge?p=conventional-changelog-writer\n[size-url]: https://packagephobia.com/result?p=conventional-changelog-writer\n\n[build]: https://img.shields.io/github/actions/workflow/status/conventional-changelog/conventional-changelog/tests.yaml?branch=master\n[build-url]: https://github.com/conventional-changelog/conventional-changelog/actions\n\n[coverage]: https://coveralls.io/repos/github/conventional-changelog/conventional-changelog/badge.svg?branch=master\n[coverage-url]: https://coveralls.io/github/conventional-changelog/conventional-changelog?branch=master\n\nWrite logs based on conventional commits and templates.\n\n<hr />\n<a href=\"#install\">Install</a>\n<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>\n<a href=\"#usage\">Usage</a>\n<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>\n<a href=\"#api\">API</a>\n<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>\n<a href=\"#customization-guide\">Customization</a>\n<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>\n<a href=\"#cli\">CLI</a>\n<br />\n<hr />\n\n## Install\n\n```bash\n# pnpm\npnpm add conventional-changelog-writer\n# yarn\nyarn add conventional-changelog-writer\n# npm\nnpm i conventional-changelog-writer\n```\n\n## Usage\n\n```js\nimport {\n  writeChangelogString,\n  writeChangelog,\n  writeChangelogStream\n} from 'conventional-changelog-writer'\nimport { pipeline } from 'stream/promises'\n\n// to write changelog from commits to string:\nconsole.log(await writeChangelogString(commits, context, options))\n\n// to write changelog from commits to async iterable:\nawait pipeline(\n  commits,\n  writeChangelog(context, options),\n  async function* (changelog) {\n    for await (const chunk of changelog) {\n      console.log(chunk)\n    }\n  }\n)\n\n// to write changelog from commits to stream:\ncommitsStream\n  .pipe(writeChangelogStream(context, options))\n  .pipe(process.stdout)\n```\n\nCommits it an async iterable of commit objects that looks like this:\n\n```js\n{ hash: '9b1aff905b638aa274a5fc8f88662df446d374bd',\n  header: 'feat(scope): broadcast $destroy event on scope destruction',\n  type: 'feat',\n  scope: 'scope',\n  subject: 'broadcast $destroy event on scope destruction',\n  body: null,\n  footer: 'Closes #1',\n  notes: [],\n  references: [ { action: 'Closes', owner: null, repository: null, issue: '1', raw: '#1' } ] }\n{ hash: '13f31602f396bc269076ab4d389cfd8ca94b20ba',\n  header: 'feat(ng-list): Allow custom separator',\n  type: 'feat',\n  scope: 'ng-list',\n  subject: 'Allow custom separator',\n  body: 'bla bla bla',\n  footer: 'BREAKING CHANGE: some breaking change',\n  notes: [ { title: 'BREAKING CHANGE', text: 'some breaking change' } ],\n  references: [] }\n```\n\nParts of the commits will be formatted and combined into a log based on the handlebars context, templates and options.\n\nThe output log might look something like this:\n\n```js\n## 0.0.1 \"this is a title\" (2015-05-29)\n\n### Features\n\n* **ng-list:** Allow custom separator ([13f3160](https://github.com/a/b/commits/13f3160))\n* **scope:** broadcast $destroy event on scope destruction ([9b1aff9](https://github.com/a/b/commits/9b1aff9)), closes [#1](https://github.com/a/b/issues/1)\n\n### BREAKING CHANGES\n\n* some breaking change\n```\n\n## API\n\n### writeChangelog(context?: Context, options?: Options, includeDetails?: boolean)\n\nCreates an async generator function to generate changelog entries from commits.\n\nIf `includeDetails` is `true`, instead of emitting strings of changelog, it emits objects containing the details the block.\n\n### writeChangelogStream(context?: Context, options?: Options, includeDetails?: boolean): Transform\n\nCreates a transform stream which takes commits and outputs changelog entries.\n\nIf `includeDetails` is `true`, instead of emitting strings of changelog, it emits objects containing the details the block.\n\n### writeChangelogString(commits: Iterable<Commit> | AsyncIterable<Commit>, context?: Context, options?: Options): Promise<string>\n\nCreate a changelog from commits.\n\n#### context\n\nVariables that will be interpolated to the template. This object contains, but not limits to the following fields.\n\n##### version\n\nType: `string`\n\nVersion number of the up-coming release. If `version` is found in the last commit before generating logs, it will be overwritten.\n\n##### title\n\nType: `string`\n\n##### isPatch\n\nType: `boolean` Default: `semver.patch(context.version) !== 0`\n\nBy default, this value is true if `version`'s patch is `0`.\n\n##### host\n\nType: `string`\n\nThe hosting website. Eg: `'https://github.com'` or `'https://bitbucket.org'`\n\n##### owner\n\nType: `string`\n\nThe owner of the repository. Eg: `'stevemao'`.\n\n##### repository\n\nType: `string`\n\nThe repository name on `host`. Eg: `'conventional-changelog-writer'`.\n\n##### repoUrl\n\nType: `string`\n\nThe whole repository url. Eg: `'https://github.com/conventional-changelog/conventional-changelog-writer'`.\nShould be used as a fallback when `context.repository` doesn't exist.\n\n##### linkReferences\n\nType: `boolean` Default: `true` if (`context.repository` or `context.repoUrl`), `context.commit` and `context.issue` are truthy\n\nShould all references be linked?\n\n##### commit\n\nType: `string` Default: `'commits'`\n\nCommit keyword in the url if `context.linkReferences === true`.\n\n##### issue\n\nType: `string` Default: `'issues'`\n\nIssue or pull request keyword in the url if `context.linkReferences === true`.\n\n##### date\n\nType: `string` Default: formatted (`'yyyy-mm-dd'`) today's date in timezone set by [`timeZone`](#timeZone) option.\n\nIf `version` is found in the last commit, `committerDate` will overwrite this.\n\n#### options\n\nWriter options.\n\n##### transform\n\nType: `function` Default: `defaultCommitTransform` exported function.\n\nA function to transform commits. Should return diff object which will be merged with the original commit.\n\n##### groupBy\n\nType: `string` Default: `'type'`\n\nHow to group the commits. EG: based on the same type. If this value is falsy, commits are not grouped.\n\n##### commitGroupsSort\n\nType: `function`, `string` or `array`\n\nA compare function used to sort commit groups. If it's a string or array, it sorts on the property(ies) by `localeCompare`. Will not sort if this is a falsy value.\n\n##### commitsSort\n\nType: `function`, `string` or `array` Default: `'header'`\n\nA compare function used to sort commits. If it's a string or array, it sorts on the property(ies) by `localeCompare`. Will not sort if this is a falsy value.\n\n##### noteGroupsSort\n\nType: `function`, `string` or `array` Default: `'title'`\n\nA compare function used to sort note groups. If it's a string or array, it sorts on the property(ies) by `localeCompare`. Will not sort if this is a falsy value.\n\n##### notesSort\n\nType: `function`, `string` or `array` Default: `'text'`\n\nA compare function used to sort note groups. If it's a string or array, it sorts on the property(ies) by `localeCompare`. Will not sort if this is a falsy value.\n\n##### generateOn\n\nType: `function`, `string` or `null` Default: if `commit.version` is a valid semver.\n\nWhen the upstream finishes pouring the commits it will generate a block of logs if `doFlush` is `true`. However, you can generate more than one block based on this criteria (usually a version) even if there are still commits from the upstream.\n\nIf this value is a `string`, it checks the existence of the field. Set to `null` to disable it.\n\n##### linkCompare\n\nType: `boolean` Default: `true` if `previousTag` and `currentTag` are truthy.\n\nShould link to the page that compares current tag with previous tag?\n\n###### generateOn(keyCommit: Commit, commitsGroup: Commit[], context: FinalContext, options: FinalOptions): boolean\n\n**NOTE**: It checks on the transformed commit chunk instead of the original one (you can check on the original by access the `raw` object on the `commit`). However, if the transformed commit is ignored it falls back to the original commit.\n\n##### finalizeContext(context: FinalContext, options: FinalOptions, filteredCommits: Commit[], keyCommit: Commit | null, commits: Commit[]): FinalContext | Promise<FinalContext>\n\nType: `function` Default: pass through\n\nLast chance to modify your context before generating a changelog.\n\n##### debug\n\nType: `function` Default: `() => {}`\n\nA function to get debug information.\n\n##### reverse\n\nType: `boolean` Default: `false`\n\nThe normal order means reverse chronological order. `reverse` order means chronological order. Are the commits from upstream in the reverse order? You should only worry about this when generating more than one blocks of logs based on `generateOn`. If you find the last commit is in the wrong block inverse this value.\n\n##### ignoreReverted\n\nType: `boolean` Default: `true`\n\nIf `true`, reverted commits will be ignored.\n\n##### doFlush\n\nType: `boolean` Default: `true`\n\nIf `true`, the stream will flush out the last bit of commits (could be empty) to changelog.\n\n##### mainTemplate\n\nType: `string` Default: [template.hbs](templates/template.hbs)\n\nThe main handlebars template.\n\n##### headerPartial\n\nType: `string` Default: [header.hbs](templates/header.hbs)\n\n##### commitPartial\n\nType: `string` Default: [commit.hbs](templates/commit.hbs)\n\n##### footerPartial\n\nType: `string` Default: [footer.hbs](templates/footer.hbs)\n\n##### partials\n\nType: `object`\n\nPartials that used in the main template, if any. The key should be the partial name and the value should be handlebars template strings. If you are using handlebars template files, read files by yourself.\n\n##### timeZone\n\nType: `string` Default: `'UTC'`\n\nThe timezone to use. The date in the changelog is generated based on timezone.\n\n## Customization Guide\n\nIt is possible to customize this the changelog to suit your needs. Templates are written in [handlebars](http://handlebarsjs.com). You can customize all partials or the whole template. Template variables are from either `upstream` or `context`. The following are a suggested way of defining variables.\n\n### upstream\n\nVariables in upstream are commit specific and should be used per commit. Eg: *commit date* and *commit username*. You can think of them as \"local\" or \"isolate\" variables. A \"raw\" commit message (original commit poured from upstream) is attached to `commit`. `transform` can be used to modify a commit.\n\n### context\n\ncontext should be module specific and can be used across the whole log. Thus these variables should not be related to any single commit and should be generic information of the module or all commits. Eg: *repository url* and *author names*, etc. You can think of them as \"global\" or \"root\" variables.\n\nBasically you can make your own templates and define all your template context. Extra context are based on commits from upstream and `options`. For more details, please checkout [handlebars](http://handlebarsjs.com) and the source code of this module. `finalizeContext` can be used at last to modify context before generating a changelog.\n\n## CLI\n\n```sh\n$ conventional-changelog-writer --help # for more details\n```\n\nIt works with [Line Delimited JSON](http://en.wikipedia.org/wiki/Line_Delimited_JSON).\n\nIf you have commits.ldjson\n\n```js\n{\"hash\":\"9b1aff905b638aa274a5fc8f88662df446d374bd\",\"header\":\"feat(ngMessages): provide support for dynamic message resolution\",\"type\":\"feat\",\"scope\":\"ngMessages\",\"subject\":\"provide support for dynamic message resolution\",\"body\":\"Prior to this fix it was impossible to apply a binding to a the ngMessage directive to represent the name of the error.\",\"footer\":\"BREAKING CHANGE: The `ngMessagesInclude` attribute is now its own directive and that must be placed as a **child** element within the element with the ngMessages directive.\\nCloses #10036\\nCloses #9338\",\"notes\":[{\"title\":\"BREAKING CHANGE\",\"text\":\"The `ngMessagesInclude` attribute is now its own directive and that must be placed as a **child** element within the element with the ngMessages directive.\"}],\"references\":[{\"action\":\"Closes\",\"owner\":null,\"repository\":null,\"issue\":\"10036\",\"raw\":\"#10036\"},{\"action\":\"Closes\",\"owner\":null,\"repository\":null,\"issue\":\"9338\",\"raw\":\"#9338\"}]}\n```\n\nAnd you run\n\n```sh\n$ conventional-changelog-writer commits.ldjson -o options.js\n```\n\nThe output might look something like this\n\n```md\n# 1.0.0 (2015-04-09)\n\n### Features\n\n* **ngMessages:** provide support for dynamic message resolution 9b1aff9, closes #10036 #9338\n\n### BREAKING CHANGES\n\n* The `ngMessagesInclude` attribute is now its own directive and that must be placed as a **child** element within the element with the ngMessages directive.\n```\n\nIt is printed to stdout.\n\n## License\n\nMIT © [Steve Mao](https://github.com/stevemao)\n","repository":{"type":"git","url":"git+https://github.com/conventional-changelog/conventional-changelog.git","directory":"packages/conventional-changelog-writer"},"bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"license":"MIT","versions":{"0.0.16":{"name":"conventional-changelog-writer","version":"0.0.16","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.0.16","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"67843955e7515206089d265770c32f72360eb170","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.0.16.tgz","integrity":"sha512-+knVR6CYcoyjEBsuBHY0mHeyL5XsGJI3n+tPrmAfQULH7XwjioT9qoOl+lrZlaNcNR1A48GWyfbpNKdXuWbjxg==","signatures":[{"sig":"MEQCIFIq3+U5/5cxFAS0+EEwOvIyc/JQ4BQR0atHuSvaCU8kAiASmpCgcmwI8aqH//ASOfq9CynVYTaX235XUOPubTUB9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"67843955e7515206089d265770c32f72360eb170","gitHead":"fe67adcfb08b7d866d408c5c2664947a67bfb3ae","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.12.0","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^4.3.3","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"0.0.1"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.0.17":{"name":"conventional-changelog-writer","version":"0.0.17","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.0.17","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"c0971d65d5af3920fb9cd50b39bc942ed10948ee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.0.17.tgz","integrity":"sha512-mSyrcAYRmhB0zDxQcM5pynQDMZ3D3G3VHtt0UCHn7grX64NmjxGV4AkjkEJ8Aj3eNYAp6fz0HgMBwknjcJfx7A==","signatures":[{"sig":"MEYCIQDBX+aIWfhsVJovIDPSJpm3D4FbDz9emjXcaHCucRxwOwIhAOp8oHTK+qp5sGomS1x1gMEZk4u8P/Vs9kswNgVfY/WJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c0971d65d5af3920fb9cd50b39bc942ed10948ee","gitHead":"7fb7c8d725c6688f2b4a1ef1ead4374870bd7084","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.12.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"0.0.1"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.0.18":{"name":"conventional-changelog-writer","version":"0.0.18","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.0.18","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"9e63713a88c7ea28446d98503d3d5e607b033fba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.0.18.tgz","integrity":"sha512-wgaiXb+eXMdBF06ZnX/lVevBiKVBBUv/KoC0LZBQmvllfw3EGCvrgfSiruz3idC7m+BP0bTl4hsg/4ewEMpMvg==","signatures":[{"sig":"MEYCIQCMl8jyzhF4tu6Q53VQa1ldAYNfZDc1z1qvXwGUoia1DQIhAKnA11ERySoxDjaPxnFyPoH+U7ahsnypfN3GN5yreWD1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9e63713a88c7ea28446d98503d3d5e607b033fba","gitHead":"c6ca68c7b4ed08d3644685fcd7bc76628287ed6c","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.12.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"0.0.1"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.1.0":{"name":"conventional-changelog-writer","version":"0.1.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.1.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"34f85c5dbd924b05119f0749071f27e8b4821c0b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.1.0.tgz","integrity":"sha512-CHa/PXWclW36Z0kkUhV+hdF2qocurUtBjNI6WovSMcA4DZGQzgrGY31DfnIDL5KXyH8fDvEfPUaWx1XrcX4zgw==","signatures":[{"sig":"MEYCIQDmTvT+4UccLToSS/QL39oxKrqFSHWGaNCnIsNEIWDeLwIhAOJcpTlUVbJnpRrP7SarXJH3veBOHsd2JH5U6FE1Ceez","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"34f85c5dbd924b05119f0749071f27e8b4821c0b","gitHead":"93dc73b8c8793e7a821ccd0efbb80bad426284ef","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.12.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"0.0.1"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.1.1":{"name":"conventional-changelog-writer","version":"0.1.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.1.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"a11799488cd158fe72b0f3f9df509d9323af51e1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.1.1.tgz","integrity":"sha512-k2P0TPmxNKsTEgFimEJKgLkIkUKg75J/fHO3pWkAm8DAhYohi7ZcMWD/rDJwkCYgLx+4iRJEG/muCf3KE0nyFA==","signatures":[{"sig":"MEQCIEDKyhSkcODxmprveKYuvfzFdvlURwpJ+oaFbs7+0gMgAiBhjEbVJgehPigP/1mQTm3jWXgvhmp7yQfDtFRc03J9Cw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"a11799488cd158fe72b0f3f9df509d9323af51e1","gitHead":"0bd59830508f134dadd9d97eeb1318daad5a39e3","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.12.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.2.0":{"name":"conventional-changelog-writer","version":"0.2.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.2.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"5e6cd63bf0dd050856a324eb72faa8eb3d18148a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.2.0.tgz","integrity":"sha512-/jm7j20EH8vZvYrB2uVRNT5E36VU8sjrhLamfElmXTdfy/tls2kOZ1w3SqQRDIT4ToSREj17z7RS1j3mlqcoIQ==","signatures":[{"sig":"MEUCIFLp9ArwG8E3TmSo2C7YrAMMzf/vrYL7mu4OvP/3pR7BAiEA+NEB3H4oLpGdgAGRSo/UvP54Fmj4ScAaUHvlu+LrK/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"5e6cd63bf0dd050856a324eb72faa8eb3d18148a","gitHead":"2f967df851962805bca5b8b36c8e3f8c34a3625e","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.12.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.2.1":{"name":"conventional-changelog-writer","version":"0.2.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.2.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"5f232bef14dc8a03339cde1414d8dfca5d0020d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.2.1.tgz","integrity":"sha512-6xM2yguaAe4DU96K44fm2XBw3Pn4xHdBRZOVt0Ruxhyprb+CZFxhB+XheZvj9t9VvXMkk530JA4PgpyS0MW21w==","signatures":[{"sig":"MEUCICHkFltQFvFjQQC+28bVihrEQ/Z091kgBgb9uOkkgzxOAiEA6/MFaSaudcFDWRRbG6q7+SeVteKqHS+bo+B4P4KbHFw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"5f232bef14dc8a03339cde1414d8dfca5d0020d2","gitHead":"684d1ebe5fbdffd7252b3e4641db00be86487097","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.12.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.3.0":{"name":"conventional-changelog-writer","version":"0.3.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.3.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"1d4ef798f0c5f0dbbdcd03eca8ddbc4a2eaaf73e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.3.0.tgz","integrity":"sha512-B4qged06rg+IX3rGr+MmFtL8EwNouyyD++BZFAgeEG8cc/OR6CiTfAxvjRmOBoE8MuqMboZKNio2kkNqFJN8nw==","signatures":[{"sig":"MEUCICm/7jWSdjgPxpdE+0VNcQA4AcGX9alH+HtsGJU5XAOlAiEA5rAMOPn6SkJ9aAW68M2Av00dK7rjBC43/08Q4hl3bYU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"1d4ef798f0c5f0dbbdcd03eca8ddbc4a2eaaf73e","gitHead":"fea92f273d13e1e506254c2573216c3c2cc7c71f","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.13.2","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.3.1":{"name":"conventional-changelog-writer","version":"0.3.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.3.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"dcd2a9fb6b7bc0d0f8f7c34d217a7a243efd32dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.3.1.tgz","integrity":"sha512-AStEB+PVcPmHtitC+5CNBFmCYQHrv0ZLr9Xv7Ah0QVRCr+FI+HCu39JIhFpaHo2LOZ5llWU+ERbbbTSiXTNc0w==","signatures":[{"sig":"MEYCIQCW6yv/V9TVfo/JqxierbgzCZwilW6uAGrgK77EMWVNeAIhANEPb+Ykwy75AmWuzZfCzEGoyTXov2/pFrjcBiffcDBo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"dcd2a9fb6b7bc0d0f8f7c34d217a7a243efd32dc","gitHead":"b1ef276ff12b07cbf011e52a0b670e6d900bfeee","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.13.3","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.7","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.3.2":{"name":"conventional-changelog-writer","version":"0.3.2","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.3.2","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"ef42ff6b962e96c5bc11a296f4e80426e2e63bef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.3.2.tgz","integrity":"sha512-D/TSI6goA7P2zjKBpiAqJaYX5VZgDeZdsdrVtEGOZVHXHTl8XbgY65mpvgVgZz7qoDtNXJziyEEUZOiaHhKATg==","signatures":[{"sig":"MEQCIH0s2RpSCeoEUYbfkM4wo0A2cc4h+cdxqgnVJC0vFdUHAiBMFE0EO5ZKVf/soeEEYu2Rp2ixSk6YEDfxLObsMkYgog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"ef42ff6b962e96c5bc11a296f4e80426e2e63bef","gitHead":"ab4a74dd280c743fbb8c9e3086fb26bc8385fe42","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.13.3","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"0.12.7","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^3.0.3","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.4.0":{"name":"conventional-changelog-writer","version":"0.4.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.4.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"d254ae83cd6cf2d3ad34e23bf31f8b5565474f99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.4.0.tgz","integrity":"sha512-h1E1uJ2fOtR7inDxHeU5WxkmkyAOHs35kRa7TXGm4+LNl18l0qmWT/Wc3rNs4m5A8RKQ6cjJMqAvweG6Be8dGA==","signatures":[{"sig":"MEQCIBTGc4kfU3rK4KFaLQsYpEIDAMOtQhg5iCXDcsOriCySAiA5AFcVOkRMccGjluflDDn0mwtDEd3pGVBoQhiug6sgvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"d254ae83cd6cf2d3ad34e23bf31f8b5565474f99","gitHead":"66a44a46e539cbb673227020a7551f60a69904a2","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"3.3.3","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.1.0","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.4.1":{"name":"conventional-changelog-writer","version":"0.4.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.4.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"14a7bb353f218a445d7336a96908cd9d96c18408","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.4.1.tgz","integrity":"sha512-or6vgg0rvPaJLHLq60jGJ5cLX0832//t/cshNzSeTVvq15xelA7mizvvIj58HoXXFpjkKlRnSqxu3PTEcSCdUw==","signatures":[{"sig":"MEUCIQDMXooVzO8IaPgq0TFtLnvoV4VJLzayGQfVvk2JvhTe0wIgNWMFz9+kVYLVFSPNa5uIPn3KhVaRCgDrPUeqtzgVtb4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"14a7bb353f218a445d7336a96908cd9d96c18408","gitHead":"851eaddaa1d2f6ef213d0cd8fdf9c16ef2ade42b","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"3.3.3","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.1.1","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.8.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.13","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.4.2":{"name":"conventional-changelog-writer","version":"0.4.2","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.4.2","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"ccb03c5ebd17ceb94a236cb80b27f4ef6bee7731","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.4.2.tgz","integrity":"sha512-AVWrHRkVGrKLPez/Gsjtg/ktdTIBpR7niROOvoTUVymaUD3CMz3lA9azBRT9z3YNMwLEZNjv6m1XkNYxr1E+xA==","signatures":[{"sig":"MEUCIQC0dWnuqBJziSpKvFsWHpDERylYxyDA4xH+9p1YM3H73gIgIMol86Urpt7qH7k1yN1DocbFgcW7UHY/T34fm2iCcBg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"ccb03c5ebd17ceb94a236cb80b27f4ef6bee7731","gitHead":"b3b1247c83b5736824b0c6d420f8da0df945dae0","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.2.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"}},"0.5.0":{"name":"conventional-changelog-writer","version":"0.5.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.5.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"77ee9c69dfebfa524d46e4c477dcf872b14a88c0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.5.0.tgz","integrity":"sha512-uVyPGhxIKFzn18jQntB1NE9Mf2/kxJVTIk5nu1OyIurIF7MCep10lqwZwHx4dFvplBFz8O1Z03OuXj2DlhVyjA==","signatures":[{"sig":"MEUCIQDD2p64rXK6AWRBeI1i0LvYTHCZaNzK+Opn3UyVEiaq7gIgU/bMxVVZlU2KBJylY5IGOQcZDuA5li95FFFkPResy8Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"77ee9c69dfebfa524d46e4c477dcf872b14a88c0","gitHead":"9dc6c64dd71d9a06206d08e1def0eb5a7ad8dce3","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.2.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-0.5.0.tgz_1454411689427_0.8000067546963692","host":"packages-6-west.internal.npmjs.com"}},"0.5.1":{"name":"conventional-changelog-writer","version":"0.5.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@0.5.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"d9fc0428fbf5361d4100e2bbefb5373bf13e3ac4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-0.5.1.tgz","integrity":"sha512-bcHEoipxERid2lcvPava+Rtgb31Pkunez7otYXeNvjGN1VdUzzKdEUevRyHTCi4zbnaVxCf1BzqSuab09mZ72Q==","signatures":[{"sig":"MEUCIGReXRqTkM1j/w2lLlomP8HRe+KcVfuiLc70eak1X09zAiEAmc+lujUltryWqPX9O8o2ftihkmDBKRjOfxqWxJ7uVb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"d9fc0428fbf5361d4100e2bbefb5373bf13e3ac4","gitHead":"b58c57c15dd66c94f3dc9d75af8e23f81439433e","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.2.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-0.5.1.tgz_1454494780999_0.12985672149807215","host":"packages-9-west.internal.npmjs.com"}},"1.0.0":{"name":"conventional-changelog-writer","version":"1.0.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.0.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"8ee442d8462fa01be461252c996d7222048b155f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.0.0.tgz","integrity":"sha512-11wPUcleiMHx6m25w1DvSuMHLrLMv20jAGUSZEy/ZvOzDnI9lqmDBSAiTjFh2aHgU5DJ1WDz1bA7etcmJ5cOkg==","signatures":[{"sig":"MEQCIFqui4XQygV/qqQZrPz1AFqMvzVHykixqeMNVlGVoQ/8AiB6eIFSvqntON0HXVGJRQX/nN0LyfBRh5z24hDwog64+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"8ee442d8462fa01be461252c996d7222048b155f","gitHead":"a698b9e9a33c249b05dde0eda64f1d0b88e8d786","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.2.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.0.0.tgz_1454675822766_0.5689266812987626","host":"packages-6-west.internal.npmjs.com"}},"1.0.1":{"name":"conventional-changelog-writer","version":"1.0.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.0.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"b96e6904b643dca9ab594296b07f28c169e95665","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.0.1.tgz","integrity":"sha512-loal8aJazc2b58Do+KHWPVGgTuFCD4YBSe85BDHzHI+06gjng/fHYdTjLOrvnEWCWxNdc+LDOnKURreRuP6fRQ==","signatures":[{"sig":"MEUCIQCkn04GlAOlt4RPmWEM8M7GnmFGdynne116k2xvIQEsKgIgRSTIc3JWqefE/cHcDSzFrumYjwF2parxnxL4CmcaxIk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b96e6904b643dca9ab594296b07f28c169e95665","gitHead":"a582d89bc2bf988ab66bd3cb87949313788a2d05","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.2.6","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.0.1.tgz_1454750235341_0.1102734764572233","host":"packages-9-west.internal.npmjs.com"}},"1.0.2":{"name":"conventional-changelog-writer","version":"1.0.2","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.0.2","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"0de6e74cb3f02c1ca89f5c6dd2d2089a405ebad2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.0.2.tgz","integrity":"sha512-eljKEs27XjmASY4NTbDZcWHOTXRNHQ4D7qhrPZVob3g+dGHx5Myg/8fANVezPFy6SnI2kRVWDreCDUZT7n2CpQ==","signatures":[{"sig":"MEUCIHQc4TpOFyDokXUmcCK2fGaj/4vaPFM6hugiEIm+DJaYAiEAxl7rAAclKc5Qrb0aMi0kefs3klj0jjo+VkDRcvRtHYk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"0de6e74cb3f02c1ca89f5c6dd2d2089a405ebad2","gitHead":"734606fdf40b3c9bba543ed6abb6d4440035f15d","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.2.6","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.0.2.tgz_1454763125388_0.7997650941833854","host":"packages-5-east.internal.npmjs.com"}},"1.0.3":{"name":"conventional-changelog-writer","version":"1.0.3","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.0.3","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"d99a8a1e9cbb4a8ac997f0d15dd139364868b094","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.0.3.tgz","integrity":"sha512-K7lKQVvz/wGyO0O3QC0PfEsJS40NOzTagdjsyL58bdW1xanXpSlt87rp5YKd61XCtydqU2A/RmmDSPxK6O8ZIg==","signatures":[{"sig":"MEYCIQCswxFPDLTPu5+TGhEu0B6dmv/Dvb+q/6JcegQTjJ5SmQIhAJ2pGmUz+6VIV108u+TpFQPxIygSRT6ZIiqB+t7jrVK5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"d99a8a1e9cbb4a8ac997f0d15dd139364868b094","gitHead":"282bc30567fdb1ca830f43c5e2292f61752e2f0d","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.2.6","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.0.3.tgz_1454765390243_0.1160828247666359","host":"packages-5-east.internal.npmjs.com"}},"1.1.0":{"name":"conventional-changelog-writer","version":"1.1.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.1.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"4ecb8d974bb402d9416dccfc57ca0b37859a1d18","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.1.0.tgz","integrity":"sha512-4ppmToimPBth3X6A94WuuaH++oh8VImpE0SObRnWSbmvyaZIeFCPQ5ONDP2FLUHanC2cQmI6Ws/s/aawsxAZtg==","signatures":[{"sig":"MEUCIHQlO8LeFVt0E8jfSkhs9GgiKTQfqMHr7y2iDxRiZewlAiEAozoHZz9+XkEz3X9vn3zvYa/fdiyyW2r0qXrlhkus8R8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4ecb8d974bb402d9416dccfc57ca0b37859a1d18","gitHead":"a5bac09cfada37d471e668d1029b53febe598744","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.2.6","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^0.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.1.0.tgz_1454936131648_0.18001554789952934","host":"packages-6-west.internal.npmjs.com"}},"1.1.1":{"name":"conventional-changelog-writer","version":"1.1.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.1.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-changelog-writer","bugs":{"url":"https://github.com/stevemao/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"c0d6e7111d2e9e276f9b405a594d1f2b2877ed37","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.1.1.tgz","integrity":"sha512-C2/E11xhl7zq0kK16K75bivFikUuSs/2UtIiWhfpEX0jdhwpxJBNKmk/Sj2NNGkNb6Le8x0yqU2lwWZNVBabZQ==","signatures":[{"sig":"MEQCIDuju34G0U+WNKoMIyPNHdi2OZfhrs8TNlRMTJbq3qR1AiBqzP+DSbqQREtGCxLkXIMmzB+rkn/38/X7GBTsfM6mIA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c0d6e7111d2e9e276f9b405a594d1f2b2877ed37","gitHead":"e9885522b1c975d5e47992a8757c9b66d6a6117a","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.14.12","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.3.1","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.1.1","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.1.1.tgz_1456739503485_0.5492440511006862","host":"packages-6-west.internal.npmjs.com"}},"1.2.0":{"name":"conventional-changelog-writer","version":"1.2.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.2.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"e608108b6d71f92e872707b2320f3652a7c8761e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.2.0.tgz","integrity":"sha512-9xnL7zrYgiKBxBXhx835WwNc9cbJtCN4n0g6EWG4LpYxtqGxoAzXdj/5Ny3hoy8csBd8mHlhy6c+PCaPChy0Bg==","signatures":[{"sig":"MEUCIQDF53loHkr3c/bBnoKdM5gnJ0xsYFOWheg9shELIr8TVgIgR+labE+P5TJwKwjVnFBONABypxKt9CIVsaUtn3gx5GA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"e608108b6d71f92e872707b2320f3652a7c8761e","gitHead":"3ece7fd71c7fffe61fb98ea72843a8c61d753fac","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.15.0","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.4.2","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.2.0.tgz_1460872261968_0.3651808174327016","host":"packages-12-west.internal.npmjs.com"}},"1.2.1":{"name":"conventional-changelog-writer","version":"1.2.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.2.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"5fe224022f62b8083cd1dc131faf80f6d66e39ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.2.1.tgz","integrity":"sha512-LNpbsOJG/sejyqluWExYSiMfXUq/1ZsBtSw7c+7eFZn1hcIrKxKEhBht+BOu0bpZwqYgNRxXvTl73mZOGvi8cg==","signatures":[{"sig":"MEUCIQDumwpju7Z21xodb6mXk9BMJcOhddS6ArG0EDxOLuxcSAIgRWAK4IZ2dIvHDOEccxYpWRl+80iCpTivtNpvWvO5GG0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"5fe224022f62b8083cd1dc131faf80f6d66e39ef","gitHead":"6f291b0a430e47adecba10da330011189be8697e","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.15.0","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.4.2","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","conventional-commits-filter":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.2.1.tgz_1461061807327_0.6318658937234432","host":"packages-16-east.internal.npmjs.com"}},"1.3.0":{"name":"conventional-changelog-writer","version":"1.3.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.3.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"1d45db92cbff5df371f07436ca6f1d7507bd0c40","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.3.0.tgz","integrity":"sha512-JrVUX25yFhdkUPSffyaifV3xr6Psbf82SzPfvBMFCn96vEXEN4L7Pu9e1J9Y8IvtVdyZRaku+i6HzMZH4yMXhA==","signatures":[{"sig":"MEQCIGNbxkILT9UGlmc+iKyfMz6NyNB9VTrqAmmtGgcZpjbXAiBLfb5UsbpoU/R8enqyPIUBf7VdF9MUkqqZn/QBRKGqbg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"1d45db92cbff5df371f07436ca6f1d7507bd0c40","gitHead":"3ba7edda7067b5ae77f1629a427418672ba5e2f5","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.15.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.4.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.3.0.tgz_1462711368453_0.2779835634864867","host":"packages-12-west.internal.npmjs.com"}},"1.4.0":{"name":"conventional-changelog-writer","version":"1.4.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.4.0","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"2fe84a726192ea613586de96dbe4fa35ea75569e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.4.0.tgz","integrity":"sha512-GO48p/OGIOqDQe46meJsIJH3KsrG4y2hvSOBJPqEiU3Dod+obovbjpMHJXOky1NosQD1HbRlhG7VmVuly6GybQ==","signatures":[{"sig":"MEYCIQDhcR4UtgGvnLfnXiLcqPyo1wfeo5n2UMEPvqMi5cJa2wIhAI+KkgHpgsvvZzMeoQb9l58ihdhTaKYG4wSLA5kj4hfV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2fe84a726192ea613586de96dbe4fa35ea75569e","gitHead":"1a20f2ae87445bbaf510e001508f8b7ee77403d8","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","coverage":"istanbul cover _mocha -- -R spec --timeout 30000 && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.15.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.4.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.4.0.tgz_1462881373279_0.053344767075031996","host":"packages-12-west.internal.npmjs.com"}},"1.4.1":{"name":"conventional-changelog-writer","version":"1.4.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@1.4.1","maintainers":[{"name":"dev","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"3f4cb4d003ebb56989d30d345893b52a43639c8e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-1.4.1.tgz","integrity":"sha512-T5dWcSTv/VkV736MkFPazwbhBfltp4iCs4YPd/1dcXdCZIhiZ+oQiAeZ1uGxJOBiwHEvjM7LVP/JF7iv4OzEiw==","signatures":[{"sig":"MEQCIDnkan+oC6g8DT85nriwly7xd5zB8UEaBRCpBXU+TNx6AiAY1J4Xk0Z2UJ93reP1VB6QDPCNH4V4wVAOzwfEYK++Mw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"3f4cb4d003ebb56989d30d345893b52a43639c8e","gitHead":"8b21226e4c1b4861d3737e6bd57125fb03be3c7f","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","coverage":"istanbul cover _mocha -- -R spec --timeout 30000 && rm -rf ./coverage"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"2.15.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"4.4.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-1.4.1.tgz_1462885613270_0.931440262356773","host":"packages-12-west.internal.npmjs.com"}},"2.0.0":{"name":"conventional-changelog-writer","version":"2.0.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@2.0.0","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"6e4e3a7c3ed2f581e75b4bf8e92cb7cabe8bac4c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-2.0.0.tgz","integrity":"sha512-7dc8fh01pce/G8glLS09OzAvlTDBaw8VG1us+dBlDdz5kuCMLjeEKwp8Ug0pJpXti8qg4+Q8KgM43OvcqckJsw==","signatures":[{"sig":"MEQCIAo+M6jRXwIpHVdi2Q5AbGK50/vPbuPKRB1VhTkZ6Kl2AiBqFCjnaYmYPdH9YkBf8+K9RY6NPlexGyXyp1U7QngpeA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"5.3.0","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"6.10.3","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-2.0.0.tgz_1500334225628_0.7687282075639814","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"conventional-changelog-writer","version":"2.0.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@2.0.1","maintainers":[{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"47c10d0faba526b78d194389d1e931d09ee62372","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-2.0.1.tgz","integrity":"sha512-X4qC758celQOKw0iUPAsH5sJX6fH6N5dboFc3elXb1/SIKhsYMukhhaxWmxRdtVUSqGt9rZg8giwBQG5B2GeKg==","signatures":[{"sig":"MEYCIQC022YlaVzwi7RR4NbN/FWv7HO1QW9GSfyQM3g2aOKvXwIhAMlyUjHmU4/Bg393WZFtKLy7EvdoNzZsf2oIiQvNc2eZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"5.3.0","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"7.10.0","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-2.0.1.tgz_1504235787531_0.994380832882598","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"conventional-changelog-writer","version":"2.0.2","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@2.0.2","maintainers":[{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"b5857ded1b001daf9a78b9cd40926f45c134949b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-2.0.2.tgz","integrity":"sha512-oV/vWGkawTEvboNUQHII7vj0cxbQiM8g/8tR8ZavXbkqXLDdxq2mCf/jHS6mF6zqr1mov5HohOp293TYhEo/ig==","signatures":[{"sig":"MEUCIB58xmqRdFLvB7yA3nLuNJX4mT1y/g4bVvGMaF79e/6kAiEAmAC8zYQ41J/vELqZYW7bw0bqiyj0HjMdHe+cGsf+TH8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib","templates"],"_shasum":"b5857ded1b001daf9a78b9cd40926f45c134949b","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"3.10.10","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"6.10.3","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-2.0.2.tgz_1510532238570_0.74356818664819","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"conventional-changelog-writer","version":"2.0.3","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@2.0.3","maintainers":[{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"andrewbgoode@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"073b0c39f1cc8fc0fd9b1566e93833f51489c81c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-2.0.3.tgz","integrity":"sha512-2E1h7UXL0fhRO5h0CxDZ5EBc5sfBZEQePvuZ+gPvApiRrICUyNDy/NQIP+2TBd4wKZQf2Zm7TxbzXHG5HkPIbA==","signatures":[{"sig":"MEYCIQDJXhf4F3W9QNLV1X9sKbj4IYh0m1Bg7sNTXwtGF9LNYgIhAO+1NtyWDYiOPZx0w7dumsMG7lEkeDfJnVLpQVoafHd5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hello@mario-nebl.de"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"5.5.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.9.1","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.1"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-2.0.3.tgz_1512717195969_0.6031064707785845","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"conventional-changelog-writer","version":"3.0.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.0","maintainers":[{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"andrewbgoode@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"e106154ed94341e387d717b61be2181ff53254cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.0.tgz","integrity":"sha512-CI+ZIh2KNmBrnTK9j8cYSweA3x4EWwBcrZ4mouAIcugmFISbTO7sWHylOK9bHe3XTa48iNJ1hBqHJwK9+okhhw==","signatures":[{"sig":"MEQCIFQKo0dieHpXVQDAcoHO4/rUzi+iItpX4PikmWVUL2FUAiAkloBjMqKvm+ibmWfcYDDp51SaV4E3rfxi6bFJV9+MTA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib","templates"],"_shasum":"e106154ed94341e387d717b61be2181ff53254cc","scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"3.10.10","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"6.12.1","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.1"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer-3.0.0.tgz_1517191957717_0.8717358305584639","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"conventional-changelog-writer","version":"3.0.2","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.2","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"andrewbgoode@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog-writer","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog-writer/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"f3f934028379c0cab90aecfcaf009bf8a187ef14","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.2.tgz","fileCount":10,"integrity":"sha512-eYXmYxT1IUuzzfpQuFA2/t3ex+7rFBbJchDIWyDTAs7OFkPBAfAs3EG04cDkEAG6Tn3wnwrtDKVZL9sMfA3kIw==","signatures":[{"sig":"MEUCIEtcvqe+KSoccalyjV6tZhZ5bgSKKlP+zy5tcLzg+XYhAiEAuh3/hI3Xd3B68qIs1qJFhHor3XUNSaqW+YFIBiOwZbU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48657},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"ben@npmjs.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog-writer.git","type":"git"},"_npmVersion":"5.4.2","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.8.1","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.3"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_3.0.2_1518539274531_0.13256930266177291","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"conventional-changelog-writer","version":"3.0.3","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.3","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"andrewbgoode@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"2faa65739370769639fff1c0008722162936d46c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.3.tgz","fileCount":10,"integrity":"sha512-gzkAFnFxjEOBCwISTBUJ6DnthMwzqY1MRyElN6S25VYBcRV/6DOVbbZgbBL1KdsogO6Z/QuJlSnIH7OteVd5lQ==","signatures":[{"sig":"MEQCIB3lFOZZJ1wW7h/URivSrlEhXb9GPAQLI219PgNu4EdrAiB5KqAzK80uMuTWVxV3YX5851cZ59HABWSLcfVMQcANPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49122},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.6.0","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.9.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.0.0","semver":"^5.0.1","through2":"^2.0.0","dateformat":"^1.0.11","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.4"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.3","mocha":"*","jshint":"^2.9.1-rc3","istanbul":"^0.4.2","concat-stream":"^1.4.8"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_3.0.3_1519100434578_0.46317563075657","host":"s3://npm-registry-packages"}},"3.0.4":{"name":"conventional-changelog-writer","version":"3.0.4","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.4","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"andrewbgoode@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"705b46a8b8277bd7fd79cad8032095b5d803864c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.4.tgz","fileCount":10,"integrity":"sha512-EUf/hWiEj3IOa5Jk8XDzM6oS0WgijlYGkUfLc+mDnLH9RwpZqhYIBwgJHWHzEB4My013wx2FhmUu45P6tQrucw==","signatures":[{"sig":"MEUCIAs8MGEbrG/cO5F9xlWROIkLuYnXD/L07RyofTrwsBNwAiEAxH1ZKswTmiLBtvhL0OyOB+djfsCz0PIMmHjRuogg+W4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49279},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"jshint *.js lib test && jscs *.js lib test","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.6.0","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.9.4","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.5"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_3.0.4_1519510366101_0.6208699253062604","host":"s3://npm-registry-packages"}},"3.0.5":{"name":"conventional-changelog-writer","version":"3.0.5","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.5","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"d7ce157209c55057a2487e645193a2e6b9027943","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.5.tgz","fileCount":10,"integrity":"sha512-4nVvhRvvtdbBSfoeK+1QIbjqjx4Y+VddF4NRcsJgInDnA/TuVel0SXLCtTOeRH1DueFctiuILfVqdammBxmWEQ==","signatures":[{"sig":"MEUCIDLFKjFhddLy0Sk870NcwvT8hbcHwyFUXPxEgNG14VKXAiEAlzV7EjVLHY2F1u+8z21Tgj8rvwQmpzz6ZL+GXDLJrYo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49371},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.7.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.10.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.6"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_3.0.5_1521726472334_0.9357394286093705","host":"s3://npm-registry-packages"}},"3.0.6":{"name":"conventional-changelog-writer","version":"3.0.6","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.6","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"30e78c9e4a25870706e72d764cffd9592081ed76","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.6.tgz","fileCount":10,"integrity":"sha512-BcbPNApg7aejagL6EsBaR0rGP6zl447bVez+SzbQaSdYA79EriX+TQwOLCCtSlPYcaraKSpyA6IZCcs+UUs++g==","signatures":[{"sig":"MEYCIQCD/MuKkX/mmAhnCAa3mPksSBbyLvJwj3BvoY8S+9TXCAIhAKolKX+ALXyRnVueLujL7OeBxYGbVtyINf9mqe97muBl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49578},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.7.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.10.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.6"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_3.0.6_1522163519647_0.37618382857936683","host":"s3://npm-registry-packages"}},"3.0.7":{"name":"conventional-changelog-writer","version":"3.0.7","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.7","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"94c088b819860a1f8be2e10440f67b15d21fa652","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.7.tgz","fileCount":11,"integrity":"sha512-yeL1B2eILkCfMYVaN4sOzDcmInhHyNCs3WsfBizvT2yhgQ16pufvUBPC8BbuKDVe7iedw44KMfNevkz+0GnGng==","signatures":[{"sig":"MEQCICwdGcyyRYMzp0LwD8whyoln4tw8AFeVKGfLbNkDWcGyAiAVidu18Wv/gIeMabCW9ZhfRRrHLN1URrJroBmd/bQvkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50965},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.7.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.10.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.6"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_3.0.7_1522164368262_0.05029310403372267","host":"s3://npm-registry-packages"}},"3.0.8":{"name":"conventional-changelog-writer","version":"3.0.8","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.8","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"e772ab261960f0bc849893ee843c0949d8e942dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.8.tgz","fileCount":11,"integrity":"sha512-8kGEd4+UKJuNMNtOp5xSSgeH5E6ysJARDUjeq03nomjhQIpqiXj4gP61HhgdfEbk+W0RdHrz3tDf0fmYgaNMpA==","signatures":[{"sig":"MEUCIQC6s66MWGUMHre6+uQx7rWLRGjuyihsq1ZHw7MRRNHidwIgPWkZBhWHgHwRZeakFjXfjSb1h+bjwKBI90e5E0m++uM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51241},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.7.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.10.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.6"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_3.0.8_1522164904978_0.03915357486209903","host":"s3://npm-registry-packages"}},"3.0.9":{"name":"conventional-changelog-writer","version":"3.0.9","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@3.0.9","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"4aecdfef33ff2a53bb0cf3b8071ce21f0e994634","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-3.0.9.tgz","fileCount":11,"integrity":"sha512-n9KbsxlJxRQsUnK6wIBRnARacvNnN4C/nxnxCkH+B/R1JS2Fa+DiP1dU4I59mEDEjgnFaN2+9wr1P1s7GYB5/Q==","signatures":[{"sig":"MEUCIHJ6NciRq7jDsXfdxHNzI0cTaO40qfgqQcjAlsAVmgrGAiEA+Z5eLhu3c8Z9EwN5qV6iCXVga1CWubMmPfOzIm+M49M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51634},"files":["index.js","cli.js","lib","templates"],"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.7.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.10.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^1.1.6"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_3.0.9_1522205874942_0.8569824533131889","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"conventional-changelog-writer","version":"4.0.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.0","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"3ed983c8ef6a3aa51fe44e82c9c75e86f1b5aa42","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.0.tgz","fileCount":11,"integrity":"sha512-hMZPe0AQ6Bi05epeK/7hz80xxk59nPA5z/b63TOHq2wigM0/akreOc8N4Jam5b9nFgKWX1e9PdPv2ewgW6bcfg==","signatures":[{"sig":"MEUCIQCqNaYmYkDXeKGj2RAJG8Me3CM5s7XZpKMOPfLCLAZFCAIgSW9hAelK3+WeJc+8HnjN1nPirqcDz0S21eMC+m/gn8g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53486,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDWNlCRA9TVsSAnZWagAAHg8P/i5zZErwu4HhHfld9Rpt\nj8MfXGl0yuycL4ONETbSZfTHDyTP6CbxLsGtIGZ+mXCehvqs9Y0lGUy77ILw\nLpqMBwA6/TXIHW/7+6zHs5bmFPIvxdMhemG8nzjrIIKGYkw1IMDteXbAM5Lw\nEGUatiLi5x48ONTlFmvJUO2AMZYBw9+KbpzQmGF6Rk7HqonABnbr74TV+EA1\nIPhCBnnCGxraeSwaqAE+HtlFhZfQ2HzA6bNfbaUpHZE9y+HZ7m65nLkx/a2r\nJSQBvgD9su+FkJpvqRBzcqRzDHvjfBLFmtY1D9tZ0I5/X4Jh9vDLvvrNI2Vp\n7T8kUcixwekLG5I3Jnl2kS/GlD7mTOU0Co5d37Ogi+oOW6dIDMyna4KAI800\nx63l2yCBzjejUyXgtTLGzGLSml+fscdnbKdAL2RwwJ297s+j6cLnBvVLSCgQ\n4KWxVI2+e3ZbsIetC7VL4Ixm0dVvGfoG9L0sakzzYffdwP2UXaRJ+MM8ANkt\nf6aeJrTcKXpsFDuNVDQ59ykGDnLP1gwUTFik7yVPeMCtDNUIXST7S/d0HtHj\nMhOo4aVBS2GJqLH2+HbtRnAaRRrHmSLVkVYr/D8z1R4WWXMkA7dUpwbPT9xF\n9B0NZyKC6TUhVXWZWbHDa5xiiBtUSA2DSzv/VMf8C5jQ7eMqgpau9WWpRgsX\n232M\r\n=p82x\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","cli.js","lib","templates"],"engines":{"node":">=6.9.0"},"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout 30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.6.0","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"8.11.2","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.0_1527604060817_0.8919652926945982","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"conventional-changelog-writer","version":"4.0.2","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.2","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"eb493ed84269e7a663da36e49af51c54639c9a67","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.2.tgz","fileCount":11,"integrity":"sha512-d8/FQY/fix2xXEBUhOo8u3DCbyEw3UOQgYHxLsPDw+wHUDma/GQGAGsGtoH876WyNs32fViHmTOUrgRKVLvBug==","signatures":[{"sig":"MEYCIQCP3o8+F4XyZXjgW70q6HcuXeC9IGpPnTomZZ1BNR+1LQIhAOwPGixXdRZamVSaNr/Xqnn57vOSodRAWD1vmMtUId1W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54270,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2qCsCRA9TVsSAnZWagAAQMAP+gKeq81KwS0FlRpBcGg8\nE4q06KA7aaWMYtuFuL49rkIQ1akIoydvKsdz3020BeEKp1gajKgo1QQ5cGeE\nc945RKxBmir6q26rY3tYDy0AZTZZBJfe7cnFKkxcb3H/9EbuD4fGnhPMC1j6\nXSBm2PWGLArkmtwyriW0qqBGtuMmy5BJXFOMwfnBkURrCmhhSEg8bb2Lg42J\n+7TpqJQsDqS5gPALXLA2fJlKxP5vb+at391NAiaOKsMx9L1F0ujvKSv9IWMC\nuVeZHcuAI0os7sDab7iNqWAwxrvaBWOUWigPhIeEx6uLRzx1sCTuVPs/c+59\nbwv3tXeD4hpD3oLNWtR1kOGxRK9jCdy+VNrnED14FHJJvnsJx+7zDxaWsb8w\nFG86rwmHs2sqBJSVPr999VDw2ATk/JvLCGIxjJOm+tGD/4hYnQVRVcy/kThR\n6aP4bhtDkyiED8kS5KSV20drOW1aleJVKvTx6MaCvxWpmUP3FO5CmvNIYHQq\nIPwVaPWiEpbnu8epPR6aRDiXp6QSMgNJS3NmqInVmUg7ZzKL8p4r2caUkYXF\nfHV4LaQ0bF4E1TWGmFA4QvC/mjvD7geW5XA7Ku0zR+lJgdQgpB3hzt5A1wcK\na2MjpRD4+8ZoTyrbEAKj+jpCKU5qTwEqCKYtyueK0yG4mYzeoH8Itsrs+7Mb\nrQRq\r\n=xTjo\r\n-----END PGP SIGNATURE-----\r\n"},"_from":"file:conventional-changelog-writer-4.0.2.tgz","engines":{"node":">=6.9.0"},"gitHead":"bfd7593c4ce82c5835a9fa8f45796dfd6d697409","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"ben@npmjs.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.4.1","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"10.12.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.0.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.1"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.2_1541054636269_0.5218535232242472","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"conventional-changelog-writer","version":"4.0.3","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.3","maintainers":[{"name":"dev","email":"ben@npmjs.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"916a2b302d0bb5ef18efd236a034c13fb273cde1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.3.tgz","fileCount":11,"integrity":"sha512-bIlpSiQtQZ1+nDVHEEh798Erj2jhN/wEjyw9sfxY9es6h7pREE5BNJjfv0hXGH/FTrAsEpHUq4xzK99eePpwuA==","signatures":[{"sig":"MEYCIQCtR/Ys5h5fS8iUd/LVuXJgqtfuXBCAgN6rSziR0s5hCAIhAOUuN05Jn4WcgvbB4g/5S3V+2v/pFxeQcQXW8Czl5PQC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZeXrCRA9TVsSAnZWagAAxhAP/2QyKvCSn7HDqVJ3xAKC\nyI4oi170wdBmAZlyGf5VgDyUDGB7RAE29dZyqD3NCMFmsSj6rPtpKAw3Ur1T\npqoA+KVZzxJ+08mLcrvKXGNOBzsvQiLJhxvtQl2uPzmux5iRphNhKO3SPUJV\nOlETgdA69XUOTAPzJYyaOSAEUqBdBC9WAJ1ecngYJndysQ8NuieBuBOOaOhQ\n0qojYIzTiJbCUkEh5UA4wehu+Gs5zczGkF9YoksJcUHAA3wPc5qskxEak2CF\nDf7/xpjLWMlHqx5p8u8VaJvnNd8KxYYhPeEVWjXude34QKUARigfV6sxVYXj\n4dpfXaJyzo+AegpqgWq/v6+/1M3TMnnWuYRLX/axXqNtgvSFVqgcZGwnBc9y\nVbjjZwv2mPMo80hvj2Xe+h8nI+40ghSp61uPAEghq1PsRoPzsPKgyOe8qnkp\nvcx7l9Tr/tEx3N0dTVuAl5u63XbIWL9FLKokXVxwjCv2PzEremSWyTwDitCM\nBO2LoZPtyWIQyJCgfDy4tmVGYziCFjT18uFGL5DrD2gVRCwE70+Adel7/ieo\nQjtaRw73p4X3V9yiMkmyo3a/lJ8WW0kDLUaMEbE4O4+FIvDwXvlP7gPP1cdh\nu+LK43z4h5x4vmVuxnyUliNAEaLCkKos4zb8lgiB4kvKlba0CN+3NZqQH3KG\nA4P+\r\n=051Y\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"97ad96fe893bd5b40ec52e24fe46f4f9cd357a1a","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"ben@npmjs.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.10.7/node@v11.9.0+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"11.9.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^2.0.0","dateformat":"^3.0.0","handlebars":"^4.1.0","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.1"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.3_1550181866616_0.15789889020175196","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"conventional-changelog-writer","version":"4.0.5","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.5","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"fb9e384bb294e8e8a9f2568a3f4d1e11953d8641","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.5.tgz","fileCount":11,"integrity":"sha512-g/Myp4MaJ1A+f7Ai+SnVhkcWtaHk6flw0SYN7A+vQ+MTu0+gSovQWs4Pg4NtcNUcIztYQ9YHsoxHP+GGQplI7Q==","signatures":[{"sig":"MEQCIHYW3GLp1Lqe4QE6iY9DHTigk19JSvFLV2Ls5ss8yzXcAiBlzpos3qcZRqdTAZCawQFXW41BCeD6RYkTBvM935NwKQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55183,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr7vBCRA9TVsSAnZWagAA3jEP/19pUua4BqY+2ERdwwFc\nM1Lsc7NAdXDX++3275Jq/9+Kot/so4TvMXiF6Pe9yInpnGWNGOQRehKtrMQh\npdJ5dZN1wrjYuR6i5RiBN0n61vZXKuC5ZK0Tm526Xhf8F6K0t8I85sk6+K0X\nopJO4eCog2JL7v93eDyK7Efaw2m5tPSG9wxfVrxkRJp+uiHR5yP4pTRkLKGv\nCejrrlB2wwK3vcC08ol6MKAQDz9KklKhs+XIQPxux345aseB0mpZ3PBBsDZ0\nWi5xxrASy2mpRaWNVMjIhqmH8yzdedqpubLDc7Kzps5gjI5TE4vrIq1oY0iC\nWg2U/+lE+VbzcL81dHPWQI7XuuIkm9Xs2QnxqbC6Dkys0rMvGyfVpkFE/sDl\nfj0ebBmyksVTKLe3w7hWFcQoKa3jne2fHsTtS8SLc5OOc94xWQ4aB2qrxYQD\n9n3WKdzjarY/7mFvTvQDsQKopJjhiZm8KN1rPoTXLO1xflI6l/dDJNgDaLW9\n9m9tSbZt/llOh5oNfOvp4VNytfEI4WESe1NJH2mRofMro8RWUdNMaI04LrfP\nB7YCMm+nyhyajK93AhgXF/4SBooSE6utSbgeOych0RqyBaSDwRLf4vS2ilrl\n2xHZXwAIUwUdoOH7J3rXsUJlDocRWMH+NVWiFN8LurkMBPXrqUeDISkMBg/t\n9MyA\r\n=6iT7\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"f2be01bfa7a60da42728d4d0abafc7dc7ad3bcc4","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.12.0+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"11.12.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^5.5.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.1.0","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.2"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.5_1555020735943_0.8819389953763868","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"conventional-changelog-writer","version":"4.0.6","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.6","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"24db578ac8e7c89a409ef9bba12cf3c095990148","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.6.tgz","fileCount":11,"integrity":"sha512-ou/sbrplJMM6KQpR5rKFYNVQYesFjN7WpNGdudQSWNi6X+RgyFUcSv871YBYkrUYV9EX8ijMohYVzn9RUb+4ag==","signatures":[{"sig":"MEUCIQCtNPuI9Tp/jU+4AqeQfZpAQsA7cGRBTyugIdHXNzQ91AIgNQCQiSBL/EBemxcNWxilCsXdjTgy7ipdzaUkdtrbbjI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4G/PCRA9TVsSAnZWagAAjioP/jTqw0RsnVHLQ0mbONnv\nusir9mIlXLikphFe6TxioTXUF/HPxoTe0RQ29Ac+viuJetREiuF0MGQIrFBV\n44ETCuBrKCCc52tkzoJaag4TcvOwqtDb3e0Bq7YuJzWNW35uoRrXsiBNczn8\n1Z53d8v2uor0K5NH84YbeRIhaBj2okMdh2H0SU+z68zLvghhJaewvpCmZnYE\nV6YoEQ9HVFLY0STR37vdv/l6sam0t/PSsiZOkOZk53FsIUCdvFLy+0MklgI4\np7bdoB/GfMeARz8fz0GzrdNH9YaZM5jHKYfcPCYQQWeKjiJe3QkiwQcxxumB\nz3WodUSgz7oigf44JA6VGc8lXe2XXcwnFRVR/njhQN2AMAGN1RowihGYseGV\njQj+l8Yr0cWHL3R++yJnWvSJt4te19s7mK2il+7VMy2jXpjI1vfiW+BP90Su\nB+OuzEOixKff8SIjhMyGL4jhcWXDJvLXaq6abbBo0tLZKSiUoTy+a28+TX5+\nE7ETZWsCtNitnbPEhV0Z6sYsxQ0jzxvMwnCqcGzI0A5u5eK/T56ozbYGQz7T\nU2ImwxnqSo9la0F0UAr5Qp7ZtjNM44faa/IjqHzI0JuwX2EunzK3PkSApIHf\nuOcz8IPsocmcNjDozn8lvHxSWR2tHvYXdcnOSK56JhFhkSGld7F53dIhFSGg\nu8UG\r\n=zoX1\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"38f5508191f8afc1a8503d1fd24e2de6d05b8738","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.13.4/node@v11.12.0+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"11.12.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^6.0.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.1.0","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.2"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.6_1558212558357_0.10195454662973846","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"conventional-changelog-writer","version":"4.0.7","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.7","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"e4b7d9cbea902394ad671f67108a71fa90c7095f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.7.tgz","fileCount":11,"integrity":"sha512-p/wzs9eYaxhFbrmX/mCJNwJuvvHR+j4Fd0SQa2xyAhYed6KBiZ780LvoqUUvsayP4R1DtC27czalGUhKV2oabw==","signatures":[{"sig":"MEUCIGLTNKR7Dprp3R43RpPtOjcSFSCgNQvW9Bjs8hIG2eZCAiEAxQrdhRDGQ7xgbuGEEfMqqnFTwZpu+5AXHLZptNLJeqQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdPofNCRA9TVsSAnZWagAAV7MP/0plSm2+NGzm5L1Rd7n6\nXmFaP+M0ws8GOVw7leZ3RVNJNxNQOpasDWybH6Psf9CZEV221B1jKykI+1zQ\nYvtsO0N+ZGwNyz9NrtOpURhODTVWSy09rxs47xe/PxgYrpiPsYqxWHonV6m1\nKSOgSMDlg/q8e/5xkU2iZYq7Je5oLCr51767hHXMgWiE7oIgWDVRcpbmV55v\npSt6RIYd2oavjsfbOTl+oPylErprGdmZhHxmw4WL5Ct45SdUYCMPQ4YqA0S8\nlCiZxCQCeP08n0U7jD7zt/SlGnZ8qHobVugeoz9x/94k+wLuQbVQSrPsdibT\nmmn2BZ0UilJlj7LCnpivk+jCqGxC3pHkYDuFTnBpLZPeEOban1m1ioObfOAq\nomjWL5KeWhlzK3YciZhb8BwSekQTk5gS1FboUsnBmlhQaL9TrwmmQXvlHL89\nhHU4hnuYkmx6MjDlt2+W85PF75WXqb1kDAoCDui3LLRCo3UOTrfINRIj7/mb\n/9pwEudu+dLeJISsT5y6i2IfbjHr2lublNSzaFGn53+z/vxVbu6vQzrsJ+U4\nWvT6zfb3uWptBETd1Pn8I3NJ+ipjMb3Q0f8aLFwTt2UFk8T9hlvijMkj0fj5\nAdgjRgdoJprvfMBwgxwS3mtDvqscHu8p65FHB1HsAlTPMHgEKsRffUaziog9\ngL7v\r\n=nIRK\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"dadbbf8b1acbe4b3a8f345633bde3f4a4ad0bea4","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.4.0+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"12.4.0","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^6.0.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.1.2","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.2"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.7_1564379084781_0.8123485305183153","host":"s3://npm-registry-packages"}},"4.0.9":{"name":"conventional-changelog-writer","version":"4.0.9","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.9","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"44ac4c48121bc90e71cb2947e1ea1a6c222ccd7f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.9.tgz","fileCount":11,"integrity":"sha512-2Y3QfiAM37WvDMjkVNaRtZgxVzWKj73HE61YQ/95T53yle+CRwTVSl6Gbv/lWVKXeZcM5af9n9TDVf0k7Xh+cw==","signatures":[{"sig":"MEUCIQCySir+3jLrELAhMqnI40tjP/6xHM7Lcgth89CdLH2GCAIgTeER5Rr3XM0soLtXmCRF2GPsKxzJS+7nAoB+BH1mYOc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlh84CRA9TVsSAnZWagAA7PcP/35D9f44RDM+GEpe2sJ2\ncjmd6p2Q434yhRhMkHHRfNxQeS/NdUl9+pblG0fEsRJZYucAHfMUeTcSyEZD\nPUT23spGjfLPNwPSjK/9yAAwG6/AL3PCfq92YtYIo9yI4m7U22qWu/tvq/Od\n5F2VO2Q/GlLYzwhv1NwkILaDU3gJPy4IMZAG41imIpHqbceHhEgm6w42ZqJg\nKaGoj2LoQVVhz9dBk3N9zmhA0dlKyEudEDImKfvH1PiW2snEpceMd8W0x3YU\njs/PsEilT6HB+v+cflNlDh3Cm4P1bLfpMhO+rppLX+gdxS41ksNYTHq8Wtpz\n9P0kbqiNRCZFcrBHuBP7onEAs16kawFcDchzgWYDyRDVbZGoxC/7b19vUw3j\nJHsIsimfcz0LibUSi0e/eVe/jYjLLlTSr54XVDSSow8Wo7h74qiryO2ZIyHu\nEWlFcE/Ev7mURiw9FdI3C7FY2qWvKpKUsvdO+ZKIsD9VBl6UGScwsaz2jUYH\np2zzHH5xCjV/favTfMdgSJUlt5ytJOgXF7LWtFLpHDMtCmEr56TEAsVtbCSq\n3efv3fnuyztw4+HTx+FOpnFoBTL0dSXi7LDBXeVVR6j5FuhGWERaCNa9ZGnN\n+3AJwA0qrZ1pi+W9zs/0op4qrU7AjFTFXMQcMuAs8Nj2Rkrrzo8/jtUg9vLx\n73cW\r\n=Ks7k\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"7c1c8ad819b05c12c7d58c92ac386b45ada6f6a8","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"tommywo@o2.pl"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v10.16.3+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"10.16.3","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.2.1","semver":"^6.0.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.4.0","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.2"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.9_1570119479877_0.027793553522838854","host":"s3://npm-registry-packages"}},"4.0.10":{"name":"conventional-changelog-writer","version":"4.0.10","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.10","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"39f6458cca62a8151b3ce582a57ff71fd2b0ff7a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.10.tgz","fileCount":11,"integrity":"sha512-vtO9vBAVh7XnSpGLTB1BOGgsGTz1MdvFjzbSXLrtapWCHWwuVOZFgwdLhlS0MaXwlF1dksWdEb6tnr42Ie2INw==","signatures":[{"sig":"MEQCID9FLGT8Dw6Rm/oJSA2UtTvufkunOt6qPgbXAq7OuLTBAiAIZJqT7rcdZgFmBQA6NJ9RtwQBLSsMLf1pY5kwxmdIwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsVoZCRA9TVsSAnZWagAAraMP+gNcvhDiJK6UM4wUt4on\nrW0dkYzYv4nhZ/JBhJvgCX8QpizqW/SVtiIRojN+MEJArVDp8pTIiQVgAvUX\nMd6NAgldDonNvuzsckREOpJwa0EFIYfrASwHAyvjNvi+imGZqqUEQvSn1b+b\nCux1iWW/SddVooOly6w6H/EVr7O/yovXjhxUWiTEFwGyXb6LhZjQqoHXTLr9\nwN1JgD4C6Jalo3Mw0pBH8RLTSx3EFlkeFN35kqK4rXGIDMEp3y2kcKeIuHuu\nvBNtLkP1AQpg9T1azXUW8gW0QWAOvOWrpLGwZdzdFbMGYV/Vf3oeqJsh83nI\ncFrDvqEfQlHq7hJMKmy6GKMfeP+g582rM3m+RtzkL5gDP98K5h7RaaZLlnZ/\ncTghO5cOl/Fy02gHJCiIh9FTAOux0JcNO3ZWWJp1L6EUGdVLityyTyll6M/B\n3h6E8v29wO0WDXJ2q3lOGNLKYMj+2kNP0pGujJ4X+XrJRhzoojc8k82b3OvH\neqt0znrgnK90qClo9qyDZTNu/NfGyDVfZMxqfTgiir5fZ4r3jKWiTPTlGAUf\npJBWi3fmyhb58WCn1C8180RHR+uBVTcCm31bD/bRK7Oo8HApByfHlFStsAov\no0e2weiFIDoO526bIX1LOsc5WECjC/Ho73ZeiC5t39KnMem1xrjlmgl2yyjy\nPuNi\r\n=PBv0\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"e865af4df8d06795cebc7af09364ade19119e089","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"tommywo@o2.pl"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.18.2/node@v10.16.3+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"10.16.3","dependencies":{"meow":"^4.0.0","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.4.0","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.2"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.10_1571904024614_0.05311321662079771","host":"s3://npm-registry-packages"}},"4.0.11":{"name":"conventional-changelog-writer","version":"4.0.11","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.11","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"9f56d2122d20c96eb48baae0bf1deffaed1edba4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.11.tgz","fileCount":11,"integrity":"sha512-g81GQOR392I+57Cw3IyP1f+f42ME6aEkbR+L7v1FBBWolB0xkjKTeCWVguzRrp6UiT1O6gBpJbEy2eq7AnV1rw==","signatures":[{"sig":"MEYCIQCv7YtgmBm1xfOGX6I/ZuPSdUfthURMqEunlpY2dIS5SQIhALpAVB8kSdUX0fLr3mHfnvwo8BxO5N+ZxM/Ot9yJD4d5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdzdBqCRA9TVsSAnZWagAAYdoQAJfZYF6tVijKx4+7GLdM\nsUidDxwebtqefyBgvtoCgQlfg+sa8eMH2A7lJ/IbS1bnj9WXyFJOISpoZHB4\nLd4eGhQelBZqGLjYHizJFqi/zB60TLlVYmrY6MSu8uxmHaYWwc++N9Hgrvp2\nTRqW1O4SoqXs1wR/apvgSz0yO5aoOfISLBIYWXHGA++FjNjBVoH3thkDJqEJ\nWaIhEHDImcYF6bOtdifc+LvUf4TklII7Uay2nltP8nspkTf5OVeIJKZp3QA6\nWmLHz0JLDufbxwEkYdJzQam/LTTIr+WWxPt9qYEZKmz1o+OB+cLN43IYg0JZ\nIpCzgj2lJU/AsxuCrv8zKOWtzNxkA40mAv5DPWnGT4p9j1+INhkexk2ZI9ag\nDHxKtCYLOxZe78F1vAJWaQJSSvX+3btw/EmukWXx2gTPigl+6OVr0dP/mf5l\no3vhZFCqemNBVy0yXwNDeOx8TwGjCLnvLAjFxGBt3P/r15oo119Fo6EbXQ4s\n5OdqnVxa+djfYU8JbEQofUICxNbuWEiucyImAlbse/FfqDkQGHY1POO3ctuf\nClOyByNvEGHD+T5BwSumvQFh88c5j338TIrPXavuy/tUgE3AeL9D8CwuAtqy\nB7IsgEWxrQUt6tGuz9GHw6k7PGioC8a1HZYLWzzpHVqV5HGqT3cwy0OL2880\nkeYe\r\n=4NAX\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"79217815a7ce5f3d3f833961ce9a14bd454e5789","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"tommywo@o2.pl"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.18.4/node@v12.12.0+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"12.12.0","dependencies":{"meow":"^5.0.0","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.4.0","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.2"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.11_1573769322098_0.05657058264319237","host":"s3://npm-registry-packages"}},"4.0.15":{"name":"conventional-changelog-writer","version":"4.0.15","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.15","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"5189001589a010dba02a4f6395b04ba1a72a87f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.15.tgz","fileCount":11,"integrity":"sha512-vgRPs8YptHqitIiiSg0UDCKHtki799XVJOJOQNsrOUpsLQ2I4B1OnvgJKnPsZrePOxH/rjwjE/HD0FyA8OFMYg==","signatures":[{"sig":"MEYCIQCS/Lg7/ma/bEjijNfSRlWpNRopKsa7kH+1q5VFU8gBxwIhAJGerPhFJLl94XswTDavZthcAkvc+/ddIvv8+PLkOCAp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57572,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetbPXCRA9TVsSAnZWagAAIowP/0AWCFCbs7dXIJJ1Qrj9\nQsoRIvntNb20e27QxzMYeDCZvapan7r2+efv/IiK08Q4OnSVai3OOpeEsOns\nrEMRYPivG15a2agR5SEPOEGeQFXToJ7QpQ+vBg6mGPFnqWqur4rhfxDOKiU9\nVRFZGq0VWqAfphRZZTuH4MsYZpIy44r3snqZbjJiRnefFticIVNiMb51yNVs\niQGumV/1lDr22LlA5DvkoRpCLhT1qIwEdvHaf1SxqOV2mwovXbJWxwQcAc2J\nvaqAWmHcqL8zPTmthemgMo7vkb5bkkVoCyc//L0+hyqoTXl3JCYULidLvBIA\n6gfUQ8A3nEsj5iBlaZxe2k5M4FlsOsXeytHHQzHJ1b5xprmrWXtPsOM2o1tE\nuZxu5UWoKVqYdk+4xXVuZpNKM66MIKhacXiNPphtbNiFbP8ZjmyWb/FcuFdA\nZ1q99Q4pD91B+ZPcgOtAvAMgUkF7XoOkVQznHwO4LyH6NXBrmDIDmhVHOw9Z\nIotyuCdptDtpTWnLxVCHd2XAbUD1CTOdYvcplMl4uHy3eMQ6T/LmPd796NvK\nvhABmeYvd2vGjk/5c0t8VHADE8UfDXMK2ai3JUdRvlxk8s/EkscEObf5yfxq\nvuUFoCjcTkudLoqeEUgF/QgiwsoocQ2ST0hnVHCjFCQNmjVsKteAPtXOqxfb\n1RSB\r\n=cQHp\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"gitHead":"83643c5a0d2c4d7c9ba14cbf990ffbc577a51e8c","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.16.3+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"12.16.3","dependencies":{"meow":"^6.1.1","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.7.6","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.6"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.15_1588966359069_0.8058881210079978","host":"s3://npm-registry-packages"}},"4.0.16":{"name":"conventional-changelog-writer","version":"4.0.16","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.16","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"ca10f2691a8ea6d3c2eb74bd35bcf40aa052dda5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.16.tgz","fileCount":11,"integrity":"sha512-jmU1sDJDZpm/dkuFxBeRXvyNcJQeKhGtVcFFkwTphUAzyYWcwz2j36Wcv+Mv2hU3tpvLMkysOPXJTLO55AUrYQ==","signatures":[{"sig":"MEUCIDzgT69EByyF8PcckZJ6mmYSHBojCVDjETN94d4If9mwAiEAhwNT9qk3WlHYzC6rqo/ZRWyeXXVDw6NaEme1lhEs0AE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58013,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetboZCRA9TVsSAnZWagAAfhAP/3OClLUP7uHi2z9o6otR\nshDwXIksd03mi8Z+bLS/HoaWPTXmzknTav1wugZwj/i0GhRV9Iw781XetcmN\nz1Vv9eRkEGbZaEdCqKXToeOxF7UWYs0OypKWJN/z50cWsN73n1K6BetEE7jJ\nZEWn4LOxYXzZaLuy3balDIeJqDoZffmS2UgIH8kmD/oChKPwRkR+uKcmeTvf\ngMDOulUIAD+LqPGsParVdSdXwm/k7NLXbm/ZmlugrY4IkiF1Z4fCFHpLCzA/\nEv39PBY2CGxjXfMukOr5q0eHETHq0aI+ZhWMCsRTXKCn1l5vAzHWx8app1cr\ngfyT8dPF3NOJSo0hl3HPKN2wgRwwPIRnBdn6zmCAYyPJAqtZNNlr7Rvdg/Cx\nm5+h0Co/2mdt9TojlcCDe7k2LUt3R5Q+KxEtZM9PCvMGK9B+3STSPrnpL/ls\npbrQ9vlisiq0DXX1CEdljmKKfRgsXu0ysHsMKL8ebKAezzcp8dqfsFK3RCgy\nglPRbpmPOBYt664uu4qfMw12drsdn2JcObqiRnvyZCeDO+IkOA40PdsaJzsz\nTAlEvMX1MIWslENPcYtTrf/917+//2Q/0ib/eyf/Vrd4nTEfPtEILOXoJ9V1\nFBe612IpzbzugB7iQQaBbhr2JgOX6ju9QzkmVo9CUBsaSPA4xHSM9HPMXX5k\nnGMx\r\n=DT6z\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"gitHead":"c5ae3ab67c59e04f79eb19d317c92800df618435","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.16.3+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"12.16.3","dependencies":{"meow":"^7.0.0","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.7.6","compare-func":"^1.3.1","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.6"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.16_1588967961417_0.6842926541845551","host":"s3://npm-registry-packages"}},"4.0.17":{"name":"conventional-changelog-writer","version":"4.0.17","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.17","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"},{"name":"dev","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"4753aaa138bf5aa59c0b274cb5937efcd2722e21","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.17.tgz","fileCount":11,"integrity":"sha512-IKQuK3bib/n032KWaSb8YlBFds+aLmzENtnKtxJy3+HqDq5kohu3g/UdNbIHeJWygfnEbZjnCKFxAW0y7ArZAw==","signatures":[{"sig":"MEUCIQDlKR2BL30lmXgXGAe3pklvfQuiuMqwypImjmZeosUjlgIgbIvAYPBHhvqbx9zGkfkyuckJAOlxoUhPJmyvSlj8zew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe7VVMCRA9TVsSAnZWagAAMjsQAKMNhlyZHkCemkOf/qN9\nwoXeG+DILhLLd6GxnnZqk5AGGRGDMvJyQezSJpCbqNh1b/rj2I18/dhd9s8w\nC6cwL1tSi8ISE+DH+nuJnYZy80D7q4vXB8AjjSd8YlvlGoJ7J0n3TYg2+mXu\nSdFDzMdKIO/zb2Ynwsdf/L1PW5p4Na96HC+EJ67Bbm9Kg54Ryd3dp2zl8Ndb\njZNg0jvEjMdQ+a+fP1MECs5MDdnoO5B1QZvlDTZXnbNEjfIVwIIRmyfceIN/\n3RzeQyNsr9xT8kjWSN1pV3G7j35ANW+O9c6jonSitdomT2FzxPqHAGgQ9UYC\n582bHU7B+NgfsQwV+H35AZfHUo7bStz+CC/6aqCb1OQrXL2Hbqxc3NEjQBtj\n0iaSvtULBMFpvu4WBn5AaJia4jyO9Sr2oONOeA3BQwIQtGyDb1eYUAdjGqzk\nvb7EuCXbYxD2ZhxpYU8h1rv6PYDFvhuNTPHrOMZH9YsTeSEmwMa0G1SEoln0\nM9xDij2RzvdQm5/zV6m1HEXy+fIeyzg8dXqI0NQJBjALVg3szgymBV9pmnX/\nnzzNkdiYjSoITG9PmlaU3SEL1HXSbdg8sLk1+GwvjJy69/dG4nZg8mH6kZAS\nqcrVD9uV/j6t9cJ8yKmjlqAMpG3WFTdSTmOhUKJS2MHXYYY8aCDSeH3/wHi8\n4iJ4\r\n=loiW\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"gitHead":"3dedddc397e7cbcf5a2ff971ca933992b9e4d11f","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.16.3+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"12.16.3","dependencies":{"meow":"^7.0.0","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^3.0.0","dateformat":"^3.0.0","handlebars":"^4.7.6","compare-func":"^2.0.0","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.6"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.17_1592612172101_0.38565508361325485","host":"s3://npm-registry-packages"}},"4.0.18":{"name":"conventional-changelog-writer","version":"4.0.18","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.0.18","maintainers":[{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"tommywo@o2.pl"},{"name":"dev","email":"hutson@hyper-expanse.net"},{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"gustaf.dalemar@gmail.com"},{"name":"dev","email":"hello@mario-nebl.de"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"10b73baa59c7befc69b360562f8b9cd19e63daf8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.0.18.tgz","fileCount":11,"integrity":"sha512-mAQDCKyB9HsE8Ko5cCM1Jn1AWxXPYV0v8dFPabZRkvsiWUul2YyAqbIaoMKF88Zf2ffnOPSvKhboLf3fnjo5/A==","signatures":[{"sig":"MEUCIQDi5HvqlcSKXr8l5XgPXdHd/GLRWffYSuo/xSWnFH1SggIgEZ/SCtsq856w9jtewR3D+ADuPvamI8LPNDmEOdkD9IY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59012,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfo1R9CRA9TVsSAnZWagAAg4wP/3OBULuora60YwCAEwA4\nLe/eRBrMrLBPNadCQVtOlz5PIlU07SMp8FNqDHX8pMiCndgvEkg5aEnAO/9/\ngb9/l6q7nykIfrc7MYoDCrQ+Bd9M8Iy9wbcuD2VL3xgACJyI854JZZNZO0l+\newmpqZlWLie6V9IkgQgB3c1+sDCi3FgIHoASlWCCAtj/0HNT8dHCuG6/AVIg\nS6Avx83TClsndNcTKdkjcCHq1b1w9PFeR+olDUQk9XKP6PvsFfEgTn7gPult\n4jS2ttILlJoX0CpmJxmvcYt69E/y5gKTiP6o30UEeKvBOBIrRK2JQcLczL3x\nsztQawQVW2t2vlDcKFYrz4t41HXFpqtd8x3rvSB5DCLjTCXsDoQnTPkYEb9h\nfDp2NM+1fnUo0/nGs05vPI4FnK6O4jPzx9aF3bwrAwx3X8rpUF2d0x+8xK9D\nP2lBlbIm4frwwmZGLKNnuQxg0A6bEMhT+08ougnTWExunItmmQxvUIC04ja2\nzQcyQVxTgMgjGPv1NasvBf2cOwW47KsJq8esgJFqPV3nZA8fQpgUZ8I61UzM\nND+CChsVkkhURD4PE0p+jRIZdAOeHr8R4NjIw/QfeAWbQR64rMuni10x5/dr\ntn0j+0kDXiDzEd4mWf0CPzzVe4jps8916ioF3VCXNs+ThDwDu9E5HYyJc2nQ\nWe2Y\r\n=LXpg\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"gitHead":"cc567b98facf71315f4b1620d81ce01d155efaca","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v10.21.0+x64 (darwin)","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"10.21.0","dependencies":{"meow":"^8.0.0","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^4.0.0","dateformat":"^3.0.0","handlebars":"^4.7.6","compare-func":"^2.0.0","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.7"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.0.18_1604539517306_0.6575903145376076","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"conventional-changelog-writer","version":"4.1.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@4.1.0","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"1ca7880b75aa28695ad33312a1f2366f4b12659f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-4.1.0.tgz","fileCount":11,"integrity":"sha512-WwKcUp7WyXYGQmkLsX4QmU42AZ1lqlvRW9mqoyiQzdD+rJWbTepdWoKJuwXTS+yq79XKnQNa93/roViPQrAQgw==","signatures":[{"sig":"MEUCIQDQr1lpny8nevIJF3yZMjByCpBZP5dImMF9MPg9GwQKGwIgWP9Fejbg043/QB75SJO1d8Bqj4Zb3lMF2/HM6AJtBW0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61037,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf68ElCRA9TVsSAnZWagAAB3kP/RcCtea8/rJ9nQdaB8GW\n+hwdPhYmOjJwbN3QO0LclKHp1fI6LXdIwR6VDXgl4QtQEkKGYqAn/h/QBUqM\nZii0Zsz0jFvs/0OpGlAH+rZdAJ0BopcRDJbNW/xrGlwHx8yI8bB68T4f0O6I\n72IusZIkgzdepMb76lwLv2E9m1kaCVS9MpdtzjsZe6HvA4YC5MQvJuM44M4i\nhN4VaC+L9nBQc7R2YqrwQ1M2JTAahLs4ONUGNh469Nsj9GmWRvZ5pmH/iVkt\nzfqkIY27GIlbYbY3SL8SCaCumG/VxqTREbEAaTVX49Sil5DdLpJag9yT7aaR\n/Cy+sLnZvsolw75pUzFR36aqc4OFam/VR4W3h2E8RyX4LocdI1/BzWivajDN\nKC9N9k/fUOflJEeC8zOK6JNevtqEsolR95K28wPPkPYnylrkFme/sO+mrLpk\nfqnXvDsrxa7+Cshuy4GlxlbuhUw3pNsKYPQcbh8XzN0KJcUmBWgznQEj8EUS\nKvv7gsUuuHF3EW3AhIM/hXg20+h6rLC/rwbnp2KDzZS9K5BvcDm+4ws4kn2W\nWoG2sKKY1RkIPxO9hPiZA3N2DMLo2UryiHqNXo9KMEzlNMSe9Z5UrdnFhQ22\neJx964/52U4wB9p+2xFKUkWw3HzQ3EokuQ3OkI3qot+JtJ9B4Ia96wbXeR5B\n4snC\r\n=uUth\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe+oss-bot@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.8","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"14.15.1","dependencies":{"meow":"^8.0.0","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^4.0.0","dateformat":"^3.0.0","handlebars":"^4.7.6","compare-func":"^2.0.0","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.7"},"_hasShrinkwrap":false,"devDependencies":{"dedent":"^0.7.0","forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_4.1.0_1609285924988_0.11516457902321964","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"conventional-changelog-writer","version":"5.0.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@5.0.0","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"c4042f3f1542f2f41d7d2e0d6cad23aba8df8eec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-5.0.0.tgz","fileCount":11,"integrity":"sha512-HnDh9QHLNWfL6E1uHz6krZEQOgm8hN7z/m7tT16xwd802fwgMN0Wqd7AQYVkhpsjDUx/99oo+nGgvKF657XP5g==","signatures":[{"sig":"MEYCIQCw8sXmETLJ50ux3BdldNM1EY6AdSrntOcmuAs+gi2UBAIhAPaq7QdDHbQFz86fvVSWBsXG1uU/gDomm3ecFTZFOmaG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7QI7CRA9TVsSAnZWagAANgYP/1OuzhSjGhrrzFsBGK2V\nfyFJngtIqeQj/MyKdHH2OD5n6y8d+SEGNZO2pbF8CJDhXfdSJD6ZJbbzzReI\nG1PW7aglxrYD1FKqjUprkmR1ME3ioq/k1ggXYhQGL6jtDbYKhOlph/9BFxtu\n3lcYXF3A1FBQ+BNzpuB7FzC8YW5rUvdXxPPbu4gtHpNwyn7nKqpAwEpzvDQn\nde4OHcgLUR1L6ptVDHiq+IpBLTADQSmCwLdVx4037Au39gT3hPb1dDDUP+FB\nDBpVr6CbMvzz16wBW9z6cVNtAJAkgfJjDUAXjNNOAhMixg8YlJTRp2ZFidtr\nq1WSqCliETmJFpFGj7MBKvhvGX4rbgmI1ZyUyVOxEZbAgLbPRRpuobgyPaTc\n046pP68XkAACbZiQz1UVywuMzGAIY7rOl1BHgILxQ8KCN0T2o3TA246tz3bU\n7XKyy/rYolg82XlG/InmiGrk3lTJ3tx/to2rf/RTbnA+iuwUk9/df1g9ebhT\nkinVhnot5uyrB3hBTHmdaI7JBbaHkK08/IzF8eA9Lno8RDOXwsXjeXAQ4JAA\nuVsTFhbCXglqBoKeS83fdxRXoBdUZNk5i0v4hLQG61VQiV8z/yl5Vd/LH+xp\nP8kezG94BGEvEtu2n8FtIVcTKyWzU2toLGrCzO5oBcGX5XYYQFNT+De5P7oq\nlfio\r\n=I9xt\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe+oss-bot@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.8","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"14.15.1","dependencies":{"meow":"^8.0.0","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^4.0.0","dateformat":"^3.0.0","handlebars":"^4.7.6","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.7"},"_hasShrinkwrap":false,"devDependencies":{"dedent":"^0.7.0","forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_5.0.0_1609368123069_0.8453189474401184","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"conventional-changelog-writer","version":"5.0.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@5.0.1","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"e0757072f045fe03d91da6343c843029e702f359","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz","fileCount":11,"integrity":"sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==","signatures":[{"sig":"MEUCIQDhIqc5aZMeQnf/FsRW47GqxuEiNSDoXyJPhmYLp4GRWgIgIkv0AW8tdxk8WzYWNkQz3f6p/lbVmg9kmdktgMYhw3w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61926,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzNUjCRA9TVsSAnZWagAAv4EP/152yWahLpOAGHNP+kaY\nvxqL0/zouwuUK9gRUEkA4egYVyxgRJyrt19h+dN7gaUeE//9DGuHA7AL9Gz2\nEsigVYcRcBQ2PDPKUAREiLEcGZVfQODcuq5SOckklwk89dP2IkmqAazx5eWU\nxof95yEEwHJCEgXk01CYQ5aATOvD8DgpaV1bRtNrxpmaaS74tyPR4VYd3YVt\nr1pRSstO8Z8qL0ThEW+VfL8mJ/Y9WfICsvCYxZKwP0GMiRLuwYp1TzDsWVjI\nOYqwd/bS7XXF5Z5S3Jc9qFgIUrppz4W8bbp/WyxXIQ3LrD1hlF2TENGfmm7/\nBsuVsByn+M2/ybPOimmaFjHw2w2aMRhzgB1Ko9DEUoZoO5TIh4fO4DastRnb\nMFdm5BouoH/bj9snvcxzGLaUocqn9G9bjiqmNjbhiqeN3zOkXTEeFnHIhTSi\nLVc8u55ugDtv2g1CnonfcMSRBpVN3gLAgjuNjNDH0EKpRUqT5pCewT46WPUM\nhHT7R0fySPnBMQ1og7Dm7voTIu4cOcOewZ8k9byQVi7xvtO5nrDw0wMmIv9S\nJhSOxAWhFedYiOhHjqVxA7pHO3aO++cmBW3/5WXXpmeKHXaStCt8erlOvyfj\nHJ2akLsQ7D+qHac3eZQbpBOlHrstux7t5iMvn/SCxCb1OCcBl+Q8I6feW//L\nBlzR\r\n=x8/z\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe+oss-bot@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.15","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"14.18.2","dependencies":{"meow":"^8.0.0","split":"^1.0.0","lodash":"^4.17.15","semver":"^6.0.0","through2":"^4.0.0","dateformat":"^3.0.0","handlebars":"^4.7.7","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^2.0.7"},"_hasShrinkwrap":false,"devDependencies":{"dedent":"^0.7.0","forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_5.0.1_1640813858970_0.4051766543164337","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"conventional-changelog-writer","version":"6.0.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@6.0.0","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"8c8dea0441c6e648c9b25bb784e750d02f8002d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-6.0.0.tgz","fileCount":10,"integrity":"sha512-8PyWTnn7zBIt9l4hj4UusFs1TyG+9Ulu1zlOAc72L7Sdv9Hsc8E86ot7htY3HXCVhXHB/NO0pVGvZpwsyJvFfw==","signatures":[{"sig":"MEUCIQCKGZEQY6p30W0BNnSdBC8oy6LDNzYgFomTsOkc3eOa8gIgPXxTPPf7sa41gq4lPA2ZRgPz576NhOO9RKQmky8h5as=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31093},"_from":"file:conventional-changelog-writer-6.0.0.tgz","engines":{"node":">=14"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe+oss-bot@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.18","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"14.21.3","dependencies":{"meow":"^8.1.2","split":"^1.0.1","semver":"^6.3.0","dateformat":"^3.0.3","handlebars":"^4.7.7","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"dedent":"^0.7.0","forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_6.0.0_1686066125967_0.5659053462741219","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"conventional-changelog-writer","version":"6.0.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@6.0.1","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.js"},"dist":{"shasum":"d8d3bb5e1f6230caed969dcc762b1c368a8f7b01","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz","fileCount":10,"integrity":"sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==","signatures":[{"sig":"MEUCIQCjj8hDKSfZeWGvCsRfmaXHXpgOHS5bVpCtD0z9JHACOwIgctsUWAs6izaBaN7mppfbRWa6WqI2oj6jvje1viRqaNY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31523},"_from":"file:conventional-changelog-writer-6.0.1.tgz","engines":{"node":">=14"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"dev","email":"bencoe+oss-bot@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.18","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"14.21.3","dependencies":{"meow":"^8.1.2","split":"^1.0.1","semver":"^7.0.0","dateformat":"^3.0.3","handlebars":"^4.7.7","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"dedent":"^0.7.0","forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_6.0.1_1688914244538_0.5447720317364373","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"conventional-changelog-writer","version":"7.0.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@7.0.0","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.mjs"},"dist":{"shasum":"257c06aa9025edcdf8907d499db3f088571d7e9c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-7.0.0.tgz","fileCount":10,"integrity":"sha512-9/6vTDd3wDbH9yayZNOq53UWI4QqYlbiLBtWf+alsQA/bBFHG+k3KnQ8Fu/xzHqsbQfzPg3w1H1piWYn/GD9Tw==","signatures":[{"sig":"MEUCIQDN9cmzp75qybm4C8oWPFpNxeLij+E+QpnSyBvjpn2WmQIgMmD40PZxsJ1QiZWoA+tLgu6j1mU6i+KL3l/DZ8W7jJM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31413},"_from":"file:conventional-changelog-writer-7.0.0.tgz","engines":{"node":">=16"},"_npmUser":{"name":"dev","email":"bencoe+oss-bot@gmail.com"},"_resolved":"/tmp/08c193f3f1f647443f852f925630e241/conventional-changelog-writer-7.0.0.tgz","_integrity":"sha512-9/6vTDd3wDbH9yayZNOq53UWI4QqYlbiLBtWf+alsQA/bBFHG+k3KnQ8Fu/xzHqsbQfzPg3w1H1piWYn/GD9Tw==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"8.19.4","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"16.20.2","dependencies":{"meow":"^12.0.1","semver":"^7.5.2","split2":"^4.0.0","handlebars":"^4.7.7","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"dedent":"^1.0.0","forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_7.0.0_1693141328352_0.2108885227767252","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"conventional-changelog-writer","version":"7.0.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@7.0.1","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"cli.mjs"},"dist":{"shasum":"e64ef74fa8e773cab4124af217f3f02b29eb0a9c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-7.0.1.tgz","fileCount":10,"integrity":"sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==","signatures":[{"sig":"MEUCIQCJfpS/rmlLJw81K5FwVXM+JlhU5SaKsZKyJsu1RtzL5gIga4tnZmYNbFIrrqKFFFROkb3ECb0UjW7QKE3cAl3wyAo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32262},"_from":"file:conventional-changelog-writer-7.0.1.tgz","engines":{"node":">=16"},"_npmUser":{"name":"dev","email":"bencoe+oss-bot@gmail.com"},"_resolved":"/tmp/7937b49c03a8107114b17aca1bacfff8/conventional-changelog-writer-7.0.1.tgz","_integrity":"sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"8.19.4","description":"Write logs based on conventional commits and templates","directories":{},"_nodeVersion":"16.20.2","dependencies":{"meow":"^12.0.1","semver":"^7.5.2","split2":"^4.0.0","handlebars":"^4.7.7","json-stringify-safe":"^5.0.1","conventional-commits-filter":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"dedent":"^1.0.0","forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_7.0.1_1694390570293_0.20270296320838588","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"conventional-changelog-writer","version":"8.0.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@8.0.0","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"dist/cli/index.js"},"dist":{"shasum":"81522ed40400a4ca8ab78a42794aae9667c745ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-8.0.0.tgz","fileCount":49,"integrity":"sha512-TQcoYGRatlAnT2qEWDON/XSfnVG38JzA7E0wcGScu7RElQBkg9WWgZd1peCWFcWDh1xfb2CfsrcvOn1bbSzztA==","signatures":[{"sig":"MEYCIQCh3r+qtBV6WYp/b0n+U26tARoo0PTYZWEu9mKGk45/vwIhAMAAOvmsx9Excl7zHsKzgFAGNf6I9gcceRHZ5OPX/9uN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":89221},"type":"module","_from":"file:conventional-changelog-writer-8.0.0.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"dev","email":"bencoe+oss-bot@gmail.com"},"_resolved":"/tmp/534e6cb22221b9f4eb0d2ba20a3f5596/conventional-changelog-writer-8.0.0.tgz","_integrity":"sha512-TQcoYGRatlAnT2qEWDON/XSfnVG38JzA7E0wcGScu7RElQBkg9WWgZd1peCWFcWDh1xfb2CfsrcvOn1bbSzztA==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-changelog-writer"},"_npmVersion":"10.5.0","description":"Write logs based on conventional commits and templates.","directories":{},"_nodeVersion":"18.20.2","dependencies":{"meow":"^13.0.0","semver":"^7.5.2","handlebars":"^4.7.7","@types/semver":"^7.5.5","conventional-commits-filter":"^5.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_8.0.0_1714777034150_0.25164745076212136","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"conventional-changelog-writer","version":"8.0.1","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@8.0.1","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"danon0404@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"dist/cli/index.js"},"dist":{"shasum":"656e156ea0ab02b3bb574b7073beeb4f81c5b4bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-8.0.1.tgz","fileCount":49,"integrity":"sha512-hlqcy3xHred2gyYg/zXSMXraY2mjAYYo0msUCpK+BGyaVJMFCKWVXPIHiaacGO2GGp13kvHWXFhYmxT4QQqW3Q==","signatures":[{"sig":"MEUCIQD8LJdwQYGAUje7jFrI+oKkxsLgBxCceOvTMdlst2HIAAIgSCS8noF3oYapxjlPWdYdYr93pwRpZRibAd5HeASFAFs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":89457},"type":"module","_from":"file:conventional-changelog-writer-8.0.1.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"dev","email":"danon0404@gmail.com"},"_resolved":"/tmp/50c1ceef3f8253174b56c2d9ebcdfa06/conventional-changelog-writer-8.0.1.tgz","_integrity":"sha512-hlqcy3xHred2gyYg/zXSMXraY2mjAYYo0msUCpK+BGyaVJMFCKWVXPIHiaacGO2GGp13kvHWXFhYmxT4QQqW3Q==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-changelog-writer"},"_npmVersion":"10.8.2","description":"Write logs based on conventional commits and templates.","directories":{},"_nodeVersion":"18.20.6","dependencies":{"meow":"^13.0.0","semver":"^7.5.2","handlebars":"^4.7.7","conventional-commits-filter":"^5.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_8.0.1_1739734075159_0.7088551985471663","host":"s3://npm-registry-packages-npm-production"}},"8.1.0":{"name":"conventional-changelog-writer","version":"8.1.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@8.1.0","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"danon0404@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"dist/cli/index.js"},"dist":{"shasum":"d82381bcbc4ac69da34e7f4cd2f7bf694ab7e9c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-8.1.0.tgz","fileCount":49,"integrity":"sha512-dpC440QnORNCO81XYuRRFOLCsjKj4W7tMkUIn3lR6F/FAaJcWLi7iCj6IcEvSQY2zw6VUgwUKd5DEHKEWrpmEQ==","signatures":[{"sig":"MEYCIQDsHUhNBZaF5X74ahiRJxjzzBypqiEukMSgeE/L6860dwIhAM5PSR/IQsJv1bhwUKIYcycp5Ljt++Wa+bR4X/H657nG","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":89961},"type":"module","_from":"file:conventional-changelog-writer-8.1.0.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"dev","email":"danon0404@gmail.com"},"_resolved":"/tmp/e3537d7d952132bca6f7b319357e9866/conventional-changelog-writer-8.1.0.tgz","_integrity":"sha512-dpC440QnORNCO81XYuRRFOLCsjKj4W7tMkUIn3lR6F/FAaJcWLi7iCj6IcEvSQY2zw6VUgwUKd5DEHKEWrpmEQ==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-changelog-writer"},"_npmVersion":"10.8.2","description":"Write logs based on conventional commits and templates.","directories":{},"_nodeVersion":"18.20.8","dependencies":{"meow":"^13.0.0","semver":"^7.5.2","handlebars":"^4.7.7","conventional-commits-filter":"^5.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_8.1.0_1747683985880_0.015412104712378971","host":"s3://npm-registry-packages-npm-production"}},"8.2.0":{"name":"conventional-changelog-writer","version":"8.2.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@8.2.0","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"danon0404@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"dist/cli/index.js"},"dist":{"shasum":"1b77ef8e45ccc4559e02a23a34d50c15d2051e5a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-8.2.0.tgz","fileCount":49,"integrity":"sha512-Y2aW4596l9AEvFJRwFGJGiQjt2sBYTjPD18DdvxX9Vpz0Z7HQ+g1Z+6iYDAm1vR3QOJrDBkRHixHK/+FhkR6Pw==","signatures":[{"sig":"MEQCIA+VwSlSGzNRh0mF3d9UigaIj295R9Qk2nDE0GxWj/s0AiAs8yi7k9xD1y+7SJHzutjNZ6yVaHdx/VTwGmtC879qzg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":91436},"type":"module","_from":"file:conventional-changelog-writer-8.2.0.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"dev","actor":{"name":"dangreen","type":"user","email":"danon0404@gmail.com"},"email":"danon0404@gmail.com"},"_resolved":"/tmp/e6c695ad8a23654c28594a13788114e3/conventional-changelog-writer-8.2.0.tgz","_integrity":"sha512-Y2aW4596l9AEvFJRwFGJGiQjt2sBYTjPD18DdvxX9Vpz0Z7HQ+g1Z+6iYDAm1vR3QOJrDBkRHixHK/+FhkR6Pw==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-changelog-writer"},"_npmVersion":"10.8.2","description":"Write logs based on conventional commits and templates.","directories":{},"_nodeVersion":"20.19.3","dependencies":{"meow":"^13.0.0","semver":"^7.5.2","handlebars":"^4.7.7","conventional-commits-filter":"^5.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_8.2.0_1752097909683_0.6908135589457614","host":"s3://npm-registry-packages-npm-production"}},"8.3.0":{"name":"conventional-changelog-writer","version":"8.3.0","keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-changelog-writer@8.3.0","maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"danon0404@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-changelog-writer":"dist/cli/index.js"},"dist":{"shasum":"7cd7a208938190567ed9a8250924e6d8514eb801","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-8.3.0.tgz","fileCount":49,"integrity":"sha512-l5hDOHjcTUVtnZJapoqXMCJ3IbyF6oV/vnxKL13AHulFH7mDp4PMJARxI7LWzob6UDDvhxIUWGTNUPW84JabQg==","signatures":[{"sig":"MEUCIH21SZg9QVOb4bXLDZS7XcdNhYXBuf/0e/QtwpnH9fD+AiEAhPWitzLEKaxTx1GvqER6ntJCCXyBsNzutPkketWAYNA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":89883},"type":"module","_from":"file:conventional-changelog-writer-8.3.0.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"dev","email":"danon0404@gmail.com"},"_resolved":"/tmp/60ab690dc8a4fb32841f6a322eef090c/conventional-changelog-writer-8.3.0.tgz","_integrity":"sha512-l5hDOHjcTUVtnZJapoqXMCJ3IbyF6oV/vnxKL13AHulFH7mDp4PMJARxI7LWzob6UDDvhxIUWGTNUPW84JabQg==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-changelog-writer"},"_npmVersion":"10.8.2","description":"Write logs based on conventional commits and templates.","directories":{},"_nodeVersion":"20.20.0","dependencies":{"meow":"^13.0.0","semver":"^7.5.2","handlebars":"^4.7.7","@simple-libs/stream-utils":"^1.2.0","conventional-commits-filter":"^5.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-changelog-writer_8.3.0_1772394307686_0.5077672742194641","host":"s3://npm-registry-packages-npm-production"}},"8.4.0":{"name":"conventional-changelog-writer","type":"module","version":"8.4.0","description":"Write logs based on conventional commits and templates.","author":{"name":"Steve Mao","email":"maochenyan@gmail.com","url":"https://github.com/stevemao"},"license":"MIT","homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme","repository":{"type":"git","url":"git+https://github.com/conventional-changelog/conventional-changelog.git","directory":"packages/conventional-changelog-writer"},"bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"keywords":["conventional-changelog-writer","changelog","conventional","commits","templates","writer","writing","logs"],"engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"dependencies":{"@simple-libs/stream-utils":"^1.2.0","handlebars":"^4.7.7","meow":"^13.0.0","semver":"^7.5.2","conventional-commits-filter":"^5.0.0"},"bin":{"conventional-changelog-writer":"dist/cli/index.js"},"_id":"conventional-changelog-writer@8.4.0","_integrity":"sha512-HHBFkk1EECxxmCi4CTu091iuDpQv5/OavuCUAuZmrkWpmYfyD816nom1CvtfXJ/uYfAAjavgHvXHX291tSLK8g==","_resolved":"/tmp/a7240c6ad080c44eb9b8b858f4169ce6/conventional-changelog-writer-8.4.0.tgz","_from":"file:conventional-changelog-writer-8.4.0.tgz","_nodeVersion":"20.20.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-HHBFkk1EECxxmCi4CTu091iuDpQv5/OavuCUAuZmrkWpmYfyD816nom1CvtfXJ/uYfAAjavgHvXHX291tSLK8g==","shasum":"600bfb4c98ccf0a31baddf8a1305f229072faf1f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-changelog-writer/-/conventional-changelog-writer-8.4.0.tgz","fileCount":48,"unpackedSize":91531,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIC7P+wASSqNpxu5N54j2qwoOUlyzh5K+HWSbhspbWYuqAiEAkjpch6nTcF8ZHy0Bk+weAuDSoek8Atzj1Fz3gnh+Cp8="}]},"_npmUser":{"name":"dev","email":"danon0404@gmail.com"},"directories":{},"maintainers":[{"name":"dev","email":"bencoe@gmail.com"},{"name":"dev","email":"bencoe+oss-bot@gmail.com"},{"name":"dev","email":"danon0404@gmail.com"},{"name":"dev","email":"maochenyan@gmail.com"},{"name":"dev","email":"moilanen.tapani@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/conventional-changelog-writer_8.4.0_1772662096589_0.6216899284553941"},"_hasShrinkwrap":false}},"name":"conventional-changelog-writer","time":{"created":"2015-07-03T12:34:45.439Z","modified":"2026-03-04T22:08:16.875Z","0.0.16":"2015-07-03T12:34:45.439Z","0.0.17":"2015-07-14T03:48:58.019Z","0.0.18":"2015-07-17T10:45:32.278Z","0.1.0":"2015-07-23T05:58:03.214Z","0.1.1":"2015-07-23T12:04:41.683Z","0.2.0":"2015-07-23T12:39:06.026Z","0.2.1":"2015-07-24T06:36:26.129Z","0.3.0":"2015-08-03T11:21:29.891Z","0.3.1":"2015-08-06T06:34:08.732Z","0.3.2":"2015-08-07T06:17:50.295Z","0.4.0":"2015-09-23T00:10:25.822Z","0.4.1":"2015-09-30T07:11:36.275Z","0.4.2":"2016-01-18T12:53:25.540Z","0.5.0":"2016-02-02T11:14:50.174Z","0.5.1":"2016-02-03T10:19:41.858Z","1.0.0":"2016-02-05T12:37:03.323Z","1.0.1":"2016-02-06T09:17:16.110Z","1.0.2":"2016-02-06T12:52:07.541Z","1.0.3":"2016-02-06T13:29:54.268Z","1.1.0":"2016-02-08T12:55:32.635Z","1.1.1":"2016-02-29T09:51:44.650Z","1.2.0":"2016-04-17T05:51:02.410Z","1.2.1":"2016-04-19T10:30:10.026Z","1.3.0":"2016-05-08T12:42:48.833Z","1.4.0":"2016-05-10T11:56:13.716Z","1.4.1":"2016-05-10T13:06:53.719Z","2.0.0":"2017-07-17T23:30:25.719Z","2.0.1":"2017-09-01T03:16:27.678Z","2.0.2":"2017-11-13T00:17:19.740Z","2.0.3":"2017-12-08T07:13:17.036Z","3.0.0":"2018-01-29T02:12:38.664Z","3.0.2":"2018-02-13T16:27:54.718Z","3.0.3":"2018-02-20T04:20:34.677Z","3.0.4":"2018-02-24T22:12:46.149Z","3.0.5":"2018-03-22T13:47:52.388Z","3.0.6":"2018-03-27T15:11:59.742Z","3.0.7":"2018-03-27T15:26:08.317Z","3.0.8":"2018-03-27T15:35:05.066Z","3.0.9":"2018-03-28T02:57:54.991Z","4.0.0":"2018-05-29T14:27:40.913Z","4.0.2":"2018-11-01T06:43:56.412Z","4.0.3":"2019-02-14T22:04:26.772Z","4.0.5":"2019-04-11T22:12:16.174Z","4.0.6":"2019-05-18T20:49:18.509Z","4.0.7":"2019-07-29T05:44:44.951Z","4.0.9":"2019-10-03T16:18:00.074Z","4.0.10":"2019-10-24T08:00:24.761Z","4.0.11":"2019-11-14T22:08:42.257Z","4.0.15":"2020-05-08T19:32:39.194Z","4.0.16":"2020-05-08T19:59:21.513Z","4.0.17":"2020-06-20T00:16:12.237Z","4.0.18":"2020-11-05T01:25:17.437Z","4.1.0":"2020-12-29T23:52:05.183Z","5.0.0":"2020-12-30T22:42:03.218Z","5.0.1":"2021-12-29T21:37:39.138Z","6.0.0":"2023-06-06T15:42:06.218Z","6.0.1":"2023-07-09T14:50:44.698Z","7.0.0":"2023-08-27T13:02:08.543Z","7.0.1":"2023-09-11T00:02:50.676Z","8.0.0":"2024-05-03T22:57:14.288Z","8.0.1":"2025-02-16T19:27:55.336Z","8.1.0":"2025-05-19T19:46:26.084Z","8.2.0":"2025-07-09T21:51:49.848Z","8.3.0":"2026-03-01T19:45:07.830Z","8.4.0":"2026-03-04T22:08:16.722Z"},"readmeFilename":"README.md","homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme"}