{"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"keywords":["clone","super","class","constructor"],"dist-tags":{"latest":"3.0.1"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"description":"Create a subclass that can be modified without affecting the super class","readme":"# unherit\n\n[![Build][build-badge]][build]\n[![Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![Size][size-badge]][size]\n\nCreate a subclass that can be modified without affecting the super class.\n\n## Contents\n\n*   [What is this?](#what-is-this)\n*   [When should I use this?](#when-should-i-use-this)\n*   [Install](#install)\n*   [Use](#use)\n*   [API](#api)\n    *   [`unherit(Super)`](#unheritsuper)\n*   [Types](#types)\n*   [Compatibility](#compatibility)\n*   [Contribute](#contribute)\n*   [Security](#security)\n*   [License](#license)\n\n## What is this?\n\nThis is a tiny package lets you create a subclass, that can be modified,\nwithout affecting the super class.\n\n## When should I use this?\n\nNot often!\nYou might have some weird cases though.\n\n## Install\n\nThis package is [ESM only][esm].\nIn Node.js (version 14.14+, 16.0+), install with [npm][]:\n\n```sh\nnpm install unherit\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```js\nimport {unherit} from 'https://esm.sh/unherit@3'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n<script type=\"module\">\n  import {unherit} from 'https://esm.sh/unherit@3?bundle'\n</script>\n```\n\n## Use\n\n```js\nimport {EventEmitter} from 'node:events'\nimport {unherit} from 'unherit'\n\n// Create a private class which acts just like `EventEmitter`.\nconst Emitter = unherit(EventEmitter)\n\nEmitter.prototype.defaultMaxListeners = 0\n// Now, all instances of `Emitter` have `0` maximum listeners, without affecting\n// other `EventEmitter`s.\n\nnew Emitter().defaultMaxListeners === 0 // => true\nnew EventEmitter().defaultMaxListeners === undefined // => true\nnew Emitter() instanceof EventEmitter // => true\n```\n\n## API\n\nThis package exports the identifier `unherit`.\nThere is no default export.\n\n### `unherit(Super)`\n\nSubclass `Super`.\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports no additional types.\n\n## Compatibility\n\nThis package is at least compatible with all maintained versions of Node.js.\nAs of now, that is Node.js 14.14+ and 16.0+.\nIt also works in Deno and modern browsers.\n\n## Contribute\n\nYes please!\nSee [How to Contribute to Open Source][contribute].\n\n## Security\n\nThis package is safe.\n\n## License\n\n[MIT][license] © [Titus Wormer][author]\n\n<!-- Definitions -->\n\n[build-badge]: https://github.com/wooorm/unherit/workflows/main/badge.svg\n\n[build]: https://github.com/wooorm/unherit/actions\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/unherit.svg\n\n[coverage]: https://codecov.io/github/wooorm/unherit\n\n[downloads-badge]: https://img.shields.io/npm/dm/unherit.svg\n\n[downloads]: https://www.npmjs.com/package/unherit\n\n[size-badge]: https://img.shields.io/bundlephobia/minzip/unherit.svg\n\n[size]: https://bundlephobia.com/result?p=unherit\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[esmsh]: https://esm.sh\n\n[typescript]: https://www.typescriptlang.org\n\n[contribute]: https://opensource.guide/how-to-contribute/\n\n[license]: license\n\n[author]: https://wooorm.com\n","repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"bugs":{"url":"https://github.com/wooorm/unherit/issues"},"license":"MIT","versions":{"1.0.0":{"name":"unherit","version":"1.0.0","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"dependencies":{},"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js"],"devDependencies":{"browserify":"^11.0.0","clone":"^1.0.1","diff":"^1.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^1.0.0","jscs-jsdoc":"^1.0.0","mdast":"^0.27.1","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.0","mdast-lint":"^0.4.0","mdast-man":"^0.4.0","mdast-toc":"^0.5.0","mdast-validate-links":"^0.3.0","mocha":"^2.0.0"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coveralls":"istanbul cover _mocha --report lcovonly -- --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coveralls","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-md":"mdast . --quiet","build-bundle":"browserify index.js -s unherit > unherit.js","postbuild-bundle":"esmangle unherit.js > unherit.min.js","build":"npm run build-md && npm run build-bundle"},"gitHead":"811555dfebca29c36cff235aa39a45f3a850382e","bugs":{"url":"https://github.com/wooorm/unherit/issues"},"homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.0.0","_shasum":"473c0229c4ba7345c50e83c962685e0aed7beb0e","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"473c0229c4ba7345c50e83c962685e0aed7beb0e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.0.0.tgz","integrity":"sha512-QTtSCeYcjSZpz8YY3uKC1lsOBCm2k/JPn5q+Db53tEXp0OG1zmbgIjUUWzaY8NEpX6zUQLxIO3M8KkeceGs+oQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICMShkw+gAxST362ttt6gwQUgB111Smklpbg+o1pGSi2AiAhovIT9tS2LfCqyoJs+Sg+5mPj9C+/raAwVtrwdjLZYg=="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.1":{"name":"unherit","version":"1.0.1","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"dependencies":{"inherits":"^2.0.1"},"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js"],"devDependencies":{"browserify":"^11.0.0","clone":"^1.0.1","diff":"^1.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^1.0.0","jscs-jsdoc":"^1.0.0","mdast":"^0.27.1","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.0","mdast-lint":"^0.4.0","mdast-man":"^0.4.0","mdast-toc":"^0.5.0","mdast-validate-links":"^0.3.0","mocha":"^2.0.0"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coveralls":"istanbul cover _mocha --report lcovonly -- --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coveralls","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-md":"mdast . --quiet","build-bundle":"browserify index.js --bare -s unherit > unherit.js","postbuild-bundle":"esmangle unherit.js > unherit.min.js","build":"npm run build-md && npm run build-bundle"},"gitHead":"af306b2f67fef728a5e9a36b6467228654ae15b7","bugs":{"url":"https://github.com/wooorm/unherit/issues"},"homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.0.1","_shasum":"261d77b6b98154bcfeeb5672638de22c2240f22b","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"261d77b6b98154bcfeeb5672638de22c2240f22b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.0.1.tgz","integrity":"sha512-J70MPRqm4d0a6r3vvmPEoQtJCkCj4G8JOmVpDtOwYW78Xu57csTOg1K+qRgp4U9/FGfdV2JX8vG6aXfrBeC6AQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICss3jk7JO+ANPA97egdgA0fKk0Qcc8pWKynfD79j2sfAiAxncedu8dvolqMgBjoEhRLCq8Yy+0HCMhLulm7/QrtTA=="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.2":{"name":"unherit","version":"1.0.2","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"dependencies":{"inherits":"^2.0.1"},"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js"],"devDependencies":{"browserify":"^11.0.0","clone":"^1.0.1","diff":"^1.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^1.0.0","jscs-jsdoc":"^1.0.0","mdast":"^0.27.1","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.0","mdast-lint":"^0.4.0","mdast-man":"^0.4.0","mdast-toc":"^0.5.0","mdast-validate-links":"^0.3.0","mocha":"^2.0.0"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coveralls":"istanbul cover _mocha --report lcovonly -- --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coveralls","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-md":"mdast . --quiet","build-bundle":"browserify index.js --bare -s unherit > unherit.js","postbuild-bundle":"esmangle unherit.js > unherit.min.js","build":"npm run build-md && npm run build-bundle"},"gitHead":"49768d133eac8dd7c0cd004dc24b010350323d95","bugs":{"url":"https://github.com/wooorm/unherit/issues"},"homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.0.2","_shasum":"5dabddedb19bfd070e44c3c8d52b12e9f9ab9305","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"5dabddedb19bfd070e44c3c8d52b12e9f9ab9305","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.0.2.tgz","integrity":"sha512-dJMjdho4iWsna0HtXoENWx4KN2sSSS/7CcV2LiPqDm2eqyLEx9xuG1TL5z3Ix+y7T+7Ts+prOZX0PsjA1X21fA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCWFjwImBbmCidRJJm7wRfBg62PveM+F51BOeXgGSUNTwIgRlOgHdHPtiDih7chg2h55GCV/Dc3INXxeMIbK7E24TY="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.3":{"name":"unherit","version":"1.0.3","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"dependencies":{"clone":"^1.0.1","inherits":"^2.0.1"},"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js"],"devDependencies":{"browserify":"^11.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^1.0.0","jscs-jsdoc":"^1.0.0","mdast":"^0.27.1","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.0","mdast-lint":"^0.4.0","mdast-man":"^0.4.0","mdast-toc":"^0.5.0","mdast-validate-links":"^0.3.0","mocha":"^2.0.0"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coveralls":"istanbul cover _mocha --report lcovonly -- --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coveralls","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-md":"mdast . --quiet","build-bundle":"browserify index.js --bare -s unherit > unherit.js","postbuild-bundle":"esmangle unherit.js > unherit.min.js","build":"npm run build-md && npm run build-bundle"},"gitHead":"1876573845c9d53e1ba1a4d73b1d6ae17e43219e","bugs":{"url":"https://github.com/wooorm/unherit/issues"},"homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.0.3","_shasum":"7e13790cb56b0bf8347661ca0031a969a239bb61","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"7e13790cb56b0bf8347661ca0031a969a239bb61","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.0.3.tgz","integrity":"sha512-OG7DoYrdfh5rl7aBS+Mnq/YOSep7QBzFRWpIyKcLFXH9th83YpUhV+NXcdGIGFHLrMcJoWmDG6N4PfWHDHU+tg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG9XqCfSVoMKaj1ihKw6MgeW46qHETwQyv8b7sJxMD7+AiAqXGSty8faDPZj572a1oBNSkh2tx05njAOU9Xbealdhg=="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.4":{"name":"unherit","version":"1.0.4","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"dependencies":{"clone":"^1.0.1","inherits":"^2.0.1"},"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js"],"devDependencies":{"browserify":"^11.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^1.0.0","jscs-jsdoc":"^1.0.0","mdast":"^0.27.1","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.0","mdast-lint":"^0.4.0","mdast-man":"^0.4.0","mdast-toc":"^0.5.0","mdast-validate-links":"^0.3.0","mocha":"^2.0.0"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coveralls":"istanbul cover _mocha --report lcovonly -- --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coveralls","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-md":"mdast . --quiet","build-bundle":"browserify index.js --bare -s unherit > unherit.js","postbuild-bundle":"esmangle unherit.js > unherit.min.js","build":"npm run build-md && npm run build-bundle"},"gitHead":"03c7c3e7ff84f443f7418e39d28fb45f859d660a","bugs":{"url":"https://github.com/wooorm/unherit/issues"},"homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.0.4","_shasum":"b9bcf6487dd04d4782665802dbb4b4f05d618503","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"b9bcf6487dd04d4782665802dbb4b4f05d618503","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.0.4.tgz","integrity":"sha512-UkVY7mEhrYn8j/U6BndZQY7RBqAijZEe+RWT8uKzVJlzT7LC0BaXJB3A5iLqYYC4D3Fjg46J1n+1QY1Bco7Qvw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD63dh0H123sV09llxJ2tSLmxvyr7jJLa2IefCFENtdjgIhAOx5MdMmKtSFytzk/UdNZpNXQPxjJ0kz9QIbsZDL3wie"}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"directories":{}},"1.1.0":{"name":"unherit","version":"1.1.0","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"files":["index.js"],"dependencies":{"inherits":"^2.0.1","xtend":"^4.0.1"},"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"bugs":{"url":"https://github.com/wooorm/unherit/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"}],"devDependencies":{"browserify":"^13.0.1","esmangle":"^1.0.1","nyc":"^8.1.0","remark-cli":"^1.0.0","remark-comment-config":"^4.0.0","remark-github":"^5.0.0","remark-lint":"^4.0.0","remark-validate-links":"^4.0.0","tape":"^4.0.0","xo":"^0.16.0"},"scripts":{"build-md":"remark . --quiet --frail","build-bundle":"browserify index.js --bare -s unherit > unherit.js","build-mangle":"esmangle unherit.js > unherit.min.js","build":"npm run build-md && npm run build-bundle && npm run build-mangle","lint":"xo","test-api":"node test","test-coverage":"nyc --reporter lcov tape test.js","test":"npm run build && npm run lint && npm run test-coverage"},"xo":{"space":true,"rules":{"guard-for-in":"off"},"ignores":["unherit.js"]},"remarkConfig":{"output":true,"plugins":{"comment-config":null,"github":null,"lint":{"heading-increment":false},"validate-links":null},"settings":{"bullet":"*"}},"gitHead":"43822edbe663824109960ea8bc38c45c890d561a","homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.1.0","_shasum":"6b9aaedfbf73df1756ad9e316dd981885840cd7d","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"6b9aaedfbf73df1756ad9e316dd981885840cd7d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.1.0.tgz","integrity":"sha512-TqB2ZB44rZ/lUYkoYjo0LKmw+4HIMbUJSiN3iIJO1oHVieA2kbUyMe01rzsCBQ4gqeoAjn9edj9/fc4N8b7trA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEm0uvqKflIleeNQZbjHVlXEhAiBV5PKZFpP0lXRrE74AiBpmLQdBwzi2QXAzwvvkq5YzkMeYBgbFOwfsxEaPbCfOA=="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/unherit-1.1.0.tgz_1471518495151_0.7505096562672406"},"directories":{}},"1.1.1":{"name":"unherit","version":"1.1.1","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"bugs":{"url":"https://github.com/wooorm/unherit/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"}],"files":["index.js"],"dependencies":{"inherits":"^2.0.1","xtend":"^4.0.1"},"devDependencies":{"browserify":"^16.0.0","esmangle":"^1.0.1","nyc":"^11.0.0","prettier":"^1.12.1","remark-cli":"^5.0.0","remark-preset-wooorm":"^4.0.0","tape":"^4.0.0","xo":"^0.20.0"},"scripts":{"format":"remark . -qfo && prettier --write '**/*.js' && xo --fix","build-bundle":"browserify index.js --bare -s unherit > unherit.js","build-mangle":"esmangle unherit.js > unherit.min.js","build":"npm run build-bundle && npm run build-mangle","test-api":"node test","test-coverage":"nyc --reporter lcov tape test.js","test":"npm run format && npm run build && npm run test-coverage"},"prettier":{"tabWidth":2,"useTabs":false,"singleQuote":true,"bracketSpacing":false,"semi":false,"trailingComma":"none"},"xo":{"prettier":true,"esnext":false,"rules":{"no-var":"off","prefer-arrow-callback":"off","guard-for-in":"off"},"ignores":["unherit.js"]},"remarkConfig":{"plugins":["preset-wooorm"]},"gitHead":"e41f0acebc397bafde87b16db784c5fd40b69bd0","homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.1.1","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-+XZuV691Cn4zHsK0vkKYwBEwB74T3IZIcxrgn2E4rKwTfFyI1zCh7X7grwh9Re08fdPlarIdyWgI8aVB3F5A5g==","shasum":"132748da3e88eab767e08fabfbb89c5e9d28628c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.1.1.tgz","fileCount":4,"unpackedSize":5208,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5FAwCRA9TVsSAnZWagAAUE8QAIH76dmZoxXLPzvQjeSY\nzyzVvf7hQQTFpcpPy6rTZxoejdNDlmJE6fuDD+3Q/A8pIE65RG1/o4PRSrt6\nXM0+ZRVvTco3FsssriWpjnytAL52410XPWAP1I7XWqzWXNQOVDrCklHzBqrK\nhiRQXFjx4Mxm7lCv6oYvrBK+euRlF8YGjNywS19K/kxeCohBRV+KMyJBHu3i\nxkc9Z9hyIU6gpXE5Er6aug1RFDpZAGPUqcaSk1HteGjDpN/cj/f2p/Ktg7xs\njc34ZZDQhpS9U/3wvgUXvo7zBvMOPosOFQt30e/qL+IFXITRYnn/cC+SV3Lj\nkeAqQxTynXziCl4MM4xe/hS5z98YvLKhUPl5DUWufkxYGN5AEYyFqVA7sWvR\nIKW1BbkZFNr7ozOqBN70DqDshsOFBAkEPKhDjdYytLQ7fo2kmyxYJWriKeye\nZV8kqSsOanV6qt24n1SKB/rCb1Bza4wIdKurMrGgzUtbEV524OU/lebIqjL6\ngZodkFk6biWKx0A1ncKyXc7i4RxcpFJg9xKZ/q3xawYtCKANC5fmE6bcLAQ1\nLOZ5FO5HxL4p25591PJkbfUZ91ns2ztWD1Z63L65LzAb51r3OiI5P6XsPxrj\nRsjKvHqO+JcAUIHKntVow9DD3kjwx3QgYteNJ/3yw6uAIGNjPRkmbV2GiC9v\nmqaB\r\n=31w9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE8gj7Q4CkILtcThChONvMSzFZymAl4LDGj7LbKomrKgAiEAxrX4HTxa0J0sLoElE2KRRMw5f9J9EK1XZWQUkf0t108="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unherit_1.1.1_1524912176106_0.7610550529665316"},"_hasShrinkwrap":false},"1.1.2":{"name":"unherit","version":"1.1.2","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"bugs":{"url":"https://github.com/wooorm/unherit/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"dependencies":{"inherits":"^2.0.1","xtend":"^4.0.1"},"devDependencies":{"browserify":"^16.0.0","nyc":"^14.0.0","prettier":"^1.12.1","remark-cli":"^6.0.0","remark-preset-wooorm":"^4.0.0","tape":"^4.0.0","tinyify":"^2.5.0","xo":"^0.24.0"},"scripts":{"format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","build-bundle":"browserify . -s unherit -o unherit.js","build-mangle":"browserify . -s unherit -p tinyify -o unherit.min.js","build":"npm run build-bundle && npm run build-mangle","test-api":"node test","test-coverage":"nyc --reporter lcov tape test.js","test":"npm run format && npm run build && npm run test-coverage"},"prettier":{"tabWidth":2,"useTabs":false,"singleQuote":true,"bracketSpacing":false,"semi":false,"trailingComma":"none"},"xo":{"prettier":true,"esnext":false,"rules":{"guard-for-in":"off"},"ignores":["unherit.js"]},"remarkConfig":{"plugins":["preset-wooorm"]},"gitHead":"7e6d9c419f6ee67983f76f98830a70aeb2cc1cb4","homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.1.2","_nodeVersion":"11.9.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-W3tMnpaMG7ZY6xe/moK04U9fBhi6wEiCYHUW5Mop/wQHf12+79EQGwxYejNdhEz2mkqkBlGwm7pxmgBKMVUj0w==","shasum":"14f1f397253ee4ec95cec167762e77df83678449","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.1.2.tgz","fileCount":4,"unpackedSize":5426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1nm+CRA9TVsSAnZWagAAV+EQAKFXoj7abbaUftf/qaUM\nRLgm8gMccCh3vPlS2IEo2GQF+Lgtqgr0nucgaFG2uPmTY6iZ6Jxq885Czxvr\ngD/HcUi97t162wJx16RMM9GJUIW0AAlJWuyy5WevKrCjs/aX/NHC1AM9RYZ4\n2rxJHfcFkIPSzdVzbllmipgqBqM6N5EEyzz6ZuZrx7qmf8HJBqDRp++oLQlc\nznCGzACZf3nOWvmsNL3CzCARQODsc/HwDu8/DTMPuIedAI/LbXRnWhDvsuvm\nkzpdByEmods+AeIoGWBqrc9ZakszkcRHcUvOV2fnWl+h3wQCaVhTytyJLYP/\nfvMZYZgNlJRz22bvNvQcEDHjOIuc183XIn6gUah0Jv5rLBFnRgVRFXIgv3j+\nRPMozbP1pXxsvaSTSCy4NVuBxua5WyM44lqMi039wjZMn1NSt5G8AvfjFne1\n2BF/tePhu5/em4HzFJx2qJqKufFJmKVBeUQMTl4tMO/zsvBIdIB0tFVIo2YN\nMmk+o79C1AiwyUoo8XsI7/HgZUssRIPo7S+Q5iunb+6fA7ETdktbKLeWzYf6\nnpCDzdKC3QxoFuFa762UaHm5tskcTyfwJo8xbCKoaEzgCRJ1M1P+7mXIM7wX\nksaITNKdYF/cLoc7wBqpLihgafA6KK1hkEncOW6Df6QYT5Jb6QHg/U4SeeCB\nRGX/\r\n=Vle7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA0jRzhgm6tOZfuerR70cYyAS6Vz9RuYYrhB1MQFrIJiAiEAjPNouD/6Frnah5qoDcE20um6u2ntvVVviKp2fpAIfsE="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unherit_1.1.2_1557559742337_0.6399746231618841"},"_hasShrinkwrap":false},"1.1.3":{"name":"unherit","version":"1.1.3","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"bugs":{"url":"https://github.com/wooorm/unherit/issues"},"funding":{"type":"github","url":"https://github.com/sponsors/wooorm"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"dependencies":{"inherits":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"browserify":"^16.0.0","nyc":"^15.0.0","prettier":"^1.0.0","remark-cli":"^7.0.0","remark-preset-wooorm":"^6.0.0","tape":"^4.0.0","tinyify":"^2.0.0","xo":"^0.25.0"},"scripts":{"format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","build-bundle":"browserify . -s unherit -o unherit.js","build-mangle":"browserify . -s unherit -p tinyify -o unherit.min.js","build":"npm run build-bundle && npm run build-mangle","test-api":"node test","test-coverage":"nyc --reporter lcov tape test.js","test":"npm run format && npm run build && npm run test-coverage"},"prettier":{"tabWidth":2,"useTabs":false,"singleQuote":true,"bracketSpacing":false,"semi":false,"trailingComma":"none"},"xo":{"prettier":true,"esnext":false,"rules":{"unicorn/prefer-reflect-apply":"off","guard-for-in":"off"},"ignores":["unherit.js"]},"remarkConfig":{"plugins":["preset-wooorm"]},"gitHead":"2e64baeea9450acd28bd50d1a0bf87ee067e06d3","homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@1.1.3","_nodeVersion":"13.0.1","_npmVersion":"6.13.6","dist":{"integrity":"sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==","shasum":"6c9b503f2b41b262330c80e91c8614abdaa69c22","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-1.1.3.tgz","fileCount":4,"unpackedSize":5531,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeLYW7CRA9TVsSAnZWagAAv0MQAJQ48REl/XPdT+ws2xDe\nMNCvK3+3kempNIeX2ifh9W+wVJ8AMbFimvw6WxW+4gtnzc9UqIHuxMoPLP1T\nlb55DyI9ZMDV1U/Q9jVbrJ3w1CPnvLN5iIwQ+iggUobAEYjucZ4ABxzA/4Pu\nib4L58LD+9qwSdSpuRCQDP/r+FAUha0/5KSU1A3oJ65x5VP4w9yCAx72kxcZ\nbC0hWrTKUfpWj1GrBxBVy+Owe1/RlK0hgGRceSa3XeKdlTZNLs4TSv4it0em\n7ZTIL8vhlgs4IPs7x0bAn9GE+fKgrDJHGHS/3+b+HHpJp9KFMgNdg36CVowt\ncsJkNgkF1yU5mf1cncwyV+GigZljll+tF4Kxnm2+U1TuDd//J258HGOUAFLN\noic2IrXZlFcZ67CVvbBFFmS/VpQ+pq2cv0xpvIdoLcIKw7y21W3OEeACUUos\nmM/cVz2UJfn2sxHUd6I+F6c+DZ4wzwpdBLqj0gRkQo2X9fytZiwnfheR0SQ+\ncsZMpSht3ha13bvMSu4Av+vmvlL/EMyqetOKnV9ZCvyVB+CKC2C46P0bxtTU\nErUg60pcQIgTGNXMU9ZEaZ4ZuC0IJagi3VKayCDcPhyc2e2V12jM3nOclxyk\nWViQGFsynAlB3Rf9wf3poF27rHkDtQ8eSSoXfvx1DxrmMuiyMZ0T8UTddQy/\nVQga\r\n=xQrC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDB5VWdkhNA570s7IuIhojyHzkFVFXwo7cwUN3pXUnF2AiB11TcZrZGwrkoU0TSjcWnqh0HJ5toPY7fvCVd0rE7Kyw=="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unherit_1.1.3_1580041659199_0.6613153759563415"},"_hasShrinkwrap":false},"2.0.0":{"name":"unherit","version":"2.0.0","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"bugs":{"url":"https://github.com/wooorm/unherit/issues"},"funding":{"type":"github","url":"https://github.com/sponsors/wooorm"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"sideEffects":false,"type":"module","main":"index.js","types":"index.d.ts","dependencies":{"inherits":"^2.0.0"},"devDependencies":{"@types/inherits":"^0.0.30","@types/tape":"^4.0.0","c8":"^7.0.0","prettier":"^2.0.0","remark-cli":"^9.0.0","remark-preset-wooorm":"^8.0.0","rimraf":"^3.0.0","tape":"^5.0.0","typescript":"^4.0.0","xo":"^0.38.0"},"scripts":{"prepublishOnly":"npm run build","format":"remark . -qfo && prettier . -w --loglevel warn && xo --fix","prebuild":"rimraf \"*.d.ts\"","build":"tsc","test-api":"node test","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov node test.js","test":"npm run build && npm run format && npm run test-coverage"},"prettier":{"tabWidth":2,"useTabs":false,"singleQuote":true,"bracketSpacing":false,"semi":false,"trailingComma":"none"},"xo":{"prettier":true,"rules":{"no-var":"off","prefer-arrow-callback":"off","unicorn/prefer-reflect-apply":"off"}},"remarkConfig":{"plugins":["preset-wooorm"]},"gitHead":"cde94bdebb740017609bb3146f98c5ca8c5c810b","homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@2.0.0","_nodeVersion":"15.11.0","_npmVersion":"7.6.1","dist":{"integrity":"sha512-x6hHM3Jl6xprdiHfnGlNG1KnjY5qSmB0Khj4wzneu/AKbgT4/ooHi06xzhYngLMg3OroElJJBiYXzXwaZjpXhg==","shasum":"eae9ba759ae8fb50ee5843487a54322d9e5e820c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-2.0.0.tgz","fileCount":5,"unpackedSize":6627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgR0mPCRA9TVsSAnZWagAADWgQAIxcbi41Q0a5UXrBEz0u\nij6z78Zvj25pxM0IqziBm52qOlYya/a77+a3lujlHLymEmoH5WdlycSK8PgP\nUMtwnCjkVs8+muhpUUYBgnypsKIbPh9f+5eR+iN/WGEERKnVN8vX73k+Cxw5\nQcsy1JbT7Ao9vcS2yFUuwcMZeUCvf2Gi8UTJETgb5B38Pyj7MkiSLMT0KJmV\npmCNYMsiW9uE6e7YtUFUuFFk4xUZW/dWQi/RrAnIp79lhxPJ2Q7rDJ1+uGay\nqz7viB/sR55oOxDbKTiYXVuOGYygLX9cgDPUa5iZgphwB+xlWp/AolZHMEVh\n1fZiJVvCeUGmVSXpJfUOkIUkG3F36/jK0XPOuSd4oxV03+vkVMf3Whr5tOyJ\nSVT9O3jujv7BXPMc4zShHps2dHc9IggiRFHSMaMdbXnWJ5HAcK5cMJqZX1Nh\n/MpMW6oxpT6K732/X90EVZ5HDBTEBYnve0PGleIj2/+T76uWVqpuVXc23eZ0\nvpI82FcZrRvVynG5Fn980qSGypf/96Xtz2/VaD8kljJizLULTJiiUgSEFijR\nlitYnFGqdug6rfUPPi08a9P8gEgOCKGQLug5jbPz9mZVkSXDlJ43VxORI9iO\niziFJzvB1iduG351kJjTwMBMsT8stVM6p3gi69FBr5Hu8UoawRIErIYRG9Ad\n5ueh\r\n=w6Rl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC0REtWoGD9xQrmniF1nampkMn9g8fvwfeA8pJpoAb0yAiEA9/+3W0prYOBjgfm6VPfgsAT8ZMQ4ncGSxWHUDxOElD0="}]},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unherit_2.0.0_1615284622915_0.11801889520627662"},"_hasShrinkwrap":false},"3.0.0":{"name":"unherit","version":"3.0.0","description":"Clone a constructor without affecting the super-class","license":"MIT","keywords":["clone","super","class","constructor"],"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"bugs":{"url":"https://github.com/wooorm/unherit/issues"},"funding":{"type":"github","url":"https://github.com/sponsors/wooorm"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"sideEffects":false,"type":"module","main":"index.js","types":"index.d.ts","devDependencies":{"@types/tape":"^4.0.0","c8":"^7.0.0","prettier":"^2.0.0","remark-cli":"^9.0.0","remark-preset-wooorm":"^8.0.0","rimraf":"^3.0.2","tape":"^5.0.0","type-coverage":"^2.18.0","typescript":"^4.3.5","xo":"^0.39.0"},"scripts":{"prepublishOnly":"npm run build","build":"rimraf \"*.d.ts\" && tsc && type-coverage","format":"remark . -qfo && prettier . -w --loglevel warn && xo --fix","test-api":"node test","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov node test.js","test":"npm run build && npm run format && npm run test-coverage"},"prettier":{"tabWidth":2,"useTabs":false,"singleQuote":true,"bracketSpacing":false,"semi":false,"trailingComma":"none"},"xo":{"prettier":true},"remarkConfig":{"plugins":["preset-wooorm"]},"typeCoverage":{"atLeast":100,"detail":true,"strict":true,"ignoreCatch":true,"#":"we need a couple `any`s in parameters","ignoreFiles":["index.d.ts"]},"gitHead":"2b7ed17e85ef31f40309f38efa7b7200297a8ef6","homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@3.0.0","_nodeVersion":"16.2.0","_npmVersion":"7.18.1","dist":{"integrity":"sha512-UmvIQZGEc9qdLIQ8mv8/61n6PiMgfbOoASPKHpCvII5srShCQSa6jSjBjlZOR4bxt2XnT6uo6csmPKRi+zQ0Jg==","shasum":"83d69af9d8e3afd28fa51cff9ee84de7a1d82a6b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-3.0.0.tgz","fileCount":5,"unpackedSize":5917,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8UBrCRA9TVsSAnZWagAAwqQP/0HLmVmHUXkwMYbMh0S/\nJ+M+QeyJMt3VxKuOeVYUTSM4Czw2GnqqYOqzVv/tyxu5CCLIE2qklPKybUwq\nBUYKWv5aKqDD94K5/tiwu5bJsPjmqBTOwnSQc5jAw84FEH+haNdvsTOQWbub\n6avS383N+BzmQUBIbI6h59SPaBjO13S+8uuanBHOeourBP5pEMy1cGgUT4xi\ndgCafefn/ePJRWDejj/v/Bq+MdU3fpvdtzKxpsUZdSw4mDumo+9GWnUQjXXY\nYVNkqKTQSoFvHvcurc1/XXq1zTm8B6mbbvDa+RllxGtrJ7MbpoH/iYvNv7Rr\noWuESRKSU1ErqX8j9xy3c4TlC1IMmdPDpI8ewu5hDiZTn+Bp+vqUM1vIH8J4\nbnwZA81zXKjSWYdqSnjuHfDRch93fiOCuCHbG9MXSpBFhyQ76b5YsbaSHLcj\nAIMQ7q0Jf5Wk19D/B+vo0rJgRfo4XZ0eDbZOGmvMyBaYPk8L3jljXAlH5bF6\nuECBK7SD9+N08mQy2FCUBNjIeUj8xsE8drWYf4xpi45B2gSQYnEQ/FW5/skV\nZDZjh1kWuMFxJEbBL9RB1Dyj9vCVAddS1uJlL9hwn+hP08Nue4qqAHkjZRkT\nt7rrVSOmEAb16ks78HFASycq5xTummrpwqpJ6mporM7s9GJz7puFh3p1DuwO\n965d\r\n=hrU/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDATgLtIYbi8hcvmiuJ1P1TM4zATxROuh5sXRfawgceXAiArOYcEKH+5SlmkAeDBuxHfRRoPbkoJ06wcF2rzP9cB2A=="}]},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unherit_3.0.0_1626423403603_0.3112285698249371"},"_hasShrinkwrap":false},"3.0.1":{"name":"unherit","version":"3.0.1","description":"Create a subclass that can be modified without affecting the super class","license":"MIT","keywords":["clone","super","class","constructor"],"repository":{"type":"git","url":"git+https://github.com/wooorm/unherit.git"},"bugs":{"url":"https://github.com/wooorm/unherit/issues"},"funding":{"type":"github","url":"https://github.com/sponsors/wooorm"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"sideEffects":false,"type":"module","main":"index.js","types":"index.d.ts","devDependencies":{"@types/node":"^18.0.0","c8":"^7.0.0","prettier":"^2.0.0","remark-cli":"^11.0.0","remark-preset-wooorm":"^9.0.0","type-coverage":"^2.0.0","typescript":"^4.0.0","xo":"^0.52.0"},"scripts":{"prepack":"npm run build && npm run format","build":"tsc --build --clean && tsc --build && type-coverage","format":"remark . -qfo && prettier . -w --loglevel warn && xo --fix","test-api":"node --conditions development test.js","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api","test":"npm run build && npm run format && npm run test-coverage"},"prettier":{"tabWidth":2,"useTabs":false,"singleQuote":true,"bracketSpacing":false,"semi":false,"trailingComma":"none"},"xo":{"prettier":true},"remarkConfig":{"plugins":["preset-wooorm"]},"typeCoverage":{"atLeast":100,"detail":true,"strict":true,"ignoreCatch":true,"#":"we need a couple `any`s in parameters","ignoreFiles":["index.d.ts"]},"gitHead":"408e31d7aabaa1b59681da18c74e8489f00f3460","homepage":"https://github.com/wooorm/unherit#readme","_id":"unherit@3.0.1","_nodeVersion":"19.0.0","_npmVersion":"8.19.2","dist":{"integrity":"sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==","shasum":"65b98bb7cb58cee755d7ec699a49e9e8ff172e23","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/unherit/-/unherit-3.0.1.tgz","fileCount":5,"unpackedSize":7088,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC7pRFbzEJBmSFgkG/Ky8S3slfi1tFfLeYLPlt6XlbWtAiAma/kvSmMo6i/HIZSXTqoZhC30JzuAEtsdHx43tkY9mQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcn35ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSiQ/8D9Rh/lSI03Y0hSmmPtHZoD818SGL2n2q3ugipn1b8fd0h/iA\r\nFM4Ko3qGf2wuWQ/NoL8OSLNrCeqGW4l72zZIwgO/vGSr5IQANSAfbfZRXWGE\r\nwidiItT2OE3H/KglioB5zFWaHBGTi04k+oDBDEyqKEEviP9rD/wvYHbuzcCD\r\nPaYVt4hIdqPtE0dhcU5r1IhZ6D/hfJlDQ4q+3KBKyKW0PTawlce8vH3+X/h1\r\n9RNcu4y9lWkVVPirmlx6R3MK+N5N0r/9YpzxMq3ZyX6Nog/iWEK+Tz7JQf8j\r\nS8YGcDP26LzRZGcQzgZ7zZ3RHcF9+n0Jt2vzvUacsfaYXyiaQ9RSsKAvS0XL\r\nsii2cTv0jEre7M2gZRCRP7DtclW4pTro+hwZRzcQh9Ov7stC3FhYnHuvWRb6\r\nKmwroorFIT2C5qLk+EDfpwQnNyvF5cZXeN3qbL5UNpYO6wD+LKN20ZENCYkN\r\nWJw1Sct2bnLqwuvIvQwpWA+61AemClZVoTwj9sfhoAsiRAHMPbpd6maVCvyp\r\nEa4DevlEyqMwAvJ4waPfD7Gh7lmFI3SEMXX/9MWFYcgZelkp+L8QUnOkq2a7\r\nlkgmZp+Qm/TLSMbdyjeFDme594sRZInjnRq5loZslQILFp5ViGV96z9n1+9u\r\ne2IWhIZogKqKi5XE/2Hex2xDMGMmsQ/N/yA=\r\n=90QT\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unherit_3.0.1_1668447737769_0.4150616938132696"},"_hasShrinkwrap":false}},"name":"unherit","time":{"modified":"2022-11-14T17:42:18.019Z","created":"2015-07-26T17:38:47.581Z","1.0.0":"2015-07-26T17:38:47.581Z","1.0.1":"2015-07-26T18:25:37.177Z","1.0.2":"2015-07-27T16:41:16.459Z","1.0.3":"2015-07-27T17:17:20.139Z","1.0.4":"2015-07-28T17:57:29.644Z","1.1.0":"2016-08-18T11:08:17.077Z","1.1.1":"2018-04-28T10:42:56.185Z","1.1.2":"2019-05-11T07:29:02.452Z","1.1.3":"2020-01-26T12:27:39.333Z","2.0.0":"2021-03-09T10:10:23.053Z","3.0.0":"2021-07-16T08:16:43.763Z","3.0.1":"2022-11-14T17:42:17.942Z"},"readmeFilename":"readme.md","contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"homepage":"https://github.com/wooorm/unherit#readme"}