{"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"keywords":["fs","read","file","promise","promises","then","thenable"],"dist-tags":{"latest":"3.0.1","next":"4.0.0-2"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"description":"Promise version of fs.readFile","readme":"# fs-readfile-promise\n\n[![npm version](https://img.shields.io/npm/v/fs-readfile-promise.svg)](https://www.npmjs.com/package/fs-readfile-promise)\n[![Build Status](https://travis-ci.org/shinnn/fs-readfile-promise.svg?branch=master)](https://travis-ci.org/shinnn/fs-readfile-promise)\n[![Build status](https://ci.appveyor.com/api/projects/status/5sacvq0w9x7mwkwd?svg=true)](https://ci.appveyor.com/project/ShinnosukeWatanabe/fs-readfile-promise)\n[![Coverage Status](https://img.shields.io/coveralls/shinnn/fs-readfile-promise.svg)](https://coveralls.io/r/shinnn/fs-readfile-promise)\n\nPromisified version of [`fs.readFile`][fs.readfile]\n\n```javascript\nconst readFilePromise = require('fs-readfile-promise');\n\n(async () => {\n  const buffer = await readFile('path/to/a/file');\n  buffer.toString(); //=> '... file contents ...'\n})();\n```\n\nBased on the principle of [*modular programming*](https://en.wikipedia.org/wiki/Modular_programming), this module has only one functionality [`readFile`][fs.readfile], unlike other Promise-based file system modules. If you'd like to use a bunch of other [`fs`](http://nodejs.org/api/fs.html) methods in the Promise way, choose other modules such as [q-io](https://github.com/kriskowal/q-io) and [promise-fs](https://github.com/octet-stream/promise-fs).\n\n## Installation\n\n[Use](https://docs.npmjs.com/cli/install) [npm](https://docs.npmjs.com/getting-started/what-is-npm).\n\n```\nnpm install fs-readfile-promise\n```\n\n## API\n\n```javascript\nconst readFilePromise = require('fs-readfile-promise');\n```\n\n### readFile(*path* [, *options*])\n\n*path*: `string` `Buffer` `URL` `integer`  \n*options*: `Object` ([fs.readFile] options) or `string` (encoding)  \nReturn: `Promise<Buffer|string>`\n\n```javascript\n(async () => {\n  await readFilePromise('src.txt'); //=> <Buffer 48 69 2e>\n  await readFilePromise('src.txt', 'utf8'); //=> 'Hi.'\n  await readFilePromise('src.txt', {encoding: 'base64'}); //=> 'SGku'\n})();\n\n```\n\n## License\n\n[ISC License](./LICENSE) © 2017 Shinnosuke Watanabe\n\n[fs.readfile]: https://nodejs.org/api/fs.html#fs_fs_readfile_path_options_callback\n","repository":{"type":"git","url":"git+https://github.com/shinnn/fs-readfile-promise.git"},"users":{"plusman":true,"xueboren":true,"bhaskarmelkani":true,"davidbwaters":true},"bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"license":"ISC","versions":{"0.0.0":{"name":"fs-readfile-promise","version":"0.0.0","description":"Promise version of fs.readFile","repository":{"type":"git","url":"https://github.com/shinnn/fs-readfile-promise"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint *.js & jscs *.js","test":"tape test.js | tap-spec"},"licenses":[{"type":"MIT","url":"https://github.com/shinnn/fs-readfile-promise/blob/master/LICENSE"}],"files":["index.js","LICENSE"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"eslint":"^0.7.4","jscs":"^1.5.9","require-main":"^0.1.1","tap-spec":"^0.2.0","tape":"^2.14.0"},"gitHead":"09a5992ac2157f3e55a11dd140207f12bf3f7f93","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise","_id":"fs-readfile-promise@0.0.0","_shasum":"0713800b9903390ee723da5c2d48757edd315121","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"dist":{"shasum":"0713800b9903390ee723da5c2d48757edd315121","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-0.0.0.tgz","integrity":"sha512-wZav4YXuLyBHR3gcs5B4Ksb2TSQkB0TMeZwqSxeNqIO65FyZyj7pGKBWi4VeAtLZ/Dl6OUns689I76ijMCaLLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICtTeG1/Zf/nfn4XkOBg8uK/a98jDghy73KsGlck61vnAiEAoR5T3zIxJc1wEBXDNNuuOfmmDLVlbv0Q0hJaZGLnG8I="}]},"directories":{}},"0.1.0":{"name":"fs-readfile-promise","version":"0.1.0","description":"Promise version of fs.readFile","repository":{"type":"git","url":"https://github.com/shinnn/fs-readfile-promise"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint *.js & jscs *.js","test":"tape test.js | tap-spec"},"licenses":[{"type":"MIT","url":"https://github.com/shinnn/fs-readfile-promise/blob/master/LICENSE"}],"files":["index.js","LICENSE"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"eslint":"^0.7.4","jscs":"^1.5.9","require-main":"^0.1.1","tap-spec":"^0.2.0","tape":"^2.14.0"},"gitHead":"3a392a38e6300b60f7c0080503217a6fec8c0f13","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise","_id":"fs-readfile-promise@0.1.0","_shasum":"80d6af14078561dc533fa103df3b69b40fb75e5d","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"dist":{"shasum":"80d6af14078561dc533fa103df3b69b40fb75e5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-0.1.0.tgz","integrity":"sha512-R4DKcuNonlNZcHc1NcBiAbeMBVaCVRvaRc/FE4udgsGw79xV83xRtmyU8tFS3KLGR0vbHw4tgXqKBBmZ8cmMyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE/I8yTXf5Lw5NVDyxG1snGCdd9Y01hLXrIVoFujGIgxAiEAryfTqr/HFmwSI730s9mvj4pIFwCdmfyZXrwYN7Ga4IA="}]},"directories":{}},"1.0.0":{"name":"fs-readfile-promise","version":"1.0.0","description":"Promise version of fs.readFile","repository":{"type":"git","url":"https://github.com/shinnn/fs-readfile-promise"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint *.js & jscs *.js","test":"node test.js | tap-spec","coverage":"istanbul cover test.js","coveralls":"${npm_package_scripts_coverage} && istanbul-coveralls"},"licenses":[{"type":"MIT","url":"https://github.com/shinnn/fs-readfile-promise/blob/master/LICENSE"}],"files":["index.js","LICENSE"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"eslint":"^0.7.4","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.0","jscs":"^1.6.0","require-main":"^0.1.1","tap-spec":"^0.2.1","tape":"^2.14.0"},"gitHead":"bb76ecf2d5ac2c47730d2b6f7007e9ec47524ce6","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise","_id":"fs-readfile-promise@1.0.0","_shasum":"f8adb847a6fa21ffcb3b3ca591fc85d8f358f113","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"dist":{"shasum":"f8adb847a6fa21ffcb3b3ca591fc85d8f358f113","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-1.0.0.tgz","integrity":"sha512-qpXBZ4q9fwW+CXU5MLIdjoob7nXFpNwsHgNmn4+SQcZ1ZIj6Zoi0iVg2FNGWPIEwcecM0Bdqd8VIdGfbnoUOqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEwcDHtO3cUArwELXUKmmF5jYGihhKIx9O4nzq3/EPq1AiBpRnUdTgIsvRjQhaXTNzBgi6Jc2DFFmqXHLKbYOVh+og=="}]},"directories":{}},"1.0.1":{"name":"fs-readfile-promise","version":"1.0.1","description":"Promise version of fs.readFile","repository":{"type":"git","url":"https://github.com/shinnn/fs-readfile-promise"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint *.js & jscs *.js","test":"node test.js | tap-spec","coverage":"istanbul cover test.js","coveralls":"${npm_package_scripts_coverage} && istanbul-coveralls"},"licenses":[{"type":"MIT","url":"https://github.com/shinnn/fs-readfile-promise/blob/master/LICENSE"}],"files":["index.js","LICENSE"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"es6-promise":"^2.0.0"},"devDependencies":{"eslint":"^0.8.2","istanbul":"^0.3.2","istanbul-coveralls":"^1.0.1","jscs":"^1.7.3","tap-spec":"^1.0.1","tape":"^3.0.1"},"gitHead":"f3f42f243c2a74721ddb0586cb346b224c956d74","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise","_id":"fs-readfile-promise@1.0.1","_shasum":"5aaa47dddeecd4181a1f6381160bf832f5448942","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.32","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"dist":{"shasum":"5aaa47dddeecd4181a1f6381160bf832f5448942","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-1.0.1.tgz","integrity":"sha512-Jk2Y0nXEicV4u62RY9q4dXpH58qm7vB0x6U/WPyFkgp8ZQH5OOHo9GNRRxRE1ZXKsdt2eKZHWgdOPuMIodnbxw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCUtiTfYRXpEfkmw1q5hkoW9Dr1KwdRieob5x+hSXkaLQIhANkLBPqRq6rJbspJj72r5Vf/CU9/Aq9Oia+vlJVoDh12"}]},"directories":{}},"1.1.0":{"name":"fs-readfile-promise","version":"1.1.0","description":"Promise version of fs.readFile","repository":{"type":"git","url":"https://github.com/shinnn/fs-readfile-promise"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"jscs *.js && eslint *.js","test":"node test.js | tap-spec","coverage":"istanbul cover test.js","coveralls":"${npm_package_scripts_coverage} && istanbul-coveralls"},"licenses":[{"type":"MIT","url":"https://github.com/shinnn/fs-readfile-promise/blob/master/LICENSE"}],"files":["index.js","LICENSE"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"es6-promise":"^2.0.0","graceful-fs":"^3.0.5"},"devDependencies":{"eslint":"^0.10.1","istanbul":"^0.3.4","istanbul-coveralls":"^1.0.1","jscs":"^1.8.1","tap-spec":"^2.1.1","tape":"^3.0.3"},"jscsConfig":{"preset":"google","maximumLineLength":98},"gitHead":"171f5b5c3c1538e9f79e32cca2f885383424c770","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise","_id":"fs-readfile-promise@1.1.0","_shasum":"5154f8ff88727707d6730a558d25187d7ba90fcf","_from":".","_npmVersion":"2.1.9","_nodeVersion":"0.10.33","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"dist":{"shasum":"5154f8ff88727707d6730a558d25187d7ba90fcf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-1.1.0.tgz","integrity":"sha512-vraUvQGOGoG1HAItmj2iwZrypNaSRLasZNm3IH7R4Cz4/49wLZsx1KhYAU3rY3714u9gSoapj02TLAi7nwxNzw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDEt+XJGZVH9SaClLS088CMMb7Cpqx62Kl9FLqNqnLSDAIgVzzJIQjehVFpX+Apgl7hkmSuPvmyMYJRYhnvXRnswnY="}]},"directories":{}},"2.0.0":{"name":"fs-readfile-promise","version":"2.0.0","description":"Promise version of fs.readFile","repository":{"type":"git","url":"git+https://github.com/shinnn/fs-readfile-promise.git"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint --config node_modules/@shinnn/eslintrc-node/rc.json index.js test.js","test":"node --harmony_arrow_functions test.js","coverage":"node --harmony_arrow_functions node_modules/.bin/istanbul cover test.js","coveralls":"${npm_package_scripts_coverage} && istanbul-coveralls"},"license":"MIT","files":["index.js"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"graceful-fs":"^3.0.7"},"devDependencies":{"@shinnn/eslintrc-node":"^1.0.2","eslint":"^0.21.2","istanbul":"^0.3.14","istanbul-coveralls":"^1.0.2","tape":"^4.0.0"},"gitHead":"84b9e600ba3498722ac0e2368bd0ed2dc66dd4f5","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise#readme","_id":"fs-readfile-promise@2.0.0","_shasum":"10fda59806c82bd0552b0657f68d8fa8836490c9","_from":".","_npmVersion":"2.10.1","_nodeVersion":"2.1.0","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"dist":{"shasum":"10fda59806c82bd0552b0657f68d8fa8836490c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-2.0.0.tgz","integrity":"sha512-0WkAE+Ac/vHAKivIz8oIM7rR1nCh/wgsIB4fGSaqj1f44lCDpO1l2cvb5gKBud2/TMc8R6PMTi3ExO9XHut6pw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCxUs8Ceuh4DN2rVebheCE4YXJ12YQr7UChkB8DpUtdIAIhANTGv2KdbO7+1Zj2yrNI3xwZYFGIho0hRMKlpwDdGIdp"}]},"directories":{}},"2.0.1":{"name":"fs-readfile-promise","version":"2.0.1","description":"Promise version of fs.readFile","repository":{"type":"git","url":"git+https://github.com/shinnn/fs-readfile-promise.git"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint --config node_modules/@shinnn/eslintrc-node/rc.json index.js test.js","test":"node --harmony_arrow_functions test.js","coverage":"node --harmony_arrow_functions node_modules/.bin/istanbul cover test.js","coveralls":"${npm_package_scripts_coverage} && istanbul-coveralls"},"license":"MIT","files":["index.js"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"graceful-fs":"^4.1.2"},"devDependencies":{"@shinnn/eslintrc-node":"^1.0.2","eslint":"^0.24.0","istanbul":"^0.3.17","istanbul-coveralls":"^1.0.3","tape":"^4.0.0"},"gitHead":"4036c226774f54833a96a4a9a1c5a82a3a8e8e3f","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise#readme","_id":"fs-readfile-promise@2.0.1","_shasum":"80023823981f9ffffe01609e8be668f69ae49e70","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.3","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"dist":{"shasum":"80023823981f9ffffe01609e8be668f69ae49e70","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-2.0.1.tgz","integrity":"sha512-7+P9eOOMnkIOmtxrBWTzWOBQlE7Nz/cBx9EYTX5hm8DzmZ/Fj9YWeUY2O9G+Q8YblScd1hyEkcmNcZMDj5U8Ug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3qkGGthkALrkGbtvtmJ5neZJOdU91xuhOLeSTReGwqwIhAJMB589PeVSphsSb2Vh022QxWRccVoxDBFR2ZKgOt6MS"}]},"directories":{}},"3.0.0":{"name":"fs-readfile-promise","version":"3.0.0","description":"Promise version of fs.readFile","repository":{"type":"git","url":"git+https://github.com/shinnn/fs-readfile-promise.git"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint --fix --config @shinnn/node index.js test.js","test":"node --strong_mode test.js","coverage":"node --strong_mode node_modules/.bin/istanbul cover test.js"},"license":"MIT","files":["index.js"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"graceful-fs":"^4.1.2"},"devDependencies":{"@shinnn/eslint-config-node":"^2.0.0","eslint":"^2.10.0","istanbul":"^0.4.3","tape":"^4.5.1"},"gitHead":"b4de3a93bba8ad90fbca0393c0925b1ec3597e61","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise#readme","_id":"fs-readfile-promise@3.0.0","_shasum":"8f66593bc196e4b6c16f4a156c4fcd7cc31cafd3","_from":".","_npmVersion":"3.9.2","_nodeVersion":"5.9.1","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"dist":{"shasum":"8f66593bc196e4b6c16f4a156c4fcd7cc31cafd3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-3.0.0.tgz","integrity":"sha512-3pemX3h80rSC7GWswFfUJxrV7+52+zmw77PnGxG7v0hQTomZ+GXbhhPZnbTqkKNAvXsAjMQddn10FgbVWLwjkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDXJ2myTwWHHLEKzTcYooZyeuJyZA/PqNYZN1Ul6r/mdAiEAqz8dK4yQLhoBPO4mqrH86/546CdCtg13AOoSnA9rCJk="}]},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/fs-readfile-promise-3.0.0.tgz_1464172904278_0.6308276683557779"},"directories":{}},"3.0.1":{"name":"fs-readfile-promise","version":"3.0.1","description":"Promise version of fs.readFile","repository":{"type":"git","url":"git+https://github.com/shinnn/fs-readfile-promise.git"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint --fix --format=codeframe index.js test.js","test":"nyc node test.js"},"license":"ISC","files":["index.js"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"@shinnn/eslint-config-node":"^5.0.0","eslint":"^4.14.0","nyc":"^11.4.1","tape":"^4.8.0"},"eslintConfig":{"extends":"@shinnn/node"},"gitHead":"13afdb1ef6c33c34288f892777852d252a9bce6d","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise#readme","_id":"fs-readfile-promise@3.0.1","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"dist":{"integrity":"sha512-LsSxMeaJdYH27XrW7Dmq0Gx63mioULCRel63B5VeELYLavi1wF5s0XfsIdKDFdCL9hsfQ2qBvXJszQtQJ9h17A==","shasum":"d0d307b7f6aedfc920c31fa6e5712efaa297c958","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-3.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCo1ID37Bs5XLNWyDXeczeU2feYpamo5yNhkK9EV+9B3gIhAPl0Kk+PxbKVegLm5dLl1V0JhIfMpMMQl0VVJDKJNBKv"}]},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fs-readfile-promise-3.0.1.tgz_1514264045838_0.6409217661712319"},"directories":{}},"4.0.0-0":{"name":"fs-readfile-promise","version":"4.0.0-0","description":"Promise version of fs.readFile","repository":{"type":"git","url":"git+https://github.com/shinnn/fs-readfile-promise.git"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint --fix --format=codeframe index.js test.js","test":"nyc node test.js"},"license":"ISC","files":["index.js"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"@shinnn/eslint-config-node":"^5.0.0","eslint":"^4.14.0","nyc":"^11.4.1","tape":"^4.8.0"},"eslintConfig":{"extends":"@shinnn/node"},"gitHead":"0e2479fa9020c7d75fb1c5980b0b6c34f069a99f","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise#readme","_id":"fs-readfile-promise@4.0.0-0","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"dist":{"integrity":"sha512-7pnr9bOjrQgJQB/qqnxEJPWFujILRDyXcmGTmEbxODzDZ5cWn+6q8QG+EAjNYR1VBVH3EyE8kbMBMAa9MzXHfA==","shasum":"f2340f133f38321090044927a7d356b358d131d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-4.0.0-0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHNKuhb1fYxiOJ3OU3r8/r8afDhgFNpsW1c00H3O9uLMAiEAnzUcQEHOrnopF0zQEkcYSjL1JBFfAaAUmh7d7OqHzBI="}]},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fs-readfile-promise-4.0.0-0.tgz_1514265931507_0.3317985332105309"},"directories":{}},"4.0.0-1":{"name":"fs-readfile-promise","version":"4.0.0-1","description":"Promise version of fs.readFile","repository":{"type":"git","url":"git+https://github.com/shinnn/fs-readfile-promise.git"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint --fix --format=codeframe index.js test.js","test":"nyc node test.js"},"license":"ISC","files":["index.js"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"@shinnn/eslint-config-node":"^5.0.0","eslint":"^4.14.0","nyc":"^11.4.1","tape":"^4.8.0"},"eslintConfig":{"extends":"@shinnn/node"},"gitHead":"11e4a825921d69e6b301964fc97a850c3d034642","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise#readme","_id":"fs-readfile-promise@4.0.0-1","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"dist":{"integrity":"sha512-2nns0Z8eLKBXzy50++DQOZYl/ga/agO9o2EvJn9YfB4pG5pSXAecYX0BUIIbMf4sXKAkEVrHFsnbauRs2Pz9xA==","shasum":"5027b832454d005c0cdb0f4f36f1783614c97721","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-4.0.0-1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPKjtQ6B9uibr785c3yZ8hwE41spitpbt5oLIYdUXL8QIgRT1/D3u3e8luFtE+QHJIx352d3pf0fXCxUTHVjH3AxQ="}]},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fs-readfile-promise-4.0.0-1.tgz_1514332697950_0.8406680144835263"},"directories":{}},"4.0.0-2":{"name":"fs-readfile-promise","version":"4.0.0-2","description":"Promise version of fs.readFile","repository":{"type":"git","url":"git+https://github.com/shinnn/fs-readfile-promise.git"},"author":{"name":"Shinnosuke Watanabe","url":"https://github.com/shinnn"},"scripts":{"pretest":"eslint --fix --format=codeframe index.js test.js","test":"nyc node test.js"},"license":"ISC","files":["index.js"],"keywords":["fs","read","file","promise","promises","then","thenable"],"dependencies":{"graceful-fs":"^4.1.11"},"devDependencies":{"@shinnn/eslint-config-node":"^5.0.0","eslint":"^4.14.0","nyc":"^11.4.1","tape":"^4.8.0"},"eslintConfig":{"extends":"@shinnn/node"},"gitHead":"c63fddf061a599395ac951d1974a881675994579","bugs":{"url":"https://github.com/shinnn/fs-readfile-promise/issues"},"homepage":"https://github.com/shinnn/fs-readfile-promise#readme","_id":"fs-readfile-promise@4.0.0-2","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"snnskwtnb@gmail.com"},"dist":{"integrity":"sha512-qCms5XbszxMrfsFrtoqiR4zUkiLSeu2xs5zlNIa283Hfehh5zA7H4AeYM13uU1cgTs8BhQNOdC1ZaM6kymCT3A==","shasum":"6da2493aa51e1cba55d18adb2312e75e27208801","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fs-readfile-promise/-/fs-readfile-promise-4.0.0-2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHkcRYsUAvsgwkwD7rpCLEp6IMKT8Avuvvr46u9f5OGPAiEAm45ybJmlq2zNWc215nKvka+RO5+YvKjgAIjjUgRWHsA="}]},"maintainers":[{"name":"anonymous","email":"snnskwtnb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fs-readfile-promise-4.0.0-2.tgz_1514354156396_0.4725236212834716"},"directories":{}}},"name":"fs-readfile-promise","time":{"modified":"2022-06-18T03:54:57.870Z","created":"2014-08-06T15:31:12.654Z","0.0.0":"2014-08-06T15:31:12.654Z","0.1.0":"2014-08-07T23:13:03.550Z","1.0.0":"2014-09-07T13:13:51.880Z","1.0.1":"2014-10-19T01:09:00.205Z","1.1.0":"2014-12-07T11:57:10.937Z","2.0.0":"2015-05-30T04:19:35.089Z","2.0.1":"2015-07-07T20:23:49.446Z","3.0.0":"2016-05-25T10:41:46.888Z","3.0.1":"2017-12-26T04:54:05.964Z","4.0.0-0":"2017-12-26T05:25:31.609Z","4.0.0-1":"2017-12-26T23:58:18.049Z","4.0.0-2":"2017-12-27T05:55:56.461Z"},"readmeFilename":"README.md","homepage":"https://github.com/shinnn/fs-readfile-promise#readme"}