{"maintainers":[{"email":"bencoe@gmail.com","name":"anonymous"},{"email":"bencoe+oss-bot@gmail.com","name":"anonymous"},{"email":"danon0404@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"moilanen.tapani@gmail.com","name":"anonymous"}],"keywords":["filter","conventional","changelog","commits"],"dist-tags":{"next":"2.0.7","latest":"5.0.0"},"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"description":"Filter out reverted commits parsed by conventional-commits-parser.","readme":"# conventional-commits-filter \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-filter.svg\n[npm-url]: https://npmjs.com/package/conventional-commits-filter\n\n[node]: https://img.shields.io/node/v/conventional-commits-filter.svg\n[node-url]: https://nodejs.org\n\n[deps]: https://img.shields.io/librariesio/release/npm/conventional-commits-filter\n[deps-url]: https://libraries.io/npm/conventional-commits-filter/tree\n\n[size]: https://packagephobia.com/badge?p=conventional-commits-filter\n[size-url]: https://packagephobia.com/result?p=conventional-commits-filter\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\nFilter out reverted commits parsed by conventional-commits-parser.\n\n## Install\n\n```bash\n# pnpm\npnpm add conventional-commits-filter\n# yarn\nyarn add conventional-commits-filter\n# npm\nnpm i conventional-commits-filter\n```\n\n## Usage\n\n```js\nimport {\n  filterRevertedCommitsSync,\n  filterRevertedCommits,\n  filterRevertedCommitsStream\n} from 'conventional-commits-filter'\nimport { pipeline } from 'stream/promises'\nimport { Readable } from 'stream'\n\nconst commits = [{\n  type: 'revert',\n  scope: null,\n  subject: 'feat(): amazing new module',\n  header: 'revert: feat(): amazing new module\\n',\n  body: 'This reverts commit 56185b7356766d2b30cfa2406b257080272e0b7a.\\n',\n  footer: null,\n  notes: [],\n  references: [],\n  revert: {\n    header: 'feat(): amazing new module',\n    hash: '56185b7356766d2b30cfa2406b257080272e0b7a',\n    body: null\n  },\n  hash: '789d898b5f8422d7f65cc25135af2c1a95a125ac\\n',\n  raw: {\n    type: 'revert',\n    scope: null,\n    subject: 'feat(): amazing new module',\n    header: 'revert: feat(): amazing new module\\n',\n    body: 'This reverts commit 56185b7356766d2b30cfa2406b257080272e0b7a.\\n',\n    footer: null,\n    notes: [],\n    references: [],\n    revert: {\n      header: 'feat(): amazing new module',\n      hash: '56185b7356766d2b30cfa2406b257080272e0b7a',\n      body: null\n    },\n    hash: '789d898b5f8422d7f65cc25135af2c1a95a125ac\\n'\n  }\n}, {\n  type: 'Features',\n  scope: null,\n  subject: 'wow',\n  header: 'amazing new module\\n',\n  body: null,\n  footer: 'BREAKING CHANGE: Not backward compatible.\\n',\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '56185b',\n  raw: {\n    type: 'feat',\n    scope: null,\n    subject: 'amazing new module',\n    header: 'feat(): amazing new module\\n',\n    body: null,\n    footer: 'BREAKING CHANGE: Not backward compatible.\\n',\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '56185b7356766d2b30cfa2406b257080272e0b7a\\n'\n  }\n}, {\n  type: 'What',\n  scope: null,\n  subject: 'new feature',\n  header: 'feat(): new feature\\n',\n  body: null,\n  footer: null,\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '815a3f0',\n  raw: {\n    type: 'feat',\n    scope: null,\n    subject: 'new feature',\n    header: 'feat(): new feature\\n',\n    body: null,\n    footer: null,\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '815a3f0717bf1dfce007bd076420c609504edcf3\\n'\n  }\n}, {\n  type: 'Chores',\n  scope: null,\n  subject: 'first commit',\n  header: 'chore: first commit\\n',\n  body: null,\n  footer: null,\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '74a3e4d6d25',\n  raw: {\n    type: 'chore',\n    scope: null,\n    subject: 'first commit',\n    header: 'chore: first commit\\n',\n    body: null,\n    footer: null,\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '74a3e4d6d25dee2c0d6483a0a3887417728cbe0a\\n'\n  }\n}];\n\n// to filter reverted commits syncronously:\nfor (const commit of filterRevertedCommitsSync(commits)) {\n  console.log(commit)\n}\n\n// to filter reverted commits in async iterables:\nawait pipeline(\n  commits,\n  filterRevertedCommits,\n  async function* (filteredCommits) {\n    for await (const commit of filteredCommits) {\n      console.log(commit)\n    }\n  }\n)\n\n// to filter reverted commits in streams:\nReadable.from(commits)\n  .pipe(filterRevertedCommitsStream())\n  .on('data', commit => console.log(commit))\n```\n\nOutput:\n\n```js\n{\n  type: 'What',\n  scope: null,\n  subject: 'new feature',\n  header: 'feat(): new feature\\n',\n  body: null,\n  footer: null,\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '815a3f0',\n  raw: {\n    type: 'feat',\n    scope: null,\n    subject: 'new feature',\n    header: 'feat(): new feature\\n',\n    body: null,\n    footer: null,\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '815a3f0717bf1dfce007bd076420c609504edcf3\\n'\n  }\n}\n{\n  type: 'Chores',\n  scope: null,\n  subject: 'first commit',\n  header: 'chore: first commit\\n',\n  body: null,\n  footer: null,\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '74a3e4d6d25',\n  raw: {\n    type: 'chore',\n    scope: null,\n    subject: 'first commit',\n    header: 'chore: first commit\\n',\n    body: null,\n    footer: null,\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '74a3e4d6d25dee2c0d6483a0a3887417728cbe0a\\n'\n  }\n}\n```\n\n## License\n\nMIT © [Steve Mao](https://github.com/stevemao)\n","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-commits-filter"},"bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"license":"MIT","versions":{"0.0.0":{"name":"conventional-commits-filter","version":"0.0.0","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@0.0.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"011cb5d446b877d5b1838bdec2acd4f268e4c5e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-0.0.0.tgz","integrity":"sha512-IB29BSuwzsnrsC5BjUv9tgemVjtxLplXcC7GySxKkD6aqdjymGH+Uf7ypd8aQkXs+4i5Zr7QoJ4itskQQ3IZxA==","signatures":[{"sig":"MEQCIB+MqXgTOYDBrS5RSl4t4qcPulDLvU+Jvoyw+648nguHAiAZPQtr9gcwZ0hblZix1folb+GJiS8B3PLXBzycLyC0Yg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"011cb5d446b877d5b1838bdec2acd4f268e4c5e0","scripts":{"lint":"jshint *.js && jscs *.js","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-filter.git","type":"git"},"_npmVersion":"2.12.0","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"0.12.5","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"devDependencies":{"jscs":"^1.13.1","mocha":"*","jshint":"^2.8.0","istanbul":"^0.3.17","coveralls":"^2.11.2"}},"0.0.1":{"name":"conventional-commits-filter","version":"0.0.1","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@0.0.1","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"628484e1903df9127997f72c56b0b6a563726dab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-0.0.1.tgz","integrity":"sha512-qMp2TbBLPm5B+Y4yAdZCWfZCBG0U3McdjgqvDbN3/gx2cTRgj/mIhh8ozJ54qoGPrRWVPCJrSzRFSycUWECDqg==","signatures":[{"sig":"MEQCIG92UHbO3Ak2QOqcFrd/vMwenN2AqLjWJcU0b87ttg+xAiA8m86QH07I1pw0HBooSLSY6fctsrV4Vaa2qttvx5JEvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"628484e1903df9127997f72c56b0b6a563726dab","gitHead":"39eafeb5b2066e90d14c9e2682e961e5457fa20d","scripts":{"lint":"jshint *.js && jscs *.js","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-filter.git","type":"git"},"_npmVersion":"2.12.0","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"0.12.5","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"devDependencies":{"jscs":"^1.13.1","mocha":"*","jshint":"^2.8.0","istanbul":"^0.3.17","coveralls":"^2.11.2"}},"0.1.0":{"name":"conventional-commits-filter","version":"0.1.0","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@0.1.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"56fdc5bc11fb6f956718f513475d5b1410edb1e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-0.1.0.tgz","integrity":"sha512-4E3/96nBijtbWcHfxKVMoPWYQY9wG7xYAtk+7tkDWNx+fATU+aSOB/7ELmcZSG81QdQN0qEE8Z6dactonRZv7Q==","signatures":[{"sig":"MEQCIB09vXNwjQdG/HCGwjgWGcW0JH+RHtZSgi4iuQXXWlNDAiB4BlspGAHikMQZRatpnM4J/6ZS8M16YyMdDLic/t/noQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"56fdc5bc11fb6f956718f513475d5b1410edb1e2","gitHead":"b833f8cf0fdb65a8f32e4bdf4418c839109f3844","scripts":{"lint":"jshint *.js && jscs *.js","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-filter.git","type":"git"},"_npmVersion":"2.12.1","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"0.12.5","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"devDependencies":{"jscs":"^1.13.1","mocha":"*","jshint":"^2.8.0","istanbul":"^0.3.17","coveralls":"^2.11.2"}},"0.1.1":{"name":"conventional-commits-filter","version":"0.1.1","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@0.1.1","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"d9d26c7599f89de3d249cba3def7911fc51c0dab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-0.1.1.tgz","integrity":"sha512-9vZZsRtEvq0a3ecGRtJHoVY10AoDNppli3g1jLr6beTn+pUI1GBeCYKJPUGgQ+w7FfiIORqZZygKUdbHvhk2Ug==","signatures":[{"sig":"MEUCIQDWrEeXolvmBu7F+jn+ND69lpJln+UTRKCcvkMLY9AfaAIgP4ybjOvogVslKxHbMfz6HkW2SMfOQknRKqxQAdd0lKc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"d9d26c7599f89de3d249cba3def7911fc51c0dab","gitHead":"f6b2d40291aaa7f53222a7be27b47e477106256a","scripts":{"lint":"jshint *.js && jscs *.js","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-filter.git","type":"git"},"_npmVersion":"2.13.3","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"0.12.7","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"devDependencies":{"jscs":"^1.13.1","mocha":"*","jshint":"^2.8.0","istanbul":"^0.3.17","coveralls":"^2.11.2"}},"1.0.0":{"name":"conventional-commits-filter","version":"1.0.0","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@1.0.0","maintainers":[{"name":"anonymous","email":"steve.mao@healthinteract.com.au"}],"homepage":"https://github.com/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"6fc2a659372bc3f2339cf9ffff7e1b0344b93039","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-1.0.0.tgz","integrity":"sha512-nAt0GyCkm9YdvexA/ZVsjSmfMjp06tmxu0NHGYFzDyFV6WGkoXgOycu/+zyajaqx4JIVZaogoK8wmHXnlvBMJg==","signatures":[{"sig":"MEUCIQDXhWFhKkmiLo/PsdXIcK/VgFFVwyC5ZwY/x6/ximqldAIgO+zQxXnxyFSdT7RvHhutt88eO+LnEXcSAXFVWyAQB+M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"6fc2a659372bc3f2339cf9ffff7e1b0344b93039","gitHead":"a0776438c23b88b75a8b01c8f0f54938e83f516c","scripts":{"lint":"jshint *.js && jscs *.js","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-filter.git","type":"git"},"_npmVersion":"2.14.12","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"4.2.6","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"devDependencies":{"jscs":"^2.9.0","mocha":"*","jshint":"^2.8.0","istanbul":"^0.4.2","coveralls":"^2.11.2"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter-1.0.0.tgz_1454938546759_0.20571616431698203","host":"packages-5-east.internal.npmjs.com"}},"1.1.0":{"name":"conventional-commits-filter","version":"1.1.0","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@1.1.0","maintainers":[{"name":"anonymous","email":"moilanen.tapani@gmail.com"},{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"maochenyan@gmail.com"}],"homepage":"https://github.com/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"1fc29af30b5edab76f54e229c411b0c663d0f9eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-1.1.0.tgz","integrity":"sha512-B+LpsYixkwiyFnJaf/DKGGMzK15mggnINKMcHfbOIhfXoNYji7c59vvdTC4sWW6uRCCScOraGp6R8z4zCa9+Iw==","signatures":[{"sig":"MEQCIGOU3Gmg6oDLQE5yGz1qJPG0SjEQC+6/TdRVPxN0OevnAiA9AinAPOQ2D9TERwcmqiJZKwN9dIg3hqMU0VUZHddHhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"1fc29af30b5edab76f54e229c411b0c663d0f9eb","scripts":{"lint":"jshint *.js && jscs *.js","test":"npm run lint && mocha --timeout=30000","test-windows":"mocha --timeout 30000"},"_npmUser":{"name":"anonymous","email":"maochenyan@gmail.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-filter.git","type":"git"},"_npmVersion":"3.10.10","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"6.10.3","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"devDependencies":{"jscs":"^2.9.0","mocha":"*","jshint":"^2.8.0","istanbul":"^0.4.2"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter-1.1.0.tgz_1510532235817_0.845973472809419","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"conventional-commits-filter","version":"1.1.1","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@1.1.1","maintainers":[{"name":"anonymous","email":"moilanen.tapani@gmail.com"},{"name":"anonymous","email":"ben@npmjs.com"},{"name":"anonymous","email":"maochenyan@gmail.com"},{"name":"anonymous","email":"hello@mario-nebl.de"},{"name":"anonymous","email":"andrewbgoode@gmail.com"}],"homepage":"https://github.com/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"72172319c0c88328a015b30686b55527b3a5e54a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-1.1.1.tgz","integrity":"sha512-bQyatySNKHhcaeKVr9vFxYWA1W1Tdz6ybVMYDmv4/FhOXY1+fchiW07TzRbIQZhVa4cvBwrEaEUQBbCncFSdJQ==","signatures":[{"sig":"MEUCIFWejvp+WQv3xSYgw8/vbpJIFrmsT4Uskg1zD3A1U/7gAiEAsSGTUr8Lsnqu3LeXoY8+OkOdtsatXfh4zGCAqPKYGss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"scripts":{"lint":"jshint *.js && jscs *.js","test":"npm run lint && mocha --timeout=30000","test-windows":"mocha --timeout 30000"},"_npmUser":{"name":"anonymous","email":"hello@mario-nebl.de"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-filter.git","type":"git"},"_npmVersion":"5.5.1","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"8.9.1","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"devDependencies":{"jscs":"^2.9.0","mocha":"*","jshint":"^2.8.0","istanbul":"^0.4.2"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter-1.1.1.tgz_1512717191638_0.8993276099208742","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"conventional-commits-filter","version":"1.1.2","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@1.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/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"4fdea1e508cb241c1f293f520a24268cafc4393e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-1.1.2.tgz","fileCount":5,"integrity":"sha512-wdhpv4NU0dWrF50qLe0X01/aS9Z85XIRNspmuk7s1hYrjxR/iopy+89458Zo7bT6BaoAFhAyujK2jRDyJdKnfA==","signatures":[{"sig":"MEUCIQCUuE8jyC0Mj/3dYSqvE+q+Jr7t16s/8csyQE4AEuPHdwIgbzt31pH+cumHycCdgL32z1FN9egi5GOV3JBXnLsqkBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8779},"files":["index.js"],"scripts":{"lint":"jshint *.js && jscs *.js","test":"npm run lint && mocha --timeout=30000","test-windows":"mocha --timeout 30000"},"_npmUser":{"name":"anonymous","email":"ben@npmjs.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-filter.git","type":"git"},"_npmVersion":"5.4.2","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"8.8.1","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^2.9.0","mocha":"*","jshint":"^2.8.0","istanbul":"^0.4.2"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_1.1.2_1518539025409_0.6341335815173863","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"conventional-commits-filter","version":"1.1.3","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@1.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/stevemao/conventional-commits-filter","bugs":{"url":"https://github.com/stevemao/conventional-commits-filter/issues"},"dist":{"shasum":"5bf591bc4882fc8c9bd329e5a83ca1fa8721d9fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-1.1.3.tgz","fileCount":5,"integrity":"sha512-kwGGg0xCHR51YIVjtoCTNgx9I1qEMETerTdSK4XsH2OxNLigDn6XKXnPMFZ+gfoUxaqbnpFSJqs4jYVpuJ1XAg==","signatures":[{"sig":"MEUCIAYk3qSnDpFCpKu+P237aDFByNtb/Hzn/4rCW9fuQX1wAiEAygYTxPdzi+w6PvhUk66iJKZzxQwgY3215fhfS2w6H/s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9032},"files":["index.js"],"scripts":{"lint":"jshint *.js && jscs *.js","test":"npm run lint && mocha --timeout=30000","test-windows":"mocha --timeout 30000"},"_npmUser":{"name":"anonymous","email":"ben@npmjs.com"},"repository":{"url":"git+https://github.com/stevemao/conventional-commits-filter.git","type":"git"},"_npmVersion":"5.4.2","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"8.8.1","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^2.9.0","mocha":"*","jshint":"^2.8.0","istanbul":"^0.4.2"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_1.1.3_1518539268972_0.8134395966853047","host":"s3://npm-registry-packages"}},"1.1.4":{"name":"conventional-commits-filter","version":"1.1.4","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@1.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-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"8b5be3979c372e4f7440180d5c655a94ac5a134a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-1.1.4.tgz","fileCount":5,"integrity":"sha512-VaLmHo+P1IYQenZwkgp21y9z5tyU8sH3GKI/AfthQYPK9IYhT4lNbATGW9Iona+BU3fmWw/9S3L5vMopMI+jkA==","signatures":[{"sig":"MEUCIQCh4ubJMUEOAn4LDqBnAnai6di+ivCZShDOZMrZMF0PpgIgCPrbrsMsIRCHPOZUG4/dD4wjrqPAGxjj2mow8umXG88=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9529},"files":["index.js"],"scripts":{"lint":"jshint *.js && jscs *.js","test":"npm run lint && mocha --timeout=30000","test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"8.9.4","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^2.9.0","mocha":"*","jshint":"^2.8.0","istanbul":"^0.4.2"},"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_1.1.4_1519100428406_0.5020067948598923","host":"s3://npm-registry-packages"}},"1.1.5":{"name":"conventional-commits-filter","version":"1.1.5","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@1.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-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"77aac065e3de9c1a74b801e8e25c9affb3184f65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-1.1.5.tgz","fileCount":5,"integrity":"sha512-mj3+WLj8UZE72zO9jocZjx8+W4Bwnx/KHoIz1vb4F8XUXj0XSjp8Y3MFkpRyIpsRiCBX+DkDjxGKF/nfeu7BGw==","signatures":[{"sig":"MEQCIBA88Os8ef2UPK5lI9FSAECVNOucRwfkrrOUtW/gYhLWAiBt8wR3jkjFe3kZCUBmWlF3//YqRwTJaku7HVn93ZRpDA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9674},"files":["index.js"],"scripts":{"lint":"jshint *.js && jscs *.js","test":"npm run lint && mocha --timeout=30000","test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"8.9.4","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_1.1.5_1519510360878_0.7471795286277008","host":"s3://npm-registry-packages"}},"1.1.6":{"name":"conventional-commits-filter","version":"1.1.6","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@1.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"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"4389cd8e58fe89750c0b5fb58f1d7f0cc8ad3831","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-1.1.6.tgz","fileCount":5,"integrity":"sha512-KcDgtCRKJCQhyk6VLT7zR+ZOyCnerfemE/CsR3iQpzRRFbLEs0Y6rwk3mpDvtOh04X223z+1xyJ582Stfct/0Q==","signatures":[{"sig":"MEQCIEAvyk4UjzSRC5InNjkUPP6LV6Coc4GMRjc0X7+fG8LYAiAgm6QLWMespMCzDjFQI/vXfVu8yQ73S9e5MbketIHzfg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9902},"files":["index.js"],"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout=30000","test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"8.10.0","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_1.1.6_1521726105427_0.9295607029889352","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"conventional-commits-filter","version":"2.0.0","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@2.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"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"a0ce1d1ff7a1dd7fab36bee8e8256d348d135651","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-2.0.0.tgz","fileCount":5,"integrity":"sha512-Cfl0j1/NquB/TMVx7Wrmyq7uRM+/rPQbtVVGwzfkhZ6/yH6fcMmP0Q/9044TBZPTNdGzm46vXFXL14wbET0/Mg==","signatures":[{"sig":"MEQCIEVB+unkpJcvuFUUADucQgc3/hd9CRe4FMcV8G9DnnWWAiBI1QtTXMVjMRWHpfKrD5lCiie8SO8M25puZ08VVSdwyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10622,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDWNOCRA9TVsSAnZWagAAbYsP/iqXmIRWbT3DGMCbtAJ6\nsYmEtFva8brflceov0In5hi1TmmaYdoAu0zCdLg7uQx1WeRsa7jMx5bWn0b9\nK2Y3RWImESB/CyrqW060IoIpxOkpjeXqHsta0fsaoH0Agjeed5SrAqMUj9XN\nd0j+X47brgtDwrPoHv4ahVH18/xwXSpEJRMsYzC9DGKueaZ6FC3TI0Gd51OE\nVK3MLrM+q48C91t7jAaF1Xby672sd0OC9iLzdVmYqsQXwGcVk0YV6mwKCWkQ\n06G8YsArHlMi4DBOdH6XVc7zwvPhRLxloO+OOA7vgB35XOf+yDrJG4PZ8npF\nvXg7bbWrN/wu3dWz09q1FyD5cAEjH37LaI8gh4hVMEkONzJ8kUKfr78S+RNM\nGAYxBZpFb2Pn1w5WgB1+BMwyEi1tieiI6igkHB98LPaz5sSKk1nIfclMAECm\ni8dTLitQddCnrI+BjzULQGyyay2syZCQQBDyQEpCvUiSB1i4wa2+Ae/5iIm4\nYpvY323YuFw4DWHHokfh/8VbPX2X1vBiBEkz7Pvbvf9hexWefh8awuLtu/Zq\nel35N89cCmO3/HpJZAlOoXHR5/ml5szLPI7AE9nFRspF7iG4fIL4MiWrniAY\n3BGD+zWm99AgduDTzxeg5rwyB0TNE2ahyrjoOni/uMftgMbgygD8NIuUgYbU\nCtjq\r\n=AVDi\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"engines":{"node":">=6.9.0"},"scripts":{"lint":"eslint --fix .","test":"npm run lint && mocha --timeout=30000","test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"8.11.2","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_2.0.0_1527604046280_0.37661020549240765","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"conventional-commits-filter","version":"2.0.1","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@2.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"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"55a135de1802f6510b6758e0a6aa9e0b28618db3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-2.0.1.tgz","fileCount":5,"integrity":"sha512-92OU8pz/977udhBjgPEbg3sbYzIxMDFTlQT97w7KdhR9igNqdJvy8smmedAAgn4tPiqseFloKkrVfbXCVd+E7A==","signatures":[{"sig":"MEUCIGEvEbnyx/RyR8xy44NlNUC16+P63uNt/AhMyAIZfA8nAiEA6UUJFsyev2329rlkJ/8A6+xpmBhxelCZ0ZcivOX77yc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11009,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2pqHCRA9TVsSAnZWagAAZxMP/0YPHGY/vEBWEhtBhDsP\nou35dpAXay8Ty5KF0GGJiL+tQmxtRcy6auQForR0xNtYcdl82vnim+MBAmkR\nfgwmBFwTrDnhA1AuaIB98Ug97OvRIuo6SS4RIixwN54TzoOQOSyh+VU1oB9s\nAN3NOH35MmLNt2ZWhQDeGnmmQMGAumThbPbcysftDyFbWsvmQDzEhT3lsbdx\nRAhUmdsx3tbOn7yoo6LZlj5Vwc9kQ6BSAn0A2svaimA5XAWNQB1gHncXbB+G\n2KBmaU6nc8aEiLyn+np3Y+5d7/sbNpM8z+r8Cnv+El2ffUiTCR+tBU05ZO1p\nAxiLSVrlWeoVyyBZr8ITUZSWoW6z3sILxuUnegGR9sQ6wkNIRNWiB1J85wQd\nVG6LUU3LBiYzcYw87pGnEkvIAqiRV1wM462NoE2HDlhemKj5aiHFmAa8prf3\nB3Op+r4YfUV1fZTUUT/sIwOyjT76OWYJ7HesYv5RIsY3L+K1eIhwHkV1LuHP\nkzZHNapCFt0oJfy9gx6hlUvgVE7mfyR2akiX6OMi2vu21ws0hSB6p4Yan1J+\nAzB+5dTwwxPNNxU92IVzCEAQa+ITC+oo8OA/Is0E6aPWp5C4wOBQMTW3/Ivw\ns4sgHLh5ks58VbvefFHpMK2j8+V/CHeMMW/445B1euDSAF2nKsaaUa34YnHr\nKsu6\r\n=iAfl\r\n-----END PGP SIGNATURE-----\r\n"},"_from":"file:conventional-commits-filter-2.0.1.tgz","engines":{"node":">=6.9.0"},"gitHead":"f301b0de0b954713a50b2256a3140e21817d14c0","scripts":{"test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"10.12.0","dependencies":{"is-subset":"^0.1.1","modify-values":"^1.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_2.0.1_1541053063381_0.20492670953793457","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"conventional-commits-filter","version":"2.0.2","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@2.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"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"f122f89fbcd5bb81e2af2fcac0254d062d1039c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-2.0.2.tgz","fileCount":5,"integrity":"sha512-WpGKsMeXfs21m1zIw4s9H5sys2+9JccTzpN6toXtxhpw2VNF2JUXwIakthKBy+LN4DvJm+TzWhxOMWOs1OFCFQ==","signatures":[{"sig":"MEQCIEXG38cngbGY9yDl9KoW9MGVDDSHXtt3kWQfxnaadVtjAiBHa/L1ajASiYCbGIUfav/wFXEXj/1AIoh0oyJ3BOVgiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11442,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrk2qCRA9TVsSAnZWagAAuKEP/02vaXGnL/Xt7o3Ngxrs\nGmSvpe9KEbf1cbUG0hodLJbfdj0i2wzFrkDL3dtoIWromnF96HSrhnSxOzZS\nqio4GjN2TUK+6dcwqUfZg1mRiVZIAh7e8TT+UJhq9b9Qv86gz2+0EfgTvGgo\nQONFMgPeLdVikQhr2PqwxzICSyBfT1Meu5RUxcIlzsyf9/xL7zf1cPKJyakD\nUSN/tBa928f0LmjQ5cz3XTdAO0aD/3iT/Z1hrwDFmmnDD/mJ/YGHJ+MrtePm\nMRsSYhZzlNgZJOcRyXBj/yUcrqdl0yJ9z7+E9hX4t7/rzIIQ4bRD6LFPB/6h\nc5kNT1jg/WwqW1DaqXZwz+Tmx2QplJDGBxkaGCuX0J+n+CmVnUFvLsxYgaFs\n3YE1tRN6ZZ+ItEUJWkHscYifOojDakHDVWtLVZBkgsxxWJrS3W93dY8BcSoj\nDQ8fp1oRQMsrqJrk3xZi+TRWdGXV2qIDBvat023NnBO3QdGQ2Fh4n2rmA4oc\nb3+Lfdm9mSH5yNTz+w4kzhCOeEZi53Og5uDKs7GBog3s1VMs4FEOAooWnyhj\nIfJxaEk5fMRbnnmDZYOEIUOhLuCxoktfz3/uQ2TBEcTNaAB3yfFe2zw6nLl3\ns2vnie3X/qvqL/gEk6lBrgRePxSz5keMovFh5P5QfcjkIFX+LpndQP1pji2I\n2+q2\r\n=eAKW\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6.9.0"},"gitHead":"b3416cbb411f49420b13e8fe306528b372b07a8b","scripts":{"test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"11.11.0","dependencies":{"modify-values":"^1.0.0","lodash.ismatch":"^4.4.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_2.0.2_1554927018066_0.9676131572406286","host":"s3://npm-registry-packages"}},"2.0.6":{"name":"conventional-commits-filter","version":"2.0.6","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@2.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":"moilanen.tapani@gmail.com"},{"name":"anonymous","email":"tommywo@o2.pl"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"0935e1240c5ca7698329affee1b6a46d33324c4c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-2.0.6.tgz","fileCount":5,"integrity":"sha512-4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw==","signatures":[{"sig":"MEQCIALJoFmg7mfmx/fbySbtJ7HQ8yri1xXpVNVc46APDaqQAiBpKcWAVqd51+PxTXNdqEOHyhFt99PXxRgp4kDKYlXg+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetbPPCRA9TVsSAnZWagAAgiYP/i4UPhkM4tYWZciTV3gz\n2nSs/Zagzujj72IZPX8NMrzYJQgrkvhDZEFGgprRx7DEwgwJuYwhmI/9OwIv\nJFJw8Rmywcw+8cXG01C8FYyP5Tu93OJRd/ctF3fdLn2P0PoHaW27CWk2gYyj\nqI5QuaF9VPfYToHjv/5WhmOxj9YUSyeIuSC4ZNfKr68iBPRLCN5sMvgPoEWK\njhplIlpb5NUYdVMFS/d8bJYt75NCqqOmety//e7PwfGKKueKZEwbCddh3syz\n2yOasckRK1pGGocmEygipT26c2T4RFhcHQzB8ZC6nvrN0x6rFs5w+ULDT+Qa\nlmLwYUp5covhA0L7KzrBv5o1xpNI71W0FQkdNk8Abx2dBdFK1ZwxxwJxszlL\nfMobwXQ/+LphAV7Tevze5Z3AjFqhI+OADLm6KG5TMBFPRCRiG3qDLZvE4Szi\n8/muAJov7ff37c1uLCGoiZth9fiBAHSIHaLoJmxn/6z2PK35/MKLRvq3ZyD1\nEIzTxB+wEBH6LICSwxp9juaZLmD9SOKf7LB5946sXEb2p5SoRUpk4dzCBAjY\nFywqFd1GyXQc7+tIwPtotk8AXwuiPZo8jJvnRHYxMfSaBGgiZkC1JMi73eMh\nKj/cHyT0BflS/4MzUThojmiaQ0gqWlBzZ0IfKC23wwdajyssCQewQ1urdB37\numQa\r\n=esIb\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"gitHead":"83643c5a0d2c4d7c9ba14cbf990ffbc577a51e8c","scripts":{"test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"12.16.3","dependencies":{"modify-values":"^1.0.0","lodash.ismatch":"^4.4.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_2.0.6_1588966351166_0.8723568078912998","host":"s3://npm-registry-packages"}},"2.0.7":{"name":"conventional-commits-filter","version":"2.0.7","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@2.0.7","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"},{"name":"anonymous","email":"moilanen.tapani@gmail.com"}],"homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"f8d9b4f182fce00c9af7139da49365b136c8a0b3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz","fileCount":5,"integrity":"sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==","signatures":[{"sig":"MEUCIQDFU2KrZGG6ypF7jnWtc+74fadrnzRGdVsvOTfmunb5aAIgQ+ox2vN9KILiO0M8yqFv2rRVg38lzeKV/y7mJjtrW4c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfo1R1CRA9TVsSAnZWagAA/7sP/0xoP2YiFsjxbmEAdAya\nuHi0CLuRK7ksS8cUgRWdAbqsLfuy16fZB+B1S2gAoxOTToL9VYSq3AxmuKvA\n9hSjYzzOBeIEzXPZuSJqLAYt4sUkn5HmgCdJ/51SfVumFjbxvsb+axcpRNJB\nj2fGkpMgxDBe0yNit4+UyqyU3SUIZ+RSb3vyfA/sUCX6BL2DYNFVx9JyvJVB\nupnFYLNxJMq5DCJvl0RFePJnnytEpRnYT3azrw394vHru3P41LdU4y2NKU6r\nt65UBiVRpDSjDFcDzVzN0OyZyMA0aoVcF+tcXUDT4bSVZh6dRGzbCpf4df1S\nWoZjU3N+uMQTVd8v4KGXbj/FNXuXUnhuh+v3vRyxxYeisUqAnnX1OTjAMbe3\nh82MZ2Z3T39ofqT7oFHa3VXnKPPTMW9rrRqPTU779J44q88FzEm/ByxRJFeP\nCbwTukpM3ZE0RsewTpRYOLWNeLXG66e70Ts+ZkMk4TNFj0qycHJRV368Rb+Z\niNo2Svx6OXUUZh0foMC8oRcW0kWVxlHjhAvusKkIhsiH3E/t8vd8bh6quJ4a\n/GxK7u+2bpR0Ud1gLPu9RiUAm8UUuVDh6LliUSCNH08NWA1ESXoSVue5wRMp\nlQMy5cWtYBXmPoG7S0y24NjA8QuCp4D2wddSENiTuCH0S3T2I8jT3DCGRqDg\nkinK\r\n=Is5v\r\n-----END PGP SIGNATURE-----\r\n"},"readme":"# conventional-commits-filter [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coveralls-image]][coveralls-url]\n> Filter out reverted commits parsed by conventional-commits-parser\n\n\n## Install\n\n```sh\n$ npm install --save conventional-commits-filter\n```\n\n\n## Usage\n\n```js\nvar conventionalCommitsFilter = require('conventional-commits-filter');\n\nvar commits = [{\n  type: 'revert',\n  scope: null,\n  subject: 'feat(): amazing new module',\n  header: 'revert: feat(): amazing new module\\n',\n  body: 'This reverts commit 56185b7356766d2b30cfa2406b257080272e0b7a.\\n',\n  footer: null,\n  notes: [],\n  references: [],\n  revert: {\n    header: 'feat(): amazing new module',\n    hash: '56185b7356766d2b30cfa2406b257080272e0b7a',\n    body: null\n  },\n  hash: '789d898b5f8422d7f65cc25135af2c1a95a125ac\\n',\n  raw: {\n    type: 'revert',\n    scope: null,\n    subject: 'feat(): amazing new module',\n    header: 'revert: feat(): amazing new module\\n',\n    body: 'This reverts commit 56185b7356766d2b30cfa2406b257080272e0b7a.\\n',\n    footer: null,\n    notes: [],\n    references: [],\n    revert: {\n      header: 'feat(): amazing new module',\n      hash: '56185b7356766d2b30cfa2406b257080272e0b7a',\n      body: null\n    },\n    hash: '789d898b5f8422d7f65cc25135af2c1a95a125ac\\n'\n  }\n}, {\n  type: 'Features',\n  scope: null,\n  subject: 'wow',\n  header: 'amazing new module\\n',\n  body: null,\n  footer: 'BREAKING CHANGE: Not backward compatible.\\n',\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '56185b',\n  raw: {\n    type: 'feat',\n    scope: null,\n    subject: 'amazing new module',\n    header: 'feat(): amazing new module\\n',\n    body: null,\n    footer: 'BREAKING CHANGE: Not backward compatible.\\n',\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '56185b7356766d2b30cfa2406b257080272e0b7a\\n'\n  }\n}, {\n  type: 'What',\n  scope: null,\n  subject: 'new feature',\n  header: 'feat(): new feature\\n',\n  body: null,\n  footer: null,\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '815a3f0',\n  raw: {\n    type: 'feat',\n    scope: null,\n    subject: 'new feature',\n    header: 'feat(): new feature\\n',\n    body: null,\n    footer: null,\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '815a3f0717bf1dfce007bd076420c609504edcf3\\n'\n  }\n}, {\n  type: 'Chores',\n  scope: null,\n  subject: 'first commit',\n  header: 'chore: first commit\\n',\n  body: null,\n  footer: null,\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '74a3e4d6d25',\n  raw: {\n    type: 'chore',\n    scope: null,\n    subject: 'first commit',\n    header: 'chore: first commit\\n',\n    body: null,\n    footer: null,\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '74a3e4d6d25dee2c0d6483a0a3887417728cbe0a\\n'\n  }\n}];\n\ncommits = conventionalCommitsFilter(commits);\nconsole.log(commits);\n/*=>\n[{\n  type: 'What',\n  scope: null,\n  subject: 'new feature',\n  header: 'feat(): new feature\\n',\n  body: null,\n  footer: null,\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '815a3f0',\n  raw: {\n    type: 'feat',\n    scope: null,\n    subject: 'new feature',\n    header: 'feat(): new feature\\n',\n    body: null,\n    footer: null,\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '815a3f0717bf1dfce007bd076420c609504edcf3\\n'\n  }\n}, {\n  type: 'Chores',\n  scope: null,\n  subject: 'first commit',\n  header: 'chore: first commit\\n',\n  body: null,\n  footer: null,\n  notes: [],\n  references: [],\n  revert: null,\n  hash: '74a3e4d6d25',\n  raw: {\n    type: 'chore',\n    scope: null,\n    subject: 'first commit',\n    header: 'chore: first commit\\n',\n    body: null,\n    footer: null,\n    notes: [],\n    references: [],\n    revert: null,\n    hash: '74a3e4d6d25dee2c0d6483a0a3887417728cbe0a\\n'\n  }\n}]\n*/\n```\n\n## License\n\nMIT © [Steve Mao]()\n\n\n[npm-image]: https://badge.fury.io/js/conventional-commits-filter.svg\n[npm-url]: https://npmjs.org/package/conventional-commits-filter\n[travis-image]: https://travis-ci.org/stevemao/conventional-commits-filter.svg?branch=master\n[travis-url]: https://travis-ci.org/stevemao/conventional-commits-filter\n[daviddm-image]: https://david-dm.org/stevemao/conventional-commits-filter.svg\n[daviddm-url]: https://david-dm.org/stevemao/conventional-commits-filter\n[coveralls-image]: https://coveralls.io/repos/stevemao/conventional-commits-filter/badge.svg?branch=master\n[coveralls-url]: https://coveralls.io/r/stevemao/conventional-commits-filter\n","engines":{"node":">=10"},"gitHead":"cc567b98facf71315f4b1620d81ce01d155efaca","scripts":{"test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"10.21.0","dependencies":{"modify-values":"^1.0.0","lodash.ismatch":"^4.4.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_2.0.7_1604539508801_0.25521508060435494","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"conventional-commits-filter","version":"3.0.0","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@3.0.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@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-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"bf1113266151dd64c49cd269e3eb7d71d7015ee2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz","fileCount":4,"integrity":"sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==","signatures":[{"sig":"MEYCIQC3TCLHgB01of+GtM9jSG9uYfGh3bDS4OEaEw1vxMqFNAIhAPTU0W/rICtFhWjjg292NGpaBC+cjb/G7OZd04gEf0wn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7849},"_from":"file:conventional-commits-filter-3.0.0.tgz","engines":{"node":">=14"},"scripts":{"test-windows":"mocha --timeout 30000"},"_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":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"14.21.3","dependencies":{"modify-values":"^1.0.1","lodash.ismatch":"^4.4.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_3.0.0_1686062037241_0.2503700012514134","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"conventional-commits-filter","version":"4.0.0","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@4.0.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@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-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"845d713e48dc7d1520b84ec182e2773c10c7bf7f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-4.0.0.tgz","fileCount":4,"integrity":"sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==","signatures":[{"sig":"MEUCIQDiDGB0If3rtnl58n8WoFexls1j49WtQ1XttVaBe+fYMwIgRoN5xH+Knhe/8PSwCsA8UxHSuv5RTpHwuPF+GIUkJXw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7919},"_from":"file:conventional-commits-filter-4.0.0.tgz","engines":{"node":">=16"},"_npmUser":{"name":"anonymous","email":"bencoe+oss-bot@gmail.com"},"_resolved":"/tmp/a41b276a2fd5b5cd98a59fd00a511968/conventional-commits-filter-4.0.0.tgz","_integrity":"sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git"},"_npmVersion":"8.19.4","description":"Filter out reverted commits parsed by conventional-commits-parser","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_4.0.0_1693141327633_0.8830740669733783","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"conventional-commits-filter","version":"5.0.0","keywords":["filter","conventional","changelog","commits"],"author":{"url":"https://github.com/stevemao","name":"Steve Mao","email":"maochenyan@gmail.com"},"license":"MIT","_id":"conventional-commits-filter@5.0.0","maintainers":[{"name":"anonymous","email":"bencoe@gmail.com"},{"name":"anonymous","email":"bencoe+oss-bot@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-filter#readme","bugs":{"url":"https://github.com/conventional-changelog/conventional-changelog/issues"},"dist":{"shasum":"72811f95d379e79d2d39d5c0c53c9351ef284e86","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/conventional-commits-filter/-/conventional-commits-filter-5.0.0.tgz","fileCount":18,"integrity":"sha512-tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==","signatures":[{"sig":"MEUCIBesEIoVdBsYW3Lm2ui8TeiD9D41Teaa8wFuPZIn/OWzAiEA7NulFz5xPUceybGDTLjr4b5f99X2zZtYvOMtN6z1OhA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19014},"type":"module","_from":"file:conventional-commits-filter-5.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/8255d13aeabfd7b418d8124b33ebc227/conventional-commits-filter-5.0.0.tgz","_integrity":"sha512-tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==","repository":{"url":"git+https://github.com/conventional-changelog/conventional-changelog.git","type":"git","directory":"packages/conventional-commits-filter"},"_npmVersion":"10.5.0","description":"Filter out reverted commits parsed by conventional-commits-parser.","directories":{},"_nodeVersion":"18.20.2","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/conventional-commits-filter_5.0.0_1714777013341_0.6599318243784233","host":"s3://npm-registry-packages"}}},"name":"conventional-commits-filter","time":{"created":"2015-07-03T11:27:02.307Z","modified":"2025-02-12T21:26:40.311Z","0.0.0":"2015-07-03T11:27:02.307Z","0.0.1":"2015-07-03T11:41:39.343Z","0.1.0":"2015-07-23T11:55:50.505Z","0.1.1":"2015-08-12T11:56:46.105Z","1.0.0":"2016-02-08T13:35:49.267Z","1.1.0":"2017-11-13T00:17:15.875Z","1.1.1":"2017-12-08T07:13:11.796Z","1.1.2":"2018-02-13T16:23:45.498Z","1.1.3":"2018-02-13T16:27:49.026Z","1.1.4":"2018-02-20T04:20:28.446Z","1.1.5":"2018-02-24T22:12:40.963Z","1.1.6":"2018-03-22T13:41:45.520Z","2.0.0":"2018-05-29T14:27:26.379Z","2.0.1":"2018-11-01T06:17:43.487Z","2.0.2":"2019-04-10T20:10:18.209Z","2.0.6":"2020-05-08T19:32:31.273Z","2.0.7":"2020-11-05T01:25:08.924Z","3.0.0":"2023-06-06T14:33:57.369Z","4.0.0":"2023-08-27T13:02:07.847Z","5.0.0":"2024-05-03T22:56:53.508Z"},"readmeFilename":"README.md","homepage":"https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme"}