{"maintainers":[{"email":"feross@feross.org","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"thlorenz10@gmail.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"blackhole@livebox.sh","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"javascript@yosh.is","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"renee@kooi.me","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"shtylman@gmail.com","name":"anonymous"},{"email":"lukechilds123@gmail.com","name":"anonymous"},{"email":"raynos2@gmail.com","name":"anonymous"}],"keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"dist-tags":{"latest":"2.0.2"},"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"description":"browserify fs.readFileSync() static asset inliner","readme":"# brfs\n\nfs.readFileSync() and fs.readFile() static asset browserify transform\n\n[![build status](https://secure.travis-ci.org/browserify/brfs.png)](http://travis-ci.org/browserify/brfs)\n\nThis module is a plugin for [browserify](http://browserify.org) to parse the AST\nfor `fs.readFileSync()` calls so that you can inline file contents into your\nbundles.\n\nEven though this module is intended for use with browserify, nothing about it is\nparticularly specific to browserify so it should be generally useful in other\nprojects.\n\n# example\n\nfor a main.js:\n\n``` js\nvar fs = require('fs');\nvar html = fs.readFileSync(__dirname + '/robot.html', 'utf8');\nconsole.log(html);\n```\n\nand a robot.html:\n\n``` html\n<b>beep boop</b>\n```\n\nfirst `npm install brfs` into your project, then:\n\n## on the command-line\n\n```\n$ browserify -t brfs example/main.js > bundle.js\n```\n\nnow in the bundle output file,\n\n``` js\nvar html = fs.readFileSync(__dirname + '/robot.html', 'utf8');\n```\n\nturns into:\n\n``` js\nvar html = \"<b>beep boop</b>\\n\";\n```\n\n## or with the api\n\n``` js\nvar browserify = require('browserify');\nvar fs = require('fs');\n\nvar b = browserify('example/main.js');\nb.transform('brfs');\n\nb.bundle().pipe(fs.createWriteStream('bundle.js'));\n```\n\n## async\n\nYou can also use `fs.readFile()`:\n\n``` js\nvar fs = require('fs');\nfs.readFile(__dirname + '/robot.html', 'utf8', function (err, html) {\n    console.log(html);\n});\n```\n\nWhen you run this code through brfs, it turns into:\n\n``` js\nvar fs = require('fs');\nprocess.nextTick(function () {(function (err, html) {\n    console.log(html);\n})(null,\"<b>beep boop</b>\\n\")});\n```\n\n# methods\n\nbrfs looks for:\n\n* `fs.readFileSync(pathExpr, enc=null)`\n* `fs.readFile(pathExpr, enc=null, cb)`\n* `fs.readdirSync(pathExpr)`\n* `fs.readdir(pathExpr, cb)`\n\nInside of each `pathExpr`, you can use\n[statically analyzable](http://npmjs.org/package/static-eval) expressions and\nthese variables and functions:\n\n* `__dirname`\n* `__filename`\n* `path` if you `var path = require('path')` first\n* `require.resolve()`\n\nJust like node, the default encoding is `null` and will give back a `Buffer`.\nIf you want differently-encoded file contents for your inline content you can\nset `enc` to `'utf8'`, `'base64'`, or `'hex'`.\n\nIn async mode when a callback `cb` is given, the contents of `pathExpr` are\ninlined into the source inside of a `process.nextTick()` call.\n\nWhen you use a `'file'`-event aware watcher such as\n[watchify](https://npmjs.org/package/watchify), the inlined assets will be\nupdated automatically.\n\nIf you want to use this plugin directly, not through browserify, the api\nfollows.\n\n``` js\nvar brfs = require('brfs')\n```\n\n## var tr = brfs(file, opts)\n\nReturn a through stream `tr` inlining `fs.readFileSync()` file contents\nin-place.\n\nOptionally, you can set which `opts.vars` will be used in the\n[static argument evaluation](https://npmjs.org/package/static-eval)\nin addition to `__dirname` and `__filename`.\n\n`opts.parserOpts` can be used to configure the parser brfs uses,\n[acorn](https://github.com/acornjs/acorn#main-parser).\n\n# events\n\n## tr.on('file', function (file) {})\n\nFor every file included with `fs.readFileSync()` or `fs.readFile()`, the `tr`\ninstance emits a `'file'` event with the `file` path.\n\n# usage\n\nA tiny command-line program ships with this module to make debugging easier.\n\n```\nusage:\n\n  brfs file\n \n    Inline `fs.readFileSync()` calls from `file`, printing the transformed file\n    contents to stdout.\n\n  brfs\n  brfs -\n \n    Inline `fs.readFileSync()` calls from stdin, printing the transformed file\n    contents to stdout.\n\n```\n\n# install\n\nWith [npm](https://npmjs.org) do:\n\n```\nnpm install brfs\n```\n\nthen use `-t brfs` with the browserify command or use `.transform('brfs')` from\nthe browserify api.\n\n# gotchas\n\nSince `brfs` evaluates your source code *statically*, you can't use dynamic expressions that need to be evaluated at run time. For example:\n\n```js\n// WILL NOT WORK!\nvar file = window.someFilePath;\nvar str = require('fs').readFileSync(file, 'utf8');\n```\n\nInstead, you must use simpler expressions that can be resolved at build-time:\n\n```js\nvar str = require('fs').readFileSync(__dirname + '/file.txt', 'utf8');\n```\n\nAnother gotcha: `brfs` does not yet support ES module `import` statements. See [brfs-babel](https://github.com/Jam3/brfs-babel) for an experimental replacement that supports this syntax.\n\n# license\n\nMIT\n","repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"users":{"parroit":true,"tpolyak":true,"esundahl":true,"niclupien":true,"evkline":true,"h02e56":true,"wenbing":true,"winsonwq":true,"goblindegook":true,"frogtan":true,"paulcpederson":true,"jmversteeg":true,"pengzhisun":true,"webnicola":true,"hellopath":true,"inflowmotion":true,"adrienhobbs":true,"koulmomo":true,"markoni":true,"seaseng":true,"bryanwood":true,"langri-sha":true,"monjer":true,"seangenabe":true,"erikvold":true,"hexagon6":true,"templarundead":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/substack/brfs/issues"},"license":"MIT","versions":{"0.0.0":{"name":"brfs","version":"0.0.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.3.1"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"brfs@0.0.0","dist":{"shasum":"cad4510eec1e0dea2ac6b55d41e8d49617070cd2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.0.tgz","integrity":"sha512-d3zTa76RamXt4AowDFoY+AALtOM2olA7o2TEyJozBv7wL/lJdW8ydPeXQds6HLd/++K2wnS4A93xotONpXEdeg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHeWGMekkUqb+y9o3z8ZNqmLWl7SaTxTStiYN1g0j7KuAiANVBSjhJ5eYyJBQI07UFPSMUorwg2uyLQJfnhHYybx2w=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.1":{"name":"brfs","version":"0.0.1","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.3.1"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"brfs@0.0.1","dist":{"shasum":"00875bf0024bf5a027c50aebbb417cf21d1d6331","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.1.tgz","integrity":"sha512-i6Xobhhjy+5Jx4sPvyERVVj2+5jgomDLMh0gBGmE2OC1qPbAmc7vtPDeo311U4xtmcU8idnTfTD42kkrrbOHdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCpkAKsfyrz7vkRALG0uIOc4V3yXSWbjRlicyOWBEjgzgIgdCmKWubSNZXmd05LcDC8XSXGw6hXeH4H7WXw6cni1o0="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.2":{"name":"brfs","version":"0.0.2","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.3.1"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"brfs@0.0.2","dist":{"shasum":"71c10ad094139e7438de3e29d928d781af8934eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.2.tgz","integrity":"sha512-EwdK223WYnDXz5yJfQbm5gktQvSzUiPQ6dCQ7VQ6VurYbgwGvEXkbopuE266NX69BJWZ53tWpUBJRZzVUsh9ZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCWJdF6xSUWAlMzCB8wxXHb2nltEhDBzWi6RTRw2yiDVgIhANcrHVQyMIV7xtLlu1Zyj1lcHNbVwdG/DnVgtrEArIH9"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.3":{"name":"brfs","version":"0.0.3","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.3.1"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"brfs@0.0.3","dist":{"shasum":"6838007d14108dd6ea7b17c5f877117193b83600","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.3.tgz","integrity":"sha512-mkGBpb7UPxqL/Sl77F05uQH38iQjBxjYbwEkPYZju6hvpu0BQ9u+aFaUH2+b+S1IE0MOaMExTGVrReOvYwlVIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGIjSmDeu3nqD2WLAF9ObBJABtucFV1JbPvlbjrwa/20AiBnPnvm6sFlBBGFNsSJZfwODyXuokCIFKSr5pwF0M/tSw=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.4":{"name":"brfs","version":"0.0.4","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.3.1"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"brfs@0.0.4","dist":{"shasum":"89bda2124e024be1f5356d896dddd327a6951d34","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.4.tgz","integrity":"sha512-SPv39bpd5fSCadNVwg3jOn+WSmemf8vj9pNmjN8yC/83nm9JH+jMdrAy+15X5+iZSXRzNci7/Ngv/wv0KMGS7Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFWVHz1hSzLvicoHP7A+RBkHhopdtRfHHSohpPTbZ8SKAiBmBPock0ro1X5kDWyKxOfVVnWkTmElAC9jU0bsaBQJGA=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.5":{"name":"brfs","version":"0.0.5","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.3.1"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"brfs@0.0.5","dist":{"shasum":"73508420d2fb5bddd7e43eb9643277e2e97c6342","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.5.tgz","integrity":"sha512-DhP7ram5tSG4ySPJH8k/FzmhCpvQMWfGf9MOWsnlWEJCMLV/y846Yj/V6Xjwb1kdREzz7BBujXHYgB0jUjuwqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFEYvY/+sXXI7oC0apPh6ppDL5njcVp0HI5szk+J1h9OAiAitZgJU10Xzpir5uEqRWUPqg9TnUiVwOzPiAJpJrRrxA=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.6":{"name":"brfs","version":"0.0.6","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.22.0","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@0.0.6","dist":{"shasum":"2b78d651c9240325a7921b03853a93d80dba889e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.6.tgz","integrity":"sha512-xyglVVNZ9e74V4gDXKrJCbDX6sYxF43SnwpXimV92FOzSiU1RsYLPbwePMRRD/VJd8rU1Z30QHoKbhNSFGhZ9A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICRwe62gO2OqHMxj85UohULB4sUcMVt6L0F2QmvPOMEAAiEAxD3u7fgnwQGuYtTplgTjHqH/0OozJcCNEL0lPzv0FOE="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.7":{"name":"brfs","version":"0.0.7","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.22.0","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@0.0.7","dist":{"shasum":"e352f594781f668885951c2ce2c33d97430d170f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.7.tgz","integrity":"sha512-xyDdgDSfUigJOGToCcXmp72I3qCZ2xx/F6YQgYK80sj2t83nW4VcQQZDQ6SOJOkDd8jreblJsrNLjtijjG2aOQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCZD5NmEDUfmyCN4mt99CBVJUVNit2aTMFr+gU2HES3XAIgdO6HQDbdcILY9mbbobW+w6PrCZ8UGSBtfli1zX8vxiY="}]},"_from":".","_npmVersion":"1.3.7","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.8":{"name":"brfs","version":"0.0.8","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.22.0","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@0.0.8","dist":{"shasum":"e4377a177638a4b0520901bb134491dd7e38a386","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.8.tgz","integrity":"sha512-HcbLI18+kw21TjSZ9SmdmuWOXZ6mBPJPtdsTpKCEayMqKbwaAzBvsn9wybSAXNz1L28lIxnH1i2Ii7/8HabMgQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtWi9nBv3rNul/0TEV4uoRhu27N52Q5/D8uKHwmOg79AIgL6kkQ+Wa4ZbWz807BbaD2jkUq+2TYAS6bGjGKwBoVLM="}]},"_from":".","_npmVersion":"1.3.7","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.0.9":{"name":"brfs","version":"0.0.9","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~2.22.0","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@0.0.9","dist":{"shasum":"92455bc36fbbe1267a37967bdfa9571088196aba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.0.9.tgz","integrity":"sha512-5bjo0XG6pPGTFJsS4rtvP1vvwLp3UstdF062l10RKcfG60+izXak0DFcfQwMtBQNGlFm588mM2WvD02hJErVYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQbbRdznsW9/LTj/dTqkab2yhJhr2xOHVEP6K2SnIJBgIhANTHdXi+VIjyfiLjF9ICVlq4waak+RlJcN7NQSD6jHcp"}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.1.0":{"name":"brfs","version":"0.1.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~3.25.2","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@0.1.0","dist":{"shasum":"4bee27ad9e27f951ef30acf371db702d3dd60be0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.1.0.tgz","integrity":"sha512-LndPRvNO6roEunM+u5F1mmThJixoCwnALERySu/DF6TukgGXyQH1HMTj/w9J7EZCV+BlFr/gU03HCTkea1PxYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEl6IIh19RrkHmTc312yQRtYiHhRylP00sa84ELl35+AIgJMjuXM67wRBOAIdSauue4kfXzIO0kUghx0eTMVGuvmI="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.0":{"name":"brfs","version":"0.2.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~3.25.2","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@0.2.0","dist":{"shasum":"a5f9ff2082866be25b3e7e603a67b95509c96e6d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.2.0.tgz","integrity":"sha512-eRun5TqMi8DVZghyaCFpxEnKTKh16rjBENWdAUYwDaZbLIwIBojn694qmPSRws4AcqdqP36ipNBgsnbbwU/Ohw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBhi4E9BOXbWezBzDzejI264MhrlTt0EbivxcC1ElsRbAiEAtHACvmVtI/r0og4TJ0Q4QuQN+o2QF2GTCsjrql5aHn8="}]},"_from":".","_npmVersion":"1.4.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.1":{"name":"brfs","version":"0.2.1","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~3.25.2","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@0.2.1","dist":{"shasum":"e6200c214bfef6fb73bdfbdb80f54f431f1148c7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.2.1.tgz","integrity":"sha512-zBQgw2UrkmJNzxznccbb1W6vHz0jY9yOj8vw9dRUcz6Uy0yX5Z/OWkF2qHxF3ztEThi7AdNnfh+dZMkWU9LCqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtPQnGi6TvAk5V76513CmILSf2Lsu361rJH2ydmZ1hlwIhAPBBdRNRIe9L2CK3StWFBV83jV0y8CRlFwluYZuvxzY1"}]},"_from":".","_npmVersion":"1.4.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.2":{"name":"brfs","version":"0.2.2","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~3.25.2","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@0.2.2","dist":{"shasum":"bbdda69c94c2c616015e8946bac7c2ea2100e62e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-0.2.2.tgz","integrity":"sha512-rs/vMwD+TISFQIQwgQaSEL9TOIPMGLg8OL7Ec3C4YznuR8n4eb7aU62hUwmUaj29tk/0Z75aS58tT6zoM0gcaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHvX1+DKsQ8VQ0GqIESd0u7FBmDI/yXVGXWGSgr47SYsAiEAr6PwaCfUEwt7b0iOj2mepLPVfl7DlK3vLTQi/rsO278="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.0.0":{"name":"brfs","version":"1.0.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~3.25.2","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.0.0","dist":{"shasum":"04ae0a6c70d6563cf14bca8a42db80bd8292a5d7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.0.0.tgz","integrity":"sha512-A04NppyCT4YRfV4osKXQRv0ItpleFgujjOxTvmwkadfGCuwzHxHBwwbX/UYmN5l5sI+u25fUZh0Eis1Np3HNAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE0MTaE9na/VWkMCZSslgl8/qRUFaBoPQjJEEYLiRsY9AiEAqW0dfVpGz/1Rae/ChKCGeQgm41S3/0wbBINrnPT8/JE="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.0.1":{"name":"brfs","version":"1.0.1","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~3.25.2","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.0.1","dist":{"shasum":"1e445500c7d4bdee83612974122eead96396602c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.0.1.tgz","integrity":"sha512-+BsI/9TPf0x+m8JoBgmpKW1V2cvJie8cLrCqC0my9b5KknGFhi5dZKLqJEjpxuUvMba7bgbKIOEv0YgFLNlCLg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD//aF5ygh+D2K1eoJA2QnDwQNbLP1cIgAbiaZ5m3G6ZQIgXfQmUBqTcWqEemSVZQbh9HQKbIQPNFXBM3P5vxb/fTI="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.0.2":{"name":"brfs","version":"1.0.2","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"through":"~2.2.0","falafel":"~0.1.6","escodegen":"0.0.17"},"devDependencies":{"tap":"~0.4.0","browserify":"~3.25.2","concat-stream":"~1.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.0.2","dist":{"shasum":"0a6bf1a7d74b1f2504f6bc932b9cc4d2c1aeb7fa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.0.2.tgz","integrity":"sha512-QWDVmG1BPVt5FALr+P0oFRHJfMaQqRrvfrNX0sBpkCkIIR4jJoTPmhEiq1VLW1EzKyheYZrFqZOVZa0V5/F9KA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZOTSu0KKxqj9X/TG3PayTCokmCAW9TDM/z9FnVQ/4hgIgYTQZKt37Ysq3/8tgW/Z3mQCO5y4lTcrDGRdQrQIpqXA="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.1.0":{"name":"brfs","version":"1.1.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^0.0.0","static-module":"^0.0.2","through2":"^0.4.1"},"devDependencies":{"browserify":"^3.44.1","concat-stream":"^1.4.5","tap":"^0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.1.0","dist":{"shasum":"ee4bbde6472d5e6f653a77b462192224d748fa82","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.1.0.tgz","integrity":"sha512-w2UtWz2QwDz6GRhVzvqWqFcxnV7g+6DmdVbDvNnJbPeJ4vMvIPruP6dlqb/UjXCCN5NKiFPIn2uTlU8UrHfKUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDuuB0lr1UlDOp/1A6ZHhuSXrQuIdbX+hOq7wpU0hFKrQIgP0mmgYIgrvztgddkRamVuI/wTZnDho3t+Cht4Y2N9bs="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.1.1":{"name":"brfs","version":"1.1.1","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"~0.0.0","static-module":"~0.0.3","through2":"~0.4.1"},"devDependencies":{"browserify":"~3.44.1","concat-stream":"~1.4.5","tap":"~0.4.8","through":"~2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.1.1","_shasum":"d11b0f922ec0bb38fb2a720dc5be2349496dbed7","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"d11b0f922ec0bb38fb2a720dc5be2349496dbed7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.1.1.tgz","integrity":"sha512-gJqbfr4XZRP2fNJQqPHMp3BAEYP47claHy/kkrQ0MxCsyUgZHS0A5oqEPVsFqotltR0ED96I7I8fhMGbZEpsxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDb+bnlaQDBLh30dI0vtrug2Zi8jMaL1rZrW79ZPsAONgIhANc1o4GyQBgcb6qvkJJ3prHmfaoKrRQy6n4KMoLZiZLE"}]},"directories":{}},"1.1.2":{"name":"brfs","version":"1.1.2","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"~0.0.0","static-module":"^1.0.0","through2":"~0.4.1"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.4.5","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"b8b5aef6a59b3e5b8962da6f6c0e85042263e482","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.1.2","_shasum":"b41004190fe3c2b1c04fa08ffb69673203ad5472","_from":".","_npmVersion":"1.4.15","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"b41004190fe3c2b1c04fa08ffb69673203ad5472","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.1.2.tgz","integrity":"sha512-plGK+exKk1vyd3o2wEsRfx9Y2ZFpwyb85zZC/vvBDsL9MkwKC7ttMlDvddaY1vZBS69m/4XfTmx3C572KP7p3Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZVPsM0QWsSbWAZdX1berPwCB0PVnClARyNYAlujc1kwIgb/EpfzcxH0mMrOXCTprIqSC819hUBkIRB6Q2BJwkE5A="}]},"directories":{}},"1.2.0":{"name":"brfs","version":"1.2.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"~0.0.0","static-module":"^1.0.0","through2":"~0.4.1"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.4.5","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"0c95244d2b328a4aca1ec7b3afe77aee8c4a10cd","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.2.0","_shasum":"9c486f9043e87dbe8f28e279dfd65c3878111010","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"9c486f9043e87dbe8f28e279dfd65c3878111010","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.2.0.tgz","integrity":"sha512-Kn05wZY6aHjvz0qv+Nl72mQvV6/nlDVg5poznwi2UZoOwVvRd6vWL1s2CALp7gNyVEypF+XaaVGqyAU8rSPVJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMLJTLpQ9/XIOkC7fAnW6UYloUX1QNtROfYitC60UWCgIhAOvkXHCxWfAOi2+UGFjjXohbkxVgFmSXImWwYPL0H8ZL"}]},"directories":{}},"1.3.0":{"name":"brfs","version":"1.3.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"~0.0.0","static-module":"^1.1.0","through2":"~0.4.1"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.4.5","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"9066d1638534ea1d39ca1b4ad79f8bddfa3747a5","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.3.0","_shasum":"442b1c2a689dd622739d5054ee0aec18ac2c2bc4","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"442b1c2a689dd622739d5054ee0aec18ac2c2bc4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.3.0.tgz","integrity":"sha512-44b3/mRgPQObPtd7BD4/Ap0gyvhyDUf3dOU6Fx5HdrZLKwfEOtdOtepRnxSHtWxzkKsvRYpueMJdUk2Wmq79IQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCYucPACiHZDQP9+TPhbCXuKDl6loZZhOw3SxtYoc4W7AIge9RGJrEhYVUiVHAHT8uSRKgWbnnpuhoU6gSLYnE528w="}]},"directories":{}},"1.4.0":{"name":"brfs","version":"1.4.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"~0.0.0","resolve":"^1.1.5","static-module":"^1.1.0","through2":"~0.4.1"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.4.5","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"5e977999074eca120c93659dd971c203e78d6857","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.4.0","_shasum":"63f9cecfce6be5a7efdf134aaa26ae934d6ed138","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"63f9cecfce6be5a7efdf134aaa26ae934d6ed138","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.4.0.tgz","integrity":"sha512-nTjAFiQZjDaS0kzUSa5p3Pzp4kHO2171hSx0GHfbhQQFYk6heuxSfSAgYLZPusQIde5I9klryu3NNVl/DnFPlw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEDen4CVeeEXFNuYZ5M7hnxHgQIRJfPfmPDdC7KAbprpAiEAtr20qCwajE3EHJ1oYpaa4pT7XV212JnGgcGtYe/g9sw="}]},"directories":{}},"1.4.1":{"name":"brfs","version":"1.4.1","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^1.1.0","through2":"^2.0.0"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.4.5","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"5c85e444e8248668767d76324a174a3be0646c3a","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.4.1","_shasum":"afe45692d509bc021d70e258fb0ec4e81fbbad06","_from":".","_npmVersion":"3.2.2","_nodeVersion":"2.4.0","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"afe45692d509bc021d70e258fb0ec4e81fbbad06","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.4.1.tgz","integrity":"sha512-IRsWtv/ZrXByeAqjjlPsXiarLDF60TND1WMWOpgTRhzY6qP6f3+P8SBY3XARjotonB9yEBQ/cfr4UaQfercC5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEoA3th++kmd+j9miP5cwCqfHFUzytwDWvsxFgr/O1UsAiEA8wWQXy1mBeteOHuQ7amNYGfs/lyUHf++zCF0yfFNwy4="}]},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.4.2":{"name":"brfs","version":"1.4.2","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^1.1.0","through2":"^2.0.0"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.4.5","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"012e5399a995272850cc30a4a9d70972839c5785","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.4.2","_shasum":"a6be986a7b41be1297834b7a6344691927299b57","_from":".","_npmVersion":"3.4.1","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"a6be986a7b41be1297834b7a6344691927299b57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.4.2.tgz","integrity":"sha512-ZND7e425OMGa4wYzirXypp0WfO+prV8cxdbBmRuqEFc509qHr5euB1JrMdD24HYRO5ngE9GQjI+Rnm9ya8Nqcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCruPshialU6LFx48uwRxUxGb4O+8u7L7k+8W5gPM64EwIhAPOf0FYZdS/7anvi0GZPxMRYu/fwvSozmGsFt2z+/y/c"}]},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.4.3":{"name":"brfs","version":"1.4.3","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^1.1.0","through2":"^2.0.0"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.4.5","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"71730423fefafecaf35fb441e36e04590a8435ed","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.4.3","_shasum":"db675d6f5e923e6df087fca5859c9090aaed3216","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"dave.des@gmail.com"},"dist":{"shasum":"db675d6f5e923e6df087fca5859c9090aaed3216","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.4.3.tgz","integrity":"sha512-fHHsBNkim3FJNT4j5GsfcCEEq5nZAZxKQl2L1haCkh41Q3+Ib0aX23PTCjWOGis/Ywx6IQ/OY/xj31z/k3j4qw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFuhmPGZapmJgf/ZVEFlJ9mKf+OBy9TOID2f7dXimCezAiEA7zuQU4rF3P/QAwYo9/6M26GRhTL0AktdsykHcaBPBRU="}]},"maintainers":[{"name":"anonymous","email":"dave.des@gmail.com"},{"name":"anonymous","email":"substack@gmail.com"}],"directories":{}},"1.4.4":{"name":"brfs","version":"1.4.4","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^2.1.1","through2":"^2.0.0"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.6.0","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"5bad47b820e7cabd607f6ceceb1fab1971063536","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.4.4","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"anonymous","email":"rene@kooi.me"},"dist":{"integrity":"sha512-rX2qc9hkpLPiwdu1HkLY642rwwo3X6N+ZPyEPdNn3OUKV/B2BRP7dHdnkhGantOJLVoTluNYBi4VecHb2Kq2hw==","shasum":"fc316bc4880180fa8ee25bcaab65f86910ce1dd5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.4.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC4uJ93wJEZ79m08nszjxQaS/PhYDR3aM+HIao2BNZjsAiAvIMoUUAhneDFlcoz8YrezzNFFrVz6wvKx3PkiIkO6RA=="}]},"maintainers":[{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/brfs-1.4.4.tgz_1517340744753_0.8826852352358401"},"directories":{}},"1.5.0":{"name":"brfs","version":"1.5.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^2.2.0","through2":"^2.0.0"},"devDependencies":{"browserify":"^4.2.0","concat-stream":"^1.6.0","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"f747f65f74e5813049ef3c66fa666465d826b79f","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.5.0","_npmVersion":"5.7.1","_nodeVersion":"9.6.1","_npmUser":{"name":"anonymous","email":"rene@kooi.me"},"dist":{"integrity":"sha512-PscWJn5IGjcK5g5lqEeRPYJ5efZk93YbopLu6UXZcb9dPZUfMN/UMyyT/tddpi7A9yIDM9TEdCOA3A4WGST1hg==","shasum":"a3822ed7a65723e056f89ff4b58e8abc63658f03","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.5.0.tgz","fileCount":60,"unpackedSize":28692,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBkMgwe1QJVM/H2e6rcNGovvzc54x8+CUxJk9O00xpKgIhAJWe1QUmd+BRhRcF3mNeXyC5QWBraF7m+TGGhxU+r2Px"}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/brfs_1.5.0_1519832571386_0.818348629868143"},"_hasShrinkwrap":false},"1.6.0":{"name":"brfs","version":"1.6.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^2.2.0","through2":"^2.0.0"},"devDependencies":{"browserify":"^16.1.1","concat-stream":"^1.6.0","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"dd37668dc7d156bf44b2f8f66ffe1b3755cafc28","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.6.0","_npmVersion":"5.8.0","_nodeVersion":"9.11.1","_npmUser":{"name":"anonymous","email":"rene@kooi.me"},"dist":{"integrity":"sha512-R0zIxE+c0Y+3vjdwLT0LJ5GJ8z684oG3FDWNnx4stHzbajBiPIWnhPmF+b0/G34xPAibsSV/ny7abmppmmPKmw==","shasum":"d995821e94a1b16d42276d4e26c4afdda6b2a572","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.6.0.tgz","fileCount":60,"unpackedSize":28863,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAx3LY2gIGRXKwEmqhm/Dsg2UMJkFcPGKg5YZizOhZDqAiEAx090pFSDU3Ub6M+BAbFctXXOYNUC7pgjJ7uUljtoWZ4="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/brfs_1.6.0_1523432239260_0.15140524492862695"},"_hasShrinkwrap":false},"1.6.1":{"name":"brfs","version":"1.6.1","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^2.2.0","through2":"^2.0.0"},"devDependencies":{"browserify":"^16.1.1","concat-stream":"^1.6.0","tap":"~0.4.8","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"548b566818953d558d4acd804d39c30540101a68","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@1.6.1","_npmVersion":"5.8.0","_nodeVersion":"9.11.1","_npmUser":{"name":"anonymous","email":"rene@kooi.me"},"dist":{"integrity":"sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ==","shasum":"b78ce2336d818e25eea04a0947cba6d4fb8849c3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-1.6.1.tgz","fileCount":60,"unpackedSize":29206,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGbB4RARLNsZP/RZ97LXSEpsR3g+jJOj0IzD9seHF677AiBRlFs+ghV8fw1AIb+1hjUz4iXr9j8WlsAPRHd1Uhm7eg=="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/brfs_1.6.1_1523433646501_0.1391379941425508"},"_hasShrinkwrap":false},"2.0.0":{"name":"brfs","version":"2.0.0","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^3.0.0","through2":"^2.0.0"},"devDependencies":{"browserify":"^16.1.1","concat-stream":"^1.6.0","tap":"^10.7.3","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"7e130647d81a495ff3f4cc734887041da4bf1927","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@2.0.0","_npmVersion":"6.1.0","_nodeVersion":"10.5.0","_npmUser":{"name":"anonymous","email":"renee@kooi.me"},"dist":{"integrity":"sha512-nwsQAN0kzJEh0+E57cINc2S74tFHiJK+DOP55HrYs7aaKV0wTar9BYV64paobzaMpSo+Ktf1qfKFip74BtErkQ==","shasum":"7e07e68ad01592d5a372f0da56456c13d5da57e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-2.0.0.tgz","fileCount":63,"unpackedSize":30372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbLNoLCRA9TVsSAnZWagAAhWwP/j4bvWdwzafgDFQIbUaH\nr3c51+pTm91hy+4hyAI7/cKZw7jjIlKoo+/wfcvI0ToTlSBnmkv0wDKSg+qW\nXlHcU1OJoxcSwb/KDXfLBVckTA/2cCTGmmjw8153ReDew7+uFdJ7uqLt9hDE\n3oz7KzmtWHtc66PVyeJPwwphHuwwlCwKp8lvJ+g4PUOcu+aFprdecm7CdK+n\niwqOVtco3f6gcQuk2Kfkt25jfO0d7PyZkR79EtVLpNuZ+7GMNfU2zw6XvYZ1\npwiHo0buvUOBvyDgWsTUfGvzySrcI5DIohvfO0pa/NYadG0fYAC71YZvXYcz\nReFpJ4QnD6B+BxzXjYVeKdfmJvQVz5JrxRYXbCMQ0d8wlpqdacYuJgT4XWj0\nlubNPd018RZytv44R7Xiw2rN0s5hTTHgt1oMYFI5v5eXMXvpQZ4Y6qD2ocLa\n3B7RQM11lSceWzvr3JExY5vt+GsFXYCQ/9AOwIeq6dqoXCaO0Jeieb/VTnIF\nxl6K7bW9ox65lc+OKtquc5fQT6QhKHHamq9qMC0MdNpU9cYLGXIlRlNC6tmY\n8T885TsHCt16qILKngv/VBx3jjAGt+/2vCOBMc8R/IIRrStYncOQWSt5w2RH\nSu5KB62rlZ6IOgiXBbSQO61dH7jkfPaxYqP69Ctc/sS+U9W6kY9tgQ66aC5y\nqtj+\r\n=oEP5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEIPoaT9Fhbgk/jHR3bLOpo8Ak0pdMg6SW7+ipPd/cowIgA23tJgzPfAwe5v/wefoxPQDNJeKBcUeU/QBS6D4quUE="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/brfs_2.0.0_1529666059090_0.38174346443293694"},"_hasShrinkwrap":false},"2.0.1":{"name":"brfs","version":"2.0.1","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^3.0.0","through2":"^2.0.0"},"devDependencies":{"browserify":"^16.1.1","concat-stream":"^1.6.0","tap":"^10.7.3","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"f84ecf0fc0028ebcb8fceb956b1f3f14d21a6aff","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@2.0.1","_npmVersion":"6.4.0","_nodeVersion":"10.9.0","_npmUser":{"name":"anonymous","email":"renee@kooi.me"},"dist":{"integrity":"sha512-SU42sZeG85CE8EaZfnAANWxTqYpgrup0Nq5TgA+x9a0szxki+kH0X0DDyr7czQ8KhKKKdpxrQqXHN6zX96r62w==","shasum":"d19370b3fad787a24af1eee5474ad7ec9c305d3a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-2.0.1.tgz","fileCount":63,"unpackedSize":30405,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfTViCRA9TVsSAnZWagAAsrAP/1GMc9LXUnk9JlCQUZap\nglk3rli8k2uabooj/RNlFDFF6foRyF5UBdu9QyPEXkgFUim4fbjaQngD4Gu9\nA52clawlCXVpYej6Q84cbggBFYzIPDayOjZ1uCiExpgfshTlcabKBlNjQd+E\nL6LKl4E1hmvUJC3FABpQqB4gfaw9LQfZ6hqARyl3zL1abjBwONlkzRQb78zE\np0pMkKwwAAH2o8H7pEF6C7NSEetkB8h9sUx474+fv8yEYvsmOiku1J0xCQpg\neBhnuL3Ipw7ryLV4zLX2FuJclG31Qd5FsruPAJxNMpXqK+1BcY+nNG1FwirV\nZYQYsngE616Qwt3P+utFisjRUrmCMZKb3DKhL9Z5keeT5ADBehRDpDC4aRhd\nbLSS9Rm12oJKFYmpM8FGj0KLa3v7Xwbv6chk0BJ+txRqrOgCGDF+X+OtngXk\nC2tzepHNqJeZnXcbz45GXdiUOSJGT2FVNChhgNI4jJtA/MBv3UHOBm2ZcVxq\nI/gBhH3dPt85950sCWdrw+vDWy1FKZQ4iQd6yXZB0ddlCgNYjpnj7BG8rpoT\nJB5EP6g524xjniJvGit9Oc3QiZWQrSeQzhFwesIDUMZOMmDzCLJBD3OmON3q\nS72ut/krT1iKgh/cF9XWR/mCeygngmRpQS+LGIQ6WnwuSje8e24pWHJC51Ex\nJ3st\r\n=3itC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCT8JmvRer/uzK9s+ZmfJP/gg0u6aIpZE5lz4GLu85FGAIgXe6fiCejuMLU9Xt5EcbrBa1dEebxT3bg+7jWqiOFCcc="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/brfs_2.0.1_1534932322042_0.1658232421440291"},"_hasShrinkwrap":false},"2.0.2":{"name":"brfs","version":"2.0.2","description":"browserify fs.readFileSync() static asset inliner","main":"index.js","bin":{"brfs":"bin/cmd.js"},"dependencies":{"quote-stream":"^1.0.1","resolve":"^1.1.5","static-module":"^3.0.2","through2":"^2.0.0"},"devDependencies":{"browserify":"^16.1.1","concat-stream":"^1.6.0","tap":"^10.7.3","through":"^2.3.4"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/brfs.git"},"homepage":"https://github.com/substack/brfs","keywords":["browserify","browserify-transform","fs","readFileSync","plugin","static","asset","bundle","base64"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","gitHead":"660f6d81cb22eba997503ce17150db2c4aa3f94d","bugs":{"url":"https://github.com/substack/brfs/issues"},"_id":"brfs@2.0.2","_nodeVersion":"11.10.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-IrFjVtwu4eTJZyu8w/V2gxU7iLTtcHih67sgEdzrhjLBMHp2uYefUBfdM4k2UvcuWMgV7PQDZHSLeNWnLFKWVQ==","shasum":"44237878fa82aa479ce4f5fe2c1796ec69f07845","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/brfs/-/brfs-2.0.2.tgz","fileCount":63,"unpackedSize":30380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbCd3CRA9TVsSAnZWagAAMHkP/1MAM42XzP8XVdLC0IHk\nVoCxpj9ltJFXI6xiYDnRixNU7/Ti8mw/+KtnBRr5GJcXVXDLWaXWVOIUZsZi\nO/H7FGWDGgF4Z+ZCHO+INVQuVeUzrpzCwabXvvTVc8kWR7N+GCYY0l9ccFLs\nyMfp/rU+X9HTlmRd4Zv070ZjL4GA2ZuzoIrTXPpjfKZuwpUd8L3IrUrBAa7M\n6hYv0sp/Vt3nOU/XkChsadCjBU5B21e1Esb0+m2BxZodG1UENnhhsCb35dg3\nisS8i1cXxhDOhusz8mOF43LwZIj5CDAoITZ1afklQAwg78sbTg6yT8pjx4Ae\nrv4XyNLhw8K+2BaK75SFpZiPP+X4OPNmcAV2rnAHX4ocHLjq+7/nQSbd3k6C\nyk6K3d9VKNAZQz9vmbdAZN2eycqHxjQMS98DUFAsWYF0aikbpOAEp8zyhl6F\n4W94sQYynqDhG1vYDwgQZw0v7pn4AGb2cWmif5dsIgKxM8DOxLH4oLcPXJF3\nJgEddrgXJ7CIdlIl7hpCPwdAflAiU/C0hqOwuKrUYa1xrrQzYCF3zsYOe+63\nrqeVqIDB0gTuQ09+wmbEn2yLdL69x4xyTx96IZWTDMq7NIyg1HsWvVsUyJvN\nv3Mj6yvIQUrUiaAht6BT+/HBP3iDk55Q8VUZVYlXZvCRSBUNPr+3cHp3PGf3\nWYKk\r\n=DGzD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKo1gTckxGa0wMntEd/pYq1eR/q2cgsZpUBszpe2ts5gIhAIeBMFrTCWRHknEjqnJmt4QgCa6/cc9xLJxntM0yT9CL"}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"renee@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"renee@kooi.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/brfs_2.0.2_1550591863041_0.6877795347725741"},"_hasShrinkwrap":false}},"name":"brfs","time":{"modified":"2023-07-12T19:12:12.668Z","created":"2013-02-28T13:19:01.156Z","0.0.0":"2013-02-28T13:19:02.071Z","0.0.1":"2013-02-28T13:22:00.604Z","0.0.2":"2013-03-06T00:01:08.065Z","0.0.3":"2013-03-25T20:09:06.047Z","0.0.4":"2013-04-06T06:38:14.387Z","0.0.5":"2013-05-08T11:18:16.088Z","0.0.6":"2013-07-03T00:55:09.221Z","0.0.7":"2013-08-07T23:11:28.839Z","0.0.8":"2013-09-11T15:34:04.048Z","0.0.9":"2014-01-21T19:05:31.665Z","0.1.0":"2014-02-09T01:45:27.190Z","0.2.0":"2014-02-14T00:47:18.262Z","0.2.1":"2014-02-14T00:57:44.761Z","0.2.2":"2014-02-24T06:10:24.901Z","1.0.0":"2014-02-24T06:44:07.106Z","1.0.1":"2014-04-06T18:27:35.631Z","1.0.2":"2014-04-16T04:45:47.060Z","1.1.0":"2014-04-21T01:44:21.076Z","1.1.1":"2014-04-21T06:57:25.072Z","1.1.2":"2014-07-02T21:50:33.349Z","1.2.0":"2014-07-24T06:00:42.352Z","1.3.0":"2015-01-29T03:23:19.184Z","1.4.0":"2015-02-22T02:21:08.175Z","1.4.1":"2015-08-14T08:47:28.319Z","1.4.2":"2016-01-01T20:30:22.703Z","1.4.3":"2016-01-18T15:53:15.977Z","1.4.4":"2018-01-30T19:32:25.838Z","1.5.0":"2018-02-28T15:42:51.427Z","1.6.0":"2018-04-11T07:37:19.356Z","1.6.1":"2018-04-11T08:00:46.585Z","2.0.0":"2018-06-22T11:14:19.182Z","2.0.1":"2018-08-22T10:05:22.180Z","2.0.2":"2019-02-19T15:57:43.162Z"},"readmeFilename":"readme.markdown","homepage":"https://github.com/substack/brfs"}