{"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"},{"name":"anonymous","email":"opensrc@ryanzim.com"},{"name":"anonymous","email":"manidlou@gmail.com"}],"keywords":["walk","walker","fs","readable","streams"],"dist-tags":{"latest":"4.1.0"},"author":{"name":"JP Richardson"},"description":"File system walker with Readable stream interface.","readme":"Node.js - klaw\n==============\n\n<a href=\"https://standardjs.com\" style=\"float: right; padding: 0 0 20px 20px;\"><img src=\"https://cdn.rawgit.com/feross/standard/master/sticker.svg\" alt=\"JavaScript Standard Style\" width=\"100\" align=\"right\"></a>\n\nA Node.js file system walker extracted from [fs-extra](https://github.com/jprichardson/node-fs-extra).\n\n[![npm Package](https://img.shields.io/npm/v/klaw.svg?style=flat-square)](https://www.npmjs.org/package/klaw)\n[![build status](https://api.travis-ci.org/jprichardson/node-klaw.svg)](http://travis-ci.org/jprichardson/node-klaw)\n[![windows build status](https://ci.appveyor.com/api/projects/status/github/jprichardson/node-klaw?branch=master&svg=true)](https://ci.appveyor.com/project/jprichardson/node-klaw/branch/master)\n\nInstall\n-------\n\n    npm i --save klaw\n\nIf you're using Typescript, we've got [types](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/11492/files):\n\n    npm i --save-dev @types/klaw\n\n\nName\n----\n\n`klaw` is `walk` backwards :p\n\n\nSync\n----\n\nIf you need the same functionality but synchronous, you can use [klaw-sync](https://github.com/manidlou/node-klaw-sync).\n\n\nUsage\n-----\n\n### klaw(directory, [options])\n\nReturns a [Readable stream](https://nodejs.org/api/stream.html#stream_class_stream_readable) that iterates\nthrough every file and directory starting with `dir` as the root. Every `read()` or `data` event\nreturns an object with two properties: `path` and `stats`. `path` is the full path of the file and\n`stats` is an instance of [fs.Stats](https://nodejs.org/api/fs.html#fs_class_fs_stats).\n\n- `directory`: The directory to recursively walk. Type `string` or file `URL`.\n- `options`: [Readable stream options](https://nodejs.org/api/stream.html#stream_new_stream_readable_options) and\nthe following:\n  - `queueMethod` (`string`, default: `'shift'`): Either `'shift'` or `'pop'`. On `readdir()` array, call either `shift()` or `pop()`.\n  - `pathSorter` (`function`, default: `undefined`): Sorting [function for Arrays](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort).\n  - `fs` (`object`, default: [`graceful-fs`](https://github.com/isaacs/node-graceful-fs)): Use this to hook into the `fs` methods or to use [`mock-fs`](https://github.com/tschaub/mock-fs)\n  - `filter` (`function`, default: `undefined`): Filtering [function for Arrays](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter)\n  - `depthLimit` (`number`, default: `undefined`): The number of times to recurse before stopping. -1 for unlimited.\n  - `preserveSymlinks` (`boolean`, default: `false`): Whether symlinks should be followed or treated as items themselves. If true, symlinks will be returned as items in their own right. If false, the linked item will be returned and potentially recursed into, in its stead.\n\n**Streams 1 (push) example:**\n\n```js\nconst klaw = require('klaw')\n\nconst items = [] // files, directories, symlinks, etc\nklaw('/some/dir')\n  .on('data', item => items.push(item.path))\n  .on('end', () => console.dir(items)) // => [ ... array of files]\n```\n\n**Streams 2 & 3 (pull) example:**\n\n```js\nconst klaw = require('klaw')\n\nconst items = [] // files, directories, symlinks, etc\nklaw('/some/dir')\n  .on('readable', function () {\n    let item\n    while ((item = this.read())) {\n      items.push(item.path)\n    }\n  })\n  .on('end', () => console.dir(items)) // => [ ... array of files]\n```\n\n**```for-await-of``` example:**\n\n```js\nfor await (const file of klaw('/some/dir')) {\n  console.log(file)\n}\n```\n\n### Error Handling\n\nListen for the `error` event.\n\nExample:\n\n```js\nconst klaw = require('klaw')\n\nklaw('/some/dir')\n  .on('readable', function () {\n    let item\n    while ((item = this.read())) {\n      // do something with the file\n    }\n  })\n  .on('error', (err, item) => {\n    console.log(err.message)\n    console.log(item.path) // the file the error occurred on\n  })\n  .on('end', () => console.dir(items)) // => [ ... array of files]\n```\n\n\n### Aggregation / Filtering / Executing Actions (Through Streams)\n\nOn many occasions you may want to filter files based upon size, extension, etc.\nOr you may want to aggregate stats on certain file types. Or maybe you want to\nperform an action on certain file types.\n\nYou should use the module [`through2`](https://www.npmjs.com/package/through2) to easily\naccomplish this.\n\nInstall `through2`:\n\n    npm i --save through2\n\n\n**Example (skipping directories):**\n\n```js\nconst klaw = require('klaw')\nconst through2 = require('through2')\n\nconst excludeDirFilter = through2.obj(function (item, enc, next) {\n  if (!item.stats.isDirectory()) this.push(item)\n  next()\n})\n\nconst items = [] // files, directories, symlinks, etc\nklaw('/some/dir')\n  .pipe(excludeDirFilter)\n  .on('data', item => items.push(item.path))\n  .on('end', () => console.dir(items)) // => [ ... array of files without directories]\n```\n\n**Example (ignore hidden directories):**\n\n```js\nconst klaw = require('klaw')\nconst path = require('path')\n\nconst filterFunc = item => {\n  const basename = path.basename(item)\n  return basename === '.' || basename[0] !== '.'\n}\n\nklaw('/some/dir', { filter: filterFunc })\n  .on('data', item => {\n    // only items of none hidden folders will reach here\n  })\n```\n\n**Example (totaling size of PNG files):**\n\n```js\nconst klaw = require('klaw')\nconst path = require('path')\nconst through2 = require('through2')\n\nlet totalPngsInBytes = 0\nconst aggregatePngSize = through2.obj(function (item, enc, next) {\n  if (path.extname(item.path) === '.png') {\n    totalPngsInBytes += item.stats.size\n  }\n  this.push(item)\n  next()\n})\n\nklaw('/some/dir')\n  .pipe(aggregatePngSize)\n  .on('data', item => items.push(item.path))\n  .on('end', () => console.dir(totalPngsInBytes)) // => total of all pngs (bytes)\n```\n\n\n**Example (deleting all .tmp files):**\n\n```js\nconst fs = require('fs')\nconst klaw = require('klaw')\nconst through2 = require('through2')\n\nconst deleteAction = through2.obj(function (item, enc, next) {\n  this.push(item)\n\n  if (path.extname(item.path) === '.tmp') {\n    item.deleted = true\n    fs.unlink(item.path, next)\n  } else {\n    item.deleted = false\n    next()\n  }\n})\n\nconst deletedFiles = []\nklaw('/some/dir')\n  .pipe(deleteAction)\n  .on('data', item => {\n    if (!item.deleted) return\n    deletedFiles.push(item.path)\n  })\n  .on('end', () => console.dir(deletedFiles)) // => all deleted files\n```\n\nYou can even chain a bunch of these filters and aggregators together. By using\nmultiple pipes.\n\n**Example (using multiple filters / aggregators):**\n\n```js\nklaw('/some/dir')\n  .pipe(filterCertainFiles)\n  .pipe(deleteSomeOtherFiles)\n  .on('end', () => console.log('all done!'))\n```\n\n**Example passing (piping) through errors:**\n\nNode.js does not `pipe()` errors. This means that the error on one stream, like\n`klaw` will not pipe through to the next. If you want to do this, do the following:\n\n```js\nconst klaw = require('klaw')\nconst through2 = require('through2')\n\nconst excludeDirFilter = through2.obj(function (item, enc, next) {\n  if (!item.stats.isDirectory()) this.push(item)\n  next()\n})\n\nconst items = [] // files, directories, symlinks, etc\nklaw('/some/dir')\n  .on('error', err => excludeDirFilter.emit('error', err)) // forward the error on\n  .pipe(excludeDirFilter)\n  .on('data', item => items.push(item.path))\n  .on('end', () => console.dir(items)) // => [ ... array of files without directories]\n```\n\n\n### Searching Strategy\n\nPass in options for `queueMethod`, `pathSorter`, and `depthLimit` to affect how the file system\nis recursively iterated. See the code for more details, it's less than 50 lines :)\n\n\n\nLicense\n-------\n\nMIT\n\nCopyright (c) 2015 [JP Richardson](https://github.com/jprichardson)\n","repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"users":{"davidbraun":true,"coolhanddev":true,"mojaray2k":true,"monjer":true,"timdp":true,"d-rob":true,"rocket0191":true,"shanewholloway":true,"xtx1130":true,"allen_lyu":true},"bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"license":"MIT","versions":{"0.1.0":{"name":"klaw","version":"0.1.0","description":"File system walker with Readable stream interface.","main":"index.js","scripts":{"test":"standard && tape tests/**/*.js | faucet"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"faucet":"0.0.1","fs-extra":"^0.25.0","standard":"^5.3.1","tape":"^4.2.2"},"gitHead":"3bf5fd627e420cb51d9107caa17ddc1ce82705b6","_id":"klaw@0.1.0","_shasum":"92eeba45b679746fcb4696d2ab6aefaef6ebbb89","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"dist":{"shasum":"92eeba45b679746fcb4696d2ab6aefaef6ebbb89","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-0.1.0.tgz","integrity":"sha512-qjp8edrQqk+WfemHAVOP63l8rU8QHqjYf8ZCoUWZMoq89jLj5ONdBixcTokUimzRc0MKcyx9K6/wmkaIRIXkDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCi2IgKcbtP6H6I6g0e3vVHRHS1SZerp3s0Aro7ohNhaQIhAI3FoEKGv/tF73yqOVbx4NK43XojNrkQvH+KlEm9OCvj"}]},"directories":{}},"1.0.0":{"name":"klaw","version":"1.0.0","description":"File system walker with Readable stream interface.","main":"index.js","scripts":{"test":"standard && tape tests/**/*.js | faucet"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"faucet":"0.0.1","fs-extra":"^0.25.0","standard":"^5.3.1","tape":"^4.2.2"},"gitHead":"3fce37834a9a82f0a682e07ed45e4eb522cc2117","_id":"klaw@1.0.0","_shasum":"fe78cb81f3de252d11be960af726a76d4b10080c","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"dist":{"shasum":"fe78cb81f3de252d11be960af726a76d4b10080c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-1.0.0.tgz","integrity":"sha512-mK6rPnXcKMNdaGiIaw/21aFq6DjfZovCxcVfZYkC99rcA488e4V99YkjYvbI7T481XKwig7LwHkMH+f20P9WIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD3Enf8+hRGuJOMfPxF4QG5naUWtY+kQL9cpgtmnv92JAIgNegk+monQcxJmoLWLhhC5pzrw/rPzO3kM0rb2e7wSe0="}]},"directories":{}},"1.1.0":{"name":"klaw","version":"1.1.0","description":"File system walker with Readable stream interface.","main":"index.js","scripts":{"test":"standard && tape tests/**/*.js | faucet"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"faucet":"0.0.1","mkdirp":"^0.5.1","rimraf":"^2.4.3","standard":"^5.3.1","tape":"^4.2.2"},"gitHead":"2dd6e88c16838892562c0c5aafb5cb414fb48488","_id":"klaw@1.1.0","_shasum":"ca3055a687b533195fff6195767b4a913a4b94b0","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"dist":{"shasum":"ca3055a687b533195fff6195767b4a913a4b94b0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-1.1.0.tgz","integrity":"sha512-Wf/Wl0tU+GhRptXO/F0ynQj6vevHugCoRn4DlEEB2Uhk05OQtwKzVf0MApo07l6pGjms1jSHJDAw7MAb01w2ew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDiX799ETn4GHWdkJ5IcoEDYpKOoD277hrU7ZZLNcGrLwIhAIwUWnHAl9ygfZOm5RjOiARXDypW8Kx69vknpLeJHL8N"}]},"directories":{}},"1.1.1":{"name":"klaw","version":"1.1.1","description":"File system walker with Readable stream interface.","main":"index.js","scripts":{"test":"standard && tape tests/**/*.js | faucet"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"faucet":"0.0.1","mkdirp":"^0.5.1","rimraf":"^2.4.3","standard":"^5.3.1","tape":"^4.2.2"},"gitHead":"ae10064a3a4a4fa766e69928aff81795ad2b30a8","_id":"klaw@1.1.1","_shasum":"ac90955062b40dccc5c25567ca045f6d431210ec","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"dist":{"shasum":"ac90955062b40dccc5c25567ca045f6d431210ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-1.1.1.tgz","integrity":"sha512-WgJK1dEd5BfaYGyj1HJ6lwhgI6Y12LlKuANMSjfGK+Og1p5baSPbIBIPnmi+M4g9drlz2nqARaFsdlt8+OXwAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRCjwLmTTXj6GvZbSe7klm3TG+xgZ664egDSUUNC7fDQIhAPN6YI6/MV01hpqz4GvpvfRBdtDY2Hb4GEfbSyLckACH"}]},"directories":{}},"1.1.2":{"name":"klaw","version":"1.1.2","description":"File system walker with Readable stream interface.","main":"index.js","scripts":{"test":"standard && tape tests/**/*.js | faucet"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"faucet":"0.0.1","mkdirp":"^0.5.1","rimraf":"^2.4.3","standard":"^5.3.1","tape":"^4.2.2"},"gitHead":"52226bbb1f4ed6f082adcf60b345259fc3cebeb8","_id":"klaw@1.1.2","_shasum":"3f8ea0033621e055ffc83072159efe92b7b47d26","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"dist":{"shasum":"3f8ea0033621e055ffc83072159efe92b7b47d26","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-1.1.2.tgz","integrity":"sha512-PI2mJIV+H2Qjfkt4jreEeypMsIPaYGWtGF5y4B1jASNRqKAuKCR6JqgzmkdOvJqrl7t4S7sMClKf+OmzGuuHWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAxn3NdXBUQ9QkTlNtvcjgaiDP+ubkxhwIvoo4e9OAFiAiEAwdRqP4VCxak3wUTa5ChUPUO0O1hJrmecNLgVD9VKg/8="}]},"directories":{}},"1.1.3":{"name":"klaw","version":"1.1.3","description":"File system walker with Readable stream interface.","main":"index.js","scripts":{"test":"standard && tape tests/**/*.js | faucet"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"faucet":"0.0.1","mkdirp":"^0.5.1","rimraf":"^2.4.3","standard":"^5.3.1","tape":"^4.2.2"},"gitHead":"5f26db5f6e10e13eda95eaaf0e89227f7abee64e","_id":"klaw@1.1.3","_shasum":"7da33c6b42f9b3dc9cec00d17f13af017fcc2721","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"dist":{"shasum":"7da33c6b42f9b3dc9cec00d17f13af017fcc2721","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-1.1.3.tgz","integrity":"sha512-bxa9UClLyTVbPCgmL2vxN6zG+js5wLZbaqLvCR2vfWplNbHoKl6f+NnOpxtnhH1LPgrdeVWq1vTKdouvD/dLlA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDciS4HanyX1/5iwUDeI6P09r3WnN00Nzc2fGGuFB+OPgIhAPsgRYiJdxHw3FJ5T8/A2EAnwyIdB3F3pZKIJ8YeMOhC"}]},"directories":{}},"1.2.0":{"name":"klaw","version":"1.2.0","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"mkdirp":"^0.5.1","mock-fs":"^3.8.0","rimraf":"^2.4.3","standard":"^5.3.1","tap-spec":"^4.1.1","tape":"^4.2.2"},"gitHead":"9d5a5b71a8f1bd872212cff31a6281cd82378450","_id":"klaw@1.2.0","_shasum":"db38692ddc2f5d10fa14450071dd63ab932ba2b1","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"dist":{"shasum":"db38692ddc2f5d10fa14450071dd63ab932ba2b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-1.2.0.tgz","integrity":"sha512-31+Bz86ga230mhWR77TEQX43T+M2E3POoTwbbFgnBBsO0SsMdRCpMkwrCW25wMlc5oBXGaLlSn4onklbgfd4lQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID4MX6jOweAc2zM5bNQD/0yKVHlaON9I8H6Bq4DOmJRhAiBd2IFMEoYuCT5BOqgs/DeC5LUs3uvRiu2kEzWVJl/VyQ=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/klaw-1.2.0.tgz_1460811249600_0.7625697441399097"},"directories":{}},"1.3.0":{"name":"klaw","version":"1.3.0","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"mkdirp":"^0.5.1","mock-fs":"^3.8.0","rimraf":"^2.4.3","standard":"^5.3.1","tap-spec":"^4.1.1","tape":"^4.2.2"},"gitHead":"26645107af1fe05ee9ec9446eeca619dcbe0ff29","_id":"klaw@1.3.0","_shasum":"8857bfbc1d824badf13d3d0241d8bbe46fb12f73","_from":".","_npmVersion":"3.5.4","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"dist":{"shasum":"8857bfbc1d824badf13d3d0241d8bbe46fb12f73","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-1.3.0.tgz","integrity":"sha512-qsrwLlvXLrQMU8Svmwg2e+pwwwkW5krMwejVzu0quiIj4oWG6uNtp+pNIcfoeB4vQ6SSku0pjaj+woQ0B8DBFw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID1/hwV7iGYCgvhW59rV15iMGjsOf8c1LTkkdZKxxpBhAiEA2ldRYLtI7M3MwF4ntvInMFkAYMlFa2mgWDBOh/LccD0="}]},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/klaw-1.3.0.tgz_1465471482762_0.7382311346009374"},"directories":{}},"1.3.1":{"name":"klaw","version":"1.3.1","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"mkdirp":"^0.5.1","mock-fs":"^3.8.0","rimraf":"^2.4.3","standard":"^8.4.0","tap-spec":"^4.1.1","tape":"^4.2.2"},"optionalDependencies":{"graceful-fs":"^4.1.9"},"gitHead":"7ceea730d54726affeaca62d6e362db0b6881f93","dependencies":{"graceful-fs":"^4.1.9"},"_id":"klaw@1.3.1","_shasum":"4088433b46b3b1ba259d78785d8e96f73ba02439","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"jprichardson@gmail.com"},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"}],"dist":{"shasum":"4088433b46b3b1ba259d78785d8e96f73ba02439","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-1.3.1.tgz","integrity":"sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDvspwmHLkW9T+5HZjoel3O6RtC/7CiCePvJs5HTjC3ogIhAL2gy2wDE4MgSCYXjCgbys0cHEXpmy3GTLq+F/0mLaGX"}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/klaw-1.3.1.tgz_1477411628636_0.7360875811427832"},"directories":{}},"2.0.0":{"name":"klaw","version":"2.0.0","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","dependencies":{"graceful-fs":"^4.1.9"},"devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.4.3","standard":"^10.0.2","tap-spec":"^4.1.1","tape":"^4.2.2"},"gitHead":"0612910718d933f5a3d72cb8a775bb4a1e61bc38","_id":"klaw@2.0.0","_shasum":"59c128e0dc5ce410201151194eeb9cbf858650f6","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"dist":{"shasum":"59c128e0dc5ce410201151194eeb9cbf858650f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-2.0.0.tgz","integrity":"sha512-Hx5PvgJKTWpMkNJCYrBUNBLlxYIkxN4FVU/BnZP4CFh5BpiHOgujAPx7iFVz/phD0bP8rsqD48gtqcvNlUt0lQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICcas6w/UxcacQV0+7fyD3hqi2vx91vJnY2H90YETPYZAiBOCjqvmr+SZ8kgs3gerbkaBz2ljF6kRjg05MPhGC5q3A=="}]},"maintainers":[{"email":"opensrc@ryanzim.com","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/klaw-2.0.0.tgz_1498247913523_0.06437866576015949"},"directories":{}},"2.1.0":{"name":"klaw","version":"2.1.0","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard && standard-markdown","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","dependencies":{"graceful-fs":"^4.1.9"},"devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.4.3","standard":"^10.0.2","standard-markdown":"^4.0.1","tap-spec":"^4.1.1","tape":"^4.2.2"},"gitHead":"036896cbd90dd7837d146fb9b4fa96929014c76d","_id":"klaw@2.1.0","_shasum":"694a269019f4321d9233fb1b9abdae21e38259fb","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"dist":{"shasum":"694a269019f4321d9233fb1b9abdae21e38259fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-2.1.0.tgz","integrity":"sha512-zpWiu9eYU7RFoSBAtarYaEmF3HMYJJRO+GN4tPLoRHnFCCt6cEw7yId91RnmXH4a+RJyxCHQdwbfssmUdrySnw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCwWpFiaStxTmrmmGOM6kbvJzNBUUIeoAhQoLjprkMYJQIgfNImjWp98Z1zJUvU4n1EksMqpBp2R/zES1igICtBEzc="}]},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"},{"name":"anonymous","email":"manidlou@gmail.com"},{"name":"anonymous","email":"opensrc@ryanzim.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/klaw-2.1.0.tgz_1502375664176_0.33373063593171537"},"directories":{}},"2.1.1":{"name":"klaw","version":"2.1.1","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard && standard-markdown","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","dependencies":{"graceful-fs":"^4.1.9"},"devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.4.3","standard":"^10.0.2","standard-markdown":"^4.0.1","tap-spec":"^4.1.1","tape":"^4.2.2"},"gitHead":"1ce53d399d37ec6755b8103713b32a4efd9bf425","_id":"klaw@2.1.1","_shasum":"42b76894701169cc910fd0d19ce677b5fb378af1","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"dist":{"shasum":"42b76894701169cc910fd0d19ce677b5fb378af1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-2.1.1.tgz","integrity":"sha512-kuInGWCNc98b1ghOqBJfqPOvAKn9HHgm+SdluR5VNfdA7rs7uNsuXGy7CCqsP6pFKPpUoCH4s9o00GEj9xONHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDjHTJAmL4WUBTGOSbNHx3HmIG46tlGocNTrnUoZ5X+UAiBKROeDK+HxlVa7Diza2N6xWhJtqJXRtAt2QUSSnZeHVw=="}]},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"},{"name":"anonymous","email":"manidlou@gmail.com"},{"name":"anonymous","email":"opensrc@ryanzim.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/klaw-2.1.1.tgz_1511035716928_0.10396873601712286"},"directories":{}},"3.0.0":{"name":"klaw","version":"3.0.0","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard && standard-markdown","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","fs-extra","readable","streams"],"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","dependencies":{"graceful-fs":"^4.1.9"},"devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.4.3","standard":"^11.0.1","standard-markdown":"^4.0.1","tap-spec":"^5.0.0","tape":"^4.2.2"},"gitHead":"c0c580d30d572df7ea5b81cb6285aed467a9e363","_id":"klaw@3.0.0","_npmVersion":"6.1.0","_nodeVersion":"10.7.0","_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"dist":{"integrity":"sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==","shasum":"b11bec9cf2492f06756d6e809ab73a2910259146","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-3.0.0.tgz","fileCount":5,"unpackedSize":13481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYczOCRA9TVsSAnZWagAAPrAQAIACHHk2CeD1r2N4MkX5\nE+d/ujdnFiLa7KMtk3tPUGVKae4wHNeungvRCFYlO6sNi9i+wHG5S4zh+Fof\nMKf2Le+s6C1MNYv+G9ASeUJk/NIIDDnDQae3J6GJIzay7uFbHMyasFm23auz\njhaYtHPSCJ8mTYcHmmp60lj5Cmz+ocpsKUY0OnpYOAxsTQWZaWfibWtE/SsE\nVIO1dibhH2nsYZ0d32RoUKS0h+yqXP/1kVhl5+aFA0/VatUTBVgtK6I8APux\nikAR1zlM09ZUrhoI+Fe9bvy+SUQgi7zBV6DUoiMtFdpdJubQLWL0noIpbM+x\na7Leirp5s4jqixonGFYmL6gl1znIuTsc96F7RkTyEL1enZuxv1GHRFdssIW9\n7WTYbqMr/djVJpYcP0+6xehMzG2XM4WN1wwtU/L2jJbXOHs00m+jTnSl3yqM\nUU6gySh3zqt/MSBnye5PrWHO7cl+dtjXyxw3rYVDzaZUl+rc3nSES03jbrUn\ngk395RhPC7j5lsrJxWqHkt/0lQzwET9eUSenNJCD6WQkWssMhq9kzoI7UQow\ny6aPurgCjfoAp3XziMfexFkc3+kKwkSlsJzWRG9dbhcfdnZKq3AOFXGlkEaE\nTKrXBZajcnxQjLIjX/bIsOFLxSWCbEi69YdAvB0Y1gOZUpzH0sSNZtrwRck8\n23KE\r\n=FniD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHh0mNZbFCEW5rAY8ZbeChU7BBarek1jaCJo0aPH5m5bAiEA+9IGeR1tEl+0Ni7wm8JNkhd9k5/I1CrN/CGHcVsnGT8="}]},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"},{"name":"anonymous","email":"manidlou@gmail.com"},{"name":"anonymous","email":"opensrc@ryanzim.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/klaw_3.0.0_1533136077866_0.6022793629299503"},"_hasShrinkwrap":false},"4.0.0":{"name":"klaw","version":"4.0.0","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","readable","streams"],"engines":{"node":">=14.14.0"},"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"standard":"^16.0.3","tap-spec":"^5.0.0","tape":"^5.3.1"},"gitHead":"4326cbeb08d70c763b77a08f268b95038bcf0f4f","_id":"klaw@4.0.0","_nodeVersion":"16.9.1","_npmVersion":"7.21.1","dist":{"integrity":"sha512-UJoECwZg39/skaZtfld4VjSvjANRJUbhul4+8+Pb/tfmEhPZ4s5fmaEH3+ihVXNdkrf66aO+n+I46EhuaVDBlw==","shasum":"ced0f34c7048eb5f7006805cfb9c281e4b56405c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-4.0.0.tgz","fileCount":6,"unpackedSize":14341,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFYg3k5vRA3E6ROOr679sHEo2Up4U3Y4uEVojGszkvHMAiEAm66VwA7zFRhHoOBUPJjzK9lgvjaQHfT0lpiRiIsfFeU="}]},"_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"},{"name":"anonymous","email":"opensrc@ryanzim.com"},{"name":"anonymous","email":"manidlou@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/klaw_4.0.0_1631977165516_0.6560978891768949"},"_hasShrinkwrap":false},"4.0.1":{"name":"klaw","version":"4.0.1","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","readable","streams"],"engines":{"node":">=14.14.0"},"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"standard":"^16.0.3","tap-spec":"^5.0.0","tape":"^5.3.1"},"gitHead":"04796a92d6a2d8642eb9d208d1d9e03972214ca3","_id":"klaw@4.0.1","_nodeVersion":"16.9.1","_npmVersion":"7.21.1","dist":{"integrity":"sha512-pgsE40/SvC7st04AHiISNewaIMUbY5V/K8b21ekiPiFoYs/EYSdsGa+FJArB1d441uq4Q8zZyIxvAzkGNlBdRw==","shasum":"8dc6f5723f05894e8e931b516a8ff15c2976d368","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-4.0.1.tgz","fileCount":4,"unpackedSize":11704,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2xL8CRA9TVsSAnZWagAA/woQAIZEIjrKp3tI/FYb7rVI\nH/r+Q2CJaSxxjMjOmLvnXUlkgcCRRc3R9FVRLLYzd8V2BtI9gqqSP6bg5ZA/\ndMKbSnmM2AclpXscbppuN5fLZomPcnOBO8kcZSaL0Qe8wKnjBzi5SM1bNSJT\naj3ARPVl89uN/SXcKzeAL2Asnm8djazBnuXZRfxlLJpe3DOYgVvmxbOmJGma\nTk9iR0txtLNTsj+9BaU6vlOMvmJSa/Dg47jSvAYLc7VJlaO7URzx8nnhb8uM\nAWqqkjlH2tNmlASUinRBT5XVKaExgRQTAn261t1001khortYhspVsFcmlXI5\n5SvPr3wnh3v7dvxfpU8j+wkpc2pA7cZ1gnjKkFAGoJQh+JW+dhAEA9/AP99v\nCqLTSHpITyKg1fkH6PNKElP9LhPSIYxM2/McK0igYIPPgO17/04o4PqD/xHZ\nuper2WnmPXFXDXjlvV7wMHdnPFKFW8ih0A1XvyrG7eFdeoUnHW/Y1G7sm4oN\nS5mQGztJKknJIacuKTwn7vmRlyA5Vxym04S/GdbbwgmXYXAd/1fdXdT7nem9\ns9pQ4DDXPdLlgcDYK28kith4kIuK73DvdGVrYIRYRRK2Zt00OICxlNss7EPL\nk77wbS3eoJ6vKGDZKt4Cfr99dk8izvnfJoVSmENiJ0eeKJhBkZottnr6ITd+\nCitL\r\n=HutF\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDoEJs1vc6Az+p8k4DUyNhroFdF6aLj86NKoLdyZ6Z3rQIhAOUsMBKP6AI0v6kyBJpX76J8DHK+NB7VsQcA/J00XpoB"}]},"_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"},{"name":"anonymous","email":"opensrc@ryanzim.com"},{"name":"anonymous","email":"manidlou@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/klaw_4.0.1_1631977655788_0.4721966577897865"},"_hasShrinkwrap":false},"4.1.0":{"name":"klaw","version":"4.1.0","description":"File system walker with Readable stream interface.","main":"./src/index.js","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"tape tests/**/*.js | tap-spec"},"repository":{"type":"git","url":"git+https://github.com/jprichardson/node-klaw.git"},"keywords":["walk","walker","fs","readable","streams"],"engines":{"node":">=14.14.0"},"author":{"name":"JP Richardson"},"license":"MIT","bugs":{"url":"https://github.com/jprichardson/node-klaw/issues"},"homepage":"https://github.com/jprichardson/node-klaw#readme","devDependencies":{"standard":"^16.0.3","tap-spec":"^5.0.0","tape":"^5.3.1"},"gitHead":"d0a9e9d9538e25a6fa4dd673f17c73753d187c32","_id":"klaw@4.1.0","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-1zGZ9MF9H22UnkpVeuaGKOjfA2t6WrfdrJmGjy16ykcjnKQDmHVX+KI477rpbGevz/5FD4MC3xf1oxylBgcaQw==","shasum":"5df608067d8cb62bbfb24374f8e5d956323338f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/klaw/-/klaw-4.1.0.tgz","fileCount":4,"unpackedSize":11838,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGzxhSkpQfPoA7bITaKQVfOB5LiV+a9eS5HbPdR+NOlkAiEA7+fQ/pxckS6NzkWg/dN8kCGaZQ5S//NsOWm0YriVxUU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjrzmhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLoQ/+OOMPXNqyKv0coAffhsJpN7iiSLVdepcEfy0x5fSm1sS4ul2i\r\nSvbnMOR/tmKiKSd3O5kE/2N3n+sQQpxQglzxD5WpCcIdF5CJWddmyWqwpfZl\r\nUYwbuaXW+E0nDSZ2pPEgfbt8b9cD4Gozv+g8CNJKIW0L4jV4ZEwQpRNDHAfe\r\n9QgF8ldRJqVQQ6IwpFeab8S4rNynBRteGhH02zLl/hRXg3MXBDE6/mlL4eGq\r\nnAqWTKeT7/9TrQuTdPP2IAfMelbZyIEKu6wLrT1kHQEqBSnYm1MqnP4ni3+6\r\n8p2Fk9i4+idTQ1WlyNCFrSpIM/aEh2djl3CQJmEsiIOBE7jAwy0jpfTb7GMf\r\nfN5dMhEHoH+0gGgfJhS2tCONtkE54JvI6ynf0eXGXMJpgWbRV2uAssSkVQK9\r\ntzZsfhdsURAYtplt+oLiMi9qF5NMB7KGHf0h+I+/KgzZuXd+9qGjNM5V/7TN\r\n0zcCsEDqZe36NrvtVPRSgWfEWwcPinlGyFMPT75mP/MUMBHnV2DgxPMyBtok\r\ncfOf/81Zgfktb1lCEfDIj2mfK0VhCNWfVcROt3FclWwyrzoYgUmjde80kIzQ\r\n9OOCBfLwYSFUIIlSPfmLtJPrOSSZl4rSR4KQWisGm6EyeRd20cMCcv/N42wZ\r\nGeF6CW7tYV/9c9SlHOT0Sq8Afy36jOn/0lg=\r\n=g+ua\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"jprichardson@gmail.com"},{"name":"anonymous","email":"opensrc@ryanzim.com"},{"name":"anonymous","email":"manidlou@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/klaw_4.1.0_1672427937587_0.9668160064041456"},"_hasShrinkwrap":false}},"name":"klaw","time":{"modified":"2022-12-30T19:18:57.845Z","created":"2015-10-25T14:25:32.957Z","0.1.0":"2015-10-25T14:25:32.957Z","1.0.0":"2015-10-25T15:22:16.827Z","1.1.0":"2015-10-25T19:09:38.222Z","1.1.1":"2015-10-25T19:37:47.336Z","1.1.2":"2015-11-12T15:32:44.149Z","1.1.3":"2015-12-23T22:58:50.062Z","1.2.0":"2016-04-16T12:54:12.167Z","1.3.0":"2016-06-09T11:24:45.183Z","1.3.1":"2016-10-25T16:07:11.536Z","2.0.0":"2017-06-23T19:58:34.569Z","2.1.0":"2017-08-10T14:34:25.258Z","2.1.1":"2017-11-18T20:08:38.029Z","3.0.0":"2018-08-01T15:07:57.955Z","4.0.0":"2021-09-18T14:59:25.665Z","4.0.1":"2021-09-18T15:07:35.958Z","4.1.0":"2022-12-30T19:18:57.771Z"},"readmeFilename":"README.md","homepage":"https://github.com/jprichardson/node-klaw#readme"}