{"maintainers":[{"name":"contra","email":"contra@wearefractal.com"},{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine.bublitz@gmail.com"}],"dist-tags":{"latest":"2.4.4","bugfix":"0.3.14"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"description":"Vinyl adapter for the file system","readme":"<p align=\"center\">\n  <a href=\"http://gulpjs.com\">\n    <img height=\"257\" width=\"114\" src=\"https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png\">\n  </a>\n</p>\n\n# vinyl-fs\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Gitter chat][gitter-image]][gitter-url]\n\n[Vinyl][vinyl] adapter for the file system.\n\n## What is Vinyl?\n\n[Vinyl][vinyl] is a very simple metadata object that describes a file. When you think of a file, two attributes come to mind: `path` and `contents`. These are the main attributes on a [Vinyl][vinyl] object. A file does not necessarily represent something on your computer’s file system. You have files on S3, FTP, Dropbox, Box, CloudThingly.io and other services. [Vinyl][vinyl] can be used to describe files from all of these sources.\n\n## What is a Vinyl Adapter?\n\nWhile Vinyl provides a clean way to describe a file, we now need a way to access these files. Each file source needs what I call a \"Vinyl adapter\". A Vinyl adapter simply exposes a `src(globs)` and a `dest(folder)` method. Each return a stream. The `src` stream produces Vinyl objects, and the `dest` stream consumes Vinyl objects. Vinyl adapters can expose extra methods that might be specific to their input/output medium, such as the `symlink` method `vinyl-fs` provides.\n\n## Usage\n\n```javascript\nvar map = require('map-stream');\nvar vfs = require('vinyl-fs');\n\nvar log = function(file, cb) {\n  console.log(file.path);\n  cb(null, file);\n};\n\nvfs.src(['./js/**/*.js', '!./js/vendor/*.js'])\n  .pipe(map(log))\n  .pipe(vfs.dest('./output'));\n```\n\n## API\n\n### `src(globs[, options])`\n\nTakes a glob string or an array of glob strings as the first argument and an options object as the second.\nReturns a stream of [vinyl] `File` objects.\n\n__Note: UTF-8 BOM will be stripped from all UTF-8 files read with `.src` unless disabled in the options.__\n\n#### Globs\n\nGlobs are executed in order, so negations should follow positive globs.\n\nFor example:\n\n```js\nfs.src(['!b*.js', '*.js'])\n```\n\nwould not exclude any files, but the following would:\n\n```js\nfs.src(['*.js', '!b*.js'])\n```\n\n#### Options\n\n##### `options.cwd`\n\nThe working directory the folder is relative to.\n\nType: `String`\n\nDefault: `process.cwd()`\n\n##### `options.base`\n\nThe folder relative to the cwd. This is used to determine the file names when saving in `.dest()`.\n\nType: `String`\n\nDefault: The part of the path before the glob (if any) begins. For example, `path/to/**/*.js` would resolve to `path/to`. If there is no glob (i.e. a file path with no pattern), then the dirname of the path is used. For example, `path/to/some/file.js` would resolve to `path/to/some`.\n\n##### `options.buffer`\n\nWhether or not you want to buffer the file contents into memory. Setting to `false` will make `file.contents` a paused Stream.\n\nType: `Boolean`\n\nDefault: `true`\n\n##### `options.read`\n\nWhether or not you want the file to be read at all. Useful for stuff like removing files. Setting to `false` will make `file.contents` `null` and will disable writing the file to disk via `.dest()`.\n\nType: `Boolean`\n\nDefault: `true`\n\n##### `options.since`\n\nOnly streams files that have been modified since the time specified.\n\nType: `Date` or `Number`\n\nDefault: `undefined`\n\n##### `options.stripBOM`\n\nCauses the BOM to be stripped on UTF-8 encoded files. Set to `false` if you need the BOM for some reason.\n\nType: `Boolean`\n\nDefault: `true`\n\n##### `options.passthrough`\n\nAllows `.src` to be used in the middle of a pipeline (using a duplex stream) which passes through all objects received and adds all files globbed to the stream.\n\nType: `Boolean`\n\nDefault: `false`\n\n##### `options.sourcemaps`\n\nEnables sourcemap support on files passed through the stream.  Will load inline sourcemaps and resolve sourcemap links from files. Uses [gulp-sourcemaps] under the hood.\n\nType: `Boolean`\n\nDefault: `false`\n\n##### `options.followSymlinks` - `true` if you want\n\nWhether or not to recursively resolve symlinks to their targets. Setting to `false` to preserve them as symlinks and make `file.symlink` equal the original symlink's target path.\n\nType: `Boolean`\n\nDefault: `true`\n\n##### other\n\nAny glob-related options are documented in [glob-stream] and [node-glob].\nAny through2-related options are documented in [through2].\n\n### `dest(folder[, options])`\n\nTakes a folder path string or a function as the first argument and an options object as the second. If given a function, it will be called with each [vinyl] `File` object and must return a folder path.\nReturns a stream that accepts [vinyl] `File` objects, writes them to disk at the folder/cwd specified, and passes them downstream so you can keep piping these around.\n\nOnce the file is written to disk, an attempt is made to determine if the `stat.mode`, `stat.mtime` and `stat.atime` of the [vinyl] `File` object differ from the file on the filesystem.\nIf they differ and the running process owns the file, the corresponding filesystem metadata is updated.\nIf they don't differ or the process doesn't own the file, the attempt is skipped silently.\n__This functionality is disabled on Windows operating systems or any other OS that doesn't support `process.getuid` or `process.geteuid` in node. This is due to Windows having very unexpected results through usage of `fs.fchmod` and `fs.futimes`.__\n\nIf the file has a `symlink` attribute specifying a target path, then a symlink will be created.\n\n__Note: The file will be modified after being written to this stream.__\n  - `cwd`, `base`, and `path` will be overwritten to match the folder.\n  - `stat` will be updated to match the file on the filesystem.\n  - `contents` will have it's position reset to the beginning if it is a stream.\n\n#### Options\n\n##### `options.cwd`\n\nThe working directory the folder is relative to.\n\nType: `String`\n\nDefault: `process.cwd()`\n\n##### `options.base`\n\nThe folder relative to the cwd. This is used to determine the file names when saving in `.dest()`. Can also be a function that takes in a file and returns a folder path.\n\nType: `String` or `Function`\n\nDefault: The `cwd` resolved to the folder path.\n\n##### `options.mode`\n\nThe mode the files should be created with.\n\nType: `Number`\n\nDefault: The `mode` of the input file (`file.stat.mode`) if any, or the process mode if the input file has no `mode` property.\n\n##### `options.dirMode`\n\nThe mode the directory should be created with.\n\nType: `Number`\n\nDefault: The process `mode`.\n\n##### `options.overwrite`\n\nWhether or not existing files with the same path should be overwritten. Can also be a function that takes in a file and returns `true` or `false`.\n\nType: `Boolean` or `Function`\n\nDefault: `true` (always overwrite existing files)\n\n##### `options.sourcemaps`\n\nEnables sourcemap support on files passed through the stream.  Will write inline soucemaps if specified as `true`.\nSpecifying a `string` is shorthand for the path option. Uses [gulp-sourcemaps] under the hood.\n\nExamples:\n\n```js\n// Write as inline comments\nvfs.dest('./', {\n  sourcemaps: true\n});\n\n// Write as files in the same folder\nvfs.dest('./', {\n  sourcemaps: '.'\n});\n\n// Any other options are passed through to [gulp-sourcemaps]\nvfs.dest('./', {\n  sourcemaps: {\n    path: '.',\n    addComment: false,\n    includeContent: false\n  }\n});\n```\n\nType: `Boolean`, `String` or `Object`\n\nDefault: `undefined` (do not write sourcemaps)\n\n##### other\n\nAny through2-related options are documented in [through2].\n\n### `symlink(folder[, options])`\n\nTakes a folder path string or a function as the first argument and an options object as the second. If given a function, it will be called with each [vinyl] `File` object and must return a folder path.\nReturns a stream that accepts [vinyl] `File` objects, create a symbolic link (i.e. symlink) at the folder/cwd specified, and passes them downstream so you can keep piping these around.\n\n__Note: The file will be modified after being written to this stream.__\n  - `cwd`, `base`, and `path` will be overwritten to match the folder.\n\n#### Options\n\n##### `options.cwd`\n\nThe working directory the folder is relative to.\n\nType: `String`\n\nDefault: `process.cwd()`\n\n##### `options.base`\n\nThe folder relative to the cwd. This is used to determine the file names when saving in `.symlink()`. Can also be a function that takes in a file and returns a folder path.\n\nType: `String` or `Function`\n\nDefault: The `cwd` resolved to the folder path.\n\n##### `options.dirMode`\n\nThe mode the directory should be created with.\n\nType: `Number`\n\nDefault: The process mode.\n\n##### other\n\nAny through2-related options are documented in [through2].\n\n[glob-stream]: https://github.com/gulpjs/glob-stream\n[gulp-sourcemaps]: https://github.com/floridoo/gulp-sourcemaps\n[node-glob]: https://github.com/isaacs/node-glob\n[gaze]: https://github.com/shama/gaze\n[glob-watcher]: https://github.com/wearefractal/glob-watcher\n[vinyl]: https://github.com/wearefractal/vinyl\n[through2]: https://github.com/rvagg/through2\n\n[downloads-image]: http://img.shields.io/npm/dm/vinyl-fs.svg\n[npm-url]: https://www.npmjs.com/package/vinyl-fs\n[npm-image]: https://badge.fury.io/js/vinyl-fs.svg\n\n[travis-url]: https://travis-ci.org/gulpjs/vinyl-fs\n[travis-image]: https://travis-ci.org/gulpjs/vinyl-fs.svg?branch=master\n\n[coveralls-url]: https://coveralls.io/r/gulpjs/vinyl-fs\n[coveralls-image]: https://coveralls.io/repos/gulpjs/vinyl-fs/badge.svg\n\n[gitter-url]: https://gitter.im/gulpjs/gulp\n[gitter-image]: https://badges.gitter.im/gulpjs/gulp.png\n","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"users":{"conradz":true,"tunnckocore":true,"kxbrand":true,"stringparser":true,"carlosmarte":true,"edin-m":true,"drew.brokke":true,"h02e56":true,"simplyianm":true,"n370":true,"itonyyo":true,"xieranmaya":true,"evan2x":true,"awen1983":true,"wilson0x4d":true,"fotooo":true,"silentcloud":true,"shipengyan":true,"dexteryy":true,"kontrax":true,"arttse":true,"rubiadias":true,"caesor":true,"joelwallis":true,"akarem":true,"nilz3ro":true,"tomekf":true,"yedaodao":true,"weconquered":true,"erikvold":true,"kodekracker":true,"yl2014":true,"jonathas":true,"stanlous":true,"heartnett":true},"bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"license":"MIT","versions":{"0.0.1":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.0.1","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"vinyl":"~0.2.0","glob-stream":"~3.1.5","glob-watcher":"~0.0.1","mkdirp":"~0.3.5","graceful-fs":"~2.0.1","map-stream":"~0.1.0"},"devDependencies":{"mocha":"~1.17.0","should":"~2.1.1","mocha-lcov-reporter":"0.0.1","coveralls":"~2.6.1","istanbul":"~0.2.3","rimraf":"~2.2.5","jshint":"~2.4.1","buffer-equal":"0.0.0","through2":"~0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.0.1","dist":{"shasum":"c8848a986c7e4e194267fe1115f1db2a5c29c6cf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.0.1.tgz"},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.0.2":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.0.2","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"vinyl":"~0.2.0","glob-stream":"~3.1.5","glob-watcher":"~0.0.1","mkdirp":"~0.3.5","graceful-fs":"~2.0.1","map-stream":"~0.1.0"},"devDependencies":{"mocha":"~1.17.0","should":"~3.0.1","mocha-lcov-reporter":"0.0.1","coveralls":"~2.6.1","istanbul":"~0.2.3","rimraf":"~2.2.5","jshint":"~2.4.1","buffer-equal":"0.0.0","through2":"~0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.0.2","dist":{"shasum":"51fabbee4bc002281e1661f9f58f0247010921d7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.0.2.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.1.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.1.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"vinyl":"^0.2.0","glob-stream":"^3.1.5","glob-watcher":"^0.0.3","mkdirp":"^0.3.5","graceful-fs":"^2.0.1","map-stream":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^3.0.1","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"0.0.0","through2":"^0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.1.0","dist":{"shasum":"55928bdf077df23c2de1c5a3cc4faab184b49c1d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.1.1":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.1.1","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"vinyl":"^0.2.0","glob-stream":"^3.1.5","glob-watcher":"^0.0.3","mkdirp":"^0.3.5","graceful-fs":"^2.0.1","map-stream":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^3.0.1","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"0.0.0","through2":"^0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.1.1","dist":{"shasum":"d1f4ad6946a5ef9c3dc874b35a85b6e272c2030f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.1.1.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.1.2":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.1.2","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"vinyl":"^0.2.0","glob-stream":"^3.1.5","glob-watcher":"^0.0.4","mkdirp":"^0.3.5","graceful-fs":"^2.0.1","map-stream":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^3.0.1","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"0.0.0","through2":"^0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.1.2","dist":{"shasum":"846509099edefa93a40193b8c2af3e9118da926b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.1.2.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.1.3":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.1.3","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"vinyl":"^0.2.0","glob-stream":"^3.1.5","glob-watcher":"^0.0.5","mkdirp":"^0.3.5","graceful-fs":"^2.0.1","map-stream":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^3.0.1","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"0.0.0","through2":"^0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.1.3","dist":{"shasum":"804d73c4fccf6edabdf63f16e3a8de09f3160661","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.1.3.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.1.4":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.1.4","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"vinyl":"^0.2.0","glob-stream":"^3.1.5","glob-watcher":"^0.0.6","mkdirp":"^0.3.5","graceful-fs":"^2.0.1","map-stream":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^3.0.1","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"0.0.0","through2":"^0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.1.4","_shasum":"436f7818b68854cb7425cd32fabd75f2cc6d321f","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"436f7818b68854cb7425cd32fabd75f2cc6d321f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.1.4.tgz"},"directories":{}},"0.2.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.2.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^2.0.1","map-stream":"^0.1.0","mkdirp":"^0.5.0","strip-bom":"^0.3.0","vinyl":"^0.2.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","through2":"^0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"7af93d0c63822f17183b89ec591622d14f9f17ca","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.2.0","_shasum":"89054f094b267d3a78117c9f3efa9e4720bc6e4e","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"89054f094b267d3a78117c9f3efa9e4720bc6e4e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.2.0.tgz"},"directories":{}},"0.2.1":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.2.1","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","map-stream":"^0.1.0","mkdirp":"^0.5.0","strip-bom":"^0.3.0","vinyl":"^0.2.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","through2":"^0.4.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"c9b2c075dbb55ee97cd6ab9909bd1e1f87bf77e0","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.2.1","_shasum":"d6374e16ab706da09ceb55befa468bba0128f938","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"d6374e16ab706da09ceb55befa468bba0128f938","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.2.1.tgz"},"directories":{}},"0.3.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash.defaults":"^2.4.1","map-stream":"^0.1.0","mkdirp":"^0.5.0","strip-bom":"^0.3.0","through2":"^0.5.1","through2-map":"^1.3.0","vinyl":"^0.2.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","through2":"^0.5.1"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"583d30efd72267b59752f98a920541b1cfadb31c","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.0","_shasum":"c3bf480d00febafc3d4d4ce902edf418dfc7de12","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"c3bf480d00febafc3d4d4ce902edf418dfc7de12","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.0.tgz"},"directories":{}},"0.3.1":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.1","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash.defaults":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^0.3.0","through2":"^0.5.1","through2-map":"^1.3.0","vinyl":"^0.2.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"6004e32a6c5dca3f9361695d1b9797bbc4529337","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.1","_shasum":"87e9ac64753a6817069d64d01c467138f692e3f4","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"87e9ac64753a6817069d64d01c467138f692e3f4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.1.tgz"},"directories":{}},"0.3.2":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.2","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash.defaults":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^0.3.0","through2":"^0.5.1","vinyl":"^0.2.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"8fef1ed6d65a2532271983360d8700ec8dd03023","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.2","_shasum":"73a4f8bfaaabe573922d5f0919578f46df823cd7","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"73a4f8bfaaabe573922d5f0919578f46df823cd7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.2.tgz"},"directories":{}},"0.3.3":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.3","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash.defaults":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^0.3.0","through2":"^0.5.1","vinyl":"^0.2.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"52ce21ba241f73f0348d7683306c1175ce6c88b3","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.3","_shasum":"ad8cb0d0e9b7d93158db55dd5cf8d05020558273","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"ad8cb0d0e9b7d93158db55dd5cf8d05020558273","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.3.tgz"},"directories":{}},"0.3.4":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.4","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash.defaults":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^0.3.0","through2":"^0.5.1","vinyl":"^0.2.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"a83eb9a53aa0c4e50306a20845111ccda276146d","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.4","_shasum":"0df7154a9e07d47b14d2fcff914303439da97a84","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"0df7154a9e07d47b14d2fcff914303439da97a84","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.4.tgz"},"directories":{}},"0.3.5":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.5","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^0.3.0","through2":"^0.5.1","vinyl":"^0.2.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"22edfd20dc2fbad888fedd022d02fdf933bf30b6","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.5","_shasum":"94586c4cb923e1d0789a9697da4ac37ad138c766","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"94586c4cb923e1d0789a9697da4ac37ad138c766","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.5.tgz"},"directories":{}},"0.3.6":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.6","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^0.3.0","through2":"^0.5.1","vinyl":"^0.3.2"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"72564989a5dc17468e645f00ae811f8614dec17b","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.6","_shasum":"c96985527cd53eb4a3eeb8ffb3180bda3084ecfc","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"c96985527cd53eb4a3eeb8ffb3180bda3084ecfc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.6.tgz"},"directories":{}},"0.3.7":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.7","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","sinon":"^1.10.3"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"1a5efe8d1f7d698691103f2fdc21e07dc1bd5634","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.7","_shasum":"2e25cfe6df5c80818f97ff417bf5c21a41e4a49b","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"2e25cfe6df5c80818f97ff417bf5c21a41e4a49b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.7.tgz"},"directories":{}},"0.3.8":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.8","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","sinon":"^1.10.3"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"0507aed94a1902ee61a45f77caf059669fb7ea76","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.8","_shasum":"bea09db28e558e5e903a51a5363fcdb59e5aabe4","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"bea09db28e558e5e903a51a5363fcdb59e5aabe4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.8.tgz"},"directories":{}},"0.3.9":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.9","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"duplexer2":"0.0.2","glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","jshint":"^2.4.1","mocha":"^1.17.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","sinon":"^1.10.3"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"37c648da6826b36600f48c3002a03b1248d4f58e","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.9","_shasum":"0a1bab1e287f3e1130ad7e6e34d26007d414e079","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"0a1bab1e287f3e1130ad7e6e34d26007d414e079","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.9.tgz"},"directories":{}},"0.3.10":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.10","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","sinon":"^1.10.3"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"c6e7433a93d052905611680dc3f6f87c8e629376","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.10","_shasum":"f59ac977cb040e95df865ad34cdeb00f57f31f47","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.32","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"f59ac977cb040e95df865ad34cdeb00f57f31f47","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.10.tgz"},"directories":{}},"0.3.11":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.11","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","sinon":"^1.10.3"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"5ee1404cc25b54fc338e6f84909e87be2eb09e84","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.11","_shasum":"9a45a5e8ed1b1c57d73a252e217e9a2e7e83cffa","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"9a45a5e8ed1b1c57d73a252e217e9a2e7e83cffa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.11.tgz"},"directories":{}},"0.3.12":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.12","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","lodash":"^2.4.1","mkdirp":"^0.5.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","sinon":"^1.10.3"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"84a3fe96dd162041eac9c9d4465cc1369659027a","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.12","_shasum":"fc33cfeecffb71316badca2d172a39e0ba05368b","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"fc33cfeecffb71316badca2d172a39e0ba05368b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.12.tgz"},"directories":{}},"0.3.13":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.13","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"defaults":"^1.0.0","glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","mkdirp":"^0.5.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","sinon":"^1.10.3"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"engineStrict":true,"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"315e76a248e9d150f228e4ef50b61de15dc55123","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.13","_shasum":"3d384c5b3032e356cd388023e3a085303382ac23","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"3d384c5b3032e356cd388023e3a085303382ac23","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.13.tgz"},"directories":{}},"1.0.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"1.0.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^4.0.1","glob-watcher":"^0.0.8","graceful-fs":"^3.0.0","merge-stream":"^0.1.7","mkdirp":"^0.5.0","object-assign":"^2.0.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.2.5","should":"^5.0.0","sinon":"^1.10.3"},"scripts":{"test":"jshint lib && mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls"},"engines":{"node":">= 0.10"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"db025fe85b190414b28512c1f5ef08662564d4eb","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@1.0.0","_shasum":"d15752e68c2dad74364e7e853473735354692edf","_from":".","_npmVersion":"2.6.0","_nodeVersion":"0.10.35","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"d15752e68c2dad74364e7e853473735354692edf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-1.0.0.tgz"},"directories":{}},"0.3.14":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"0.3.14","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"defaults":"^1.0.0","glob-stream":"^3.1.5","glob-watcher":"^0.0.6","graceful-fs":"^3.0.0","mkdirp":"^0.5.0","strip-bom":"^1.0.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.1","rimraf":"^2.2.5","should":"^4.0.0","sinon":"^1.10.3"},"scripts":{"test":"mocha --reporter spec && jshint lib","coveralls":"istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.10"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"}],"gitHead":"1e026b90df987b6da0ca7da941fd61a7cd1e6d8f","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@0.3.14","_shasum":"9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.10.36","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-0.3.14.tgz"},"directories":{}},"2.0.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.0.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.0.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"test":"jshint lib && mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"de7bf7ba79acf33610d8d8e58626dc39d8ed2611","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.0.0","_shasum":"0bc47c6b017bb42739b8caa7c6fd534d1b902047","_from":".","_npmVersion":"2.13.4","_nodeVersion":"2.5.0","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"0bc47c6b017bb42739b8caa7c6fd534d1b902047","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.0.0.tgz"},"directories":{}},"2.1.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.1.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.0.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"test":"jshint lib && mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"dbf2a25dc9273e1d5bfa592e6b8564d245294e55","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.1.0","_shasum":"6db1fc40d6de31a7fc1a423745837ac762e5ba14","_from":".","_npmVersion":"2.13.4","_nodeVersion":"2.5.0","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"6db1fc40d6de31a7fc1a423745837ac762e5ba14","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.1.0.tgz"},"directories":{}},"2.1.1":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.1.1","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.0.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"test":"jshint lib && mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"812c696709a16f0de2e06e03b5fe41a45fbfe4f2","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.1.1","_shasum":"21022bfd587288b37950beea21b7ea8fb6c1bace","_from":".","_npmVersion":"2.13.4","_nodeVersion":"2.5.0","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"21022bfd587288b37950beea21b7ea8fb6c1bace","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.1.1.tgz"},"directories":{}},"2.2.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.2.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.0.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"test":"jshint lib && mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"bf7edd37cb0207951b75879d4e07402c51ac8770","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.2.0","_shasum":"5ad80428481997682557eefcda054d1f0966939a","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.10.36","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"5ad80428481997682557eefcda054d1f0966939a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.2.0.tgz"},"directories":{}},"2.2.1":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.2.1","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.0.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.4.1","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"test":"jshint lib && mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"a28ba42d87eeaecc2ae3de9174270019fab76fe3","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.2.1","_shasum":"dc867d2d6033a0c5a6a10e4ce434f5b4114bb079","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.10.36","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"dc867d2d6033a0c5a6a10e4ce434f5b4114bb079","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.2.1.tgz"},"directories":{}},"2.3.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.3.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.2.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"941b040905616eb0408a44213d5efe010388cb9d","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.3.0","_shasum":"c71c05508228e35db7a047dca25a39475502814f","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"c71c05508228e35db7a047dca25a39475502814f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.3.0.tgz"},"directories":{}},"2.3.1":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.3.1","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.2.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"7d2fcbaa49c78087fa975a4183fee38d422b9d4a","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.3.1","_shasum":"f6aebb3987ec300791be324389d6bb7d8ce8537b","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"f6aebb3987ec300791be324389d6bb7d8ce8537b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.3.1.tgz"},"directories":{}},"2.3.2":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.3.2","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.2.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-buffer":"^1.1.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","lodash.isequal":"^4.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vali-date":"^1.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","default-resolution":"^1.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.14.0","github-changes":"^1.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","cover":"istanbul cover _mocha","coveralls":"npm run cover && istanbul-coveralls","changelog":"github-changes -o gulpjs -r vinyl-fs -b master -f ./CHANGELOG.md --order-semver --use-commit-body"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"6ed179380da7caa4e3506f78b8864ea59164992e","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.3.2","_shasum":"ad9d06d2e8abc1f95148a2beeed5cf797e18c31c","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"ad9d06d2e8abc1f95148a2beeed5cf797e18c31c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.3.2.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/vinyl-fs-2.3.2.tgz_1456449492532_0.27736150356940925"},"directories":{}},"2.3.3":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.3.3","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.2.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-buffer":"^1.1.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","lodash.isequal":"^4.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vali-date":"^1.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","default-resolution":"^1.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.14.0","github-changes":"^1.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","cover":"istanbul cover _mocha","coveralls":"npm run cover && istanbul-coveralls","changelog":"github-changes -o gulpjs -r vinyl-fs -b master -f ./CHANGELOG.md --order-semver --use-commit-body"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"a75feda20131177a8f5a5008483f24169d0b3df3","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.3.3","_shasum":"24b0d5e162a32cfaeaa66d1b06a3006d670b6d74","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"24b0d5e162a32cfaeaa66d1b06a3006d670b6d74","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.3.3.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/vinyl-fs-2.3.3.tgz_1456517318966_0.9187369383871555"},"directories":{}},"2.3.4":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.3.4","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.2.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","lodash.isequal":"^4.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vali-date":"^1.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","default-resolution":"^1.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.14.0","github-changes":"^1.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","cover":"istanbul cover _mocha","coveralls":"npm run cover && istanbul-coveralls","changelog":"github-changes -o gulpjs -r vinyl-fs -b master -f ./CHANGELOG.md --order-semver --use-commit-body"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"cd8a992294228eea1d08957efc823794baa48fba","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.3.4","_shasum":"82e3ff54a699b5c9c0d9db5792b7ae2069275541","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"82e3ff54a699b5c9c0d9db5792b7ae2069275541","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.3.4.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/vinyl-fs-2.3.4.tgz_1456523328317_0.3673051632940769"},"directories":{}},"2.4.0":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.4.0","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.2.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","lodash.isequal":"^4.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vali-date":"^1.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","default-resolution":"^1.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.14.0","github-changes":"^1.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","cover":"istanbul cover _mocha","coveralls":"npm run cover && istanbul-coveralls","changelog":"github-changes -o gulpjs -r vinyl-fs -b master -f ./CHANGELOG.md --order-semver --use-commit-body"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"926a9ad3cf40d133120eb6f90d26234dc9f00138","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.4.0","_shasum":"44e02132efd425288ec263c5722e623fb7b5ce55","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"44e02132efd425288ec263c5722e623fb7b5ce55","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/vinyl-fs-2.4.0.tgz_1456951426997_0.542285033268854"},"directories":{}},"2.4.1":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.4.1","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.2.0","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","lodash.isequal":"^4.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vali-date":"^1.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","default-resolution":"^1.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.14.0","github-changes":"^1.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","cover":"istanbul cover _mocha","coveralls":"npm run cover && istanbul-coveralls","changelog":"github-changes -o gulpjs -r vinyl-fs -b master -f ./CHANGELOG.md --order-semver --use-commit-body"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"caac041836436577d52468d32b9844c00d666265","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.4.1","_shasum":"f97d6370d2c469e005d15031fd5ff3eaa595c608","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"f97d6370d2c469e005d15031fd5ff3eaa595c608","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.4.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vinyl-fs-2.4.1.tgz_1456961582736_0.6294016905594617"},"directories":{}},"2.4.2":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.4.2","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.3.2","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","lodash.isequal":"^4.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vali-date":"^1.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","default-resolution":"^1.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.14.0","github-changes":"^1.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","cover":"istanbul cover _mocha","coveralls":"npm run cover && istanbul-coveralls","changelog":"github-changes -o gulpjs -r vinyl-fs -b master -f ./CHANGELOG.md --order-semver --use-commit-body"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"5edb75a10935fdc89e29d5e2413694aca77a3e85","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.4.2","_shasum":"91bdb9331fd252b4d0535be300c8a3a95a1b7be3","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"91bdb9331fd252b4d0535be300c8a3a95a1b7be3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.4.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vinyl-fs-2.4.2.tgz_1457041964518_0.24993096198886633"},"directories":{}},"2.4.3":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.4.3","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.3.2","graceful-fs":"^4.0.0","gulp-sourcemaps":"^1.5.2","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","lodash.isequal":"^4.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vali-date":"^1.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","default-resolution":"^1.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.14.0","github-changes":"^1.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","cover":"istanbul cover _mocha","coveralls":"npm run cover && istanbul-coveralls","changelog":"github-changes -o gulpjs -r vinyl-fs -b master -f ./CHANGELOG.md --order-semver --use-commit-body"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"3033555d4b094e115b274b9c611be55104538118","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.4.3","_shasum":"3d97e562ebfdd4b66921dea70626b84bde9d2d07","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"3d97e562ebfdd4b66921dea70626b84bde9d2d07","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.4.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vinyl-fs-2.4.3.tgz_1459541557875_0.8605514999944717"},"directories":{}},"2.4.4":{"name":"vinyl-fs","description":"Vinyl adapter for the file system","version":"2.4.4","homepage":"http://github.com/wearefractal/vinyl-fs","repository":{"type":"git","url":"git://github.com/wearefractal/vinyl-fs.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"duplexify":"^3.2.0","glob-stream":"^5.3.2","graceful-fs":"^4.0.0","gulp-sourcemaps":"1.6.0","is-valid-glob":"^0.3.0","lazystream":"^1.0.0","lodash.isequal":"^4.0.0","merge-stream":"^1.0.0","mkdirp":"^0.5.0","object-assign":"^4.0.0","readable-stream":"^2.0.4","strip-bom":"^2.0.0","strip-bom-stream":"^1.0.0","through2":"^2.0.0","through2-filter":"^2.0.0","vali-date":"^1.0.0","vinyl":"^1.0.0"},"devDependencies":{"buffer-equal":"^0.0.1","default-resolution":"^1.0.1","del":"^2.2.0","eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.14.0","github-changes":"^1.0.1","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.2.5","should":"^7.0.0","sinon":"^1.10.3"},"scripts":{"lint":"eslint . && jscs index.js lib/ test/","test":"npm run lint && mocha","cover":"istanbul cover _mocha","coveralls":"npm run cover && istanbul-coveralls","changelog":"github-changes -o gulpjs -r vinyl-fs -b master -f ./CHANGELOG.md --order-semver --use-commit-body"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"8779a407d76ded1880a9fa6300dc007afd9a94f6","bugs":{"url":"https://github.com/wearefractal/vinyl-fs/issues"},"_id":"vinyl-fs@2.4.4","_shasum":"be6ff3270cb55dfd7d3063640de81f25d7532239","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"contra","email":"contra@wearefractal.com"},{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"be6ff3270cb55dfd7d3063640de81f25d7532239","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/vinyl-fs/-/vinyl-fs-2.4.4.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vinyl-fs-2.4.4.tgz_1476396244682_0.5812190659344196"},"directories":{}}},"name":"vinyl-fs","time":{"modified":"2017-06-06T06:18:05.518Z","created":"2014-01-16T04:35:13.183Z","0.0.1":"2014-01-16T04:35:13.183Z","0.0.2":"2014-01-22T23:32:53.983Z","0.1.0":"2014-03-01T21:54:54.733Z","0.1.1":"2014-03-17T22:22:42.477Z","0.1.2":"2014-03-17T22:34:49.764Z","0.1.3":"2014-04-17T01:35:55.240Z","0.1.4":"2014-04-17T10:26:05.990Z","0.2.0":"2014-06-01T02:29:09.354Z","0.2.1":"2014-06-03T00:34:12.928Z","0.3.0":"2014-06-10T07:45:37.441Z","0.3.1":"2014-06-25T14:27:39.226Z","0.3.2":"2014-06-25T18:34:05.869Z","0.3.3":"2014-06-26T16:34:58.575Z","0.3.4":"2014-06-27T06:06:48.755Z","0.3.5":"2014-07-30T23:03:26.698Z","0.3.6":"2014-08-02T04:55:03.590Z","0.3.7":"2014-08-29T07:08:34.064Z","0.3.8":"2014-09-29T22:16:51.236Z","0.3.9":"2014-10-09T18:35:26.373Z","0.3.10":"2014-10-22T06:49:42.812Z","0.3.11":"2014-11-04T18:58:05.741Z","0.3.12":"2014-11-13T23:01:29.908Z","0.3.13":"2014-11-13T23:18:36.009Z","1.0.0":"2015-03-01T23:10:20.475Z","0.3.14":"2015-09-21T23:58:14.914Z","2.0.0":"2015-09-25T22:43:41.873Z","2.1.0":"2015-09-27T22:01:07.451Z","2.1.1":"2015-09-28T09:55:31.054Z","2.2.0":"2015-10-16T02:02:41.084Z","2.2.1":"2015-10-20T01:12:49.648Z","2.3.0":"2016-01-12T01:46:18.116Z","2.3.1":"2016-01-14T09:13:25.560Z","2.3.2":"2016-02-26T01:18:13.397Z","2.3.3":"2016-02-26T20:08:39.999Z","2.3.4":"2016-02-26T21:48:50.891Z","2.4.0":"2016-03-02T20:43:47.782Z","2.4.1":"2016-03-02T23:33:03.533Z","2.4.2":"2016-03-03T21:52:45.732Z","2.4.3":"2016-04-01T20:12:38.378Z","2.4.4":"2016-10-13T22:04:07.129Z"},"readmeFilename":"README.md","homepage":"http://github.com/wearefractal/vinyl-fs"}