{"maintainers":[{"name":"alexgorbatchev","email":"alex.gorbatchev@gmail.com"},{"name":"joshperry","email":"josh@6bit.com"},{"name":"shama","email":"kyle@dontkry.com"}],"keywords":["watch","glob"],"dist-tags":{"latest":"1.1.2"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","readme":"# gaze [![Build Status](http://img.shields.io/travis/shama/gaze.svg)](https://travis-ci.org/shama/gaze) [![Build status](https://ci.appveyor.com/api/projects/status/vtx65w9eg511tgo4)](https://ci.appveyor.com/project/shama/gaze)\n\nA globbing fs.watch wrapper built from the best parts of other fine watch libs.  \nCompatible with Node.js 4.x/0.12/0.10, Windows, OSX and Linux.\n\n![gaze](http://dontkry.com/images/repos/gaze.png)\n\n[![NPM](https://nodei.co/npm/gaze.png?downloads=true)](https://nodei.co/npm/gaze/)\n\n## Usage\nInstall the module with: `npm install gaze` or place into your `package.json`\nand run `npm install`.\n\n```javascript\nvar gaze = require('gaze');\n\n// Watch all .js files/dirs in process.cwd()\ngaze('**/*.js', function(err, watcher) {\n  // Files have all started watching\n  // watcher === this\n\n  // Get all watched files\n  var watched = this.watched();\n\n  // On file changed\n  this.on('changed', function(filepath) {\n    console.log(filepath + ' was changed');\n  });\n\n  // On file added\n  this.on('added', function(filepath) {\n    console.log(filepath + ' was added');\n  });\n\n  // On file deleted\n  this.on('deleted', function(filepath) {\n    console.log(filepath + ' was deleted');\n  });\n\n  // On changed/added/deleted\n  this.on('all', function(event, filepath) {\n    console.log(filepath + ' was ' + event);\n  });\n\n  // Get watched files with relative paths\n  var files = this.relative();\n});\n\n// Also accepts an array of patterns\ngaze(['stylesheets/*.css', 'images/**/*.png'], function() {\n  // Add more patterns later to be watched\n  this.add(['js/*.js']);\n});\n```\n\n### Alternate Interface\n\n```javascript\nvar Gaze = require('gaze').Gaze;\n\nvar gaze = new Gaze('**/*');\n\n// Files have all started watching\ngaze.on('ready', function(watcher) { });\n\n// A file has been added/changed/deleted has occurred\ngaze.on('all', function(event, filepath) { });\n```\n\n### Errors\n\n```javascript\ngaze('**/*', function(error, watcher) {\n  if (error) {\n    // Handle error if it occurred while starting up\n  }\n});\n\n// Or with the alternative interface\nvar gaze = new Gaze();\ngaze.on('error', function(error) {\n  // Handle error here\n});\ngaze.add('**/*');\n```\n\n### Minimatch / Glob\n\nSee [isaacs's minimatch](https://github.com/isaacs/minimatch) for more\ninformation on glob patterns.\n\n## Documentation\n\n### gaze([patterns, options, callback])\n\n* `patterns` {String|Array} File patterns to be matched\n* `options` {Object}\n* `callback` {Function}\n  * `err` {Error | null}\n  * `watcher` {Object} Instance of the Gaze watcher\n\n### Class: gaze.Gaze\n\nCreate a Gaze object by instancing the `gaze.Gaze` class.\n\n```javascript\nvar Gaze = require('gaze').Gaze;\nvar gaze = new Gaze(pattern, options, callback);\n```\n\n#### Properties\n\n* `options` The options object passed in.\n  * `interval` {integer} Interval to pass to fs.watchFile\n  * `debounceDelay` {integer} Delay for events called in succession for the same\n    file/event in milliseconds\n  * `mode` {string} Force the watch mode. Either `'auto'` (default), `'watch'` (force native events), or `'poll'` (force stat polling).\n  * `cwd` {string} The current working directory to base file patterns from. Default is `process.cwd()`.\n\n#### Events\n\n* `ready(watcher)` When files have been globbed and watching has begun.\n* `all(event, filepath)` When an `added`, `changed` or `deleted` event occurs.\n* `added(filepath)` When a file has been added to a watch directory.\n* `changed(filepath)` When a file has been changed.\n* `deleted(filepath)` When a file has been deleted.\n* `renamed(newPath, oldPath)` When a file has been renamed.\n* `end()` When the watcher is closed and watches have been removed.\n* `error(err)` When an error occurs.\n* `nomatch` When no files have been matched.\n\n#### Methods\n\n* `emit(event, [...])` Wrapper for the EventEmitter.emit.\n  `added`|`changed`|`deleted` events will also trigger the `all` event.\n* `close()` Unwatch all files and reset the watch instance.\n* `add(patterns, callback)` Adds file(s) patterns to be watched.\n* `remove(filepath)` removes a file or directory from being watched. Does not\n  recurse directories.\n* `watched()` Returns the currently watched files.\n* `relative([dir, unixify])` Returns the currently watched files with relative paths.\n  * `dir` {string} Only return relative files for this directory.\n  * `unixify` {boolean} Return paths with `/` instead of `\\\\` if on Windows.\n\n## Similar Projects\n\nOther great watch libraries to try are:\n\n* [paulmillr's chokidar](https://github.com/paulmillr/chokidar)\n* [amasad's sane](https://github.com/amasad/sane)\n* [mikeal's watch](https://github.com/mikeal/watch)\n* [github's pathwatcher](https://github.com/atom/node-pathwatcher)\n* [bevry's watchr](https://github.com/bevry/watchr)\n\n## Contributing\nIn lieu of a formal styleguide, take care to maintain the existing coding style.\nAdd unit tests for any new or changed functionality. Lint and test your code\nusing [grunt](http://gruntjs.com/).\n\n## Release History\n* 1.1.2 - Prevent more ENOENT errors from escaping (@alexgorbatchev).\n* 1.1.1 - Prevent fs.watch errors from escaping error handler (@rosen-vladimirov). Fix _addToWatched without path.sep (@wyicwx).\n* 1.1.0 - Update to `globule@1.0.0` with `minimatch >= 3.0.0`.\n* 1.0.0 - Revert back to 0.5.2. Drop support for Node.js v0.8. Fix for `maxListeners`. Update globule to `0.2.0`.\n* 0.6.4 - Catch and emit error from readdir (@oconnore). Fix for 0 maxListeners. Use graceful-fs to avoid EMFILE errors in other places fs is used. Better method to determine if pathwatcher was built. Fix keeping process alive too much, only init pathwatcher if a file is being watched. Set min required to Windows Vista when building on Windows (@pvolok).\n* 0.6.3 - Add support for node v0.11\n* 0.6.2 - Fix argument error with watched(). Fix for erroneous added events on folders. Ignore msvs build error 4244.\n* 0.6.1 - Fix for absolute paths.\n* 0.6.0 - Uses native OS events (fork of pathwatcher) but can fall back to stat polling. Everything is async to avoid blocking, including `relative()` and `watched()`. Better error handling. Update to globule@0.2.0. No longer watches `cwd` by default. Added `mode` option. Better `EMFILE` message. Avoids `ENOENT` errors with symlinks. All constructor arguments are optional.\n* 0.5.2 - Fix for ENOENT error with non-existent symlinks [BACKPORTED].\n* 0.5.1 - Use setImmediate (process.nextTick for node v0.8) to defer ready/nomatch events (@amasad).\n* 0.5.0 - Process is now kept alive while watching files. Emits a nomatch event when no files are matching.\n* 0.4.3 - Track file additions in newly created folders (@brett-shwom).\n* 0.4.2 - Fix .remove() method to remove a single file in a directory (@kaelzhang). Fixing Cannot call method 'call' of undefined (@krasimir). Track new file additions within folders (@brett-shwom).\n* 0.4.1 - Fix watchDir not respecting close in race condition (@chrisirhc).\n* 0.4.0 - Drop support for node v0.6. Use globule for file matching. Avoid node v0.10 path.resolve/join errors. Register new files when added to non-existent folder. Multiple instances can now poll the same files (@jpommerening).\n* 0.3.4 - Code clean up. Fix path must be strings errors (@groner). Fix incorrect added events (@groner).\n* 0.3.3 - Fix for multiple patterns with negate.\n* 0.3.2 - Emit `end` before removeAllListeners.\n* 0.3.1 - Fix added events within subfolder patterns.\n* 0.3.0 - Handle safewrite events, `forceWatchMethod` option removed, bug fixes and watch optimizations (@rgaskill).\n* 0.2.2 - Fix issue where subsequent add calls dont get watched (@samcday). removeAllListeners on close.\n* 0.2.1 - Fix issue with invalid `added` events in current working dir.\n* 0.2.0 - Support and mark folders with `path.sep`. Add `forceWatchMethod` option. Support `renamed` events.\n* 0.1.6 - Recognize the `cwd` option properly\n* 0.1.5 - Catch too many open file errors\n* 0.1.4 - Really fix the race condition with 2 watches\n* 0.1.3 - Fix race condition with 2 watches\n* 0.1.2 - Read triggering changed event fix\n* 0.1.1 - Minor fixes\n* 0.1.0 - Initial release\n\n## License\nCopyright (c) 2015 Kyle Robinson Young  \nLicensed under the MIT license.\n","repository":{"type":"git","url":"git+https://github.com/shama/gaze.git"},"users":{"parroit":true,"leesei":true,"luislobo":true,"tunnckocore":true,"humantriangle":true,"robertwarrengilmore":true,"kxbrand":true,"momepukku":true,"neuesleben":true,"henrytseng":true,"datoulei":true,"allain":true,"jovinbm":true,"arkanciscan":true,"nayrangnu":true,"arikon":true,"goliatone":true,"insdevmail":true,"sammyteahan":true,"joshperry":true,"nikolenkoanton92":true,"thierrymarianne":true,"xgheaven":true,"ambdxtrch":true,"foto":true,"whitelynx":true,"philiiiiiipp":true,"steel1990":true,"qlqllu":true,"kruemelo":true,"jotadeveloper":true,"bret":true,"monolithed":true,"ngyuki":true},"bugs":{"url":"https://github.com/shama/gaze/issues"},"license":"MIT","versions":{"0.1.0":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.1.0","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.1.0","dist":{"shasum":"8665d02172712658a8a2361839d0cbd531075e2a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.1.0.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.1.1":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.1.1","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.1.1","dist":{"shasum":"f2d4e56d8156f4fe76cd48a3a4cabf9c081d4b6b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.1.1.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.1.2":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.1.2","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.1.2","dist":{"shasum":"797da1b7ee9b4b15c3dd205c39e71eb6df413fff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.1.2.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.1.3":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.1.3","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.1.3","dist":{"shasum":"09793df50d586be6bdb83de5d9ec023762f3f3aa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.1.3.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.1.4":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.1.4","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.1.4","dist":{"shasum":"0f301132839f22d96d6abb2a9742254477a11c9d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.1.4.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.1.5":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.1.5","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.1.5","dist":{"shasum":"2826f24b76c14f0d9f06d368bd820d4c0836e84d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.1.5.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.1.6":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.1.6","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.1.6","dist":{"shasum":"6172d90bdd47603b5bf8228cae7a984a7195337f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.1.6.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.2.0":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.2.0","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.2.0","dist":{"shasum":"411b109141d65c87ad7305396bf5d62550d58fa0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.2.0.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.2.1":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.2.1","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit"},"dependencies":{"async":"~0.1.22","glob":"~3.1.13","lodash":"~0.8.0","minimatch":"~0.2.6"},"devDependencies":{"grunt":"git://github.com/gruntjs/grunt.git#8b5b7c6af1fe7d4a2c62cee940d798664b53c7af","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"_id":"gaze@0.2.1","dist":{"shasum":"255afc8a0e6dc628b283c6323cef77e957cedf6b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.2.1.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.2.2":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.2.2","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"async":"~0.1.22","glob":"~3.1.14","lodash":"~0.10.0","minimatch":"~0.2.9"},"devDependencies":{"grunt-benchmark":"~0.1.1","grunt":"~0.4.0a","grunt-contrib-nodeunit":"~0.1.1","grunt-contrib-jshint":"~0.1.0"},"keywords":["watch","glob"],"_id":"gaze@0.2.2","dist":{"shasum":"4bd0307eb4e4cf7a766c11283d9197347f53d674","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.2.2.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.3.0":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.3.0","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"async":"~0.1.22","glob":"~3.1.14","lodash":"~0.10.0","minimatch":"~0.2.9"},"devDependencies":{"grunt-benchmark":"~0.1.1","grunt":"~0.4.0a","grunt-contrib-nodeunit":"~0.1.1","grunt-contrib-jshint":"~0.1.0"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"}],"_id":"gaze@0.3.0","dist":{"shasum":"172bb447dc1d34adac1fe4f77beb2355dc871b62","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.3.0.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.3.1":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.3.1","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"async":"~0.1.22","glob":"~3.1.14","lodash":"~0.10.0","minimatch":"~0.2.9"},"devDependencies":{"grunt-benchmark":"~0.1.1","grunt":"~0.4.0rc3","grunt-contrib-nodeunit":"~0.1.1","grunt-contrib-jshint":"~0.1.0"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"}],"_id":"gaze@0.3.1","dist":{"shasum":"ae0f97c46b3008579a6470b244069ddce49cf498","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.3.1.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.3.2":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.3.2","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"async":"~0.1.22","glob":"~3.1.14","lodash":"~0.10.0","minimatch":"~0.2.9"},"devDependencies":{"grunt":"~0.4.0rc4","grunt-contrib-nodeunit":"~0.1.1","grunt-contrib-jshint":"~0.1.0","grunt-contrib-watch":"~0.2.0","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"}],"_id":"gaze@0.3.2","dist":{"shasum":"ffa34dbd11f57b2817bbf642b706a838ad58bd95","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.3.2.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.3.3":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.3.3","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"minimatch":"~0.2.9","fileset":"~0.1.5"},"devDependencies":{"grunt":"~0.4.0rc7","grunt-contrib-nodeunit":"~0.1.2rc6","grunt-contrib-jshint":"~0.1.1rc6","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"}],"_id":"gaze@0.3.3","dist":{"shasum":"c491118f2f871912dae1bd5b35756ca0172ff00d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.3.3.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.3.4":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.3.4","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"minimatch":"~0.2.9","fileset":"~0.1.5"},"devDependencies":{"grunt":"~0.4.0rc7","grunt-contrib-nodeunit":"~0.1.2rc6","grunt-contrib-jshint":"~0.1.1rc6","grunt-benchmark":"~0.1.1"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"}],"_id":"gaze@0.3.4","dist":{"shasum":"5f94bdda0afe53bc710969bcd6f282548d60c279","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.3.4.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.4.0":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.4.0","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"globule":"~0.1.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-jshint":"~0.6.0","grunt-benchmark":"~0.2.0"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"}],"_id":"gaze@0.4.0","dist":{"shasum":"0b260f3a8755e1ad111544c8cf40380009c15551","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.4.0.tgz"},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.4.1":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.4.1","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"globule":"~0.1.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-jshint":"~0.6.0","grunt-benchmark":"~0.2.0"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"}],"_id":"gaze@0.4.1","dist":{"shasum":"dbcaa9b7b92bb4b86389ce93fb0fe5ac71ef8d3c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.4.1.tgz"},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.4.2":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.4.2","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"globule":"~0.1.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-jshint":"~0.6.0","grunt-benchmark":"~0.2.0"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"}],"_id":"gaze@0.4.2","dist":{"shasum":"ac597d9b5e2cafc459f6695296347ca2c4a8950a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.4.2.tgz"},"_from":".","_npmVersion":"1.3.9","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.4.3":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.4.3","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"globule":"~0.1.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-jshint":"~0.6.0","grunt-benchmark":"~0.2.0"},"keywords":["watch","glob"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"}],"_id":"gaze@0.4.3","dist":{"shasum":"e538f4ff5e4fe648f473a97e1ebb253d2de127b5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.4.3.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.5.0":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.5.0","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"globule":"~0.1.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-jshint":"~0.6.0","grunt-benchmark":"~0.2.0","grunt-cli":"~0.1.13"},"keywords":["watch","glob"],"files":["lib","LICENSE-MIT"],"_id":"gaze@0.5.0","dist":{"shasum":"c9a8bd741da67abbfd81ef94c79f6b3ca58658c0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.5.0.tgz"},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.5.1":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.5.1","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"globule":"~0.1.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-jshint":"~0.6.0","grunt-benchmark":"~0.2.0","grunt-cli":"~0.1.13","async":"~0.2.10","rimraf":"~2.2.6"},"keywords":["watch","glob"],"files":["lib","LICENSE-MIT"],"_id":"gaze@0.5.1","dist":{"shasum":"22e731078ef3e49d1c4ab1115ac091192051824c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.5.1.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.6.0":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.6.0","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v","install":"node-gyp rebuild"},"dependencies":{"globule":"~0.2.0","nextback":"~0.1.0","bindings":"~1.2.0","nan":"~0.8.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-jshint":"~0.9.2","grunt-cli":"~0.1.13","async":"~0.2.10","rimraf":"~2.2.6","ascii-table":"0.0.4"},"keywords":["watch","watcher","watching","fs.watch","fswatcher","fs","glob","utility"],"files":["index.js","lib","src","binding.gyp","AUTHORS","LICENSE-MIT"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"},{"name":"Kai Groner"},{"name":"zeripath"},{"name":"Tim Schaub","url":"http://tschaub.net/"},{"name":"Amjad Masad","url":"http://amasad.github.com/"},{"name":"Eric Schoffstall","url":"http://contra.io/"},{"name":"Eric O'Connor","url":"http://oco.nnor.org/"},{"name":"Cheng Zhao","url":"https://github.com/zcbenz"},{"name":"Kevin Sawicki","url":"https://github.com/kevinsawicki"},{"name":"Nathan Sobo","url":"https://github.com/nathansobo"}],"gypfile":true,"_id":"gaze@0.6.0","dist":{"shasum":"f00c4a77406332398bea79e3d3fe03fa8dabf640","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.6.0.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.6.1":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.6.1","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v","install":"node-gyp rebuild"},"dependencies":{"globule":"~0.2.0","nextback":"~0.1.0","bindings":"~1.2.0","nan":"~0.8.0","absolute-path":"0.0.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-jshint":"~0.9.2","grunt-cli":"~0.1.13","async":"~0.2.10","rimraf":"~2.2.6","ascii-table":"0.0.4"},"keywords":["watch","watcher","watching","fs.watch","fswatcher","fs","glob","utility"],"files":["index.js","lib","src","binding.gyp","AUTHORS","LICENSE-MIT"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"},{"name":"Kai Groner"},{"name":"zeripath"},{"name":"Tim Schaub","url":"http://tschaub.net/"},{"name":"Amjad Masad","url":"http://amasad.github.com/"},{"name":"Eric Schoffstall","url":"http://contra.io/"},{"name":"Eric O'Connor","url":"http://oco.nnor.org/"},{"name":"Cheng Zhao","url":"https://github.com/zcbenz"},{"name":"Kevin Sawicki","url":"https://github.com/kevinsawicki"},{"name":"Nathan Sobo","url":"https://github.com/nathansobo"}],"gypfile":true,"_id":"gaze@0.6.1","dist":{"shasum":"2eaa5ec20433ee8804d10e6c2a61fcc69c19dcc9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.6.1.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.6.2":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.6.2","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v","install":"node-gyp rebuild"},"dependencies":{"globule":"~0.2.0","nextback":"~0.1.0","bindings":"~1.2.0","nan":"~0.8.0","absolute-path":"0.0.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-jshint":"~0.9.2","grunt-cli":"~0.1.13","async":"~0.2.10","rimraf":"~2.2.6","ascii-table":"0.0.4"},"keywords":["watch","watcher","watching","fs.watch","fswatcher","fs","glob","utility"],"files":["index.js","lib","src","binding.gyp","AUTHORS","LICENSE-MIT"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"},{"name":"Kai Groner"},{"name":"zeripath"},{"name":"Tim Schaub","url":"http://tschaub.net/"},{"name":"Amjad Masad","url":"http://amasad.github.com/"},{"name":"Eric Schoffstall","url":"http://contra.io/"},{"name":"Eric O'Connor","url":"http://oco.nnor.org/"},{"name":"Cheng Zhao","url":"https://github.com/zcbenz"},{"name":"Kevin Sawicki","url":"https://github.com/kevinsawicki"},{"name":"Nathan Sobo","url":"https://github.com/nathansobo"}],"gypfile":true,"_id":"gaze@0.6.2","dist":{"shasum":"5cc6babc4b0530dca540ba62d8751e2f094a2057","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.6.2.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.6.3":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.6.3","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v","install":"node-gyp rebuild"},"dependencies":{"globule":"~0.2.0","nextback":"~0.1.0","bindings":"~1.2.0","nan":"~0.8.0","absolute-path":"0.0.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-jshint":"~0.9.2","grunt-cli":"~0.1.13","async":"~0.2.10","rimraf":"~2.2.6","ascii-table":"0.0.4"},"keywords":["watch","watcher","watching","fs.watch","fswatcher","fs","glob","utility"],"files":["index.js","lib","src","binding.gyp","AUTHORS","LICENSE-MIT"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"},{"name":"Kai Groner"},{"name":"zeripath"},{"name":"Tim Schaub","url":"http://tschaub.net/"},{"name":"Amjad Masad","url":"http://amasad.github.com/"},{"name":"Eric Schoffstall","url":"http://contra.io/"},{"name":"Eric O'Connor","url":"http://oco.nnor.org/"},{"name":"Cheng Zhao","url":"https://github.com/zcbenz"},{"name":"Kevin Sawicki","url":"https://github.com/kevinsawicki"},{"name":"Nathan Sobo","url":"https://github.com/nathansobo"}],"gypfile":true,"_id":"gaze@0.6.3","dist":{"shasum":"d23624170d5cbaf8534018e360758bc425c863aa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.6.3.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.6.4":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.6.4","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v","install":"node-gyp rebuild"},"dependencies":{"globule":"~0.2.0","nextback":"~0.1.0","bindings":"~1.2.0","nan":"~0.8.0","absolute-path":"0.0.0","graceful-fs":"~2.0.3"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-jshint":"~0.9.2","grunt-cli":"~0.1.13","async":"~0.2.10","rimraf":"~2.2.6","ascii-table":"0.0.4"},"keywords":["watch","watcher","watching","fs.watch","fswatcher","fs","glob","utility"],"files":["index.js","lib","src","binding.gyp","AUTHORS","LICENSE-MIT"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"},{"name":"Kai Groner"},{"name":"zeripath"},{"name":"Tim Schaub","url":"http://tschaub.net/"},{"name":"Amjad Masad","url":"http://amasad.github.com/"},{"name":"Eric Schoffstall","url":"http://contra.io/"},{"name":"Eric O'Connor","url":"http://oco.nnor.org/"},{"name":"Cheng Zhao","url":"https://github.com/zcbenz"},{"name":"Kevin Sawicki","url":"https://github.com/kevinsawicki"},{"name":"Nathan Sobo","url":"https://github.com/nathansobo"}],"gypfile":true,"_id":"gaze@0.6.4","dist":{"shasum":"f78957b81b712487df5445bd4f57b498207821f1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.6.4.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.5.2":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"0.5.2","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"licenses":[{"type":"MIT","url":"https://github.com/shama/gaze/blob/master/LICENSE-MIT"}],"main":"lib/gaze","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit -v"},"dependencies":{"globule":"~0.1.0"},"devDependencies":{"grunt":"~0.4.1","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-jshint":"~0.6.0","grunt-benchmark":"~0.2.0","grunt-cli":"~0.1.13","async":"~0.2.10","rimraf":"~2.2.6"},"keywords":["watch","glob"],"files":["lib","LICENSE-MIT"],"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"}],"gitHead":"52007df64a841ccf52b9f9cd617cd24a4e2ddf8b","_id":"gaze@0.5.2","_shasum":"40b709537d24d1d45767db5a908689dfe69ac44f","_from":".","_npmVersion":"3.3.4","_nodeVersion":"4.0.0","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"joshperry","email":"josh@6bit.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"40b709537d24d1d45767db5a908689dfe69ac44f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-0.5.2.tgz"},"directories":{}},"1.0.0":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"1.0.0","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"https://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"license":"MIT","main":"lib/gaze","engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && grunt nodeunit -v"},"dependencies":{"globule":"^0.2.0"},"devDependencies":{"async":"^1.5.2","grunt":"^0.4.5","grunt-benchmark":"~0.2.0","grunt-cli":"~0.1.13","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","rimraf":"^2.5.0","semistandard":"^7.0.5"},"keywords":["watch","glob"],"files":["lib","LICENSE-MIT"],"semistandard":{"ignore":["benchmarks","experiments","build","test"]},"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"}],"gitHead":"f1f2456701aada40d699eabd3b946ef528f1354a","_id":"gaze@1.0.0","_shasum":"3d1f0fe2b5cf79bf253a875df3d670c636db3e0b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"joshperry","email":"josh@6bit.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"3d1f0fe2b5cf79bf253a875df3d670c636db3e0b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-1.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gaze-1.0.0.tgz_1457758223341_0.9665445322170854"},"directories":{}},"1.1.0":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"1.1.0","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git+https://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"license":"MIT","main":"lib/gaze","engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && grunt nodeunit -v"},"dependencies":{"globule":"^1.0.0"},"devDependencies":{"async":"^1.5.2","grunt":"^1.0.1","grunt-benchmark":"^0.3.0","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","rimraf":"^2.5.2","semistandard":"^7.0.5"},"keywords":["watch","glob"],"files":["lib","LICENSE-MIT"],"semistandard":{"ignore":["benchmarks","experiments","build","test"]},"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"}],"gitHead":"bec9df3995aba6bfa6c1651f14345a5f4ede1ffa","_id":"gaze@1.1.0","_shasum":"74d3ffb0110ede715c9f15bba56c6e9b851d3ce0","_from":".","_npmVersion":"2.15.2","_nodeVersion":"4.4.1","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"joshperry","email":"josh@6bit.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"74d3ffb0110ede715c9f15bba56c6e9b851d3ce0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-1.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gaze-1.1.0.tgz_1466819058607_0.9462094414047897"},"directories":{}},"1.1.1":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"1.1.1","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git+https://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"license":"MIT","main":"lib/gaze","engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && grunt nodeunit -v"},"dependencies":{"globule":"^1.0.0"},"devDependencies":{"async":"^1.5.2","grunt":"^1.0.1","grunt-benchmark":"^0.3.0","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","rimraf":"^2.5.2","semistandard":"^7.0.5"},"keywords":["watch","glob"],"files":["lib","LICENSE-MIT"],"semistandard":{"ignore":["benchmarks","experiments","build","test"]},"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"}],"gitHead":"4a0a837ee194097b28860fa960a654302ef590b9","_id":"gaze@1.1.1","_shasum":"ab81d557d1b515f5752bd5f1117d6fa3c4e9db41","_from":".","_npmVersion":"2.15.2","_nodeVersion":"4.4.1","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"joshperry","email":"josh@6bit.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"ab81d557d1b515f5752bd5f1117d6fa3c4e9db41","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-1.1.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gaze-1.1.1.tgz_1470358845533_0.7018349366262555"},"directories":{}},"1.1.2":{"name":"gaze","description":"A globbing fs.watch wrapper built from the best parts of other fine watch libs.","version":"1.1.2","homepage":"https://github.com/shama/gaze","author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com"},"repository":{"type":"git","url":"git+https://github.com/shama/gaze.git"},"bugs":{"url":"https://github.com/shama/gaze/issues"},"license":"MIT","main":"lib/gaze","engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && grunt nodeunit -v"},"dependencies":{"globule":"^1.0.0"},"devDependencies":{"async":"^1.5.2","grunt":"^1.0.1","grunt-benchmark":"^0.3.0","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","rimraf":"^2.5.2","semistandard":"^7.0.5"},"keywords":["watch","glob"],"files":["lib","LICENSE-MIT"],"semistandard":{"ignore":["benchmarks","experiments","build","test"]},"contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"}],"gitHead":"46d6c2afd75b0061e8ec277309b2ab4046b914f1","_id":"gaze@1.1.2","_shasum":"847224677adb8870d679257ed3388fdb61e40105","_from":".","_npmVersion":"2.15.2","_nodeVersion":"4.4.1","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"alexgorbatchev","email":"alex.gorbatchev@gmail.com"},{"name":"joshperry","email":"josh@6bit.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"847224677adb8870d679257ed3388fdb61e40105","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gaze/-/gaze-1.1.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gaze-1.1.2.tgz_1475004682530_0.29796709935180843"},"directories":{}}},"name":"gaze","contributors":[{"name":"Kyle Robinson Young","url":"http://dontkry.com"},{"name":"Sam Day","url":"http://sam.is-super-awesome.com"},{"name":"Roarke Gaskill","url":"http://starkinvestments.com"},{"name":"Lance Pollard","url":"http://lancepollard.com/"},{"name":"Daniel Fagnan","url":"http://hydrocodedesign.com/"},{"name":"Jonas","url":"http://jpommerening.github.io/"},{"name":"Chris Chua","url":"http://sirh.cc/"},{"name":"Kael Zhang","url":"http://kael.me"},{"name":"Krasimir Tsonev","url":"http://krasimirtsonev.com/blog"},{"name":"brett-shwom"}],"time":{"modified":"2017-05-11T10:20:10.146Z","created":"2012-10-04T17:46:14.249Z","0.1.0":"2012-10-04T17:46:15.885Z","0.1.1":"2012-10-05T21:08:36.442Z","0.1.2":"2012-10-08T20:38:02.950Z","0.1.3":"2012-10-08T21:26:40.904Z","0.1.4":"2012-10-08T23:54:30.644Z","0.1.5":"2012-10-09T05:30:43.681Z","0.1.6":"2012-10-16T19:24:08.026Z","0.2.0":"2012-10-23T17:36:21.353Z","0.2.1":"2012-11-01T03:43:28.541Z","0.2.2":"2012-12-04T07:14:10.445Z","0.3.0":"2012-12-14T23:15:29.673Z","0.3.1":"2012-12-17T02:20:30.250Z","0.3.2":"2013-01-07T19:51:20.554Z","0.3.3":"2013-02-14T06:21:43.995Z","0.3.4":"2013-05-03T15:35:14.533Z","0.4.0":"2013-07-01T21:25:47.446Z","0.4.1":"2013-07-09T17:25:55.475Z","0.4.2":"2013-09-25T04:04:11.189Z","0.4.3":"2013-10-19T02:35:15.764Z","0.5.0":"2014-02-06T04:11:32.184Z","0.5.1":"2014-02-23T04:04:57.738Z","0.6.0":"2014-04-13T05:05:11.067Z","0.6.1":"2014-04-14T05:31:53.674Z","0.6.2":"2014-04-14T18:31:18.128Z","0.6.3":"2014-04-15T03:03:33.464Z","0.6.4":"2014-04-21T18:40:11.152Z","0.5.2":"2015-10-05T20:28:06.595Z","1.0.0":"2016-03-12T04:50:23.774Z","1.1.0":"2016-06-25T01:44:19.213Z","1.1.1":"2016-08-05T01:00:48.229Z","1.1.2":"2016-09-27T19:31:22.757Z"},"readmeFilename":"README.md","homepage":"https://github.com/shama/gaze"}