{"maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"danon0404@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"dist-tags":{"next":"3.2.0","latest":"6.4.0"},"author":{"name":"Steve Mao","email":"maochenyan@gmail.com","url":"https://github.com/stevemao"},"description":"Parse raw conventional commits.","readme":"# conventional-commits-parser\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-commits-parser.svg\n[npm-url]: https://npmjs.com/package/conventional-commits-parser\n\n[node]: https://img.shields.io/node/v/conventional-commits-parser.svg\n[node-url]: https://nodejs.org\n\n[deps]: https://img.shields.io/librariesio/release/npm/conventional-commits-parser\n[deps-url]: https://libraries.io/npm/conventional-commits-parser\n\n[size]: https://packagephobia.com/badge?p=conventional-commits-parser\n[size-url]: https://packagephobia.com/result?p=conventional-commits-parser\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\nParse raw conventional commits.\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=\"#conventional-commit-message-format\">Message format</a>\n<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>\n<a href=\"#api\">API</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-commits-parser\n# yarn\nyarn add conventional-commits-parser\n# npm\nnpm i conventional-commits-parser\n```\n\n## Usage\n\n```js\nimport {\n  CommitParser,\n  parseCommits,\n  parseCommitsStream\n} from 'conventional-commits-parser'\nimport { pipeline } from 'stream/promises'\nimport { Readable } from 'stream'\n\nconst rawCommitMessage = 'feat(scope): broadcast $destroy event on scope destruction\\nCloses #1'\n\n// to parse raw commit message manually:\nconst parser = new CommitParser(options)\n\nconsole.log(parser.parse(rawCommitMessage))\n\n// to parse raw commit messages async iterables:\nawait pipeline(\n  [rawCommitMessage],\n  parseCommits(options),\n  async function* (parsedCommits) {\n    for await (const commit of parsedCommits) {\n      console.log(commit)\n    }\n  }\n)\n\n// to parse raw commit messages streams:\nReadable.from([rawCommitMessage])\n  .pipe(parseCommitsStream(options))\n  .on('data', commit => console.log(commit))\n```\n\nParser expects raw commit message. Examples:\n\n```js\n'feat(scope): broadcast $destroy event on scope destruction\\nCloses #1'\n'feat(ng-list): Allow custom separator\\nbla bla bla\\n\\nBREAKING CHANGE: some breaking change.\\nThanks @stevemao\\n'\n```\n\nIt will return parsed commit object. Examples:\n\n```js\n{\n  type: 'feat',\n  scope: 'scope',\n  subject: 'broadcast $destroy event on scope destruction',\n  merge: null,\n  header: 'feat(scope): broadcast $destroy event on scope destruction',\n  body: null,\n  footer: 'Closes #1',\n  notes: [],\n  references:\n   [{\n     action: 'Closes',\n     owner: null,\n     repository: null,\n     issue: '1',\n     raw: '#1',\n     prefix: '#'\n   }],\n  mentions: [],\n  revert: null\n}\n{\n  type: 'feat',\n  scope: 'ng-list',\n  subject: 'Allow custom separator',\n  merge: null,\n  header: 'feat(ng-list): Allow custom separator',\n  body: 'bla bla bla',\n  footer: 'BREAKING CHANGE: some breaking change.\\nThanks @stevemao',\n  notes:\n   [{\n     title: 'BREAKING CHANGE',\n     text: 'some breaking change.\\nThanks @stevemao'\n   }],\n  references: [],\n  mentions: ['stevemao'],\n  revert: null\n}\n```\n\n## Conventional Commit Message Format\n\nA minimum input should contain a raw message.\n\nEach commit message consists of a **merge header**, a **header** (mandatory), a **body** and a **footer**. **Mention** (optional) someone using the `@` notation.\n\n```\n<merge>\n<header>\n<body>\n<footer>\n```\n\n### merge\n\nThe merge header may optionally have a special format that includes other parts, such as **branch**, **issueId** or **source**.\n\n```\nMerge branch <branch>\nMerge pull request <issue-id> from <source>\n```\n\n### header\n\nThe header may optionally have a special format that includes other parts, such as **type**, **scope** and **subject**. You could **reference** (optional) issues here.\n\n```\n<type>(<scope>): <subject>\n```\n\n### footer\n\nThe footer should contain any information about **Important Notes** (optional) and is also the place to **reference** (optional) issues.\n\n```\n<important note>\n<references>\n```\n\n### other parts\n\nThis module will only parse the message body. However, it is possible to include other fields such as hash, committer or date.\n\n```\nMy commit message\n-sideNotes-\nIt should warn the correct unfound file names.\nAlso it should continue if one file cannot be found.\nTests are added for these\n```\n\nThen `sideNotes` will be `It should warn the correct unfound file names.\\nAlso it should continue if one file cannot be found.\\nTests are added for these`. You can customize the `fieldPattern`.\n\n## API\n\n### `new CommitParser(options?: ParserOptions)`\n\nCreates parser instance with `parse` method.\n\n### `parseCommits(options?: ParserOptions)`\n\nCreate async generator function to parse async iterable of raw commits. If there is any malformed commits it will be gracefully ignored (an empty data will be emitted so down async iterable can notice).\n\n### `parseCommitsStream(options?: ParserOptions)`\n\nCreates an transform stream. If there is any malformed commits it will be gracefully ignored (an empty data will be emitted so down stream can notice).\n\n### ParserOptions\n\n#### mergePattern\n\nType: `RegExp`\nDefault: null\n\nPattern to match merge headers. EG: branch merge, GitHub or GitLab like pull requests headers. When a merge header is parsed, the next line is used for conventional header parsing.\n\nFor example, if we have a commit\n\n```\nMerge pull request #1 from user/feature/feature-name\n\nfeat(scope): broadcast $destroy event on scope destruction\n```\n\nWe can parse it with these options and the default headerPattern:\n\n```js\n{\n  mergePattern: /^Merge pull request #(\\d+) from (.*)$/,\n  mergeCorrespondence: ['id', 'source']\n}\n```\n\n#### mergeCorrespondence\n\nType: `string[]`,\nDefault: null\n\nUsed to define what capturing group of `mergePattern`.\n\n#### headerPattern\n\nType: `RegExp`,\nDefault: `/^(\\w*)(?:\\(([\\w\\$\\.\\-\\* ]*)\\))?\\: (.*)$/`\n\nUsed to match header pattern.\n\n#### headerCorrespondence\n\nType: `string[]`,\nDefault `['type', 'scope', 'subject']`\n\nUsed to define what capturing group of `headerPattern` captures what header part. The order of the array should correspond to the order of `headerPattern`'s capturing group. If the part is not captured it is `null`.\n\n#### referenceActions\n\nType: `(string | RegExp)[]`,\nDefault: `['close', 'closes', 'closed', 'fix', 'fixes', 'fixed', 'resolve', 'resolves', 'resolved']`\n\nKeywords to reference an issue. This value is case **insensitive**. String values are escaped for use in a regex, while `RegExp` values are used as-is.\n\nSet it to `null` to reference an issue without any action.\n\n#### issuePrefixes\n\nType: `(string | RegExp)[]`,\nDefault: `['#']`\n\nThe prefixes of an issue. EG: In `gh-123` `gh-` is the prefix. String values are escaped for use in a regex, while `RegExp` values are used as-is.\n\n#### issuePrefixesCaseSensitive\n\nType: `boolean`,\nDefault: false\n\nUsed to define if `issuePrefixes` should be considered case sensitive.\n\n#### noteKeywords\n\nType: `(string | RegExp)[]`,\nDefault: `['BREAKING CHANGE', 'BREAKING-CHANGE']`\n\nKeywords for important notes. This value is case **insensitive**. String values are escaped for use in a regex, while `RegExp` values are used as-is.\n\n#### notesPattern\n\nType: `function`,\nDefault: `noteKeywordsSelection => ^[\\\\s|*]*(' + noteKeywordsSelection + ')[:\\\\s]+(.*)` where `noteKeywordsSelection` is `join(noteKeywords, '|')`\n\nA function that takes `noteKeywordsSelection` and returns a `RegExp` to be matched against the notes.\n\n#### fieldPattern\n\nType: `RegExp`,\nDefault: `/^-(.*?)-$/`\n\nPattern to match other fields.\n\n#### revertPattern\n\nType: `RegExp`,\nDefault: `/^Revert\\s\"([\\s\\S]*)\"\\s*This reverts commit (\\w*)\\.?/`\n\nPattern to match what this commit reverts.\n\n#### revertCorrespondence\n\nType: `string[]`,\nDefault: `['header', 'hash']`\n\nUsed to define what capturing group of `revertPattern` captures what reverted commit fields. The order of the array should correspond to the order of `revertPattern`'s capturing group.\n\nFor example, if we had commit\n\n```\nRevert \"throw an error if a callback is passed\"\n\nThis reverts commit 9bb4d6c.\n```\n\nIf configured correctly, the parsed result would be\n\n```js\n{\n  revert: {\n    header: 'throw an error if a callback is passed',\n    hash: '9bb4d6c'\n  }\n}\n```\n\nIt implies that this commit reverts a commit with header `'throw an error if a callback is passed'` and hash `'9bb4d6c'`.\n\n#### commentChar\n\nType: `string` or `null`,\nDefault: null\n\nWhat commentChar to use. By default it is `null`, so no comments are stripped.\nSet to `#` if you pass the contents of `.git/COMMIT_EDITMSG` directly.\n\nIf you have configured the git commentchar via `git config core.commentchar` you'll want to pass what you have set there.\n\n#### warn\n\nType: `function` or `boolean`,\nDefault: `() => {}`\n\nWhat warn function to use. For example, `console.warn.bind(console)`. By default, it's a noop. If it is `true`, it will error if commit cannot be parsed (strict).\n\n## CLI\n\nYou can use cli to practice writing commit messages or parse messages from files. Note: the sample output might be different. It's just for demonstration purposes.\n\nIf you run `conventional-commits-parser` without any arguments\n\n```sh\n$ conventional-commits-parser --help # for more details\n```\n\nYou will enter an interactive shell. To show your parsed output enter \"return\" three times (or enter your specified separator).\n\n```sh\n> fix(title): a title is fixed\n\n{\"type\":\"fix\",\"scope\":\"title\",\"subject\":\"a title is fixed\",\"header\":\"fix(title): a title is fixed\",\"body\":null,\"footer\":null,\"notes\":[],\"references\":[],\"revert\":null}\n```\n\nYou can also use cli to parse messages from files.\n\nIf you have log.txt\n\n```text\nfeat(ngMessages): provide support for dynamic message resolution\n\nPrior to this fix it was impossible to apply a binding to a the ngMessage directive to represent the name of the error.\n\nBREAKING 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.\n\nCloses #10036\nCloses #9338\n```\n\nAnd you run\n\n```sh\n$ conventional-commits-parser log.txt\n# or\n$ cat log.txt | conventional-commits-parser\n```\n\nAn array of json will be printed to stdout.\n\n```sh\n[\n{\"type\":\"feat\",\"scope\":\"ngMessages\",\"subject\":\"provide support for dynamic message resolution\",\"header\":\"feat(ngMessages): 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\"}],\"revert\":null}\n]\n```\n\nCommits should be split by at least three newlines (`\\n\\n\\n`) or you can specify a separator as the second argument.\n\nEg: in log2.txt\n\n```text\n\ndocs(ngMessageExp): split ngMessage docs up to show its alias more clearly\n===\n\nfix($animate): applyStyles from options on leave\n\nCloses #10068\n```\n\nAnd you run\n\n```sh\n$ conventional-commits-parser log2.txt '==='\n```\n\n```sh\n[\n{\"type\":\"docs\",\"scope\":\"ngMessageExp\",\"subject\":\"split ngMessage docs up to show its alias more clearly\",\"header\":\"docs(ngMessageExp): split ngMessage docs up to show its alias more clearly\",\"body\":null,\"footer\":null,\"notes\":[],\"references\":[],\"revert\":null}\n,\n{\"type\":\"fix\",\"scope\":\"$animate\",\"subject\":\"applyStyles from options on leave\",\"header\":\"fix($animate): applyStyles from options on leave\",\"body\":null,\"footer\":\"Closes #10068\",\"notes\":[],\"references\":[{\"action\":\"Closes\",\"owner\":null,\"repository\":null,\"issue\":\"10068\",\"raw\":\"#10068\"}],\"revert\":null}\n]\n```\n\nWill be printed out.\n\nYou can specify one or more files. The output array will be in order of the input file paths. If you specify more than one separator, the last one will be used.\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-commits-parser"},"users":{"rubiadias":true},"bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"license":"MIT","versions":{"0.0.0":{"name":"conventional-commits-parser","version":"0.0.0","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"bb6ec0bfdcce17bfef32ade6774718da66cb4797","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.0.tgz","integrity":"sha512-QGBxrVJmHUeB3PPAtyRwo3Vwld2cPi2sADGSvxi8jpQXxeTJkPaQ+vHTeJxYRYO3K009hHz/RQM4MEVLAsqj+Q==","signatures":[{"sig":"MEQCIG68Axw+UQ2LUGoJyQMzpEJVzy681FDxlOBWdkhFAxG1AiAEbNBU2qxP6HFuv1LNfbtZe4Px+j0MMSHFpJIEdATP4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"bb6ec0bfdcce17bfef32ade6774718da66cb4797","gitHead":"94ecde4fd5c76d28904ceed335bcac78da3cbd12","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.0","description":"parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","lodash":"^3.3.1","istanbul":"^0.3.6","coveralls":"^2.11.2"}},"0.0.1":{"name":"conventional-commits-parser","version":"0.0.1","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.1","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"c47b879e7f0416632327268e05223e4a7a515454","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.1.tgz","integrity":"sha512-BHUvqGLhteadAhjHit/TcWXhu6NxSX6o4bpUDZmBljuJx8vM/T5D5+wmQ/KOJwEF7+tr74miriReV0ivXudBLg==","signatures":[{"sig":"MEUCICXukUxLdPrTCJ2J8k3zsZDYIPZL55whb7Oeh3NZ3g0RAiEAyt2O3dBSPzYhSWY/t2g+8pl1JOp+RvHZUnW/fiKfBWM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c47b879e7f0416632327268e05223e4a7a515454","gitHead":"88684061c38d64208d5b2804f0a040b5e3604a69","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.0","description":"parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","lodash":"^3.3.1","istanbul":"^0.3.6","coveralls":"^2.11.2"}},"0.0.2":{"name":"conventional-commits-parser","version":"0.0.2","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.2","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"03630bef45d45d600d520857bf600550849cc0cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.2.tgz","integrity":"sha512-4F8XRoHA8gddN8L7C+bjt0cdq+fuTaRmaVrLgq9QAZ1Msph9lvHI/WQPfd00b7wPSJh9pd86uk1MjbUlY3pNqA==","signatures":[{"sig":"MEUCIQDMxo8hZ4oftn1QCdVLeYnkEbr9jrRPO2/Or0hsM+HN9AIgDhstTBB7+JeFvmv8b4cptyGj6bgrTAa4/L7DPH6QBEw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"03630bef45d45d600d520857bf600550849cc0cb","gitHead":"24c27fed9f0ea575b7883a4b073cec38eea447aa","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.0","description":"parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","lodash":"^3.3.1","istanbul":"^0.3.6","coveralls":"^2.11.2"}},"0.0.3":{"name":"conventional-commits-parser","version":"0.0.3","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.3","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"cd703c0803b2ea9f7c6fd52c1c2a8fd84e38ce10","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.3.tgz","integrity":"sha512-vfCKX0kv/DqP6w25LmNb45e6BSNV7pkMN3OXcvn8UOeyeoWvALMSvJ3+MXy2xolK3FN5L09Rla/Pxx5mixBEow==","signatures":[{"sig":"MEQCIDTV4gDnXTP9/+R1lUFamodKJ6/tIB+ZudLxP+od1qLsAiAncQ/K7od4PvJQIqC/Y4ts2fxKjms7oUZ0SCkJbCIByA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"cd703c0803b2ea9f7c6fd52c1c2a8fd84e38ce10","gitHead":"b7a911f32b1c450ddcfd199a28df4e79a9443009","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.1","description":"parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","lodash":"^3.3.1","istanbul":"^0.3.6","coveralls":"^2.11.2"}},"0.0.4":{"name":"conventional-commits-parser","version":"0.0.4","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.4","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"d452551fc275ee42139b98b0d55b8e794a537f4c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.4.tgz","integrity":"sha512-1p+oO/yyAzHaAKCCwpYhlBrvBzqHLeW1qUliF54Gpd72fNvNOSCxg1j08enGCsdYX3IzMKIVhuikVPGuiLOrzQ==","signatures":[{"sig":"MEQCIGgmN1qN9DtqgBIwFcJOiSIytzDtreTL/pDnlbMkIdVeAiASw8dYzGgEbXEQOZcSgg3u1IwJ8JRNBsmvWzlSwwBnSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"d452551fc275ee42139b98b0d55b8e794a537f4c","gitHead":"e02c2892dc6413cfa83c996066da30fa1b93ab12","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.1","description":"parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","lodash":"^3.3.1","istanbul":"^0.3.6","coveralls":"^2.11.2"}},"0.0.5":{"name":"conventional-commits-parser","version":"0.0.5","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.5","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"8b8032998ff3a36c2b67988f019d7385b4de64b6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.5.tgz","integrity":"sha512-ns5P5GmsYGb0NgpNeLfU8U1yut6O9Qj/ikK5d3WslGflOWsd8G65Tl1ti552jz8GiYwQdf3pKPgBbYRyHBbZVw==","signatures":[{"sig":"MEUCIQCTcxZEoANKCgHGgbNsCZn8Jj8sLVlVIkI3Bp5sw8bTSAIgbVb/akoBuOMGZIEbP7SjQaDawkFEj9wLiNXAMeTmbDI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"8b8032998ff3a36c2b67988f019d7385b4de64b6","gitHead":"aeea955cab34ed1a6f5c51520750f7853a7d104e","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.6":{"name":"conventional-commits-parser","version":"0.0.6","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.6","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"fe11f98d223887b0d5d0e1eddd662c6180c6aed0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.6.tgz","integrity":"sha512-1Cw/+OkR94Ucuofd9bvJgVNeIKwtwMUNkrMoQ1IBdySPAt6rBeLN5Lc6cmHmQPD1jOI6ItSAmT/UvnOQOMU2Zg==","signatures":[{"sig":"MEQCIHIXZzB5Bx72txTmVsoSyKrzm6F1JlTtO6xHZXS9SduHAiB07ZCFgpYz8L4rqcsgcRRmgUYJd0xEm+5Hh0uvmZPPTA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"fe11f98d223887b0d5d0e1eddd662c6180c6aed0","gitHead":"dcdc036821103b049f195b7f1220b4ca2cbb55e6","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.7":{"name":"conventional-commits-parser","version":"0.0.7","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.7","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"b6de95360eb743b95bffd9182419eca7a1d52513","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.7.tgz","integrity":"sha512-VDO/8xyhIWrVZ6dASMxodrQGhbxVE85YTQjKUJj4Ll4WIu4LhwL1/RopHL+9P+2wqCYMKCdVDqGFQIxtViWJfQ==","signatures":[{"sig":"MEUCIBYeDD7CdAoBMnwCZqgDyiRmZm/qRzbIsMGkblWOzsLHAiEA7u4dkqtbTC+NQEcdSyJQxRtq1RXs9hQTwo8L+ZCd6Jk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b6de95360eb743b95bffd9182419eca7a1d52513","gitHead":"b3a5e817529e0c8c7d6ce181a0cb6676aade98a4","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.8":{"name":"conventional-commits-parser","version":"0.0.8","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.8","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"092ea33614ba3873b86cfbe4c5fc9ffb622c08db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.8.tgz","integrity":"sha512-CAzyKV3HGP0/WkBGL84PQHWpOhPL8sR0mpriulRZoTJrBEG6jZ/qQQNrfMr1i00esUx0cqNVAY4CgsA9vbTaMw==","signatures":[{"sig":"MEYCIQDy8Q2NxxPPqr+5rK+L1uuGMVzIPx/B1Qz0cSnAr75DDgIhAMJH5OWuFXJMbSBEAChfg7xU53VhxX4wG95R7obuBrBi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"092ea33614ba3873b86cfbe4c5fc9ffb622c08db","gitHead":"2508ae48cbd6f75c622781f532224f57e9b6d2bb","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.9":{"name":"conventional-commits-parser","version":"0.0.9","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.9","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"ad2f972e02a098bad0c4f9c2a8884441a80c9e28","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.9.tgz","integrity":"sha512-VyUQtAIekQZFLYyOAd63xgvCUIVq7qh61eEcSaeq46qfW1YmnOZQUjWVdp4/qxPrM4Wa/XspT0h4S14qIQP5Yw==","signatures":[{"sig":"MEUCIQC5PdQTQQrbjTeAqVNqiiayGceNV8nLrrg/kpdLiQ/NSAIgDaIZEOkhpY0d8tisgnPkJC+IVpt1FXXqmaqoH2R2Yow=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"ad2f972e02a098bad0c4f9c2a8884441a80c9e28","gitHead":"b0c616f258fa80f8688974fb89aed5ea20f72174","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.6.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.11":{"name":"conventional-commits-parser","version":"0.0.11","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.11","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"53f62677aafa3e0acce6f03369a8609d00ffa747","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.11.tgz","integrity":"sha512-nFLhsXM+VOeBFo6+vuhCf3repixJk/qnAVwNay5qWmhLmEIOyyGp22BGLgJ3EFmfyr4WtmxhP+o/RIXOTZYdvQ==","signatures":[{"sig":"MEUCIBVlD/y+GpGHPJ6JJMMRIzUfKwJF8Frs1NpQwrHptnSxAiEA4bQ3+92sHkjoXVwL/isyxktPGLW1YXBjlGaPkK0M+es=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"53f62677aafa3e0acce6f03369a8609d00ffa747","gitHead":"a17bb668acd59755ec7eddc1be75b43841bff440","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.7.3","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.12":{"name":"conventional-commits-parser","version":"0.0.12","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.12","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"a3cb6d95bcc2ce74c861132b04c955317b47e113","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.12.tgz","integrity":"sha512-sily/8EZksZOLH4fl+dGaa2y2CFbyo4w/WUw5/NkQDwFe3yehQuxLAvKFOXdJTxeF+SHOsA6T6kKYxPGOGUnbg==","signatures":[{"sig":"MEUCIDBgwDHzenRMvD6GZ0E/Q5coQzmNmiw2SAfqVhNv5qXUAiEA069dvpnDDoFW/xIFqVJ8vVJYg1f1h3Md55lLBYD73rk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"a3cb6d95bcc2ce74c861132b04c955317b47e113","gitHead":"7eac8e0ba237b4894843c7109327ef1190b85ee4","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.7.3","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.13":{"name":"conventional-commits-parser","version":"0.0.13","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.13","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"a143709c0491a7417d99a898c8065242a42ab46b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.13.tgz","integrity":"sha512-tN0hV9xPMvO/4pSJ4ag8DQGgEujOwgm0diZ24fNhzPQ8ny82hlltxeHZK0AQNyjrswTT7siWlVVpkzq27xSjTw==","signatures":[{"sig":"MEYCIQCTK4gVl0L05IDeGjBntgOpXuAozD7tU0uABnlqxviG2QIhAOnMbitxjw1e+K3JSyPVi6A4TUip8k9lAlLPqk/ctGyk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"a143709c0491a7417d99a898c8065242a42ab46b","gitHead":"923c40a5543fc5b5805cb14639b79419e7baa296","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.7.3","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.14":{"name":"conventional-commits-parser","version":"0.0.14","keywords":["conventional-commits-parser","changelog","conventional","parser"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.14","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"80c68455d23677f1f10390c6955855f0e29af04c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.14.tgz","integrity":"sha512-CMJ9ZOg/ZWfhK9e1uOb9gK+oxICdgLC+GItKCBhW/1GcFbwfbvQv/CdPKCBs4SSejI+VBMwrH0tgc0L+YhgTYA==","signatures":[{"sig":"MEQCIFc9kCCMvBplRtxJCwX0tPkW18nm8JY6tHyGpG3KUgQuAiBUtyLDr3wdsGIyp8CZ4av12+GXSERRnB/WEWHTa1Y48w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"80c68455d23677f1f10390c6955855f0e29af04c","gitHead":"58938f0224bc72ac62e69bdcc3a135788cd6d433","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.7.3","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.15":{"name":"conventional-commits-parser","version":"0.0.15","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.15","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"73ada2371ad0af7f0dbedfd9c096994c8c9fb1c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.15.tgz","integrity":"sha512-ZwZdSXDn0hgtPWVSZBp3O6U95k4b7YjPGSU+23V7kiOBmOvBZD1oL1LtgTVsfm7nfnaPdntI/+VcWyqvn/bSlg==","signatures":[{"sig":"MEYCIQDi9kTkzXHDtPtP68sRD5/LCBzdBIkimOzB5KNSY360qAIhAPMMbGL9LFwNNhNS6oCqP7k7W2/0Eg81nje7zm72uBJA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"73ada2371ad0af7f0dbedfd9c096994c8c9fb1c8","gitHead":"3fff176f933d46190bf3debd4bec3cb141a0ec53","scripts":{"test":"mocha","coverage":"istanbul cover _mocha -- -R spec && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"https://github.com/stevemao/conventional-commits-parser","type":"git"},"_npmVersion":"2.7.5","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.1.0","split":"^0.3.3","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^0.10.0","graceful-fs":"^3.0.5","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","mocha":"*","split":"^0.3.3","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.16":{"name":"conventional-commits-parser","version":"0.0.16","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.16","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"7c343f234774f85081b233d5e63bdc2452bd90e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.16.tgz","integrity":"sha512-cikIkzaKHCxT0KQxRQ5Z9U1kdUBWfGK28p5EwYi9xZ3pWmU7aVO7FDeq7h/L+dIAvmJyAs9ZI5VH1yoJLJgMCw==","signatures":[{"sig":"MEQCIBredc1rrbxDF0XvW0mYNTu77z5a+yfO548fzVelpUUIAiAgYlVGlO0do1vBYlPZwkzHqahy/guX7pORj7krEFamyw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"7c343f234774f85081b233d5e63bdc2452bd90e0","gitHead":"87fcddb6329c41a640162e8f166a184c50b07caf","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":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.9.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.2","dependencies":{"meow":"^3.1.0","split":"^1.0.0","lodash":"^3.3.1","through2":"^0.6.3","JSONStream":"^1.0.4","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^2.1.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.17":{"name":"conventional-commits-parser","version":"0.0.17","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.17","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"204b11a2a62a8bdfe1716998efb0f9d17b446764","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.17.tgz","integrity":"sha512-BRpTkpftnWdLOm/HRFhnD2axqXgFw2KQ2mFMXMseXF3nIJx88BDXUxR9D8QLHBdck72G8o9hmHffGb25memX6w==","signatures":[{"sig":"MEUCIBtPa8msxIWQDQL3ewA0p8mOUswvkQ0piEZSKlMNtVDxAiEAuQGPI4b+qSYfZpPgWgTU1y/ysMaRgXzOfd22kuSkCjo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"204b11a2a62a8bdfe1716998efb0f9d17b446764","gitHead":"847bcf41adc99a0e638843dd410978250c8ab72c","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":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.9.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.2","dependencies":{"meow":"^3.1.0","split":"^1.0.0","lodash":"^3.3.1","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.18":{"name":"conventional-commits-parser","version":"0.0.18","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.18","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"1ea0f6fe0c3a0ca9abd3b510447843483d94cd7a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.18.tgz","integrity":"sha512-Dwm/uFg8yNP9hCYKzuCiHhlmeOis3smxLLt8/HvsxYRUZ7EpWBLJBUaZHjssPWj1LZOVEikxYbUTedtJnxKAYA==","signatures":[{"sig":"MEYCIQDbZVwBCnAVT00vuwyu9JuFLFnLwtIcAAFLpyTJgyDh9AIhAKBjnKQLRVQFziKP/vkTQIJUhnz1se0jCzN8cxEnZPXO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"1ea0f6fe0c3a0ca9abd3b510447843483d94cd7a","gitHead":"76489dd20998b84678c13bdcfa502cc219006964","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":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.12.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.1.0","split":"^1.0.0","lodash":"^3.3.1","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.0.19":{"name":"conventional-commits-parser","version":"0.0.19","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.0.19","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"1bd211899515697a61ea260e2c495b63d17c136f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.0.19.tgz","integrity":"sha512-e34GZal5kuIaTu+bORKYqbBKWo++96lvfXjX7XBlwbBfgvolrg9+roZz4yQvVOVR4m0lNN6Kr2wDzLcvvdsU8w==","signatures":[{"sig":"MEQCIGe+TbEIYyCWhElwgnXmvFab5qWN+aKu1KxbKBL7U7MjAiAyIvJ2q0NIJGCKqJ081eiS7/QIdtpNUQSePGx1WFomLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"1bd211899515697a61ea260e2c495b63d17c136f","gitHead":"e79322badc1eb6aa31cb96170c8b42a893e56a46","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":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.12.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.3.1","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^1.13.1","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.1.0":{"name":"conventional-commits-parser","version":"0.1.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.1.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"b45ccae99f50be9dd9dd4bc70d27a35137442a7c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.1.0.tgz","integrity":"sha512-lhvuzFrTw2ztgKbD3wCmD7mRbXGm0VWE52i+orA/1eFxVijp3nE2zKAbMMRK5GwybO0pDaBVtNdycBfv1fKleg==","signatures":[{"sig":"MEUCIQDmd3dIk6YFM9ySt1LWo812FmZZntwLF4zT9vuo9IKH6QIgVsdJKOSB8Om8eGpkmduzy+SrR+bk/tWx97LT+K0ID/E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b45ccae99f50be9dd9dd4bc70d27a35137442a7c","gitHead":"1b45bc3a40be1a8a1b7c0070ca6063d7f71a87f5","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":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.13.3","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"0.12.7","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.3.1","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.1.1":{"name":"conventional-commits-parser","version":"0.1.1","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.1.1","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"95ad374ff2b816dbaf3d684dd8b9b685431e7c05","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.1.1.tgz","integrity":"sha512-Wlzv/GSGb7AjCAqn/xu+IXktwKpY4zRCIgB4u9GUszuGnx+j8IiP3HmbGHOZ2zuhkEOcIwDzeQ24ymVPEPZHvw==","signatures":[{"sig":"MEUCIQCovFbAZbja1JirHMVczPsyOvSW8qWOn8gLsEYCen822QIgJsfcO2WigD+17l2MBzoDxAN2hA0WVj3eKjQap1EqEkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"95ad374ff2b816dbaf3d684dd8b9b685431e7c05","gitHead":"b9d591d095df679b7cea69ebe277f8c7272015bc","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":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.14.2","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.0.0","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.3.1","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.1.2":{"name":"conventional-commits-parser","version":"0.1.2","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.1.2","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"4a624010634f02122520ecbaf19ca0ba23120437","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.1.2.tgz","integrity":"sha512-rK5eqAdjlh0mwkCHoV2H0NyDcM/RgILG+Z2BGGP56FArvdDgkCVwbbMrYrR4wupVXBmlOXOdpzxmapGTMPxXjg==","signatures":[{"sig":"MEUCIERr+4MHCMdArQxz8yN0r6+DyZEM6RnCZZoTT1LMvpkcAiEAm7fOjbvdjEyg81Qt+G+tGq+MSoDTa0+DKYxzUFlNdNA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4a624010634f02122520ecbaf19ca0ba23120437","gitHead":"4c1d59ffb41476fa4aa3cc78e7964ae347331061","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":"anonymous","email":"steve.mao@healthinteract.com.au"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.14.5","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.0.0","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^3.3.1","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.3.6","coveralls":"^2.11.2","concat-stream":"^1.4.7"}},"0.2.0":{"name":"conventional-commits-parser","version":"0.2.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@0.2.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"ede20e4162fd58b1b599c31eb7d8fcd08e8f70fc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-0.2.0.tgz","integrity":"sha512-TEfmhN0B9jE8W81pGfr72ZRXaIFy3jdKM+kp+6gYwJGSHWkqbOBdps5Abuw73uiwWkHChBHzlEYhMoecEQnldA==","signatures":[{"sig":"MEUCIErr2uL6EUwNK0tYZEVEF64sK1KQceT+HbCfYe+WQPXDAiEAhvizcIrF3j68epJifsdTMGfiNdriQA5EBLwxs1qXKpE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"ede20e4162fd58b1b599c31eb7d8fcd08e8f70fc","gitHead":"8d1ba7855db545bc3bfde379a74068d94061ed41","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.14.12","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.2.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.2.1","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-0.2.0.tgz_1454593262588_0.7237707702443004","host":"packages-9-west.internal.npmjs.com"}},"1.0.0":{"name":"conventional-commits-parser","version":"1.0.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@1.0.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"9817747c1989f5b8c950fffdb422119cb70d085a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-1.0.0.tgz","integrity":"sha512-OFdpGu1nx/8932WWXUVRgKI3J0t/5ig+wBDMU5JD5yne/sIIbKVN1z1018vsngXuRLT+8LDoWBLX0DxhgKaKow==","signatures":[{"sig":"MEYCIQDUH0RQZx7TPHWcQf/ZjXcHB7klKHvh6UkBDZcAWv+zIQIhAJnZxgMMOS1OXSJnDMlGwAaSVGABaV8Zda2SKdLzaCqP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9817747c1989f5b8c950fffdb422119cb70d085a","gitHead":"5559d6c9a0274a4e4d46a5ea29ad9b7c4b7eb287","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.14.12","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.2.4","dependencies":{"meow":"^3.3.0","split":"^1.0.0","lodash":"^4.2.1","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-1.0.0.tgz_1454675673591_0.12363838288001716","host":"packages-5-east.internal.npmjs.com"}},"1.0.1":{"name":"conventional-commits-parser","version":"1.0.1","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@1.0.1","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-parser","bugs":{"url":"https://github.com/stevemao/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"500354672d5edbe91cb35c2e2a1a9075108e25c0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-1.0.1.tgz","integrity":"sha512-LNwxuc7FHaqL52PrUL5IC2+yf9a2tMnn+RlpexzzvAVWZhdFqeMN/cDT3W+H9UE+x5Ux8TdvJP6QblMbqNEuFA==","signatures":[{"sig":"MEUCIB63WTa/5NHjwjuz0wPCkB9NxRmphWz2NtOjTFFAAQljAiEAqe00gych6aNBJI/oe8/DMKDQEV8iIZJOQq0ivGh/Weo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"500354672d5edbe91cb35c2e2a1a9075108e25c0","gitHead":"aa95d15e9256f4b0119b14f22ee20ab8da7f358d","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.14.12","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.2.6","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-1.0.1.tgz_1454683404086_0.3531976044178009","host":"packages-5-east.internal.npmjs.com"}},"1.1.0":{"name":"conventional-commits-parser","version":"1.1.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@1.1.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"4a32326ca2995167c72d083f02c9401378853564","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-1.1.0.tgz","integrity":"sha512-u5az3hR0RfX2yNcqz2ddLl1Tiyd9UAXZWdSSt4kpYRMYJrmalOvwvS34sACwUiCxzOdKsJ+BkFPxUk/wTKwBKg==","signatures":[{"sig":"MEQCIClqIXlP+j1KETos2/w+3yDrN+CwVmEZku7j+ecXpGwwAiBvVBKzdfIeGeit6kJMmbJEuCtc+BymsJrqioEYYJANaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4a32326ca2995167c72d083f02c9401378853564","gitHead":"2bf43a3c070b1a33c163e580f36eecc2de6860ac","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.15.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.4.2","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-1.1.0.tgz_1460272254873_0.32802322576753795","host":"packages-16-east.internal.npmjs.com"}},"1.2.0":{"name":"conventional-commits-parser","version":"1.2.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@1.2.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"514d83d96438041d39aa77e2c8cff7ea38be5e77","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-1.2.0.tgz","integrity":"sha512-xRSHMqZfUiWbtjeeWmxL7rdWQ2/R/bU39UAl2U3jWmc69nhcyKCCQZ8ct3+dieGwmSuTf9zcVNBlL97OrBHkHA==","signatures":[{"sig":"MEUCIDFTDX70odzFVGeI+vrHiW6HokbJY+mAXjKQOQNej4j7AiEAjIXDf3HFHP2dErlwmZnYHlZg9sArmpjQpiwqc6ncDgs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"514d83d96438041d39aa77e2c8cff7ea38be5e77","gitHead":"869e4caee4e991e40207f21dd15229c1e088f384","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.15.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.4.2","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-1.2.0.tgz_1460723769217_0.27689405414275825","host":"packages-12-west.internal.npmjs.com"}},"1.2.1":{"name":"conventional-commits-parser","version":"1.2.1","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@1.2.1","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"a50ab66431beefa8ce756b44eb9eae94665a611c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-1.2.1.tgz","integrity":"sha512-N3UwnZv3m7f68GiMmCkhDg4Ev3he+tgow7P0CYRpPLSoePiMn8edXJZGyvoHVYQ32a959lStkF3C+w3E+qSMwQ==","signatures":[{"sig":"MEYCIQCOzPfg+JBYgcfirr7j/BsORTFsxzTRRQwfcAPIxn+BJQIhAO9ap82eceAnPv9zDylI8g3yAzfA0qDNqvdgM26TcSgW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"a50ab66431beefa8ce756b44eb9eae94665a611c","gitHead":"65bda9c58bc089f152ac95de8f77593c8cbdec73","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.15.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.4.2","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-1.2.1.tgz_1461507595174_0.09812669828534126","host":"packages-12-west.internal.npmjs.com"}},"1.2.2":{"name":"conventional-commits-parser","version":"1.2.2","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@1.2.2","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"a1c12c209f01dbd28bbf670ae3df94dbf24ebfb1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-1.2.2.tgz","integrity":"sha512-knopBtMYFZlALgluZDbLmrmA2ksPAuaCCycbfzwP2ZbrEKk0fqT3rVjK3BXt18Iyc84Y2R/wxU6pGW7q3RjATw==","signatures":[{"sig":"MEUCIQDyUeFnfUy+BOGJgYZTImQc5n1DaJINTeiqjTbZMCxZrAIgVVL45dbauzcFgwgxNl7C849403xOcC3G0OZFMPBnZrU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"a1c12c209f01dbd28bbf670ae3df94dbf24ebfb1","gitHead":"fa6843f0c594b0eb2689b03b496e3dea3eb06620","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.15.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.4.2","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^2.0.0","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-1.2.2.tgz_1462361198722_0.37785374256782234","host":"packages-16-east.internal.npmjs.com"}},"1.2.3":{"name":"conventional-commits-parser","version":"1.2.3","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@1.2.3","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"fc42492d1502fa3b307c1a8e45a8c5b0932fc322","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-1.2.3.tgz","integrity":"sha512-1Vr47h+jyUPKI+yRMlfdxK6ftHJNSgz5oL3ctWbBFzCimMgeYrbXvHvFrYmUByV7rFKYgnGN/V47NTmJlXI5OQ==","signatures":[{"sig":"MEYCIQCuaJRJbhqqtwC9n7uWSJPmMzyO4QgqX+eeAWXCb2YM+AIhAMFCi8/PpbzOxaS8drCKlx6zJIOEhCk/EcZRGU6jV4Ng","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"fc42492d1502fa3b307c1a8e45a8c5b0932fc322","gitHead":"d9391b064376f53395f0bd925b12ae02c8276d64","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"2.15.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"4.4.4","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-1.2.3.tgz_1470463188913_0.04062143573537469","host":"packages-12-west.internal.npmjs.com"}},"1.3.0":{"name":"conventional-commits-parser","version":"1.3.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@1.3.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"e327b53194e1a7ad5dc63479ee9099a52b024865","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-1.3.0.tgz","integrity":"sha512-44xKFmZv3Mk3q37KA7bhfYd3hvZUE7NkF2o0UKu+epkJYfxvisRajgEPwV2rrtzFgMVgbnqpvRrLwp/5kVmfQQ==","signatures":[{"sig":"MEYCIQDMqohMXHK/vboPmqwFf1uWm+nzxiG45t/Px+EjMmamuwIhALZP+oiOTdJPYZMhaa9SCyB4QFV+uk2nHnO88J8oDIWp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"e327b53194e1a7ad5dc63479ee9099a52b024865","gitHead":"41e9a1aa18359ece27442ac8e0ac1adfb932edac","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"3.10.3","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"6.7.0","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","coveralls":"^2.11.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-1.3.0.tgz_1476526685689_0.9924746793694794","host":"packages-16-east.internal.npmjs.com"}},"2.0.0":{"name":"conventional-commits-parser","version":"2.0.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.0.0","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"71d01910cb0a99aeb20c144e50f81f4df3178447","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.0.0.tgz","integrity":"sha512-8od6g684Fhi5Vpp4ABRv/RBsW1AY6wSHbJHEK6FGTv+8jvAAnlABniZu/FVmX9TcirkHepaEsa1QGkRvbg0CKw==","signatures":[{"sig":"MEUCIQDPKt7B0xVEyf6p3CLdN6893NmDWPP1J4dXnD8pHNq5/AIgaZoNVctGldiLsVmY27YUiWY5oL7493/2zLkf2CR17tI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"6.10.3","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-2.0.0.tgz_1500334226247_0.495594535022974","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"conventional-commits-parser","version":"2.0.1","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.0.1","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"1f15ce6b844f7ca41495c8190c0833c30b8b1693","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.0.1.tgz","integrity":"sha512-nEBav0xR/7TEZQKWISpv4BtfI5Cq+3aoiLs/J/MiZvQFJIY3AZKJoiBjbGizENzxFxXG+R+o2mcBudwXs5rC+g==","signatures":[{"sig":"MEUCIEvu601b4cAqrEk2ao/Qd4CfNlHpFV/89wKttZ0Ho72QAiEAp1c6Gnbf2gARyLQBsr/uPioSxK77L0rTxuxrsIg6iXE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"1f15ce6b844f7ca41495c8190c0833c30b8b1693","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":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"3.10.10","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"6.10.3","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-2.0.1.tgz_1510532236717_0.6248131881002337","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"conventional-commits-parser","version":"2.1.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.1.0","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"},{"name":"anonymous","email":"andrewbgoode@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"9b4b7c91124bf2a1a9a2cc1c72760d382cbbb229","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.1.0.tgz","integrity":"sha512-8MD05yN0Zb6aRsZnFX1ET+8rHWfWJk+my7ANCJZBU2mhz7TSB1fk2vZhkrwVy/PCllcTYAP/1T1NiWQ7Z01mKw==","signatures":[{"sig":"MEUCIQCWT/zC9DoEI4q5BEfhzVoH/eVO7u/+WT2+5IGF5PYh9wIgRNQdbfVhLnfgvqam/13NC+Hp/bdBTVLcZj6RSVqADvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"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":"anonymous","email":"hello@mario-nebl.de"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"5.5.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"8.9.1","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-2.1.0.tgz_1512717192535_0.14772552298381925","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"conventional-commits-parser","version":"2.1.1","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.1.1","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"},{"name":"anonymous","email":"andrewbgoode@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"1525a01bdad3349297b4210396e283d8a8ffd044","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.1.1.tgz","integrity":"sha512-Qqxaul7TELPnTrm7KhWGjVTFTs7T9yUblzXugtXEff2C2uXFK4S0uVGqsyX7feQZzoFbXnJ1KdEs+IMmSxGbqQ==","signatures":[{"sig":"MEYCIQCn1FHuiQNpnZkY6T0pGQ0Yc8iuRHh18ARQ4Tn1DDSlXAIhAIiDLSFWoOE87TKwO8/hwsJFT2xDblLMqmDQ9sht+nhd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"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":"anonymous","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"9.5.0","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser-2.1.1.tgz_1517801290448_0.3680340328719467","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"conventional-commits-parser","version":"2.1.2","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.1.2","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"andrewbgoode@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"a4ed55f2b76379ea72d1ab484a80c1fceb484708","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.1.2.tgz","fileCount":7,"integrity":"sha512-Ue/Hv7zPtWclX3GqZ6NLtlwz+Uz/kkEZJl8GqRhXOqgdDcABed0zmAn491EP+dh2hY3gvdB6NttwPos2i2vjWA==","signatures":[{"sig":"MEYCIQDnIzK1b0jayxPhoCMztI0PCL6rGwYC5RNejglxI+xWgAIhAKE15evvMDnb3RHH8TsvAODnZuBTa6WbG9HKiYKb7WW0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46325},"files":["index.js","cli.js","lib"],"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":"anonymous","email":"ben@npmjs.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"5.4.2","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"8.8.1","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_2.1.2_1518539025070_0.5708910987853459","host":"s3://npm-registry-packages"}},"2.1.3":{"name":"conventional-commits-parser","version":"2.1.3","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.1.3","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"andrewbgoode@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-commits-parser","bugs":{"url":"https://github.com/conventional-changelog/conventional-commits-parser/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"fbbfcfe4901ccbae63bb3834f982325e0b7c663f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.1.3.tgz","fileCount":7,"integrity":"sha512-j5nXna/snJtrzFtPbDm+9R5UsjteJkXn+cG1kGEi4+4e25U57CZBB6DiUdxOCnM9LOIHeLDBF61e9MtjPsZthw==","signatures":[{"sig":"MEUCIQCelCljOPrtv3sbrFpM1UF/M9k0LVAqA6FrygZ8V71/ogIgSWKi1CPqNi1nTcEsvfwqi8LmaL0uk4oSDEsri0NB8Ok=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46584},"files":["index.js","cli.js","lib"],"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":"anonymous","email":"ben@npmjs.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-commits-parser.git","type":"git"},"_npmVersion":"5.4.2","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"8.8.1","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_2.1.3_1518539269929_0.7351916179981808","host":"s3://npm-registry-packages"}},"2.1.4":{"name":"conventional-commits-parser","version":"2.1.4","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.1.4","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"andrewbgoode@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"86d2c21029268d99543c4ebda37d76fe5c44d8d1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.1.4.tgz","fileCount":7,"integrity":"sha512-dyTFuqQQzTynPN81zk9Pvm6d4mGiTuPz+Qi1ee8CmhupBji7gwO0DKXvAWo3MEFilE50pm8h8kRbETL5wsI65A==","signatures":[{"sig":"MEUCIDaH5dmbWK0uZB0ZpWyT0VNygrmcgA19B9FK6+jBRVsKAiEAqc9b4XNUUBFX6prx3K4OHv+RYuc19CawAPi044i5d44=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47061},"files":["index.js","cli.js","lib"],"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":"anonymous","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"8.9.4","dependencies":{"meow":"^3.3.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^3.0.0","jscs":"^3.0.7","mocha":"*","jshint":"^2.7.0","istanbul":"^0.4.2","concat-stream":"^1.4.7"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_2.1.4_1519100428827_0.6438768932592771","host":"s3://npm-registry-packages"}},"2.1.5":{"name":"conventional-commits-parser","version":"2.1.5","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.1.5","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"andrewbgoode@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"9ac3a4ab221c0c3c9e9dd2c09ae01e6d1e1dabe0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.1.5.tgz","fileCount":7,"integrity":"sha512-jaAP61py+ISMF3/n3yIiIuY5h6mJlucOqawu5mLB1HaQADLvg/y5UB3pT7HSucZJan34lp7+7ylQPfbKEGmxrA==","signatures":[{"sig":"MEUCIHC9RK2x5d9Wr8DYrNB8y/DhPZOCswLWFG5ARV+odgDWAiEAjJhT6CkrhvvWF+zkFAbcAItvKqToMDp2SYmaXm82Gvc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47265},"files":["index.js","cli.js","lib"],"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":"anonymous","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"8.9.4","dependencies":{"meow":"^4.0.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_2.1.5_1519510361563_0.7574306979037218","host":"s3://npm-registry-packages"}},"2.1.6":{"name":"conventional-commits-parser","version":"2.1.6","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.1.6","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"e594bbd8342d3e6758aa0344ca074719d69a7dc0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.1.6.tgz","fileCount":7,"integrity":"sha512-3Z77cAKSvEG3D5BSm3IFkOTP2qz8TZX8e8OPU7BGP2ruP7zPs7laHSqiZ7eYup835FKP4yyj+DHjmcvmOyp/0w==","signatures":[{"sig":"MEQCIGgQv3bS2tWUE9DqBMuQPwO4NV7NMQ0AMbSLDjVjQrEFAiBHRtPnMjqweiGSdlVBmy8m6jkz9GJ3zKe0pwpv/yuj2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47335},"files":["index.js","cli.js","lib"],"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout=30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.7.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"8.10.0","dependencies":{"meow":"^4.0.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_2.1.6_1521726108973_0.6854170032599629","host":"s3://npm-registry-packages"}},"2.1.7":{"name":"conventional-commits-parser","version":"2.1.7","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@2.1.7","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"eca45ed6140d72ba9722ee4132674d639e644e8e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz","fileCount":8,"integrity":"sha512-BoMaddIEJ6B4QVMSDu9IkVImlGOSGA1I2BQyOZHeLQ6qVOJLcLKn97+fL6dGbzWEiqDzfH4OkcveULmeq2MHFQ==","signatures":[{"sig":"MEYCIQDkB5aqkUTH/uvkVKoobz6ST9Hl8H3NmUBcJ+ppyoI/iAIhAICMfWxhyp6xMSqxFdclNLLtouXtclatiocec2jceFKw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48716},"files":["index.js","cli.js","lib"],"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout=30000","test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.7.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"8.10.0","dependencies":{"meow":"^4.0.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_2.1.7_1522164368176_0.4533490010146948","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"conventional-commits-parser","version":"3.0.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.0.0","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"7f604549a50bd8f60443fbe515484b1c2f06a5c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.0.0.tgz","fileCount":8,"integrity":"sha512-GWh71U26BLWgMykCp+VghZ4s64wVbtseECcKQ/PvcPZR2cUnz+FUc2J9KjxNl7/ZbCxST8R03c9fc+Vi0umS9Q==","signatures":[{"sig":"MEUCIGZilyeS2PIBxdTyupoqKRF90QMr4MIWa7xCOMY8JUZwAiEA+gNlHR/vr8PrMWRyIHSMd+zdqyXThVNRNcE2aSTaqd0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDWNPCRA9TVsSAnZWagAAzUEP/RbJyKXdMGl0VRF3PbRo\nMxJ8Z78v188NpW9cRJbH2l6ADAMrgRZmRaHhxPZZt4Q6U+A9aRtv6DHLTyIf\nkqwKHTu1XEzzt3ki8PiX7xS+dNnJOA4J/RUlbcOdC6C1iA3zE+S+6FdKRNIJ\n80+y8SvXu7ioTw88QyeTDyUEC15oSJ7WMLRLX52I+7KySzcDcRhLh4Pf6Esu\nH69Mvqw8P3tbuf2PLr37lK4cA6vHVW6oVORMJu0VX2qJL7hL90+FMpR2YRH4\ne6WoMLTWdnN2aNRnaaUvvK+eb0wd8V57LAfgkUwqFMuuahmMbFuGBDTAOHez\nzpv21j2Pr7zKbyhQ15XipHwOpjHWwQz6ZfphI25+r/V2eGFmig+PdgYDhwwS\nU/S620Q/almg6XnDlrvixcPeeKxhYS4hoj09Kmgur/zACR2NtRy2bJmwePx5\nm812KaRXUC8OvBzUVMuijRxyo+jtFNuRfsKkDOhhHZGJGXbYJWLusTI69Bpl\nT+FIj/u0jfHCi4HMkTCfCa0Kh9DGsRuJ5NFdtbo1LNzO6ZJT3sjsoRYB5BSC\nloi0fBT78wEmX2hwTGwyLmqSasuVmoYLzAcO3JKH/MVGHwRxZJ1RN1kHtUwH\nSXJGNhHmg4lWQFFCPwZIl/6PSmJeLn9vujsMIKdoEE5janDKHNvY8EhZDKIq\nctQl\r\n=uTrB\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","cli.js","lib"],"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":"anonymous","email":"hutson@hyper-expanse.net"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"8.11.2","dependencies":{"meow":"^4.0.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.0.0_1527604046613_0.294903557354139","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"conventional-commits-parser","version":"3.0.1","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.0.1","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"fe1c49753df3f98edb2285a5e485e11ffa7f2e4c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.0.1.tgz","fileCount":8,"integrity":"sha512-P6U5UOvDeidUJ8ebHVDIoXzI7gMlQ1OF/id6oUvp8cnZvOXMt1n8nYl74Ey9YMn0uVQtxmCtjPQawpsssBWtGg==","signatures":[{"sig":"MEQCIBSjKovtT8NmAnlH+IQ7EiqFx2FAvLvbjCbQ6oKrxO0wAiAfQh1wuvNpa4w+Jj0ElfIb/JU3peKX0xj1NDywgXipcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2pqKCRA9TVsSAnZWagAA15AP/2/mg58HZt476KvdLNl8\nM8NPM0PRRqM2KyhD/0Rp3JngNI/xlV62UZjkO5VG9LDknoF4QWdvHO4ZWVgn\nu8sLhWklI9hEl7tx1R6gHUxDJP53O0H1kHDIP1qHLpPB4OCmvF5tkj4q6fIB\nySnUJVqD4mNLGeXtZNj3PzAU+vZVQuuJY4f3jLiAr7v6vreO+4AyUePoPNCt\nutYK5DTqwUuhSx1neIBCSiGbN0OgrurgoyFW6Th6q6/yLnO5HToRjPTX/qau\nDmr7tDMDxoABC/8dPdS74adfUrxmlEa0OV/O9oY8EnRAo4RpIB4kyqnSHw+Q\nF+jI4kGmWc9hgfkSg6o17gqxYW1VepUnnyvidjXRMS4VaK7k1rwrktpJ+/Xr\nVm+1JJhg0IdI8exGsONqs+Ernuf3IyXMV90Fj1P8G9Jzek8E7xAevTAOjSDG\n80wnzk7S4llw6v0aO39CyAbGXWEQ8EAmcwhYuYyXbS7kt64aPQDanZwcpKeI\ndpfmqn8iE/GzuDSJBOw1lPi82izFmvNd9A55tBkOo7Uz7iQm8x1+hKIjH7jW\nfOH4VPtJG+7LHaZ+rVlj7jnUH+88zQJR95ULOZYrQTbEsUyxW1rrnuvH9lBY\n6E6byOCrQK8a+UIp0M4O7qq8/oxmbAvAEXfSrVKwnjw5tR4ppXExHaGcCT1r\nrqJj\r\n=DYdn\r\n-----END PGP SIGNATURE-----\r\n"},"_from":"file:conventional-commits-parser-3.0.1.tgz","engines":{"node":">=6.9.0"},"gitHead":"f301b0de0b954713a50b2256a3140e21817d14c0","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","email":"ben@npmjs.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.4.1","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"10.12.0","dependencies":{"meow":"^4.0.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^2.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.0.1_1541053066216_0.358237574099056","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"conventional-commits-parser","version":"3.0.2","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.0.2","maintainers":[{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"1295590dd195f64f53d6f8eb7c41114bb9a60742","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.0.2.tgz","fileCount":8,"integrity":"sha512-y5eqgaKR0F6xsBNVSQ/5cI5qIF3MojddSUi1vKIggRkqUTbkqFKH9P5YX/AT1BVZp9DtSzBTIkvjyVLotLsVog==","signatures":[{"sig":"MEYCIQCQTaTXG/hBIFvpJmZtt7XxKibYWPkN2bqbHasfloQBJQIhAN0P1aPWts/lftXNr7VhrOHaoU4DinNAOdDt5vRwlsLb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50187,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrk2qCRA9TVsSAnZWagAALxcP/0YGAbXqdjmGeOYFRBxL\nZLhC3EL+kPXf9mW4zyOYqwEAaerMsuKg+iqPjQ28PwXgyZOtyMqM57VxfPRP\nojaa6BttK9aEOH3H8xsK0jbsdCc5ipcOlNlTExsty0+yS2FllpFNcxx95bBZ\nl5hVkYzR2DR662KORpEwGhUiEd/Y0Gzlp2jEj43Go+TcL8X8akFP2U5DNaou\nvBopQHx+Dc/qdz3L97eFjKidlu6atqotlHN2s5vob4lzC/xFbYtY4eDP0iOr\nNA9QFplQxV3/23E0vHZ/CAiRckdkZokRZnIqX4a0iG+vgc6utrJIYw6Y3z1W\nlUUWndhNIU15poJBL2kWn3iarVmqYz+0kb/3/UTIw+RBW/dS1knik3OaWKhL\nLPE0hRqgR+wM4RViEav6TE5X0LiO2jxFmwx2AR7HQWsO0p1UAkCchc0v1hJu\nBOkX7Qg7FiFKIez4RZ0+7DE1L5KvV6+Yt6zg9E67WGQSMcemV1yZpgonBw1g\nJbEX4PTZz24iKL1nxDnRlQQ5q1TwZ1q3y7Zi30+eRKsoZuUgmD1r6t4rGn1N\nKDP7f2q8D6rVH3WJYeZS0sOF63rTGuU9QZ236YrCVKIysBrECYRgF/bDtU1G\nkQFjQGqh64db6TmC9LfX29UFcRTwwhiHnQ7hpYof/KVo8u7o4krS2rvhcbbo\nUk49\r\n=eRwf\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"b3416cbb411f49420b13e8fe306528b372b07a8b","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","email":"bencoe@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.11.0+x64 (linux)","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"11.11.0","dependencies":{"meow":"^4.0.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^3.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.0.2_1554927018139_0.2263259434623588","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"conventional-commits-parser","version":"3.0.3","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.0.3","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"c3f972fd4e056aa8b9b4f5f3d0e540da18bf396d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.0.3.tgz","fileCount":8,"integrity":"sha512-KaA/2EeUkO4bKjinNfGUyqPTX/6w9JGshuQRik4r/wJz7rUw3+D3fDG6sZSEqJvKILzKXFQuFkpPLclcsAuZcg==","signatures":[{"sig":"MEUCIQD4JUVKTRYJ6iEoCU1ZfWRZTS0N2mwcXzzOyPhm+BSPQgIgQxMHMAW5skFSbBq9JOUQNDwku9ci0le4LOg4XtH7Vjk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50605,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4G/OCRA9TVsSAnZWagAAZc0P/iJjZjFdbg+Z5RyWNK84\nSEgyeg5FFcwQGhzZZsyqnQqrCgQ0rxjhOilhE6WE0DNt1/wNKrqmgjBis/de\nVImQXEKZjnAk7BmXbQbNErxUao692C9tI+/FjOupR07XhB56gd/bK3IhM0wt\n2dzd4W0tbpUITkFksN7MpLmjBDyxlLn+8FjiIhqgXblh86LMz2jzjNU1zOB/\nVRnLf3bLJ5WSdR5qnT2bvxDfqbvgxhwOhVUbl8ti68DM46f+zwx3agpI36yB\nrVVS4+Jt/XuvyxfBmGX/TQQT3liwGurHcnLSX9upkj9xJ7yTqios6pZqWtMS\nqoZq98ypoYqO3WJUIG0VfKspgexkxW6EA+ApDJnL2uLNXwPiaPDcZZ7rSs8g\ncwRST4nIPt9YT7m70BUGYioI+J4lGsnubWi5MSUUDkU6x17OMjsgao///JdO\nHB1pIPYewtqnyDGE+5Y1OUCaWctc13Gkpy5G4ER9NQc9I1TcJ7WP3aU1cUAk\nsj4Lks64ingUHVEdMohwYN8+ZfPaFouJ3yUh0MXcLL9ESQF6fQnppEl2o6/W\nhAAkSx05be/yP37wRSJ0kdKP370vRbo3D7a71YYt9nv845HIYOjAex5i2dip\nfqnmpMeBS9Yi5ADjbqdPDVkxqo4pNkd3OkXGagexLF4F7/zkvnWhFqfwAJ44\nOdpN\r\n=SUWo\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"38f5508191f8afc1a8503d1fd24e2de6d05b8738","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","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":"Parse raw conventional commits","directories":{},"_nodeVersion":"11.12.0","dependencies":{"meow":"^4.0.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^3.0.0","JSONStream":"^1.0.4","is-text-path":"^2.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.0.3_1558212557989_0.29394601236540185","host":"s3://npm-registry-packages"}},"3.0.5":{"name":"conventional-commits-parser","version":"3.0.5","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.0.5","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"df471d6cb3f6fecfd1356ac72e0b577dbdae0a9c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.0.5.tgz","fileCount":8,"integrity":"sha512-qVz9+5JwdJzsbt7JbJ6P7NOXBGt8CyLFJYSjKAuPSgO+5UGfcsbk9EMR+lI8Unlvx6qwIc2YDJlrGIfay2ehNA==","signatures":[{"sig":"MEUCIEjPW3BSWaF2e/4KvVL8eu3Uqe+0s44xqaSXeBljoEaaAiEA2QxntCg5J/v65RlMh67iVPIYD3PQxrkWjABvfD8shrg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlh88CRA9TVsSAnZWagAAOFUP/2A/nBGWlfTwKyc3N2Ik\njPhA8a2euiv0RK6wWFMkpNNcrrmFZJGBdl4qCFKweunTEfbUAhlZ90rzXV5/\nn6uvj5sX6FR6TbAqom6dgAln7r5eM8BFoPVn4T+R0ibjTeMNRd62isWhGD32\nABYjNcdxkBoy83PKCZtKJ0F0uHWcgxC/TLvTMw1nZKHUWiM/0xGnUS3eJpMp\nDCj48bqGQ2q73iPIdtEzw3EhC5F3pzFRjTNOkvhsVQ6bdfSOVIoBuIUteSCf\n7+6Mx0Yp0YpwPCIVqyCRFmUYv/KEFNeYm2j+Q2MXLRZs6c9VYTsk6yXPSQug\nhgtwHVL05h6Eq+NidAWRdBRtjIBIPkFp7P7CgLKXBoOfE7KjLLYmlnH86XQK\npILeArV9JH0SeDqpOQRN0gViNcPbwOv619xpgeBbq70hTngbserFwigWZ+DT\ne+L2yJmIZfBo4szGOcJT5TqY3r9W0j02xuOs+AsSoZtLbCFzBGblHZE7J2Nl\nEa99qeckBCYlSZsnCr+vOVdqz/+HFoTB6Ok3BzYszGeoyTt2Cg3fMD+KIjFN\ncKNyZgWu5BLR7avbjeebSGkM5HrwBdCiRrYa1CU1OTctgnN0bv0nSOMZB0Zj\nfI+is1QMuwYAWZJy8vovD+kHPVCK5AymR5ogxNGWnZyj5ndaQl3Qb9ESiijb\n573U\r\n=w8RM\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"7c1c8ad819b05c12c7d58c92ac386b45ada6f6a8","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","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":"Parse raw conventional commits","directories":{},"_nodeVersion":"10.16.3","dependencies":{"meow":"^4.0.0","lodash":"^4.2.1","split2":"^2.0.0","through2":"^3.0.0","JSONStream":"^1.0.4","is-text-path":"^2.0.0","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.0.5_1570119483970_0.732314149282824","host":"s3://npm-registry-packages"}},"3.0.6":{"name":"conventional-commits-parser","version":"3.0.6","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.0.6","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"fe6505fc7253b2d15c2237158673098ae7404a11","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.0.6.tgz","fileCount":8,"integrity":"sha512-9FDoCTnNQRhiDRhlRx6UEaxpcKPy6hiHYWZqJO80BAmFlbovAnMcCkdcxGyJGTe8sDidVHEiqPkLoJuG/aUs0A==","signatures":[{"sig":"MEUCIDobe8QDovnik/H/kM4q4YChNIQli06Cnh6imS8XMYElAiEAvcXs2+spnY1IHmr/jxFPLwJ4IFn0EjUv8f7kjZVnOQ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsVoZCRA9TVsSAnZWagAAPXcP/Au3uuhQuvlLZ3pR9ycB\nreKk2qwavCif5gSM/dSW1U7rVvZQnU5fQaw9wI4yyHLXW55YmCCT0DwsAnf8\nHhwFF9JoGU0M81sllPAQU3NhzWj1EPZC7ioHGIHCd8GiSEC4fGDuTIElfayD\nF2edgCYkMigOCQCAPhEF/oOy3WDXg6x2V+VkczEUOjZdOFgYraxV9oz2rUAJ\nkoaCmVE3dBEgd7c39GiQ5DOXGfC+QR+wVDCAsp7Lx0gdMHiCoKfTjywLS8A8\nkaytRqzVCm+r4xB88otIMgV3su2e/385sfoaoL+6I6eDR7VCx1zhK+BlOFTg\nnIoYzOWbdD+zyNkmN6+LRXm/LgCYSs8ugy+07Rp7/agpJVXPi2k5seQ2p1je\nNELnZpKtVEA/lMMSZyW+iHSlzyht4EnhzJL6RlmXRlI5oe2VUZPbTEcPwJgj\n/kqPyBBsROVy+HmJzb0pgEz7thbNS7YnsDp1SBeoW3RvBt3IsXOj4/U3sThp\ntUEhEiZLiBH8jYnY70eW9Vlz8rLOu+qsEQCAuP6Lwi+21txPIhpXZnzDl/YR\nRegEdN+5BqyFyvT/bBlN4WQ1Hii7nDb6mEyoPhfeoVKoSlx0PA57dSzqvi2J\n1S1GifKOkU3xEZghytYCvQaYJ+IP29NmhD75ppcdHngptKPa6Mnhd8/AD82J\niRB7\r\n=RWgP\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"e865af4df8d06795cebc7af09364ade19119e089","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","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":"Parse raw conventional commits","directories":{},"_nodeVersion":"10.16.3","dependencies":{"meow":"^4.0.0","lodash":"^4.17.15","split2":"^2.0.0","through2":"^3.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.0.6_1571904025561_0.5157665568006444","host":"s3://npm-registry-packages"}},"3.0.7":{"name":"conventional-commits-parser","version":"3.0.7","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.0.7","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"55b6cde6a2d0b4a7ab399392777d527134a8d05c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.0.7.tgz","fileCount":8,"integrity":"sha512-4mx/FRC92z0yIiXGyRVYQFhn0jWDwvxnj2UuLaUi3hJSG4Thall6GXA8YOPHQK2qvotciJandJIVmuSvLgDLbQ==","signatures":[{"sig":"MEUCIQDQEn6x2+PIipX1hioFt27qzL4AjjKA3NfyRE+jy3CopQIgZrygTj5Vd9FE+imyQfp7MJUXIUi53pOk5faJnywT0Pw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52749,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdw9VHCRA9TVsSAnZWagAAEqoP/ip+AOIeV4IyRBnCCfEA\nwUrekIxHMKAuza6bnsxyUqQYZXvz4w7UvUXJ5hgO1JFlJWK952OKfL4l5fTC\nLaCoixq6QK4OJ6fzk9g0wK3g/MzYauiTm7Gkguadg7U8quAJtVdZrQMpHs+o\nnSn3S54O952Pzm8wHF8oXSIik/Tvw9ubDh5fUKLx0oFhcLL4tMFKyKXLkJ1w\nuDxCSzB5A2SDSqSy0QTzAwR9i+8fTEeBZ0O6qaMbmCFbEDQ2NCjhP1KDpAXE\nmCPau+26gnAipUHs1yOP+RVFvLZRsHBEqx3U0p7v7RR0E/V9Oy61ouCGzOf5\nTH2iRqPDrN4R03IPyiskSm7OKN+K3HhkALU9xeg0dig8IovKvpGb50Y2tmP9\nVAmr4SqQfB94HlR1HfpBdb6enS7zET5YMwx8ne3BeEHHgpTTNG8bhSahUHYt\n/H4MrrEh/9N3sZIId0keEvyNxVuPGnPlT019GK2weXH1UOeQO5Sg3SCdj588\nThqRn+qhT0+7sGgM8Gtw4jpUZJ9pzG7+ha+/g6QEwXtsHC1rDUJG/gsbGOvP\ncBXTrLbOQzynFgsLD1X7Ww8Y1HXMvvx+thgSQr/V8VXSb2nD8N8HnN3C5eiL\nO+0XQRm0qs0LDTMPtR2UrcPTvB640GcefXyJlSfk/JddPJ5g6dzF7+vOPzOH\nCmoV\r\n=n3Cz\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"741e90744cdb58e82e71feb36018047d7baca768","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","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":"Parse raw conventional commits","directories":{},"_nodeVersion":"10.16.3","dependencies":{"meow":"^4.0.0","lodash":"^4.17.15","split2":"^2.0.0","through2":"^3.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.0.7_1573115206788_0.04636813110709892","host":"s3://npm-registry-packages"}},"3.0.8":{"name":"conventional-commits-parser","version":"3.0.8","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.0.8","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"23310a9bda6c93c874224375e72b09fb275fe710","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.0.8.tgz","fileCount":8,"integrity":"sha512-YcBSGkZbYp7d+Cr3NWUeXbPDFUN6g3SaSIzOybi8bjHL5IJ5225OSCxJJ4LgziyEJ7AaJtE9L2/EU6H7Nt/DDQ==","signatures":[{"sig":"MEUCIQCJwgY4qoFUPEVWGTl+ENKlCaM1xH3yk5V4Z3E8RsIBugIgfXzriZZnoSxgDe5MPuC8leSk5bCjigQ+FFCO4LnOV/o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdzdBqCRA9TVsSAnZWagAAghQP/2v1HF9pwFJ2egPAS/or\nL6ikl+v5OXDYoz/Z1GL9M8A8G6SsVyRYqAC04eI+HowcBR3mwjo3HMWWb3Eo\nGE6iiaucnn0FXdO8im6SVygP+I+NpBZOycwMoiN2n2C+vwQgbQO9EB/XMFEe\nYPKFhQDnXDVvm0Eu8/hpV0scTXVS17Ghs0jL4FC8X0Nz+D+0T9tJOZjTIMof\nyDkxphvveYo+Vx8x6Ezuv9+mKZA7A4hXvscya6JXqoq63j8Ed3MRBKkXFXp2\nJ0iEZSqPJsy7UUvmvRl2e9WyQup6pr6fyVa/sEaxypyb7Kxe6dqABHCS5aJg\nF3mkfLxtyovKADApR5VhUAeWMDJOHhFyPyIUMiaNFPik7/8TOlDf0oCNGqtC\n+1APx0ejXr5L74MBjEJU25iPXLMbLy3zV+qWJaYj8R28Zdkvyy/xUQaQZRGb\nIHpsnkYlCgdmXHY2Hk14YEMKqpt76cMRA/N8Yjopjv+UhEzE0ObdBb2zGIxi\nKRahgPvHEoa1BJEOpujIT/huCQvaaRf89oYlyn0MGdNN9ltd/gob5+q4Nk6X\nRLsZarhPE0ugbFQm+8D3DbIbw+Oy6fBVywOq4gaBET8rVKLenw77CKRSyyqu\ncXG9etP7Vjdp7rRBjqj4Im+06sxZnhXPya2a/8Gnf8soBLBKzaVVDlZUYoz+\nzoUc\r\n=mE4V\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"79217815a7ce5f3d3f833961ce9a14bd454e5789","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","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":"Parse raw conventional commits","directories":{},"_nodeVersion":"12.12.0","dependencies":{"meow":"^5.0.0","lodash":"^4.17.15","split2":"^2.0.0","through2":"^3.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.0.8_1573769322161_0.9936601713586302","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"conventional-commits-parser","version":"3.1.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.1.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"10140673d5e7ef5572633791456c5d03b69e8be4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz","fileCount":8,"integrity":"sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA==","signatures":[{"sig":"MEUCICwGt4i/NpiN+gJe3GeLNYFo95cFiRbVq0DKMmhtOnQQAiEAyC78y8AAlApnQ9bzy7RlnVxGvCfV+jqgaC2jfNAatns=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54888,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetbPWCRA9TVsSAnZWagAA9msQAJT7Y0QTqrJeRDWcuYZ0\na4C/LDxqSlHl/eonNpk8+XdEjYEFMr0UjYkVetyM529AegERnZMsD/5kTj5F\nx3sYg1LDu9IG9X1gi6SoWlWxULZ+daQqJ8uh5dChHhj1e7jQwlHIL2fGf1Wz\nWZASix+cIU54oIU9kcJi73XuRnBs7OhyLxRG1b4cdOV0JPYxFLHuhm/yhP3N\nOvl4U+0D7/2jXCSIaAKzaX92lbpNAk+6whXvJin/XwUD2a1Yik4tSzlpDTGE\nZnAAmQlMMz0GpNaShVgJoL4hcOzv8yiskzLSBk5IqlfWCfC8NATfJpHsWiun\nUgz+5aIhaJD59Fx1yz5Bn6jbgQEYXjFTgizMv/8/jbQrvR4gHvJXhCf4R3Hb\nbYvHzniL4pJ7BU0ydgSUmCeI6P9RtpbB+RFBYyw0DuxGWK1O+e+hKi/rrqYi\nS3QRrXqcpGpsutI0qC+gIlMTzCuQXiX3jxZuLdHW3fZCjoVanL9RbkzgkvqC\nOBu7Inx2bjZm1M2VOMgjVOcmTR6JYvisbd+lflzEJ7u9FEMKohUtGRqj7TZI\neNGtDqHAupU/WFii1e1sckFF+5YIncEmbIepdy8AWLwtWBoA98HPUUKq+EWL\nUtqhy2pjH7i2blFr8wAMort+W/eE9SxDXwnjpY/z2dLzZp9Ph98h2vxJVvvi\n4IMn\r\n=DQZA\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"gitHead":"83643c5a0d2c4d7c9ba14cbf990ffbc577a51e8c","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","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":"Parse raw conventional commits","directories":{},"_nodeVersion":"12.16.3","dependencies":{"meow":"^7.0.0","lodash":"^4.17.15","split2":"^2.0.0","through2":"^3.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.1.0_1588966351243_0.505902039004817","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"conventional-commits-parser","version":"3.2.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.2.0","maintainers":[{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"tommywo@o2.pl"},{"name":"anonymous","email":"hutson@hyper-expanse.net"},{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"gustaf.dalemar@gmail.com"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"9e261b139ca4b7b29bcebbc54460da36894004ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.2.0.tgz","fileCount":8,"integrity":"sha512-XmJiXPxsF0JhAKyfA2Nn+rZwYKJ60nanlbSWwwkGwLQFbugsc0gv1rzc7VbbUWAzJfR1qR87/pNgv9NgmxtBMQ==","signatures":[{"sig":"MEUCIQCx6hltyAuGqIGBNS2QXHbdam/xyFfnDmlU/YLVzf8bwQIgMWFyrwhn42lmH/uyjFSQ6BEU7WdNr8GwCgxEWz92vfw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56442,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfo1R7CRA9TVsSAnZWagAAMmEQAJBdeAYgNfo5l95rPhtw\nG5Z2N+lMm4DJa4lJwQC46zUs4JI5MI7ykzm9MwFNimbZslSnLvceyLwRn6uI\nyS2JljcZ9jyhAO6GONwDgdOAYd1pxcfNrAiPznJ21AL+AkNJ2zu3edOYq1fD\niql8hDoqeiTtZfgkEhkB5lg9dHxlDP6wC36bh5K7ZhdefX0QMtmrgsTJn15k\nBH+SN2nNg+keZQ6lCp6unNt3y62CbWtYs9uL5T+muWAHhBW24MRwaC6IeO9u\nJ3eTiqH9pNXHcK+Y+WAp7b+rE2XsXc5qjx69G/O7sC+GvorIKrMn9JqUISfJ\nnChZlP5c7DmfOYlBQd0cvSZzfZOFA+agmVbGCH7syCV8oYsSOpSOHP6Ut+Iq\n9pEO69/qyWjSP16/V1mNJikcEuyFZwqk55ADMACwxbVNlKk0UJeevnvo0Rtf\n580x5HNtmFdihRBZ7Betzh0oU49z5+i2sRUEwTI0IjTslJp0VS12pFVXHzkZ\n2BHBVQ7dF3S2Hnk0MuwNWnMOqJ3X1ql0AXqJndMj4PRt3n8SutA1saU0RCN4\nKaONw63LwCW8GfzmXqrPu+U9BbfjN7O9uYCWgfe9d8EmPOyHyvcgnG0cb+Rw\ntimBKdW/5Sul2HsY0aRnNh/HmYyEVv00hppAbGY6PAvhkv8bquI9A/tDVoVM\n7ahH\r\n=W+Nm\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"gitHead":"cc567b98facf71315f4b1620d81ce01d155efaca","scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","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":"Parse raw conventional commits","directories":{},"_nodeVersion":"10.21.0","dependencies":{"meow":"^8.0.0","lodash":"^4.17.15","split2":"^2.0.0","through2":"^4.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.2.0_1604539508842_0.20547774770309468","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"conventional-commits-parser","version":"3.2.1","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.2.1","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"ba44f0b3b6588da2ee9fd8da508ebff50d116ce2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.2.1.tgz","fileCount":8,"integrity":"sha512-OG9kQtmMZBJD/32NEw5IhN5+HnBqVjy03eC+I71I0oQRFA5rOgA4OtPOYG7mz1GkCfCNxn3gKIX8EiHJYuf1cA==","signatures":[{"sig":"MEQCIF+Ta+sY7s8o6Nt7/wPDy1TumqCBSflwhkZtZyYGbUzvAiAWbPeVVlZXEY2/UKPYZ2GRNOJKghJ8UJtJ46QAMZyffA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKuj3CRA9TVsSAnZWagAAIvoP/j8YaKyfkKNyvCnf268Z\ncVyNsEDdTqRiIiS6o/vKx7GKVfMjEJxy2reObgova1FgM/gVGXEmY6vEj3MS\nXk9OG7+wh5xhBd8dple6MMkmk1l50xTJ87SUq5LbQSgQQQCNaC76OIxIFfiF\naqhRCz7ttmyJoNgAgHGRGriFWi5fPBgVTFmsG3IeLok1KTGl/x2C5i/jhrAX\nAQGxw9vgq/ugSUQ9bW2x85/GrtiWdKrvjaCRumG13Pjq3L1DV0iNigsRtQgc\nFaZurFlfQvYOd2ayaBkZtAYQ9iv+RXQaKT/fXqJOil+hMjdJ8ZFWIJd/MG1R\nefe/olUyY9w69N1DlDim/lG9+A6pmmSZwASE0ChT29bVZs7rGuzs87y+6jxL\nZ7af0xy1L2c7KDO8nX3SZeFkUhFyVpID6iKje/CC68HdrIiKMyXavQr8MoJy\njC+4i1hLw8173z9bDE3t3xMuGXsvSKvobOJz5xwspOSLiWRNAoFIhm2A27XC\n2etC858sskTUiVkXIf2ZAkxkDng59MytF9hzF3kPWGu99Eg8SnOBjyWaaFyc\nnvBl5WIO1VdBPnI8kt8ymYIfrvmE6X9apJt3+46+opsueln4TVv93jcYNtm0\nl08tB3utqFwqZjGodS9jA5y67Z+gd58/3wwyoEBFfrnhdH3P5Sdp/gIUyLpU\n3qBZ\r\n=1wTr\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.10","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"14.15.4","dependencies":{"meow":"^8.0.0","lodash":"^4.17.15","split2":"^3.0.0","through2":"^4.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1","trim-off-newlines":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.2.1_1613424886869_0.8175850611407449","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"conventional-commits-parser","version":"3.2.2","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.2.2","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"190fb9900c6e02be0c0bca9b03d57e24982639fd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.2.2.tgz","fileCount":8,"integrity":"sha512-Jr9KAKgqAkwXMRHjxDwO/zOCDKod1XdAESHAGuJX38iZ7ZzVti/tvVoysO0suMsdAObp9NQ2rHSsSbnAqZ5f5g==","signatures":[{"sig":"MEQCIBvJ52d/LFMwJBxZ0UdaMW12DOdv/Mh/9T6HcNYPz4GdAiAk4NtauJqMICph72ve+e74DFPZq0PHFjcsPHVXIvJk1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57352,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOh4/CRA9TVsSAnZWagAAUjYQAIp5P8yb4WyRfu135hiX\nlrERsToMKWLSzl0Cz5qWy42/0maMbmUXmfwWFWI9vT8VqOsD/VmPo4ueQWVC\nrHbEQCU62D/G5wwO2RcGr3dg+GqOVTzCvO6xCO/0jU6bw0bJF0SYP11KT2iJ\nyfpfy9HUAmBK+5ZjQ7NrLtAp2PF+wm4rtZ7iPwHosZB/pSuDKdDNEH+otB56\nufBxyp84+iufJlWM6bcgbx1bbmNX0xcngO4xuMvEFV5EVPWEhQ5FEWO2CEdz\nGi4iJjz5V2HzV1fAxIPqqmVnpiTOEUpbzSSzuaoEWpsNihOFrza15i4WGQul\nyTMXz4xLaWjdW/jI/XwAzcEW0z0cdySZL2+U6jI5FBgfg92WBR+u6iXAV8Il\nZbzRG/h5JZz0aFaqMW2lUA2xYY5ErZIts/7TU8u6Nml48QXDvpVQxAC1VhxN\nTkCN6s1RMrRCkOr4KWYPAraOG9TdCVHhnnEtZmQj+7nffkapkvnm2cPm+BQ9\nyQNLrtlgzJ5dL3Z4iwJCR/WX/zyUrng7JzzTzdBH33jmUnnxeff5MV5HSWsQ\n4mKzCbbKinJwMuPtHUuh6E/YUd/Anloe70Dq8hLuIOsyBxmJ42BtQ09ZHJKt\ndVBFqMYHU6hSjXa1HrY5hioyST2xVHAosb/fKI7zCiUEqNXiiwWBf2rAbGiD\nfHJe\r\n=nY79\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.15","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"14.17.6","dependencies":{"meow":"^8.0.0","lodash":"^4.17.15","split2":"^3.0.0","through2":"^4.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.2.2_1631198783162_0.1427122132865537","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"conventional-commits-parser","version":"3.2.3","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.2.3","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"fc43704698239451e3ef35fd1d8ed644f46bd86e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.2.3.tgz","fileCount":8,"integrity":"sha512-YyRDR7On9H07ICFpRm/igcdjIqebXbvf4Cff+Pf0BrBys1i1EOzx9iFXNlAbdrLAR8jf7bkUYkDAr8pEy0q4Pw==","signatures":[{"sig":"MEUCIQCLNcITrvO4420SOsnZqQF8mL8CIZNWp2MAs8lm9mb13QIgILA2zjWc+f5OSrb7UX2BagaYRI7oj5U9uZmpQZ1Hbdw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58015},"engines":{"node":">=10"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.15","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"14.18.1","dependencies":{"meow":"^8.0.0","lodash":"^4.17.15","split2":"^3.0.0","through2":"^4.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.2.3_1635033943867_0.10310148159853916","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"conventional-commits-parser","version":"3.2.4","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@3.2.4","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"a7d3b77758a202a9b2293d2112a8d8052c740972","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz","fileCount":8,"integrity":"sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==","signatures":[{"sig":"MEUCIQDdrSNPRRAEjrCHwJwqg1kgM44pDqrGYbQAOEZhoE6RVwIgNcwSW1RBZFuQEFPK7BpZHShcGLYTxE96KYdBMqdKLQo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58506,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzLtkCRA9TVsSAnZWagAAqbYP/iCy29F56ihdZKyZte21\n8h/suJwhUwK4BlW+ALEzQEfv76WNELEXNhM7KBIz3Mp+/IoPfa5pyIrR/Z1c\n34ngN1CiLqLoUIRVLUrf8cUIqXk9yPRrBeICQs0uQVhgDesvi4UVaT8ECwhU\nZWQvdJW/DkZz4wxtfb2712QPABUgecWqv34cW8j0cjazeG3yysIYa+3ujqP0\nI2PvozYbp0Hp636SHXU4Q+EW8Y1Ap8XNePrdMaUits8u8yGwd7L58FKYkBOu\nuB4LeavBwniGwIGLKrvKFDzJT46tUgYxAWgNVKESft0B8hjy5MzO7xHM2icd\nOT1tOmf/ZfY7lUkHoXgkK8WR1+6bSRbBzgikxQEFvovFmsw4k3OnJBDR2sab\nHKwq/RDiFhW0wOv9eG5s01BN86/6EJEnMmp06xZJtECbCUYprTKCP9xeOdZw\nkjNjrzbJvCD2ZOnZeqEEB/I/3w54z7D1LzyrTfCMnDXNgYguKC+82eeHWkr+\nCD7tiyKTGIMQ6vI/P5Q+MPLuf7/a+7XdJ3GHR8B7C+LCobjrMzPBYbZImTyM\nlKKsY8VI9IaCh7Qzv4jMuObnYImXgQintmNaiSLDbh8HBz1eqLrdNFW4n1aT\nbx+GlxJVwY0L7kAaDg1VTN7SMuTkChN5212iCtR8o1ovU4EUSrI1lhTYguct\nuiRJ\r\n=ptJt\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},"repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"6.14.15","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"14.18.2","dependencies":{"meow":"^8.0.0","lodash":"^4.17.15","split2":"^3.0.0","through2":"^4.0.0","JSONStream":"^1.0.4","is-text-path":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_3.2.4_1640807268683_0.3925164189818322","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"conventional-commits-parser","version":"4.0.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@4.0.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.js"},"dist":{"shasum":"02ae1178a381304839bce7cea9da5f1b549ae505","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz","fileCount":7,"integrity":"sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==","signatures":[{"sig":"MEYCIQCbtRQrVvEncKuQglwsjsZRGRUclX7CyLnm31pv3gO4HQIhAPFvyuTYjSizgqo3rvF6KIuzoxGMyvgUt+LCb4C7NHoK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30149},"_from":"file:conventional-commits-parser-4.0.0.tgz","engines":{"node":">=14"},"scripts":{"test-windows":"echo 'make work on windows'"},"_npmUser":{"name":"anonymous","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":"Parse raw conventional commits","directories":{},"_nodeVersion":"14.21.3","dependencies":{"meow":"^8.1.2","split2":"^3.2.2","JSONStream":"^1.3.5","is-text-path":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_4.0.0_1686061522990_0.6108222142156203","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"conventional-commits-parser","version":"5.0.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@5.0.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"cli.mjs"},"dist":{"shasum":"57f3594b81ad54d40c1b4280f04554df28627d9a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz","fileCount":7,"integrity":"sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==","signatures":[{"sig":"MEUCIFqghfcHQQRL0LTok+FxZ257zxwLmR8qz72uE7sPhLEpAiEAmnkGQVKqfzwy+AjgirzQLkUCmMWtd2LpPAnfHAfjg14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29900},"_from":"file:conventional-commits-parser-5.0.0.tgz","engines":{"node":">=16"},"_npmUser":{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},"_resolved":"/tmp/51a971be9849b84f048c06a1b94d781a/conventional-commits-parser-5.0.0.tgz","_integrity":"sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"8.19.4","description":"Parse raw conventional commits","directories":{},"_nodeVersion":"16.20.2","dependencies":{"meow":"^12.0.1","split2":"^4.0.0","JSONStream":"^1.3.5","is-text-path":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"forceable-tty":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_5.0.0_1693088728450_0.5612062848976132","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"conventional-commits-parser","version":"6.0.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@6.0.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"dist/cli/index.js"},"dist":{"shasum":"74e3be5344d8cd99f7c3353da2efa1d1dd618061","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-6.0.0.tgz","fileCount":33,"integrity":"sha512-TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA==","signatures":[{"sig":"MEQCIG04h+CdKAAqdOBEe8KwpUswlKP0ARKXlYJNfDWRVyfOAiBma5cD9/dbvYoCeaniSbITqTmBlZ/kmF/01n4EQMJ2hQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":74800},"type":"module","_from":"file:conventional-commits-parser-6.0.0.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},"_resolved":"/tmp/6b1839ec978a1100fb17df80d1292e71/conventional-commits-parser-6.0.0.tgz","_integrity":"sha512-TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-commits-parser"},"_npmVersion":"10.5.0","description":"Parse raw conventional commits.","directories":{},"_nodeVersion":"18.20.2","dependencies":{"meow":"^13.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_6.0.0_1714777020719_0.670867804577588","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"conventional-commits-parser","version":"6.1.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@6.1.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"danon0404@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"dist/cli/index.js"},"dist":{"shasum":"a650db0c139a99d6c52bb5b192102c7c4bdfb734","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-6.1.0.tgz","fileCount":33,"integrity":"sha512-5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw==","signatures":[{"sig":"MEQCIDNiu5sAXGaMf1gcOPk70r+IdpBhqBz1B4i4w0zDscYWAiAOoGj6onAw6uSwaWlOd6D7jzbZ/UEHh5QI881TuAp7Fw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":75229},"type":"module","_from":"file:conventional-commits-parser-6.1.0.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"anonymous","email":"danon0404@gmail.com"},"_resolved":"/tmp/f66f5174d3e488f4bcd95b9e7b4fb3e0/conventional-commits-parser-6.1.0.tgz","_integrity":"sha512-5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-commits-parser"},"_npmVersion":"10.8.2","description":"Parse raw conventional commits.","directories":{},"_nodeVersion":"18.20.6","dependencies":{"meow":"^13.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_6.1.0_1739734070199_0.4986695980508009","host":"s3://npm-registry-packages-npm-production"}},"6.2.0":{"name":"conventional-commits-parser","version":"6.2.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@6.2.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"danon0404@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"dist/cli/index.js"},"dist":{"shasum":"1a2159471896f43101b8817e5709b8da78334aaa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-6.2.0.tgz","fileCount":33,"integrity":"sha512-uLnoLeIW4XaoFtH37qEcg/SXMJmKF4vi7V0H2rnPueg+VEtFGA/asSCNTcq4M/GQ6QmlzchAEtOoDTtKqWeHag==","signatures":[{"sig":"MEQCICZTfQ85eHkJ6/wOLFg9HvzOHK8TPymfrWnqxemLW1wXAiBCjUxb/VAtOk8MqUqE7BetN98QPjFa0202JLR9YOyCGw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":76984},"type":"module","_from":"file:conventional-commits-parser-6.2.0.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"anonymous","email":"danon0404@gmail.com"},"_resolved":"/tmp/16bcac86db1596bd2672109155e121d4/conventional-commits-parser-6.2.0.tgz","_integrity":"sha512-uLnoLeIW4XaoFtH37qEcg/SXMJmKF4vi7V0H2rnPueg+VEtFGA/asSCNTcq4M/GQ6QmlzchAEtOoDTtKqWeHag==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-commits-parser"},"_npmVersion":"10.8.2","description":"Parse raw conventional commits.","directories":{},"_nodeVersion":"18.20.8","dependencies":{"meow":"^13.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_6.2.0_1749465655093_0.8128400929757644","host":"s3://npm-registry-packages-npm-production"}},"6.2.1":{"name":"conventional-commits-parser","version":"6.2.1","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@6.2.1","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"danon0404@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"dist/cli/index.js"},"dist":{"shasum":"855e53c4792b1feaf93649eff5d75e0dbc2c63ad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-6.2.1.tgz","fileCount":33,"integrity":"sha512-20pyHgnO40rvfI0NGF/xiEoFMkXDtkF8FwHvk5BokoFoCuTQRI8vrNCNFWUOfuolKJMm1tPCHc8GgYEtr1XRNA==","signatures":[{"sig":"MEQCIDqaMCVqT96TOLbN4HTVWY5gxiS8UJjkHzy0MFGITYPcAiBCpuyjtDNJI2AQYNKJdq/tT+28r8zhtUTtXUsWlQJWaw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":77858},"type":"module","_from":"file:conventional-commits-parser-6.2.1.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"anonymous","email":"danon0404@gmail.com"},"_resolved":"/tmp/d538c995248c4b40f60fa36ce75bce66/conventional-commits-parser-6.2.1.tgz","_integrity":"sha512-20pyHgnO40rvfI0NGF/xiEoFMkXDtkF8FwHvk5BokoFoCuTQRI8vrNCNFWUOfuolKJMm1tPCHc8GgYEtr1XRNA==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-commits-parser"},"_npmVersion":"10.8.2","description":"Parse raw conventional commits.","directories":{},"_nodeVersion":"20.19.5","dependencies":{"meow":"^13.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_6.2.1_1760992912528_0.4056694743520417","host":"s3://npm-registry-packages-npm-production"}},"6.3.0":{"name":"conventional-commits-parser","version":"6.3.0","keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-parser@6.3.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"danon0404@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"bin":{"conventional-commits-parser":"dist/cli/index.js"},"dist":{"shasum":"fc170753ca66f31940a438539bf48e4406ac54b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-6.3.0.tgz","fileCount":33,"integrity":"sha512-RfOq/Cqy9xV9bOA8N+ZH6DlrDR+5S3Mi0B5kACEjESpE+AviIpAptx9a9cFpWCCvgRtWT+0BbUw+e1BZfts9jg==","signatures":[{"sig":"MEQCIATjTtFJMD1D0UHr/d4aDH/64MOj2YIH2IDjZy7IMbSmAiB3grLCxLHneVRZXKlf68m/6G7WaDDc1A3Ci4to0bNaeg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":77797},"type":"module","_from":"file:conventional-commits-parser-6.3.0.tgz","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"_npmUser":{"name":"anonymous","email":"danon0404@gmail.com"},"_resolved":"/tmp/7e3b74faa8deb5e5d33e1a2f4d898600/conventional-commits-parser-6.3.0.tgz","_integrity":"sha512-RfOq/Cqy9xV9bOA8N+ZH6DlrDR+5S3Mi0B5kACEjESpE+AviIpAptx9a9cFpWCCvgRtWT+0BbUw+e1BZfts9jg==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-commits-parser"},"_npmVersion":"10.8.2","description":"Parse raw conventional commits.","directories":{},"_nodeVersion":"20.20.0","dependencies":{"meow":"^13.0.0","@simple-libs/stream-utils":"^1.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-parser_6.3.0_1772394302937_0.8076249605654646","host":"s3://npm-registry-packages-npm-production"}},"6.4.0":{"name":"conventional-commits-parser","type":"module","version":"6.4.0","description":"Parse raw conventional commits.","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-commits-parser#readme","repository":{"type":"git","url":"git+https://github.com/conventional-changelog/conventional-changelog.git","directory":"packages/conventional-commits-parser"},"bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"keywords":["conventional-commits-parser","changelog","conventional","parser","parsing","logs"],"engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"dependencies":{"@simple-libs/stream-utils":"^1.2.0","meow":"^13.0.0"},"bin":{"conventional-commits-parser":"dist/cli/index.js"},"_id":"conventional-commits-parser@6.4.0","_integrity":"sha512-tvRg7FIBNlyPzjdG8wWRlPHQJJHI7DylhtRGeU9Lq+JuoPh5BKpPRX83ZdLrvXuOSu5Eo/e7SzOQhU4Hd2Miuw==","_resolved":"/tmp/051ec93885a86240b671e7ad2fe561fb/conventional-commits-parser-6.4.0.tgz","_from":"file:conventional-commits-parser-6.4.0.tgz","_nodeVersion":"20.20.1","_npmVersion":"10.8.2","dist":{"integrity":"sha512-tvRg7FIBNlyPzjdG8wWRlPHQJJHI7DylhtRGeU9Lq+JuoPh5BKpPRX83ZdLrvXuOSu5Eo/e7SzOQhU4Hd2Miuw==","shasum":"8ac1c12ec467354ed4d73ec940efe380e1e83686","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-parser/-/conventional-commits-parser-6.4.0.tgz","fileCount":33,"unpackedSize":78246,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIEXAXzYEoZfei4C9Rn4x93cTxKCwtPojKIWVnRamdqjWAiBw+vL2aFS/Df6Vf5dih0AiUjOginjGTK1TwjRulBWSzA=="}]},"_npmUser":{"name":"anonymous","email":"danon0404@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},{"name":"anonymous","email":"danon0404@gmail.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/conventional-commits-parser_6.4.0_1774799199049_0.6948727157763697"},"_hasShrinkwrap":false}},"name":"conventional-commits-parser","time":{"created":"2015-03-01T14:06:02.507Z","modified":"2026-03-29T15:46:39.355Z","0.0.0":"2015-03-01T14:06:02.507Z","0.0.1":"2015-03-01T14:18:51.231Z","0.0.2":"2015-03-01T14:38:51.362Z","0.0.3":"2015-03-02T06:23:54.932Z","0.0.4":"2015-03-07T00:24:33.647Z","0.0.5":"2015-03-07T12:59:19.928Z","0.0.6":"2015-03-07T14:01:12.264Z","0.0.7":"2015-03-09T10:29:18.066Z","0.0.8":"2015-03-10T07:23:06.047Z","0.0.9":"2015-03-10T10:55:01.331Z","0.0.11":"2015-03-23T13:05:00.645Z","0.0.12":"2015-04-02T02:57:27.548Z","0.0.13":"2015-04-02T03:58:25.038Z","0.0.14":"2015-04-03T09:34:53.839Z","0.0.15":"2015-04-07T05:44:52.833Z","0.0.16":"2015-06-10T05:17:55.779Z","0.0.17":"2015-06-16T08:35:25.573Z","0.0.18":"2015-07-03T07:40:00.674Z","0.0.19":"2015-07-14T03:53:20.903Z","0.1.0":"2015-08-07T01:04:41.622Z","0.1.1":"2015-09-12T13:15:45.850Z","0.1.2":"2015-09-18T05:14:33.280Z","0.2.0":"2016-02-04T13:41:03.636Z","1.0.0":"2016-02-05T12:34:36.637Z","1.0.1":"2016-02-05T14:43:26.071Z","1.1.0":"2016-04-10T07:10:57.011Z","1.2.0":"2016-04-15T12:36:09.784Z","1.2.1":"2016-04-24T14:19:55.717Z","1.2.2":"2016-05-04T11:26:41.503Z","1.2.3":"2016-08-06T05:59:49.156Z","1.3.0":"2016-10-15T10:18:08.483Z","2.0.0":"2017-07-17T23:30:26.345Z","2.0.1":"2017-11-13T00:17:17.155Z","2.1.0":"2017-12-08T07:13:13.565Z","2.1.1":"2018-02-05T03:28:12.895Z","2.1.2":"2018-02-13T16:23:45.112Z","2.1.3":"2018-02-13T16:27:50.013Z","2.1.4":"2018-02-20T04:20:28.894Z","2.1.5":"2018-02-24T22:12:41.668Z","2.1.6":"2018-03-22T13:41:49.046Z","2.1.7":"2018-03-27T15:26:08.274Z","3.0.0":"2018-05-29T14:27:26.711Z","3.0.1":"2018-11-01T06:17:46.325Z","3.0.2":"2019-04-10T20:10:18.267Z","3.0.3":"2019-05-18T20:49:18.166Z","3.0.5":"2019-10-03T16:18:04.088Z","3.0.6":"2019-10-24T08:00:25.701Z","3.0.7":"2019-11-07T08:26:46.998Z","3.0.8":"2019-11-14T22:08:42.342Z","3.1.0":"2020-05-08T19:32:31.371Z","3.2.0":"2020-11-05T01:25:15.325Z","3.2.1":"2021-02-15T21:34:47.041Z","3.2.2":"2021-09-09T14:46:23.295Z","3.2.3":"2021-10-24T00:05:44.027Z","3.2.4":"2021-12-29T19:47:48.863Z","4.0.0":"2023-06-06T14:25:23.195Z","5.0.0":"2023-08-26T22:25:28.685Z","6.0.0":"2024-05-03T22:57:00.877Z","6.1.0":"2025-02-16T19:27:50.349Z","6.2.0":"2025-06-09T10:40:55.312Z","6.2.1":"2025-10-20T20:41:52.732Z","6.3.0":"2026-03-01T19:45:03.094Z","6.4.0":"2026-03-29T15:46:39.187Z"},"readmeFilename":"README.md","homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme"}