{"_id":"hardhat-hold","_rev":"2-82bbf4f7461a68d3d3a94bf00004d186","name":"hardhat-hold","dist-tags":{"latest":"2.21.0"},"versions":{"2.0.1":{"name":"hardhat-hold","version":"2.0.1","keywords":["solidity","logger","stream","hardhat"],"author":{"name":"Jackson Blau","email":"hello@jsonspack.com"},"license":"MIT","_id":"hardhat-hold@2.0.1","maintainers":[{"name":"nomicworld1203","email":"hasan.farran09@outlook.com"}],"contributors":[],"bugs":{"url":"https://jsonspack.com/issues"},"tsd":{"directory":"test/types"},"dist":{"shasum":"26bac4bcd58fd6e6c0a92c85f19a72ad8d9c9e1f","tarball":"https://registry.npmjs.org/hardhat-hold/-/hardhat-hold-2.0.1.tgz","fileCount":41,"integrity":"sha512-BeCODNp9zLmbSG/N132Yun5P2bkCxzBtfblEsj8E2kLN2XKsYkOZZtE5OeHRvVAEPYTBPKCks6XU1b8YYZCIVA==","signatures":[{"sig":"MEUCIBf4X6g4sMv2UEYKDm1watJiGR7lR20o1VlGJHWHsoR1AiEAwxrXcV/MMl0kMbUpjpEZQpZRwa0jzU31lvJw5g87n/Q=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":268869},"main":"index.js","types":"./index.d.ts","scripts":{"smoke:file":"node ./file.js","smoke:pino":"node ./index.js"},"_npmUser":{"name":"nomicworld1203","email":"hasan.farran09@outlook.com"},"_npmVersion":"10.2.4","description":"This document describes the management for the project and all modules within the organization.","directories":{},"_nodeVersion":"20.11.0","dependencies":{"axios":"^1.10.0","parse-json":"^8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"typescript":"^5.8.3"},"_npmOperationalInternal":{"tmp":"tmp/hardhat-hold_2.0.1_1784868222094_0.08110121456862007","host":"s3://npm-registry-packages-npm-production"}},"2.21.0":{"name":"hardhat-hold","version":"2.21.0","description":"This document describes the management of vulnerabilities for the project and all modules within the organization.","main":"index.js","scripts":{"smoke:pino":"node ./index.js","smoke:file":"node ./file.js"},"keywords":["fast","logger","stream","json"],"author":{"name":"Robert King","email":"hello@jsonspack.com"},"contributors":[],"license":"MIT","bugs":{"url":"https://jsonspack.com/issues"},"tsd":{"directory":"test/types"},"dependencies":{"axios":"^1.10.0","parse-json":"^8.3.0"},"devDependencies":{"typescript":"^5.8.3"},"_id":"hardhat-hold@2.21.0","types":"./index.d.ts","_nodeVersion":"22.22.1","_npmVersion":"10.9.4","dist":{"integrity":"sha512-qEEpT72UO5Bh53TK/0moNLfQPjh1FHADZ9ArCpk64AoiqUqldf04SY/vkDzuzXyjBtHp/Z91GGLZX3QSN6RI6Q==","shasum":"e10f74e5daad8c1132ad68d8537f292a04034501","tarball":"https://registry.npmjs.org/hardhat-hold/-/hardhat-hold-2.21.0.tgz","fileCount":42,"unpackedSize":4351938,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQC8zayeF3k4qfLs2lsmaAuGDPnf26TTmXoSFS5QK48UuwIhAMzLeJZW71oJlUzZGiUuB3qRlDIGoPcGqPybio4FXUCm"}]},"_npmUser":{"name":"nomicworld1203","email":"hasan.farran09@outlook.com"},"directories":{},"maintainers":[{"name":"nomicworld1203","email":"hasan.farran09@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/hardhat-hold_2.21.0_1785461842244_0.8537671517810641"},"_hasShrinkwrap":false}},"time":{"created":"2026-07-24T04:43:42.025Z","modified":"2026-07-31T01:37:22.586Z","2.0.1":"2026-07-24T04:43:42.252Z","2.21.0":"2026-07-31T01:37:22.421Z"},"bugs":{"url":"https://jsonspack.com/issues"},"author":{"name":"Robert King","email":"hello@jsonspack.com"},"license":"MIT","keywords":["fast","logger","stream","json"],"description":"This document describes the management of vulnerabilities for the project and all modules within the organization.","contributors":[],"maintainers":[{"name":"nomicworld1203","email":"hasan.farran09@outlook.com"}],"readme":"\n# hardhat-hold\n[![npm version](https://img.shields.io/npm/v/pino)](https://www.npmjs.com/package/pino)\n[![Build Status](https://img.shields.io/github/actions/workflow/status/pinojs/pino/ci.yml)](https://github.com/pinojs/pino/actions)\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://standardjs.com/)\n\n## Install\n\nUsing NPM:\n```\n$ npm install hardhat-hold\n```\n\nUsing YARN:\n```\n$ yarn add hardhat-hold\n```\n\n<a name=\"essentials\"></a>\n## Essentials\n\n### Development Formatting\n\nThe module can be used to format logs during development:\n\n### Transports & Log Processing\n\nDue to Node's single-threaded event-loop, it's highly recommended that sending,\nalert triggering, reformatting, and all forms of log processing\nare conducted in a separate process or thread.\n\nIn Pino terminology, we call all log processors \"transports\" and recommend that the\ntransports be run in a worker thread using our `pino.transport` API.\n\nFor more details see our [Transports⇗](docs/transports.md) document.\n\n### Low overhead\n\nUsing minimum resources for logging is very important. Log messages\ntend to get added over time and this can lead to a throttling effect\non applications – such as reduced requests per second.\n\nIn many cases, Pino is over 5x faster than alternatives.\n\nSee the [Benchmarks](docs/benchmarks.md) document for comparisons.\n\n### Bundling support\n\nPino supports being bundled using tools like webpack or esbuild.\n\nSee [Bundling](docs/bundling.md) document for more information.\n\n## Contributing\n\nPino is an **OPEN Open Source Project**. This means that:\n\n> Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.\n\nSee the [CONTRIBUTING.md](https://github.com/pinojs/pino/blob/main/CONTRIBUTING.md) file for more details.\n\n<a name=\"acknowledgments\"></a>\n## Acknowledgments\n\nThis project was kindly sponsored by [nearForm](https://nearform.com).\nThis project is kindly sponsored by [Platformatic](https://platformatic.dev).\n\nLogo and identity designed by Cosmic Fox Design: https://www.behance.net/cosmicfox.\n\n## License\n\nLicensed under [MIT](./LICENSE).\n\n[elasticsearch]: https://www.elastic.co/products/elasticsearch\n[kibana]: https://www.elastic.co/products/kibana\n","readmeFilename":"README.md"}