{"maintainers":[{"email":"manidlou@gmail.com","name":"deployment"},{"email":"vic3coorp@gmail.com","name":"deployment"}],"keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"dist-tags":{"latest":"7.0.0"},"author":{"name":"Mani Maghsoudlou"},"description":"Recursive, synchronous, and fast file system walker","readme":"node-klaw-sync\n==============\n\n[![npm Package](https://img.shields.io/npm/v/klaw-sync.svg?style=flat-square)](https://www.npmjs.com/package/klaw-sync)\n[![Build Status](https://travis-ci.org/manidlou/node-klaw-sync.svg?branch=master)](https://travis-ci.org/manidlou/node-klaw-sync)\n[![windows Build status](https://ci.appveyor.com/api/projects/status/braios34k6qw4h5p/branch/master?svg=true)](https://ci.appveyor.com/project/manidlou/node-klaw-sync/branch/master)\n[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg?style=flat-square)](https://standardjs.com)\n[![Known Vulnerabilities](https://snyk.io/test/npm/klaw-sync/badge.svg?style=flat-square)](https://snyk.io/test/npm/klaw-sync)\n\n`klaw-sync` is a Node.js recursive and fast file system walker, which is the synchronous counterpart of [klaw](https://github.com/jprichardson/node-klaw). It lists all files and directories inside a directory recursively and returns an array of objects that each object has two properties: `path` and `stats`. `path` is the full path of the file or directory and `stats` is an instance of [fs.Stats](https://nodejs.org/api/fs.html#fs_class_fs_stats).\n\nInstall\n-------\n\n    npm i klaw-sync\n\nUsage\n-----\n\n### klawSync(directory[, options])\n\n- `directory` `<String>`\n- `options` `<Object>` (optional)\n  - `nodir` `<Boolean>` default: `undefined`\n    - return only files (ignore directories).\n  - `nofile` `<Boolean>` default: `undefined`\n    - return only directories (ignore files).\n  - `depthLimit`: `<Number>` default: `-1`\n    - the number of times to recurse before stopping. `-1` for unlimited.\n  - `fs`: `<Object>` default: `graceful-fs`\n    - custom `fs`, useful when mocking `fs` object.\n  - `filter` `<Function>` default: `undefined`\n    - function that gets one argument `fn({path: '', stats: {}})` and returns true to include or false to exclude the item.\n  - `traverseAll` `<Boolean>` default: `undefined`\n    - traverse all subdirectories, regardless of `filter` option. This can be useful when you have a filter function and still want to traverse all subdirectories even if your filter function doesn't pass for some directories.\n- **Return:** `<Array<Object>>` `[{path: '', stats: {}}]`\n\nExamples\n--------\n\n```js\nconst klawSync = require('klaw-sync')\n\nconst paths = klawSync('/some/dir')\n// paths = [{path: '/some/dir/dir1', stats: {}}, {path: '/some/dir/file1', stats: {}}]\n```\n\n_**catch error**_\n\n```js\nconst klawSync = require('klaw-sync')\n\nlet paths\ntry {\n  paths = klawSync('/some/dir')\n} catch (er) {\n  console.error(er)\n}\nconsole.dir(paths)\n```\n\n_**files only**_\n\n```js\nconst klawSync = require('klaw-sync')\n\nconst files = klawSync('/some/dir', {nodir: true})\n// files = [{path: '/some/dir/file1', stats: {}}, {path: '/some/dir/file2', stats: {}}]\n```\n\n_**directories only**_\n\n```js\nconst klawSync = require('klaw-sync')\n\nconst dirs = klawSync('/some/dir', {nofile: true})\n// dirs = [{path: '/some/dir/dir1', stats: {}}, {path: '/some/dir/dir2', stats: {}}]\n```\n\n_**ignore hidden directories**_\n\n\n```js\nconst path = require('path')\nconst klawSync = require('klaw-sync')\n\nconst filterFn = item => {\n  const basename = path.basename(item.path)\n  return basename === '.' || basename[0] !== '.'\n}\n\nconst paths = klawSync('/some/dir', { filter: filterFn})\n```\n\n_**filter based on stats**_\n\nHere `traverseAll` option is required since we still want to read all subdirectories even if they don't pass the `filter` function, to see if their contents do pass the `filter` function.\n\n```js\nconst klawSync = require('klaw-sync')\n\nconst refTime = new Date(2017, 3, 24).getTime()\nconst filterFn = item => item.stats.mtime.getTime() > refTime\n\nconst paths = klawSync('/some/dir', { traverseAll: true, filter: filterFn })\n```\n\nRun tests\n---------\n\nlint: `npm run lint`\n\nunit test: `npm run unit`\n\nlint & unit: `npm test`\n\nbenchmark: `npm run benchmark`\n\nPerformance compare to other similar modules\n-----------------------------------------------\n\nRunning some [benchmark](https://github.com/bestiejs/benchmark.js) tests on these modules:\n\n- `klaw-sync`\n- [walk-sync](https://github.com/joliss/node-walk-sync)\n\n(as of Jan 25, 2017) `klaw-sync` is the fastest module!\n\n##### results (tested on Ubuntu 18.04, Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz, 8 CPUs, 8g RAM, node v10.9.0)\n\n```bash\nRunning benchmark tests..\n\nroot dir length: 1110\nwalk-sync x 80.71 ops/sec ±1.42% (72 runs sampled)\nklaw-sync x 160 ops/sec ±1.17% (79 runs sampled)\nFastest is klaw-sync\n\nroot dir length: 11110\nwalk-sync x 7.55 ops/sec ±3.39% (23 runs sampled)\nklaw-sync x 14.95 ops/sec ±0.27% (40 runs sampled)\nFastest is klaw-sync\n\nroot dir length: 111110\nwalk-sync x 0.63 ops/sec ±6.92% (6 runs sampled)\nklaw-sync x 1.22 ops/sec ±0.96% (7 runs sampled)\nFastest is klaw-sync\n```\n\nContributing\n-----------\n\n1. Fork the repository\n2. Clone your forked version\n   ```bash\n   git clone https://github.com/YOUR_USERNAME/node-klaw-sync.git\n   ```\n3. Create a new branch for your changes\n   ```bash\n   git checkout -b feature/your-feature-name\n   ```\n4. Make your changes and commit them\n5. Push to your fork\n   ```bash\n   git push origin feature/your-feature-name\n   ```\n6. Create a Pull Request from your fork to the original repository\n\nBefore submitting a PR:\n- Ensure tests pass: `npm test`\n- Add tests for new features\n- Follow the existing code style\n\nLicense\n-------\n\nLicensed under MIT\n","repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"users":{"finnhvman":true,"flumpus-dev":true,"shanewholloway":true},"bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"license":"MIT","versions":{"1.0.0":{"name":"klaw-sync","version":"1.0.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@1.0.0","maintainers":[{"name":"deployment","email":"maawni@gmail.com"}],"homepage":"https://github.com/mawni/node-klaw-sync#readme","bugs":{"url":"https://github.com/mawni/node-klaw-sync/issues"},"dist":{"shasum":"c778c7a8ea445a307e42dff95bce98e88ce41e18","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-1.0.0.tgz","integrity":"sha512-8L0PFAclIjSx3nZ/BGJ4Bi/PkLbTfXUJ6m412A6YDsBVGEkJte0xvveXcX1druTPNJDVQCzcUeQMZqYCHuFVtw==","signatures":[{"sig":"MEUCIHw/sELVFE3Av3bnn35HXSQ3KfN5Zn47eokQIGGCahMmAiEAwXgnJVAa1rgs2bbMaTb3evyRIXvLqZLFIt9klj3zaMk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","_from":".","_shasum":"c778c7a8ea445a307e42dff95bce98e88ce41e18","gitHead":"77d213157d2cf603f52db362dbf194004a7fa723","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node bm.js"},"_npmUser":{"name":"deployment","email":"maawni@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/mawni/node-klaw-sync.git","type":"git"},"_npmVersion":"4.1.1","description":"Recursive and synchronous file system walker","directories":{},"_nodeVersion":"7.4.0","dependencies":{"multimatch":"^2.1.0","graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.1","mocha":"^3.2.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.3","walk-sync":"^0.3.1"},"optionalDependencies":{"graceful-fs":"^4.1.11"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-1.0.0.tgz_1484562572925_0.8982397532090545","host":"packages-18-east.internal.npmjs.com"}},"1.0.1":{"name":"klaw-sync","version":"1.0.1","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@1.0.1","maintainers":[{"name":"deployment","email":"maawni@gmail.com"}],"homepage":"https://github.com/mawni/node-klaw-sync#readme","bugs":{"url":"https://github.com/mawni/node-klaw-sync/issues"},"dist":{"shasum":"43843307841defc1853642465abbc0f31b5df834","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-1.0.1.tgz","integrity":"sha512-LnLM6KePkeguOpistFxQccoVxqwcRxGuLRr7hWHNfAYIYF/6Ik9gGFC4ZF8wps5S6ZG/RiTz2oi808aH73Pdxg==","signatures":[{"sig":"MEUCIQCB+HzdhvGfb0c1dDoVCNf+iCmYJotfJrmmnrz/KI5kXAIgYUF/vM/jmcPCFIoXy+sK1FxLpuJx9PYijaaDJe6PyZs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","_from":".","_shasum":"43843307841defc1853642465abbc0f31b5df834","gitHead":"2ce9e21517c3a39790bd20f753a0b277ea63080c","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node bm.js"},"_npmUser":{"name":"deployment","email":"maawni@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/mawni/node-klaw-sync.git","type":"git"},"_npmVersion":"4.1.1","description":"Recursive and synchronous file system walker","directories":{},"_nodeVersion":"7.4.0","dependencies":{"multimatch":"^2.1.0","graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.1","mocha":"^3.2.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.3","walk-sync":"^0.3.1"},"optionalDependencies":{"graceful-fs":"^4.1.11"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-1.0.1.tgz_1484562927232_0.6306058038026094","host":"packages-12-west.internal.npmjs.com"}},"1.0.2":{"name":"klaw-sync","version":"1.0.2","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@1.0.2","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"adabfe9dbf9bd11bdfdad6acc2c8fc8de93f5e74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-1.0.2.tgz","integrity":"sha512-szp1LT4tsr3SBM5AxjampEP9OKXvXXmj8n5RzomVZvJ+rWpX0An3AbCqp5bYg8aYMEvyFa6UzN/gW/kd/3afVQ==","signatures":[{"sig":"MEQCIFUHlbCeXHxnSJ8OUgsu+gtPKwGQ0xTNHTRBWlNx0hViAiBW+uotzvOc+7rPdfickTHlbTKtTFOGvzL63zTLZBe2ug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","_from":".","_shasum":"adabfe9dbf9bd11bdfdad6acc2c8fc8de93f5e74","gitHead":"93dfdb9bbff87c1da47139d0d2cb3fe56d04b798","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"4.1.1","description":"Recursive and synchronous file system walker","directories":{},"_nodeVersion":"7.4.0","dependencies":{"multimatch":"^2.1.0","graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.1","mocha":"^3.2.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.3","walk-sync":"^0.3.1"},"optionalDependencies":{"graceful-fs":"^4.1.11"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-1.0.2.tgz_1484653051861_0.6658518344629556","host":"packages-12-west.internal.npmjs.com"}},"1.1.0":{"name":"klaw-sync","version":"1.1.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@1.1.0","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"f407abe14cb347e8ada885576ad41d9a855ea4ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-1.1.0.tgz","integrity":"sha512-tI+bNoPPZBbD1GnECJOzEioap9Hv20SLPO6gMfAI8zozdH7bf0P9ArZT8WDbt+NZxZz/7Ps6EvaXJwIu9iwmhw==","signatures":[{"sig":"MEUCIEWyDReihxNqOm8X4ffljNmN3O5hYfaTmlFcygGqRnX4AiEAsHxVpaXke5P4WJsXUnRiuA4KT1Cgiv6avLroWSroS7Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","_from":".","_shasum":"f407abe14cb347e8ada885576ad41d9a855ea4ea","gitHead":"5a34abc692952fcccbf837e91fccaca00379ae33","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"4.1.1","description":"Recursive and synchronous file system walker","directories":{},"_nodeVersion":"7.4.0","dependencies":{"micromatch":"^2.3.11","graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.1","mocha":"^3.2.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.3","walk-sync":"^0.3.1"},"optionalDependencies":{"graceful-fs":"^4.1.11"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-1.1.0.tgz_1485401674112_0.3187175439670682","host":"packages-12-west.internal.npmjs.com"}},"1.1.1":{"name":"klaw-sync","version":"1.1.1","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@1.1.1","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"a9d38cf8f0df17cb696b2e099423c6de92f41273","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-1.1.1.tgz","integrity":"sha512-ffcVmPXF7UTcvvkfAQYEL4+qYjCXpuxhyZaGkyOOCYszD/2VfmsOqTl2a9xe/EsdcX1jiv79YAW//eyruZuR8Q==","signatures":[{"sig":"MEUCIHEDzD/oBG3zQXX3S4AAq7ffVdnN/B45cD9N4fv5CYnOAiEAxAaKPbPSyMus+Op7UrwrhYJZ+iAiNIcjAS35Wn8PNoQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","_from":".","_shasum":"a9d38cf8f0df17cb696b2e099423c6de92f41273","gitHead":"e2ccf4842b17cc8ee08c52aadf575bceedaed335","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"4.1.2","description":"Recursive and synchronous file system walker","directories":{},"_nodeVersion":"7.5.0","dependencies":{"micromatch":"^2.3.11","graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.1","mocha":"^3.2.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.3","walk-sync":"^0.3.1"},"optionalDependencies":{"graceful-fs":"^4.1.11"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-1.1.1.tgz_1486285905400_0.4428113589528948","host":"packages-18-east.internal.npmjs.com"}},"1.1.2":{"name":"klaw-sync","version":"1.1.2","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@1.1.2","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"b5bc67a244e261b0ea71d97e586ea0521e734a9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-1.1.2.tgz","integrity":"sha512-GyfMCkHXwIyH8juOI8njVUhNm2d3GI8pdMXZx+PvdODOkEsLggvqoMs6lPcgNywA4WR4hYdJzjqioo3iXETg4Q==","signatures":[{"sig":"MEUCIA6gmgrvBVkomtKVeXGAWXcD9sbR0V1qqy6wfTAIKGyDAiEAnymYgf6Bx/SpbqQqUga5G+tpyBjR9A2FKRCvhW8dCmw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","_from":".","_shasum":"b5bc67a244e261b0ea71d97e586ea0521e734a9a","gitHead":"01f700944dd669b1b6807d7d0a736cd03a9b4fb5","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"4.1.2","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"7.5.0","dependencies":{"micromatch":"^2.3.11","graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.1","mocha":"^3.2.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.3","walk-sync":"^0.3.1"},"optionalDependencies":{"graceful-fs":"^4.1.11"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-1.1.2.tgz_1487373440774_0.44706580811180174","host":"packages-18-east.internal.npmjs.com"}},"2.0.0":{"name":"klaw-sync","version":"2.0.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@2.0.0","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"dbe0f153d03f8f33ff936c06d4393ccec502c883","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-2.0.0.tgz","integrity":"sha512-oVlOdGavyyts4sCQ0gpTOvqVfWb8jwPxxhWbRWlh9Ztv1cNH+BE5vrV0QkQamONC9dKgbgl42Ve/vPNCtsb6FA==","signatures":[{"sig":"MEUCIHs1t7Qhw6CsoaRKrUqygSHIcZ3va7NG69exYgFVkcfxAiEA3PpasL3Tg3bh/n7eulQIofynmbxDdSa5/3yI9ATzm1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","_from":".","_shasum":"dbe0f153d03f8f33ff936c06d4393ccec502c883","gitHead":"2059501cbf02743e9cf5c45065b747604da593a7","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"4.5.0","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"7.9.0","dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.1","mocha":"^3.2.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.4","walk-sync":"^0.3.1"},"optionalDependencies":{"graceful-fs":"^4.1.11"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-2.0.0.tgz_1492992715695_0.8919805774930865","host":"packages-12-west.internal.npmjs.com"}},"2.1.0":{"name":"klaw-sync","version":"2.1.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@2.1.0","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"3d3bcd8600e7bfdef53231c739ff053aed560e44","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-2.1.0.tgz","integrity":"sha512-lIxVCUMQIF7hfygFfdZgv4Z+e1smLroaYNQMUcf1TcJ5oqxj9m8qk19iIuMVl+tXQPr3CSE4V+4XjGEqmsth0Q==","signatures":[{"sig":"MEUCIDQyIBh8srjhpsPMogvOGd5Cxu3epEL9+JX2Bw6vhBw2AiEA1dNM7Sb+N03rVFM5S3iUAwBzH+543X78S/aUYOw20Hg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","_from":".","_shasum":"3d3bcd8600e7bfdef53231c739ff053aed560e44","gitHead":"127a7bf9eb8eee2bdae4e1feebf684fdf046ae07","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"4.5.0","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"7.9.0","dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.1","mocha":"^3.2.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.4","walk-sync":"^0.3.1"},"optionalDependencies":{"graceful-fs":"^4.1.11"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-2.1.0.tgz_1493176507842_0.9643424022942781","host":"packages-18-east.internal.npmjs.com"}},"3.0.0":{"name":"klaw-sync","version":"3.0.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@3.0.0","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"07ff84e82e3f7c1c39dd0c9b7259db826ec998f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-3.0.0.tgz","integrity":"sha512-UKwdtxbf6R0hZQgC6v0SmOf3fYPYK84vOGcy2JfQukRqGD6wOVLHcMhZMxZEso4QTf7t/JUsiZyUmiS/lcDn+g==","signatures":[{"sig":"MEUCIQD5gcqSjVUX3zDqXZBF6dQ6MHiO87oo+vHCtUSuzIP1hgIgQAwzvcLJgKumgoMc3zP0+V8BI90RNJhiFC1drzGrns8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","gitHead":"6ad7fb75b6ba76cf018c9382b26c487e1321dc20","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"5.3.0","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"8.2.1","dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.2","mocha":"^3.5.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.4","walk-sync":"^0.3.2"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-3.0.0.tgz_1502054670294_0.8529897646512836","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"klaw-sync","version":"3.0.1","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@3.0.1","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"7a00a532dadb5bc872eea1278f36ffa22c0ee4b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-3.0.1.tgz","integrity":"sha512-rM5TO7shvZbr0oXsr3nTTWhUpnPAV2ugZUOELWzSP/gCK7aS7n9SsXTNRZxKBSX/BE5YmCWH4OxhiVqDK0hJQA==","signatures":[{"sig":"MEQCIHrPb5nrGHSXnkYH6ewmqgVzCR5PwPhq5AO0VX5YPSzEAiA8plGU+04460ePlrofdiT1rLMA3AusPIhfvFYWqybPwA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","gitHead":"f4eb1bb7bbd96b8817bd10955e1464ebdd5d7a5b","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"5.5.1","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"8.7.0","dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.2","mocha":"^3.5.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.4","walk-sync":"^0.3.2"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-3.0.1.tgz_1508651582751_0.09547418914735317","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"klaw-sync","version":"3.0.2","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@3.0.2","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"bf3a5ca463af5aec007201dbe8be7088ef29d067","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-3.0.2.tgz","integrity":"sha512-32bw9y2nKrnpX2LsJnDTBO2TSdOKPbXfQAWl7Lupcc3D0iKkzI/sQDEw1GjkOuTqZEhe+bVxKSlhSRLxyeytcw==","signatures":[{"sig":"MEQCIAw12+iSeyhQ0x0dwRMCb/u1iMytekUZ30miog5VNxx5AiAB/kKyb+F/ZwIYK8ma2dsPH0tkldczqoL4iYohXfc6bQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"klaw-sync.js","gitHead":"a19685974c09c7a084711a3876db20c36ad9ec3c","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"5.5.1","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"8.7.0","dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"glob":"^7.1.2","mocha":"^3.5.0","fs-extra":"^1.0.0","minimist":"^1.2.0","standard":"^8.6.0","benchmark":"^2.1.4","walk-sync":"^0.3.2"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync-3.0.2.tgz_1508651852677_0.9408545203041285","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"klaw-sync","version":"4.0.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@4.0.0","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"7785692ea1a320ac3dda7a6c0c22b33a30aa3b3f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-4.0.0.tgz","fileCount":5,"integrity":"sha512-go/5tXbgLkgwxQ2c2ewaMen6TpQtI9fTzzmTdlSGK8XxKcFSsJvn/Sgn75Vg+mOJwkKVPrqLw2Xq7x/zP1v7PQ==","signatures":[{"sig":"MEYCIQDy3paaveygbIC80cHbwS5RslTpp/c7cvPFSwETuIRMagIhAMs6aJdKdlfR1sVFqv9eojpMWdpgVkXzEbJ2AWS9X5nR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5sYBCRA9TVsSAnZWagAA4u8P/ifuSMah2pwmZnUzM9sx\n0sAmPQIUkX5Wmb4RPdbCa6siTstdHA/5JV5nmuUCuudSw5F6Ek1Kk2IIm1eX\n3Wa9KoJ9ky1koviICQVxHIKOx64H38xu2tAQTYZch09mhJdTxqB+BirfGDc6\n5ETOwrbS90KkJOShzzfqNX7WuMlx/MTyTC6ftgGzwdSU/I24vXquWVNC+lpE\nFE29kpXvaNTDLsD6MNwOsY0e0s+lxph8FS9WOHqIDlClT/mC/tg2bWTWhdEr\nmbnrgSpKPbKyQSu5nD+HIDQTKOwnvq6/2+w2Y7cDiondUhRj/ik4nRDIbfuu\nfGT56NM1n2vS9W+3Xli2a3F7wuQ92HuelUpW/377YLq8KyKY4QiH23HWmLLg\nyoxXi4cOEsUGB5agIuZS3Z6r1A0TSfl5AAyI0ykDW/2XKbmW2vNl/LITKgR3\ncSFKjP60l8LX2lFeYkW47mKmxRBouKb+pTXlNf46knM6PdW78o/rp/6dPDql\n68W1Y5iXzMT1wMQaCtIBVxDPPB3fyVVCDdJGf7gI9v7C/IoU2cyjw1qJ+vIF\na6Rqd6XgG3eO9Kb/ZlP5is6bOL/nkG/cdvXz02d+18kv16K5vAkEGUXOLBrn\n/4Eo+PCWjUprvHJjggKr/+cjWslSighGk++7wEx1QAu6zV/HlWT0lxaZiK3A\nWOOp\r\n=eaPZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"klaw-sync.js","gitHead":"3597b319b94f9dd3f376a9265ee8d3b1ccc258cf","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"6.0.0","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"10.0.0","dependencies":{"graceful-fs":"^4.1.11"},"_hasShrinkwrap":false,"devDependencies":{"mkp":"^1.0.1","glob":"^7.1.2","mocha":"^5.1.1","fs-extra":"^5.0.0","standard":"^11.0.1","benchmark":"^2.1.4","memory-fs":"^0.4.1","walk-sync":"^0.3.2"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync_4.0.0_1525073408515_0.5122407027531981","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"klaw-sync","version":"5.0.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@5.0.0","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"b8db1249f96a82751c311ee8a626a319db119904","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-5.0.0.tgz","fileCount":5,"integrity":"sha512-z1Gj2e9FBU1+OVQqp8vgPWmusPFXqfiGL3NRSmOkXfpbKO3HsvXX0SwZWlpGZp6kheQwhZfE2TNC8RLmD4NwSQ==","signatures":[{"sig":"MEQCIBBdNWiWSfyAp2KdyCmVGYnp+N0xRFL0dRTmUhCaEzaQAiARwmWPstiW1mU3PRCFd8/kxVy0QoqL3F1Xb4BMjSWtQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9733,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkMd0CRA9TVsSAnZWagAAM4YP/0nFxVWqKDHaI9jrOuB7\n2DzmAfwZ9Qs20McMKfSRSAJL/pN8N9TFyoqJbaoJTq6KbcZW24A279nghrdf\nfk6Vt2YO7rldXkUJbb7l/oVhBJovjzAV721Utw8GNtkOkRBPRK2kOy3exZDT\nxzdjuyN9q6osGAVj+57iDUdisQ23yixODQQRJMqv4yL4AUqt/t8bpIItRCTN\n9QyMBf0/Bh7ZWr8cDE6YMTo7B3O/aLCcXHMUANYoeY13s/C/0iNe9wsS/kZe\nyPedbWyhzOamYYEKaBpSzZj2AAz+Qv65z/amO8JqBB7gd6kuY7WWfO9nYmZb\nABguqLKbMYGsjSIhB/hwEWIxBFLxoWGnLlEYxjot8rFHdl8s/J7pFQ6LRxQP\nrK/upBx+JgcrLy2z+9v363v7l67hgM7wxfzNz+VNRfitQwzMZjwBA17g8AN4\nUbotb7ARSxs52bFXoXhKDvvbMUvPi+N2Ip9oMj8YeUrxSZkP4P/f7USp+ZDm\nnLwCs6KteERa6MrDsS0aLQ3sOtTKnpA5/68sL0dBhDFRUZAFQft1CiEoz9ce\nyNA7C6OSKWICoS+PVBGI6aPdMwjY4CzRPmyxLE4bzJVXXEsDV1RliU5vag/w\nWHGG9AavK/wlNw94L+375rewE5w+Lmaf1dhc03m/lzim2QKgxCVx4v/esurL\ncgCA\r\n=xdmY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"klaw-sync.js","gitHead":"6e3500d485d51c462132880e780ae4d0db07ce0e","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"6.4.1","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"10.9.0","dependencies":{"graceful-fs":"^4.1.11"},"_hasShrinkwrap":false,"devDependencies":{"mkp":"^1.0.1","mocha":"^5.1.1","fs-extra":"^5.0.0","standard":"^11.0.1","benchmark":"^2.1.4","memory-fs":"^0.4.1","walk-sync":"^0.3.3"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync_5.0.0_1536214899709_0.7009992884725926","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"klaw-sync","version":"6.0.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@6.0.0","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"1fd2cfd56ebb6250181114f0a581167099c2b28c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-6.0.0.tgz","fileCount":5,"integrity":"sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==","signatures":[{"sig":"MEYCIQD5uvDnDWeEDjd1bFHobStmQdQjBE8//dme3K7Y1GHnmgIhAOdnX/gZsrW3/KaYD2kBy/54mSoj0jNadbj6eS04Lo0v","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10427,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbp7d+CRA9TVsSAnZWagAAOSgP/R7JJnFD2desTiv6deef\nlcqlUYWdtjirCl4yWS7xYw50sx+r89qMpdnFgTLZ5wax8gt7t1PnyMVpnrp1\npNI85OwVIeA4cy51rFeswAJhRgC9iBnNYLTzPQoC9W0nZQrWAfpT7bHN3TKa\nYeSP2gZP0E6RGcudTLA/pVuaaHyfvWHJ9Yx78avej8aQmWn1f9UdilBSQA6g\nEWWxTiNd2UArHwkUBRNKHqqcrP0eu4b4kEOdnfxFlokC2JjuCarnZzZG7h6/\nASOI41mCc3Wgfx3yHt4c14JivlxFhwO+YnBN1hRkjRtmX9AZfnNywW/WeODi\nKPpFkk7AvePsQYgrSWHOgAKKRv20/DDqYP4DkLQez9zGxKuQbaT3kZyWFAJU\nhABEHlLtGuuY6ZNIKLoMiTB99CpyQ7kipJfphyC66esCX5hc7CPAmVDHm3K7\nlfBDBzY9szNaufhCrnb3S5IPYuLi4uiN8fiHNEkRFADLPem1ZffQ853WtRBG\nUVFExI7r0hAr3n9lnFTaHt3SZeQ55UlNgIpBu+SEQaUJHv9rc8ZWKuwzMJsA\njrnjXWTXusEFZ6bpJO0pRq2Ky5Bp2+rlWQpKbU2YYK1JYoCKrkbftXpjbtL8\n5hca92NblYGb6EgmNVNAk+W28JK1fbGxQepYnf+GcoEnHXNbSKT1EN2g97I0\n6Odz\r\n=+nMG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"klaw-sync.js","gitHead":"cab813f8a9df1a10330802c9a56d856d4868b044","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"6.4.1","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"10.9.0","dependencies":{"graceful-fs":"^4.1.11"},"_hasShrinkwrap":false,"devDependencies":{"mkp":"^1.0.1","mocha":"^5.1.1","fs-extra":"^5.0.0","standard":"^11.0.1","benchmark":"^2.1.4","memory-fs":"^0.4.1","walk-sync":"^0.3.3"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync_6.0.0_1537718141401_0.8576057938100381","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"klaw-sync","version":"7.0.0","keywords":["fs","walk","walker","walk-sync","klaw","readdir-sync"],"author":{"name":"Mani Maghsoudlou"},"license":"MIT","_id":"klaw-sync@7.0.0","maintainers":[{"name":"deployment","email":"manidlou@gmail.com"}],"homepage":"https://github.com/manidlou/node-klaw-sync#readme","bugs":{"url":"https://github.com/manidlou/node-klaw-sync/issues"},"dist":{"shasum":"edb757fa7860e6ea3f2cec8a4e410a2d54dc259b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/klaw-sync/-/klaw-sync-7.0.0.tgz","fileCount":5,"integrity":"sha512-UQVrq/XIu/nqf/t89IAhc0sLy0x7VlE+Gv2XCouN4rp0RKrv/S4rx80O61V6LCHqoidBr3Sz28gWvobiPAH9UQ==","signatures":[{"sig":"MEQCIGldIDbndiKLFnXwP2kMLX9Kp1zkckw33bQ5mcc1uO/5AiAQJbX9G+rmlqVaafMQ5esjwbITYb1Ci+3kNC5NO04Ftw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":11134},"main":"klaw-sync.js","gitHead":"56215e299b58ea394975f2b713130131ca0def15","scripts":{"lint":"standard","test":"npm run lint && npm run unit","unit":"mocha","lint:fix":"standard --fix","benchmark":"node ./benchmark/bm.js"},"_npmUser":{"name":"deployment","email":"manidlou@gmail.com"},"standard":{"env":["mocha"]},"repository":{"url":"git+https://github.com/manidlou/node-klaw-sync.git","type":"git"},"_npmVersion":"10.5.0","description":"Recursive, synchronous, and fast file system walker","directories":{},"_nodeVersion":"20.12.1","dependencies":{"memfs":"^4.17.0","graceful-fs":"^4.1.11"},"_hasShrinkwrap":false,"devDependencies":{"mkp":"^1.0.1","mocha":"^5.1.1","fs-extra":"^5.0.0","standard":"^11.0.1","benchmark":"^2.1.4","walk-sync":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/klaw-sync_7.0.0_1742410613845_0.6650120560221591","host":"s3://npm-registry-packages-npm-production"}}},"name":"klaw-sync","time":{"created":"2017-01-16T10:29:34.787Z","modified":"2025-03-19T19:31:48.648Z","1.0.0":"2017-01-16T10:29:34.787Z","1.0.1":"2017-01-16T10:35:27.476Z","1.0.2":"2017-01-17T11:37:32.104Z","1.1.0":"2017-01-26T03:34:34.366Z","1.1.1":"2017-02-05T09:11:47.303Z","1.1.2":"2017-02-17T23:17:22.660Z","2.0.0":"2017-04-24T00:11:55.917Z","2.1.0":"2017-04-26T03:15:09.793Z","3.0.0":"2017-08-06T21:24:30.443Z","3.0.1":"2017-10-22T05:53:02.993Z","3.0.2":"2017-10-22T05:57:32.800Z","4.0.0":"2018-04-30T07:30:08.581Z","5.0.0":"2018-09-06T06:21:39.970Z","6.0.0":"2018-09-23T15:55:41.531Z","7.0.0":"2025-03-19T18:56:54.158Z"},"readmeFilename":"README.md","homepage":"https://github.com/manidlou/node-klaw-sync#readme"}