{"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"dist-tags":{"latest":"8.0.0"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","readme":"# log-update\n\n> Log by overwriting the previous output in the terminal.\\\n> Useful for rendering progress bars, animations, etc.\n\n![](screenshot.gif)\n\nIt performs partial redraws when possible to reduce flicker.\n\n## Install\n\n```sh\nnpm install log-update\n```\n\n## Usage\n\n```js\nimport logUpdate from 'log-update';\n\nconst frames = ['-', '\\\\', '|', '/'];\nlet index = 0;\n\nsetInterval(() => {\n\tconst frame = frames[index = ++index % frames.length];\n\n\tlogUpdate(\n`\n        ♥♥\n   ${frame} unicorns ${frame}\n        ♥♥\n`\n\t);\n}, 80);\n```\n\nYou can use [yoctocolors](https://github.com/sindresorhus/yoctocolors) or [chalk](https://github.com/chalk/chalk) to colorize the output.\n\n## API\n\n### logUpdate(text…)\n\nLog to stdout.\n\n### logUpdate.clear()\n\nClear the logged output.\n\n### logUpdate.done()\n\nPersist the logged output.\n\nUseful if you want to start a new log session below the current one.\n\n### logUpdate.persist(text…)\n\nWrite text to the terminal that persists, similar to `console.log()`.\n\nUnlike the main `logUpdate()` method which updates in place, `persist()` writes to the terminal in a way that preserves the output in the scrollback history.\n\n```js\nimport logUpdate from 'log-update';\n\n// Update in place\nlogUpdate('Processing...');\nlogUpdate('Still processing...');\n\n// Write permanent output\nlogUpdate.persist('✓ Task complete');\n\n// Continue updating\nlogUpdate('Next task...');\n```\n\n### logUpdateStderr(text…)\n\nLog to stderr.\n\n### logUpdateStderr.clear()\n### logUpdateStderr.done()\n### logUpdateStderr.persist(text…)\n\n### createLogUpdate(stream, options?)\n\nGet a `logUpdate` method that logs to the specified stream.\n\n#### options\n\nType: `object`\n\n##### showCursor\n\nType: `boolean`\\\nDefault: `false`\n\nShow the cursor. This can be useful when a CLI accepts input from a user.\n\n```js\nimport {createLogUpdate} from 'log-update';\n\n// Write output but don't hide the cursor\nconst log = createLogUpdate(process.stdout, {\n\tshowCursor: true\n});\n```\n\n##### defaultWidth\n\nType: `number`\\\nDefault: `80`\n\nThe width to use when the stream doesn't provide a `columns` property.\n\nThis is useful when the output is piped, redirected, or in environments where the terminal size is not available.\n\n```js\nimport {createLogUpdate} from 'log-update';\n\n// Use custom width when the stream doesn't provide columns\nconst log = createLogUpdate(process.stdout, {\n\tdefaultWidth: 120\n});\n```\n\n##### defaultHeight\n\nType: `number`\\\nDefault: `24`\n\nThe height to use when the stream doesn't provide a `rows` property.\n\nThis is useful when the output is piped, redirected, or in environments where the terminal size is not available.\n\n```js\nimport {createLogUpdate} from 'log-update';\n\n// Use custom height when the stream doesn't provide rows\nconst log = createLogUpdate(process.stdout, {\n\tdefaultHeight: 50\n});\n```\n\n## Examples\n\n- [listr](https://github.com/SamVerschueren/listr) - Uses this module to render an interactive task list\n- [ora](https://github.com/sindresorhus/ora) - Uses this module to render awesome spinners\n- [speed-test](https://github.com/sindresorhus/speed-test) - Uses this module to render a [spinner](https://github.com/sindresorhus/elegant-spinner)\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/log-update.git"},"users":{"alvis":true,"egorgl":true,"alfeo92":true,"atronax":true,"chaoliu":true,"g120hbq":true,"nichoth":true,"sachacr":true,"abhisekp":true,"lunelson":true,"moimikey":true,"simon129":true,"thing772":true,"zuojiang":true,"gochomugo":true,"jameswain":true,"nickzuber":true,"quocnguyen":true,"rocket0191":true,"santi8ago8":true,"danielkalen":true,"flumpus-dev":true,"wangnan0610":true,"jian263994241":true,"scottfreecode":true,"sandinmyjoints":true,"icodeforcookies":true},"bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"license":"MIT","versions":{"1.0.0":{"name":"log-update","version":"1.0.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@1.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"b3c9478e0b80e77ffedb820277450dabd8a6dba1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-1.0.0.tgz","integrity":"sha512-/7zOp8XCm9y7+Y4TkUZvRPPn7UOMGfWwt9IdYpNb5lygvFNM7oT2BSf9CWylA5ZOyllawZMLZn4bEmR/ELR7lA==","signatures":[{"sig":"MEUCIQCnijw919sOzlJQAhv2ONwqpxPcY5flCfkrCLsN3wijIwIgZIGaquSYoxrc0l+vuyyZ9sPdSmvcEHRv+gQF7lvTBw0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"b3c9478e0b80e77ffedb820277450dabd8a6dba1","engines":{"node":">=0.10.0"},"gitHead":"9e5e52a6b47e036744c0f1e297c040bc8197859f","scripts":{"test":"xo && node test.js"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/log-update","type":"git"},"_npmVersion":"2.11.2","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"0.12.5","dependencies":{"cli-cursor":"^1.0.1","ansi-escapes":"^1.0.0"},"devDependencies":{"xo":"*","ava":"0.0.4"}},"1.0.1":{"name":"log-update","version":"1.0.1","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@1.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"6a00c6c08cd4be99d0c50df92432d30c7174af53","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-1.0.1.tgz","integrity":"sha512-VVt1sILlxaXRnmnV0KecEP+q03HtpVgZPgaXIMlDd3/aNceI0KHOuLsg4yz7fsLUTeFff7kcl5TO0S/z0c3CNg==","signatures":[{"sig":"MEUCIQDBBxuSxAmjX6FNf8moXJVi/0iomZFhjTh73I6uZ5aIIAIgH7URkyFG8rl8V5nK/O3Mb4DdYCBY3c4XYaNCKcoD1R0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"6a00c6c08cd4be99d0c50df92432d30c7174af53","engines":{"node":">=0.10.0"},"gitHead":"a68643838005d6d42d0861c03e450117a38d1d14","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"2.14.3","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"4.1.0","dependencies":{"cli-cursor":"^1.0.2","ansi-escapes":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*"}},"1.0.2":{"name":"log-update","version":"1.0.2","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@1.0.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"19929f64c4093d2d2e7075a1dad8af59c296b8d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-1.0.2.tgz","integrity":"sha512-4vSow8gbiGnwdDNrpy1dyNaXWKSCIPop0EHdE8GrnngHoJujM3QhvHUN/igsYCgPoHo7pFOezlJ61Hlln0KHyA==","signatures":[{"sig":"MEQCIBocS9x4Q4L4NmvYT/P3z5vet7ZRib5h+57uRejoA+SaAiAqStpLI7JSUmazuwQlrLwivrIH0hhV2Vr9XW8OKugSTw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"19929f64c4093d2d2e7075a1dad8af59c296b8d1","engines":{"node":">=0.10.0"},"gitHead":"678eddf319511f1bc61060fb40d37c0bc6c9efb3","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/log-update","type":"git"},"_npmVersion":"2.14.4","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"4.1.1","dependencies":{"cli-cursor":"^1.0.2","ansi-escapes":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*"}},"2.0.0":{"name":"log-update","version":"2.0.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@2.0.0","maintainers":[{"name":"anonymous","email":"kevinmartensson@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"7f4354d7be1be62b724fcbb3c4b94454c0db5e26","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-2.0.0.tgz","integrity":"sha512-+kolHYZzXTj5PMMIioL79sT+TWSgeKmFqF1rbTBlUCQgX/zLhClQUwK8Gvop3z+0bj7K6GSuCMqjw08WVebDZA==","signatures":[{"sig":"MEYCIQCmeWkr6IItsi/oIEEJMWHeQnSc7WOUV16R8xd1v00BGwIhAKchz0+zP+Ex4TzGUN7xh88EOrBmeRMvvWLT/s+PL+pD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"7f4354d7be1be62b724fcbb3c4b94454c0db5e26","engines":{"node":">=4"},"gitHead":"d44b643f424fdb8672f1770de77517ef273fae07","scripts":{"test":"xo && node test.js"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"4.2.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"7.8.0","dependencies":{"wrap-ansi":"^2.1.0","cli-cursor":"^2.0.0","ansi-escapes":"^1.0.0"},"devDependencies":{"xo":"*"},"_npmOperationalInternal":{"tmp":"tmp/log-update-2.0.0.tgz_1492667778547_0.9574112843256444","host":"packages-12-west.internal.npmjs.com"}},"2.1.0":{"name":"log-update","version":"2.1.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@2.1.0","maintainers":[{"name":"anonymous","email":"kevinmartensson@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"ea37258b5354edb02e73b29190016c87d1c87141","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-2.1.0.tgz","integrity":"sha512-h0gZmY2RLH0pYtoNQ4L40wfK0OD9Rwiig0zd1TV5T5umeqQIoPXA9gvKl83So7Qa8k3TlTPbHgkdca9Oz1xBnA==","signatures":[{"sig":"MEYCIQDafeW388EL+Gyg/c3NjLmXZsFTAMidZC68ARptBowNegIhANrPkSQU/MDZArF9XmHSWLsMeRoVO2ExYQQDVyxYrURA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"ea37258b5354edb02e73b29190016c87d1c87141","engines":{"node":">=4"},"gitHead":"2fdc4ca01f47df07293304d4421fdadfa33e753f","scripts":{"test":"xo && node test.js"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"2.15.11","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"4.8.3","dependencies":{"wrap-ansi":"^3.0.1","cli-cursor":"^2.0.0","ansi-escapes":"^2.0.0"},"devDependencies":{"xo":"*"},"_npmOperationalInternal":{"tmp":"tmp/log-update-2.1.0.tgz_1500840778081_0.451421462232247","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"log-update","version":"2.2.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@2.2.0","maintainers":[{"name":"anonymous","email":"kevinmartensson@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"e1b034d4325e3436c9df1aa7fd9c9c243bfb9198","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-2.2.0.tgz","integrity":"sha512-EH8FZPFelVVQ76TD3J3sSJySxetCufu9RHpavGzeHyv3oM1I1GbdS9NwVL4WHVluvr6E7J3V0uduAbAaHmEozw==","signatures":[{"sig":"MEUCIQClEh5hknVb8NWNhXIUnKIa9+XVi7ROxHEb3nLspPz6wAIgT5UbvkvQQb6Mn8slh9TTaGcclIfazuFuXx7076j4lzM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"e1b034d4325e3436c9df1aa7fd9c9c243bfb9198","engines":{"node":">=4"},"gitHead":"5638b7c22d62f8df1fb58b24f8fdb78179979eb8","scripts":{"test":"xo && node test.js"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"2.15.11","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"4.8.4","dependencies":{"wrap-ansi":"^3.0.1","cli-cursor":"^2.0.0","ansi-escapes":"^3.0.0"},"devDependencies":{"xo":"*"},"_npmOperationalInternal":{"tmp":"tmp/log-update-2.2.0.tgz_1508406472381_0.5303817456588149","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"log-update","version":"2.3.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@2.3.0","maintainers":[{"name":"anonymous","email":"kevinmartensson@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"88328fd7d1ce7938b29283746f0b1bc126b24708","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-2.3.0.tgz","integrity":"sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==","signatures":[{"sig":"MEQCIDUJLW8YMRIPscoDp9qfBRsQECClgRoxc3hMC3we2R77AiAYa1/5fC3W6A0rOD5QmYkqiXNmvZLH1wvCOLk/CSDmPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"88328fd7d1ce7938b29283746f0b1bc126b24708","engines":{"node":">=4"},"gitHead":"f6ce1d44d268d630417a02a78a1f91480b7e252f","scripts":{"test":"xo && node test.js"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"2.15.11","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"4.8.4","dependencies":{"wrap-ansi":"^3.0.1","cli-cursor":"^2.0.0","ansi-escapes":"^3.0.0"},"devDependencies":{"xo":"*"},"_npmOperationalInternal":{"tmp":"tmp/log-update-2.3.0.tgz_1509779446402_0.010598235065117478","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"log-update","version":"3.0.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@3.0.0","maintainers":[{"name":"anonymous","email":"kevinmartensson@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"a79767dbbd2f1f46e2e763d8459a20c8179525b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-3.0.0.tgz","fileCount":4,"integrity":"sha512-xhQH4g9biBnuNMYm/NjWgL2VDWPj60byIHvy8Zd9oy2+r2xO71NDmwSd7nEoznhcVuFsDyKoyEgORJWaotqoPg==","signatures":[{"sig":"MEQCIF+/pggnU+LOObI+vivGm5nOz66A48rqLY3rfhxEYCB8AiARxXruH8uR4JIAsElQnk3oRbdTqVTAOOsiLVfPMzEldA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce3e3CRA9TVsSAnZWagAA80IQAJVL6bH/Pcx78fQzkNgB\nTzsBQGuh44BEhe3UGaTVqyfwn3Do/Gk6DdLah6UBWPSShvIeaPYnPhZ2WnRT\nOWllGlzqijrH3cOHYgLHTOF0g6sxVpVjHXdh7fmturuhA/cs2K3FRz49I3Jy\nqddeDdpiiL0xsoIW4uU9qJ7ccdqTQcPEUAVwffrKjaBnWxZguyHmwMynTWJJ\ncuvKbivfx5ZRarsSbnfCulpriWEmmRhk1CcxYQ3UeLxN2xJAQln94odBN2hk\nesTjedtJu/+ura45no2ttFjsQb71g/clic6Vs+F/hizT8tcTuT6o979hqMX3\nOT3uWaNmVpwIHJmsGuyHOPobwpQRU3+OSvt3CSQx+OO/+18y8kFnNJzkIG93\nbXfHozZ7gaeadjxki5hcy7Ase9a2Z+h0vyKZ6hBCLmG9OEIbp/a/kuEODfGu\nKFVmgqQNlt/P+kz1/abfXLUhLfagaRh2smTlCruF9/RByExRPq2mPeGY3g+m\n7wsrLAtjHNfrMphTKUtrG2rUM5q1+HxCblkPkwucKanN/W/ZOVd8OmLjOHLi\nIYIGF3s6HjjP6GqZK5S+4UoQBLCztsVMHJIZ09LVg0mYd4x8aguIMPbbmVI9\nNg8y0cE2sBFtTvOMjeyJM73Tj5Otq9QYCgn4OfZAkPILtp5J4GnaEWwnEn0w\nKcF6\r\n=Hlos\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"433ad00b8ea26355a0c6c9b8347fc320e720646b","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"6.8.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"10.15.1","dependencies":{"wrap-ansi":"^5.0.0","cli-cursor":"^2.1.0","ansi-escapes":"^3.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.2.1","terminal.js":"^1.0.10"},"_npmOperationalInternal":{"tmp":"tmp/log-update_3.0.0_1551595446508_0.015726535913616058","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"log-update","version":"3.1.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@3.1.0","maintainers":[{"name":"anonymous","email":"kevinmartensson@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"fa22abbbcb30f505906758bbbd0f292b71bc2ad9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-3.1.0.tgz","fileCount":5,"integrity":"sha512-7ttbZj4w165ZemmS9YngKbBh4/UEiW1gS+SPpfQQHIMYcPMybTDM6UDlmQLrjJ8+j23On173OFB+pXKfPRJP3A==","signatures":[{"sig":"MEQCIGu9vOjX0wH9sDWIarW/AcYPExXF5EaYKhMBzmBXhmgJAiBkXhGInIVVaZyovMInev8CkVcblb3oSZyZWP6fpZcIqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6154,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfjxHCRA9TVsSAnZWagAA/OoP/itPu10IYeDh1sG4LTpD\neG8JN5GRBXfv8o57XN4aokaqa1CpaY0HfJNV09BVcYo41rT4vxsNYUG9DVxD\n48nB7YjXWTj9sEJzWlMyv1euEkX24yt7iEidn78V+0HtR19nZEL6KgR+1p7t\nwATZ7FuKcFlxQLqi6HjleA4K2L1RwnjOoTj773xgv5OWe9eJtbe0XKEYvmo8\nQdX9irC28MRXfRFl5W1ZxEs6prQeydNYOc4aKivslihuKiTdi46wGaQxvYSi\n9UbwVipERECjKCUdOBiLbahCE2+FsdX5SCzz/ZkurI7L0yg8MdzPqYK6MLkT\nooAkdVKHqW4iOIvBR7bEKtMAzSmcQnFcJ8r5iGmMOFCvrV93sMmudN4T+zRy\nOsy4cgIaReHWcdanjdcvZbJ2p6GZoLDHNeLc0H4nGtcExoKNMEKlVaw+zXqq\nd98TEnCaxTcRXdl32g0/NQfqekBAyeT9+pEKzWq9UFsnvJUERqyRg/WVzbko\nLnZ8KuaXq5/Ws1LrjSlzu/jfpzT1jjejs8XhSXJY7ZATdC7ls0DYA2DNw7jJ\ngOi471DihFN+ojvpmMcKhcbwmLtwtejI07GtYDl5OTWIqCg+t2jbhNB9ZaLz\nhwDVKuAKcVUVCkrhr5M6VcKn4nTEjrrnrdhInVa1YuazHbmJiwDN3RVv1+6e\nDKlq\r\n=82Mt\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"17712c58a1785b75ace571b00628819fbfa5ec7f","scripts":{"test":"xo && ava && tsd-check"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"6.8.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"wrap-ansi":"^5.0.0","cli-cursor":"^2.1.0","ansi-escapes":"^3.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.2.1","tsd-check":"^0.3.0","@types/node":"^11.10.4","terminal.js":"^1.0.10"},"_npmOperationalInternal":{"tmp":"tmp/log-update_3.1.0_1551776839291_0.6102797913343514","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"log-update","version":"3.1.1","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@3.1.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"c8c86e44d9f0ecb816e364ed4e8dfc58760a4573","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-3.1.1.tgz","fileCount":5,"integrity":"sha512-kqnFtiui/54LE2Sud9D/+p9vDXGUK9J2ISJ1kFd6LXHnodLWpsbLvf+iD1aQEpCniLPIAQpimg37mktmNkpNiA==","signatures":[{"sig":"MEUCIQC5cjQQQS32YEYa5VqjgoVX5jiDa8UyEUrWgo7THonJjAIgOTtfTykLR8PBTiDzM0yJKOWQJu7k/OsLeU9dsOH3yBk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcoRGFCRA9TVsSAnZWagAAS8oP+QC1xrWtCxp36AaRFLdJ\nt/XyArvV+N8xiwYOBpNF6zaQ0xYZNkayJxAE3gfagIJk9M5UHoSlmALz8uVY\nI9BS5zBC7BWjLKRpzNWFlFcRVw3HUPtv5prHU6nnjD/qEXStXS2ncuo7djSC\nWYwwql+/242rE1SjSP4Jt8HOWtUV5tQR1OzJqK1e93yp0Rqx25xMfxEGuE5a\nXJQre8no5OAGkEF2R6JAeW0rXXPLixL/sbVt+AA8AvYSoevJlHzxz0T4z7SF\nFBq5W64n14Ll/p/kLP3wIzEWcgUuySbGpgfKMRPOrTbC98NTW2RvFmBvkVyA\nWCrC2F0RbJ0TGdzVxHcBckAvTztgn617xMRxyfeu+8A6MOM39geRkdfO13GG\nu71liLS67S/SslTywwxy7LanSyDjsVswkfSAGSXUuNEreAS5QjmVfFVS9FTJ\nBcY9Vpa6hJT6L31Uw0D6iNlSV1X4zLeBHlbQnqpn9yooZzsp2VIrRBFQtgis\nfSa0SZklKZ6Yp5jW72WT1XztCK7HToXFNTkLvVNyR2Zsy1X6AaLI/GQQ6h+2\nQcwOvDdB2tpLqm09xlETRAWHt7NaE1iZs/FYOGJyA5ZBS5XJ/GNkgk/ZF/ar\nUuKMET8yb+fyEoSPApLQEfliNnUwigJsO3snzmtIJQWguDmtyEbQW1eKiusV\nIIXz\r\n=OxVu\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"4a91774a0eccff8a449df4d12976746c27bb0cff","scripts":{"test":"xo && ava && tsd-check"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"6.9.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"wrap-ansi":"^5.0.0","cli-cursor":"^2.1.0","ansi-escapes":"^3.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.2.1","tsd-check":"^0.3.0","@types/node":"^11.10.4","terminal.js":"^1.0.10"},"_npmOperationalInternal":{"tmp":"tmp/log-update_3.1.1_1554059652561_0.04898043047180045","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"log-update","version":"3.2.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@3.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"719f24293250d65d0165f4e2ec2ed805ff062eec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-3.2.0.tgz","fileCount":5,"integrity":"sha512-KJ6zAPIHWo7Xg1jYror6IUDFJBq1bQ4Bi4wAEp2y/0ScjBBVi/g0thr0sUVhuvuXauWzczt7T2QHghPDNnKBuw==","signatures":[{"sig":"MEQCID19aWTRG54B983zYqHocowFIA4I+Ho9gpTOhaK8qgptAiB46Fl4uFgAjj5JoZid2Nudk1tiNV/I3RUE3ReSlbc4PQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcoc83CRA9TVsSAnZWagAA7JsP/3KszyFG8qIHZnuO/SZ/\nG1RrvLqY5YPa7fBfXfUmfSRX/n0BflQegARVkiLGwTajv7NeDKS265SMs9NU\nfgU6YeZa16Hq8r2W5zvPAKjcMZpcLepVC9zeEN6ZvVTEb0gjWb6/96rmmNUJ\nY7qWuaoT6zaAcgl8Ni9KyIMeRNzM1biuuTVYcpjq/gy1Xs/iIrf2D0y95PYh\n9d0KQjMVAYg++8ShuSJI45sIqSa/k1mnNfpEIT+IVBqy1MPiswZ7Yk/lB1JD\n8bG/9ICcTIjatYLZT+w9IooDMkyxCAD7vuorfgZmHjT9N9pXBC6L3cnolxE0\nqUrwPoxz6+xavaCSeovZUr6uKnJDjbMS701gSaYr5l93DK9NtrLPq+KSDLiE\nr1EEqfsrPTizC1SDGXHxUCq5Nf8yZl4N17hwigqxYRA/FmRiaOv/wU5rM5gn\nPV/s7vTYGJc1pj2FTKFifWxbi592WWc4wBgZDvo/W43cA9bJFoVn4I1WuVoz\ngWfkVSmmV+ZYTRsvqTowFCA4BJOwBHw/euLHPRyoxXCj/LHufgFFqSXfnsO0\nXhgZtqvu3MrvAjAqStidjuC9wh7nGcG/qsMelhfgLsYK2Vrfu1cets6v9mhV\ngPIWb+5iD2PEdcWTXL7Pp4CahoyGAnAPOvJWRg0iCdsNVJxtu2/17cskXtsB\nt1iR\r\n=Y4kN\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"abd40b04b7dcfcc6dba91171ddaf0d7f271e7788","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"6.9.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"wrap-ansi":"^5.0.0","cli-cursor":"^2.1.0","ansi-escapes":"^3.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","tsd":"^0.7.1","@types/node":"^11.12.2","terminal.js":"^1.0.10"},"_npmOperationalInternal":{"tmp":"tmp/log-update_3.2.0_1554108214159_0.21840118365596606","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"log-update","version":"3.3.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@3.3.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"3b0501815123f66cb33f300e3dac2a2b6ad3fdf5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-3.3.0.tgz","fileCount":5,"integrity":"sha512-YSKm5n+YjZoGZT5lfmOqasVH1fIH9xQA9A81Y48nZ99PxAP62vdCCtua+Gcu6oTn0nqtZd/LwRV+Vflo53ZDWA==","signatures":[{"sig":"MEYCIQDk0K6U6wmvYsUYUN7mDreqGBBaCFkdZtD61AztE5CVkAIhALrsbt7WanQnXvM4w1tDFSiu+TOYmZp5fxawvHrhJG5q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbn6fCRA9TVsSAnZWagAAVZIP/27s27SOqpMGL381/5sH\nqc+tI4w2rHOJY0AhU8Jcuc74qLEzpFd/0EUUhGRhyaO9zGQZNgQhVXNqyJpC\nFz+bLOlCz5NfkhCoCYun+mjxdGGl7AaIEusByYtXUd+zGeDtC4JZ0W48Luve\nLwAQi9WSunn4TdFNDBQeLg3FzhXqFcjUJoGwQqciTxQrMUyNK7NdzEjizAgM\nYz0lyOGLJ7QjTHALGSlstlALK17iytM1vOzXUlNzrkddSxSX+CeUWhQ73AZL\nj+kWpboJDGqbhXGs2rdJkHH2IQhgX4Gpapj7twH0EYRCqSfLDx7y3HilAYFD\nT29706U02engtSmJOd18L5T9jpuXjkfiwkoq1URABS3QycZOtLCiJdxsRZto\nI+DHBC/DLS7QWovhR9qYsKNZDXGogRzKk+jGpEANYF055W7s9sAv0NbJKV2e\nfYf/g4sYq4tjOVwncy9GOcpVHd7DFS4fjbsDXWhFyH9tb953enhsmf1lyiVC\nKg070JFEqETRP5gEc4KCEQQBl6/TSk6Qi1gF1t+F5VeHnN8suvqxrKkYIdeA\ne3dlHkXtej2xzq9svUUlcIFUi+9JUX974g97ghjrgVZrLuRcEUXf+IjFJUeF\nvYao2zPuwik9xoUFJOO1OC493SMl0GZfM7OB7lHJRdJL8HXedYwhqbXwC0HZ\n7to9\r\n=7DN8\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"52732bf744e1248658eac47e4865e3997341f54e","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"6.10.3","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"wrap-ansi":"^5.0.0","cli-cursor":"^2.1.0","ansi-escapes":"^3.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","tsd":"^0.7.1","@types/node":"^11.12.2","terminal.js":"^1.0.10"},"_npmOperationalInternal":{"tmp":"tmp/log-update_3.3.0_1567522463005_0.2139820345696073","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"log-update","version":"3.4.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@3.4.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"3b9a71e00ac5b1185cc193a36d654581c48f97b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-3.4.0.tgz","fileCount":5,"integrity":"sha512-ILKe88NeMt4gmDvk/eb615U/IVn7K9KWGkoYbdatQ69Z65nj1ZzjM6fHXfcs0Uge+e+EGnMW7DY4T9yko8vWFg==","signatures":[{"sig":"MEUCIQCqEOCJbqL4iFlYko8XcSzzZdfmEHdU/mulg97b4LM2TAIgZR6FuLGYwMUKkONcXXt4Ejglyy7Da532sIJaidlVPK0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNvvACRA9TVsSAnZWagAAEaIP/126lMv7OSVm7eaLuNZu\nBcdoBQeC354LMQtlcjW1jf9KcmQ48t7wPXTimq4tZxYl0JDsYTxbFKDbIZSr\ny491VXuOi4LLDQECr79V5rhjuahW4u2Ut0wzM3QJ3v0gePIVYHfGqC8t74fh\nj5cwl2cooh8XOa+9EGhkxI+yXI8pZVQ9e7GuDP5CP1+KFYHvzeurk49El+pH\nL21CalN7hEnNLThpcN0HvJtbn2kG5eXRvJZXiNt8BdBTdaO3kZh13ySV+0R3\n7Xxve4iwp6L+LdV4m95BHfnF1qQ9WfzGZ5r6i+mED4DfWxn6RwL2IGGSuIOm\nxYSVO1GUXRYq/HyQFxWqKl8vm97O9fPEI/JV7T6jXpT9pKVL7p1xKMhaJOxy\ngBr6kw+87tNViPFMTZpCkjpItn22iCXToYHnolLhFbtpuH9XDffCpYF3GQEV\n/cuLsRR3OhiB9s6ftoFdrLk4vhOJAvpIYwvvnn5FjKt+1ZaSiQL6BSSVAzPj\nYwmO+lnFTcbRNi+B+zc6QqgNme4yoIs42KfEnNp136dx9U2nDFa7ROCaG+r3\nauiCrkRpE+1+6QTpjjAUWTvNWVR+NK3TkHSn9LsXZagA4kASEDrrM4ltuhpZ\nXBWGwS9DzB0B0vcKFJT8NB6kohUzH9PehlzFZpCpik9AwnPOCEBUQlaQ9ZMv\ncPM1\r\n=hK2N\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"7cb447f50942c827a072280c5a451c1f1ff1ea0e","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"6.13.4","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"10.18.1","dependencies":{"wrap-ansi":"^5.0.0","cli-cursor":"^2.1.0","ansi-escapes":"^3.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","tsd":"^0.7.1","@types/node":"^11.12.2","terminal.js":"^1.0.10"},"_npmOperationalInternal":{"tmp":"tmp/log-update_3.4.0_1580661695979_0.7862256735678375","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"log-update","version":"4.0.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@4.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"589ecd352471f2a1c0c570287543a64dfd20e0a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-4.0.0.tgz","fileCount":5,"integrity":"sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==","signatures":[{"sig":"MEUCIGG4iUkEFxUHS4H+EOTT1BnWTQXKBDfbiYmyv+KAtVj6AiEAninLAY/Io2y5/Vyf/jND2U/emPDMrPQGKHWthjKnRAw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTj41CRA9TVsSAnZWagAASPoP/A5Q2OP8CfJUfs0VF9k4\n0TPz4OFYCJ5TAW0IAPxf87tu0MDfFFhDZqupm9EcGB3ujxg0CH5iSUNK8fXS\n82YtBRZMBoSgri/f7GlFWNhkOB9FgfNthHoNNl0en2yf/+ojV2WGe6WZUtHs\nVXtjdXH5lgrce0a5BVSudjcPvd1/8+/6RWDFn64baxx6RX5udICO5C1UvEQ4\nF+ID4iMiGi9I5FvW8KGsAZzO2ptipeqzXB5/MvY1PT5ruAc+FrBsVEMmYNvh\nkwN6TQGi2tZMmpzrpc38Lde9Gd3gYORv1z9meaxl7TsiEJev7UJS2eBGszbt\nL2WhPVtvxhnlII9Vqb73yarW3t4h1aCZB8iK6kdVihekPedKmjCG6XIF3fjG\nxnu4XBKLcmExGHS5MNOnOaVfhaPvG4tBNFqqa7iSKlrNlSNcj+hW11aUBT0F\nhOdZI+n/wmyVHZMmGtUIbF1/DdHQIE0Hml1vcNMrjbowDza0BFSALqeb83Wk\nQH6NNNU6XiZoLu4bUGIcdH8QsABkW3i0EXihbo89nsy2CY4bOLg03WENvb9Q\nIj0Og4DJm4bMsTsTFNvcrAlAIyKMvVxvn11OsQoHEAowRT38JhGCTaa6rk19\nhzSg1NI1JBgTZ3biJ4lPHKBX9RYyo1XsSoJoo26/B6nRx9BXHYK7abh6HCkP\n8ig7\r\n=oEUE\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"c913bf692090d2948f2bcedfb479a1b91f899037","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"6.13.7","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"10.18.1","dependencies":{"wrap-ansi":"^6.2.0","cli-cursor":"^3.1.0","slice-ansi":"^4.0.0","ansi-escapes":"^4.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.26.1","ava":"^3.3.0","tsd":"^0.11.0","@types/node":"^13.7.4","terminal.js":"^1.0.10"},"_npmOperationalInternal":{"tmp":"tmp/log-update_4.0.0_1582186037542_0.3543418798824487","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"log-update","version":"5.0.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@5.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"e36011f941665b25c2a5585cefdddd399c910c30","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-5.0.0.tgz","fileCount":5,"integrity":"sha512-HovF3knyZX9sleS0OkSJ6f53JEpbzcbomC6/WJ3iuGK8i6CRb6WZ542gO2F3pdQK8hwlijddDefVFhlMpwkOSQ==","signatures":[{"sig":"MEYCIQDHbpu2Tj2fUQtOELhpujrc41Hn0cZo0DVnHnU/GoypcgIhAKbuN7N947RTgHZUdKVOhfpn40+nzJN9DwLepV6SnGdu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7955,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2yO7CRA9TVsSAnZWagAAYdQP/RltAtFQXP5gcvIcBHdZ\nKab+GAIZIdgqiz4ZHYgHzTmJI3pssxSZ/jcoiNlOw/haInIDArIh4wOuugW4\nhezXJwYFeZa995T3Ddybe7S0ztXvij48rNcj0LdI8baosZ7ZFsJBTSgm4vMW\nq1YLlfUDcSq3KUuMIXKCdX/l1s6K/1XI9JvV6FfIXB6O1FHhTNcUfU/6d3+V\nSxXINrsdGn46eZITLELaAOrKGjEvewB1IgYkiC9mFSGcNpiWk0GUYlIJi6K/\noG5hFh4MBHPhWdzKuIGkz62j+TVazvCCLoxRIvSQcBbioGWHuIk53KBd3nlJ\ntnWTgtyONgnAFZONXlK2PoGy1Cn4lQfLQCITvOSptKV2TgTl9Iw/XAFTtmCW\n4KCUT6DsJUqfAKGTA4WIygc0vfVtxP/VwELKD75mubptp3tkQU2tGS/NBVjT\nddRYZBSQyj5quKEzMYy0kXOE3/E1sLN4GfdfpxZML0TAY4UV+FtD+EXeKL+0\n3T/ZwHzY+51EHUHhfWuv1vgFFRPOzTWRATJ2zimtuSGubJ66TwkfQGCbwSke\nfJ/RjBU3kS7JeY7kY4LNbLVZNjRrNBG0wB+lT3xPffFIyBJ8CRFqavEA2rQg\nOhhMPxfr0bFTnmllsrUdz99upsbANqhkcRrm7oBWEoF0A54Xv9JLC9Qw0PRb\nO1Wk\r\n=t138\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"exports":"./index.js","funding":"https://github.com/sponsors/sindresorhus","gitHead":"73424532e029c483b0f5f7155204e33989884ec5","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"7.20.3","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"14.17.5","dependencies":{"wrap-ansi":"^8.0.1","cli-cursor":"^4.0.0","slice-ansi":"^5.0.0","ansi-escapes":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.45.0","ava":"^3.15.0","tsd":"^0.18.0","@types/node":"^16.11.1","terminal.js":"^1.0.11"},"_npmOperationalInternal":{"tmp":"tmp/log-update_5.0.0_1634542277109_0.1403937329310323","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"log-update","version":"5.0.1","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@5.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"dist":{"shasum":"9e928bf70cb183c1f0c9e91d9e6b7115d597ce09","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-5.0.1.tgz","fileCount":5,"integrity":"sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==","signatures":[{"sig":"MEYCIQCT+miD4vvbztRlLJYdQFaaDTN4s+8yWRYqZoR+irRNUgIhAOTtEqERIH8B5+kok79yHmKL4NQfkU7nLvS0y75lGS09","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8038,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYEF3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqEnxAAo8Ho6s+XMaaS39Cmei53Fk/Y/r0VgZvpXzaaFn8txJ3XgpfC\r\n/mani2Vo8tt5zuM9PemsUNzPSZ/7ATPT2fBSOqeUh3d6Ck9dHPD6tlgY97WU\r\nzWG6i2qtrh2qNWQZ2qzmF6zJtm2RZbvMJl1Ei3urSb9eHHGTAZAhLnwKRBMj\r\np/ImNCJ22T5+qvwAJuHwd5yeS/sb521OwNBiFhwelh8ltw7v35J1u4b4xdWr\r\neI0u4MW10tlyQXOfhOEnPdQNx2mJ73NIePNEltOD+HiQh1K+kZlJ2A2dpvBp\r\nCVMRhGtGBjlz5sd7RYOVeYRXbwJggruSe7xYtH2nouhpEe3UItTNSGpKCu34\r\nzVL9unF3vAMz6zbZaAS1hqIQGGApVm1wX3oZ6fOwQfN+5I3EpPrg52x5g0a5\r\nAev3QBKIhfR/UbyR+TNzNA0pGAhDCFVH4+BuKj8B4Hl+ny9k2h0LTydcvWre\r\neoWY1xFxO3wAYhMEnwMj61f6jP/rZHjxvkWpyi/Ry4DAOCU9BojaVV50/ifu\r\n5jNCRzpG4NqCbzZu4ijZakhilZAp27gwNfB68zMu0arePNZRYvN7CuYMtaaV\r\nkWrtAXPOdaka7av7gPkbt3mnrf6b8zVdreDnEkHf/x/DMOJQC130oDkl08fe\r\nkgJXDcOu+qFAMSbN/7ZU0mvsxXuxI90ir2g=\r\n=UyGZ\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","types":"./index.d.ts","engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"exports":"./index.js","funding":"https://github.com/sponsors/sindresorhus","gitHead":"7d74707c93f4da5140dda2b74cb966fd21ff49b5","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"8.3.2","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"14.19.1","dependencies":{"wrap-ansi":"^8.0.1","cli-cursor":"^4.0.0","slice-ansi":"^5.0.0","strip-ansi":"^7.0.1","ansi-escapes":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.48.0","ava":"^4.2.0","tsd":"^0.20.0","wcwidth":"^1.0.1","@types/node":"^17.0.25","terminal.js":"^1.0.11"},"_npmOperationalInternal":{"tmp":"tmp/log-update_5.0.1_1650475383526_0.6180136921090178","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"log-update","version":"6.0.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@6.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-argument":"off"}},"dist":{"shasum":"0ddeb7ac6ad658c944c1de902993fce7c33f5e59","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-6.0.0.tgz","fileCount":5,"integrity":"sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==","signatures":[{"sig":"MEYCIQD79AlBGplaOULxVx+Nbin+14KqdPOSgcOqz/sysMzElgIhANbq7lYef/cZZ0qPi5evZxJ22//uH2cF3TeVKhRNZKCG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7701},"type":"module","types":"./index.d.ts","engines":{"node":">=18"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"3fa6be0cfffafdfb21ec060456c4c7dc07d5039d","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"9.2.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"_nodeVersion":"18.18.2","dependencies":{"wrap-ansi":"^9.0.0","cli-cursor":"^4.0.0","slice-ansi":"^7.0.0","strip-ansi":"^7.1.0","ansi-escapes":"^6.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.56.0","ava":"^5.3.1","tsd":"^0.29.0","wcwidth":"^1.0.1","@types/node":"^20.8.9","terminal.js":"^1.0.11"},"_npmOperationalInternal":{"tmp":"tmp/log-update_6.0.0_1698518283646_0.09158990253436672","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"log-update","version":"6.1.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@6.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-argument":"off"}},"dist":{"shasum":"1a04ff38166f94647ae1af562f4bd6a15b1b7cd4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-6.1.0.tgz","fileCount":5,"integrity":"sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==","signatures":[{"sig":"MEYCIQDKeNyNwE+kEDmGUFY6GBBxG/098FDh6C04DMp0ZtGJkQIhAMSwbXC55YUPMUKg3kvaCNWJfD6EHfmvlvTqI9w70bjZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7576},"type":"module","types":"./index.d.ts","engines":{"node":">=18"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"ae78e184f5c5f373bac1b99dc37c5f76abea9060","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"10.6.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"sideEffects":false,"_nodeVersion":"18.20.2","dependencies":{"wrap-ansi":"^9.0.0","cli-cursor":"^5.0.0","slice-ansi":"^7.1.0","strip-ansi":"^7.1.0","ansi-escapes":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.2","ava":"^6.1.3","tsd":"^0.31.1","wcwidth":"^1.0.1","@types/node":"^20.14.12","terminal.js":"^1.0.11"},"_npmOperationalInternal":{"tmp":"tmp/log-update_6.1.0_1722002673415_0.10203210272538898","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"log-update","version":"7.0.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@7.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"xo":{"rules":{"n/no-extraneous-import":"off","import-x/no-extraneous-dependencies":"off","@typescript-eslint/no-unsafe-argument":"off"}},"dist":{"shasum":"699b4d40d2e3bbb05d447eceae2121d8c98986d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-7.0.0.tgz","fileCount":5,"integrity":"sha512-7nFktN18ewPaxYC7ZkGbw5c90aF3nTG7XnKvGxCvz9zCsVLSImbRMRRkPOhirhDvizd8uGzrIHzo5Wh1ctuzLw==","signatures":[{"sig":"MEUCIQDAX0YjDIMjJIwLQ30yY6uADXhW6ob6qg1kNFGJFaVs5gIgdzIav7ryb9cX5Bqk4Jr1aczhicAiZd51yMZJ4O1rUcs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":15924},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"8a2344df9718fcdaec4ac6d9fd25c72add849e8b","scripts":{"test":"xo && node --test && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"10.9.2","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"sideEffects":false,"_nodeVersion":"20.19.1","dependencies":{"wrap-ansi":"^9.0.2","cli-cursor":"^5.0.0","slice-ansi":"^7.1.2","strip-ansi":"^7.1.2","ansi-escapes":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.2","tsd":"^0.33.0","wcwidth":"^1.0.1","@types/node":"^24.4.0","terminal.js":"^1.0.11","string-width":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/log-update_7.0.0_1757950430348_0.18003287689614056","host":"s3://npm-registry-packages-npm-production"}},"7.0.1":{"name":"log-update","version":"7.0.1","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@7.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"xo":{"rules":{"n/no-extraneous-import":"off","import-x/no-extraneous-dependencies":"off","@typescript-eslint/no-unsafe-argument":"off"}},"dist":{"shasum":"aa32a855df2c139512930b994ed19e830cac2506","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-7.0.1.tgz","fileCount":5,"integrity":"sha512-yEfdCegcxi/DrzkaAb82dMYvZpMOHAOYxUB45US+VrWQB2GnxyIucxG1otp3T1d6KzXXeB6TOHOF06viksSuug==","signatures":[{"sig":"MEUCIAkWtWA5O0iTQzZOxZPb3Gk1qNkAhmpVE2oQzkaJD5AvAiEA7TfazkiR18bWBABnb1cXbHxR5MsVT7OB2ByF1yBTYxw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":16230},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"b799b2760cd730da20239c218107cd0ffff14192","scripts":{"test":"xo && node --test && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"10.9.2","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"sideEffects":false,"_nodeVersion":"20.19.5","dependencies":{"wrap-ansi":"^9.0.2","cli-cursor":"^5.0.0","slice-ansi":"^7.1.2","strip-ansi":"^7.1.2","ansi-escapes":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.2","tsd":"^0.33.0","wcwidth":"^1.0.1","@types/node":"^24.4.0","terminal.js":"^1.0.11","string-width":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/log-update_7.0.1_1758655953811_0.24695690204315346","host":"s3://npm-registry-packages-npm-production"}},"7.0.2":{"name":"log-update","version":"7.0.2","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@7.0.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"xo":{"rules":{"n/no-extraneous-import":"off","import-x/no-extraneous-dependencies":"off","@typescript-eslint/no-unsafe-argument":"off"}},"dist":{"shasum":"eddb498d154f29523a897d4f901a2c3d4b57f8f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-7.0.2.tgz","fileCount":5,"integrity":"sha512-cSSF1K5w9juI2+JeSRAdaTUZJf6cJB0aWwWO1nQQkcWw44+bIfXmhZMwK2eEsv6tXvU3UfKX/kzcX6SP+1tLAw==","signatures":[{"sig":"MEQCIB0rXTqR5k/eokqVY2zCKI1P8MONAnZfpcq6XN1Ox//QAiAGHFSogPx9Jn2jFZnvDLnKkGk8zsgyr0IFsUzWdkiY9g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":16235},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"5576a6bc1e74b33af575cbf2dbc14a9cd4be259e","scripts":{"test":"xo && node --test && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"11.6.1","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"sideEffects":false,"_nodeVersion":"20.19.5","dependencies":{"wrap-ansi":"^9.0.2","cli-cursor":"^5.0.0","slice-ansi":"^7.1.2","strip-ansi":"^7.1.2","ansi-escapes":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.2","tsd":"^0.33.0","wcwidth":"^1.0.1","@types/node":"^24.4.0","terminal.js":"^1.0.11","string-width":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/log-update_7.0.2_1763541231467_0.8504243171163659","host":"s3://npm-registry-packages-npm-production"}},"7.1.0":{"name":"log-update","version":"7.1.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@7.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"xo":{"rules":{"n/no-extraneous-import":"off","import-x/no-extraneous-dependencies":"off","@typescript-eslint/no-unsafe-argument":"off"}},"dist":{"shasum":"c1b3823f1ba5d2b254ef320d6da61a11400d939d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-7.1.0.tgz","fileCount":5,"integrity":"sha512-y9pi/ZOQQVvTgfRDEHV1Cj4zQUkJZPipEUNOxhn1R6KgmdMs7LKvXWCd9eMVPGJgvYzFLCenecWr0Ps8ChVv2A==","signatures":[{"sig":"MEYCIQDjyze7eGl1/Bu/0NcXOSegSvZcUzUkWHSjTm/bvCnmJQIhAPCXKAqe8EYelp+Zm9r+U3amOew0BcU9PdWVrNtwzzLh","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":16630},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"fcbbae6d172ff1dba3aa6c87572164af5826cf3e","scripts":{"test":"xo && node --test && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"11.7.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"sideEffects":false,"_nodeVersion":"25.3.0","dependencies":{"wrap-ansi":"^9.0.2","cli-cursor":"^5.0.0","slice-ansi":"^7.1.2","strip-ansi":"^7.1.2","ansi-escapes":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.2","tsd":"^0.33.0","wcwidth":"^1.0.1","@types/node":"^24.4.0","terminal.js":"^1.0.11","string-width":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/log-update_7.1.0_1770266060177_0.8711185577004525","host":"s3://npm-registry-packages-npm-production"}},"7.2.0":{"name":"log-update","version":"7.2.0","keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"log-update@7.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/log-update#readme","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"xo":{"rules":{"n/no-extraneous-import":"off","import-x/no-extraneous-dependencies":"off","@typescript-eslint/no-unsafe-argument":"off"}},"dist":{"shasum":"cd6c87c1270c80b53fa1d6d8ac5b2c624a286258","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-7.2.0.tgz","fileCount":5,"integrity":"sha512-iLs7dGSyjZiUgvrUvuD3FndAxVJk+TywBkkkwUSm9HdYoskJalWg5qVsEiXeufPvRVPbCUmNQewg798rx+sPXg==","signatures":[{"sig":"MEYCIQD5OEf6m0aOonaX2h70ZClFhW+tiLc532GFuQbB11BBCgIhAKPBfCjTHC5nV04nCIE/GcGorSxI/wka7V70lEmhCqy9","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":16631},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"3af5ea02c2503ff3268f8dde64e1266da21966f9","scripts":{"test":"xo && node --test && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/log-update.git","type":"git"},"_npmVersion":"11.8.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","directories":{},"sideEffects":false,"_nodeVersion":"25.6.0","dependencies":{"wrap-ansi":"^10.0.0","cli-cursor":"^5.0.0","slice-ansi":"^8.0.0","strip-ansi":"^7.2.0","ansi-escapes":"^7.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.3","tsd":"^0.33.0","wcwidth":"^1.0.1","@types/node":"^25.3.2","terminal.js":"^1.0.11","string-width":"^8.2.0"},"_npmOperationalInternal":{"tmp":"tmp/log-update_7.2.0_1772167874507_0.2950826528350763","host":"s3://npm-registry-packages-npm-production"}},"8.0.0":{"name":"log-update","version":"8.0.0","description":"Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/log-update.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=22"},"scripts":{"test":"xo && node --test && tsd"},"keywords":["log","logger","logging","cli","terminal","term","console","shell","update","refresh","overwrite","output","stdout","progress","bar","animation"],"dependencies":{"ansi-escapes":"^7.3.0","cli-cursor":"^5.0.0","slice-ansi":"^9.0.0","string-width":"^8.2.0","strip-ansi":"^7.2.0","wrap-ansi":"^10.0.0"},"devDependencies":{"@types/node":"^25.5.2","terminal.js":"^1.0.11","tsd":"^0.33.0","wcwidth":"^1.0.1","xo":"^2.0.2"},"xo":{"rules":{"@typescript-eslint/no-unsafe-argument":"off","import-x/no-extraneous-dependencies":"off","n/no-extraneous-import":"off"}},"gitHead":"4f7a1460893a7557aee8f7202956218c3e770a5a","types":"./index.d.ts","_id":"log-update@8.0.0","bugs":{"url":"https://github.com/sindresorhus/log-update/issues"},"homepage":"https://github.com/sindresorhus/log-update#readme","_nodeVersion":"25.8.0","_npmVersion":"11.12.0","dist":{"integrity":"sha512-lddSgOt3bPASrylL54ZSpy8nBHns+vBVSoILlVOx+dei300pnLRN958rj/EdlVLKuWlSESU3qdnDZdAI7FXYGg==","shasum":"07d7bde6320dda8cf6fb12619e9d30695525b141","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/log-update/-/log-update-8.0.0.tgz","fileCount":5,"unpackedSize":18027,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDwVDTxCfHecGr44J//LodW642gyzs64PYm2ZWh/OUAgAIhANtR/vyl00EXjhlB9Wdnts+UNiF6p9FRBl+mN/TQI/H1"}]},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/log-update_8.0.0_1775375274249_0.6189580416260201"},"_hasShrinkwrap":false}},"name":"log-update","time":{"created":"2015-08-16T08:33:11.178Z","modified":"2026-04-05T07:47:54.505Z","1.0.0":"2015-08-16T08:33:11.178Z","1.0.1":"2015-09-18T13:51:37.506Z","1.0.2":"2015-10-02T16:40:45.977Z","2.0.0":"2017-04-20T05:56:18.772Z","2.1.0":"2017-07-23T20:12:58.993Z","2.2.0":"2017-10-19T09:47:52.487Z","2.3.0":"2017-11-04T07:10:46.470Z","3.0.0":"2019-03-03T06:44:06.729Z","3.1.0":"2019-03-05T09:07:19.436Z","3.1.1":"2019-03-31T19:14:12.659Z","3.2.0":"2019-04-01T08:43:34.499Z","3.3.0":"2019-09-03T14:54:23.116Z","3.4.0":"2020-02-02T16:41:36.229Z","4.0.0":"2020-02-20T08:07:17.654Z","5.0.0":"2021-10-18T07:31:17.251Z","5.0.1":"2022-04-20T17:23:03.743Z","6.0.0":"2023-10-28T18:38:03.978Z","6.1.0":"2024-07-26T14:04:33.571Z","7.0.0":"2025-09-15T15:33:50.537Z","7.0.1":"2025-09-23T19:32:34.339Z","7.0.2":"2025-11-19T08:33:51.697Z","7.1.0":"2026-02-05T04:34:20.327Z","7.2.0":"2026-02-27T04:51:14.659Z","8.0.0":"2026-04-05T07:47:54.404Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/log-update#readme"}