{"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"dist-tags":{"latest":"1.7.0","1.0.0-rc1":"1.0.0-rc1","1.0.0-rc1.1":"1.0.0-rc1.1","1.0.0-rc2":"1.0.0-rc2"},"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","readme":"# Chokidar [![Mac/Linux Build Status](https://img.shields.io/travis/paulmillr/chokidar/master.svg?label=Mac%20OSX%20%26%20Linux)](https://travis-ci.org/paulmillr/chokidar) [![Windows Build status](https://img.shields.io/appveyor/ci/es128/chokidar/master.svg?label=Windows)](https://ci.appveyor.com/project/es128/chokidar/branch/master) [![Coverage Status](https://coveralls.io/repos/paulmillr/chokidar/badge.svg)](https://coveralls.io/r/paulmillr/chokidar) [![Join the chat at https://gitter.im/paulmillr/chokidar](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/paulmillr/chokidar?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n> A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.\n\n[![NPM](https://nodei.co/npm-dl/chokidar.png)](https://nodei.co/npm/chokidar/)\n[![NPM](https://nodei.co/npm/chokidar.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/chokidar/)\n\n## Why?\nNode.js `fs.watch`:\n\n* Doesn't report filenames on OS X.\n* Doesn't report events at all when using editors like Sublime on OS X.\n* Often reports events twice.\n* Emits most changes as `rename`.\n* Has [a lot of other issues](https://github.com/joyent/node/search?q=fs.watch&type=Issues)\n* Does not provide an easy way to recursively watch file trees.\n\nNode.js `fs.watchFile`:\n\n* Almost as bad at event handling.\n* Also does not provide any recursive watching.\n* Results in high CPU utilization.\n\nChokidar resolves these problems.\n\nInitially made for [brunch](http://brunch.io) (an ultra-swift web app build tool), it is now used in\n[gulp](https://github.com/gulpjs/gulp/),\n[karma](http://karma-runner.github.io),\n[PM2](https://github.com/Unitech/PM2),\n[browserify](http://browserify.org/),\n[webpack](http://webpack.github.io/),\n[BrowserSync](http://www.browsersync.io/),\n[Microsoft's Visual Studio Code](https://github.com/microsoft/vscode),\nand [many others](https://www.npmjs.org/browse/depended/chokidar/).\nIt has proven itself in production environments.\n\n## How?\nChokidar does still rely on the Node.js core `fs` module, but when using\n`fs.watch` and `fs.watchFile` for watching, it normalizes the events it\nreceives, often checking for truth by getting file stats and/or dir contents.\n\nOn Mac OS X, chokidar by default uses a native extension exposing the Darwin\n`FSEvents` API. This provides very efficient recursive watching compared with\nimplementations like `kqueue` available on most \\*nix platforms. Chokidar still\ndoes have to do some work to normalize the events received that way as well.\n\nOn other platforms, the `fs.watch`-based implementation is the default, which\navoids polling and keeps CPU usage down. Be advised that chokidar will initiate\nwatchers recursively for everything within scope of the paths that have been\nspecified, so be judicious about not wasting system resources by watching much\nmore than needed.\n\n## Getting started\nInstall with npm:\n\n    npm install chokidar --save\n\nThen `require` and use it in your code:\n\n```javascript\nvar chokidar = require('chokidar');\n\n// One-liner for current directory, ignores .dotfiles\nchokidar.watch('.', {ignored: /(^|[\\/\\\\])\\../}).on('all', (event, path) => {\n  console.log(event, path);\n});\n```\n\n```javascript\n// Example of a more typical implementation structure:\n\n// Initialize watcher.\nvar watcher = chokidar.watch('file, dir, glob, or array', {\n  ignored: /(^|[\\/\\\\])\\../,\n  persistent: true\n});\n\n// Something to use when events are received.\nvar log = console.log.bind(console);\n// Add event listeners.\nwatcher\n  .on('add', path => log(`File ${path} has been added`))\n  .on('change', path => log(`File ${path} has been changed`))\n  .on('unlink', path => log(`File ${path} has been removed`));\n\n// More possible events.\nwatcher\n  .on('addDir', path => log(`Directory ${path} has been added`))\n  .on('unlinkDir', path => log(`Directory ${path} has been removed`))\n  .on('error', error => log(`Watcher error: ${error}`))\n  .on('ready', () => log('Initial scan complete. Ready for changes'))\n  .on('raw', (event, path, details) => {\n    log('Raw event info:', event, path, details);\n  });\n\n// 'add', 'addDir' and 'change' events also receive stat() results as second\n// argument when available: http://nodejs.org/api/fs.html#fs_class_fs_stats\nwatcher.on('change', (path, stats) => {\n  if (stats) console.log(`File ${path} changed size to ${stats.size}`);\n});\n\n// Watch new files.\nwatcher.add('new-file');\nwatcher.add(['new-file-2', 'new-file-3', '**/other-file*']);\n\n// Get list of actual paths being watched on the filesystem\nvar watchedPaths = watcher.getWatched();\n\n// Un-watch some files.\nwatcher.unwatch('new-file*');\n\n// Stop watching.\nwatcher.close();\n\n// Full list of options. See below for descriptions. (do not use this example)\nchokidar.watch('file', {\n  persistent: true,\n\n  ignored: '*.txt',\n  ignoreInitial: false,\n  followSymlinks: true,\n  cwd: '.',\n  disableGlobbing: false,\n\n  usePolling: true,\n  interval: 100,\n  binaryInterval: 300,\n  alwaysStat: false,\n  depth: 99,\n  awaitWriteFinish: {\n    stabilityThreshold: 2000,\n    pollInterval: 100\n  },\n\n  ignorePermissionErrors: false,\n  atomic: true // or a custom 'atomicity delay', in milliseconds (default 100)\n});\n\n```\n\n## API\n\n`chokidar.watch(paths, [options])`\n\n* `paths` (string or array of strings). Paths to files, dirs to be watched\nrecursively, or glob patterns.\n* `options` (object) Options object as defined below:\n\n#### Persistence\n\n* `persistent` (default: `true`). Indicates whether the process\nshould continue to run as long as files are being watched. If set to\n`false` when using `fsevents` to watch, no more events will be emitted\nafter `ready`, even if the process continues to run.\n\n#### Path filtering\n\n* `ignored` ([anymatch](https://github.com/es128/anymatch)-compatible definition)\nDefines files/paths to be ignored. The whole relative or absolute path is\ntested, not just filename. If a function with two arguments is provided, it\ngets called twice per path - once with a single argument (the path), second\ntime with two arguments (the path and the\n[`fs.Stats`](http://nodejs.org/api/fs.html#fs_class_fs_stats)\nobject of that path).\n* `ignoreInitial` (default: `false`). If set to `false` then `add`/`addDir` events are also emitted for matching paths while\ninstantiating the watching as chokidar discovers these file paths (before the `ready` event).\n* `followSymlinks` (default: `true`). When `false`, only the\nsymlinks themselves will be watched for changes instead of following\nthe link references and bubbling events through the link's path.\n* `cwd` (no default). The base directory from which watch `paths` are to be\nderived. Paths emitted with events will be relative to this.\n* `disableGlobbing` (default: `false`). If set to `true` then the strings passed to `.watch()` and `.add()` are treated as\nliteral path names, even if they look like globs.\n\n#### Performance\n\n* `usePolling` (default: `false`).\nWhether to use fs.watchFile (backed by polling), or fs.watch. If polling\nleads to high CPU utilization, consider setting this to `false`. It is\ntypically necessary to **set this to `true` to successfully watch files over\na network**, and it may be necessary to successfully watch files in other\nnon-standard situations. Setting to `true` explicitly on OS X overrides the\n`useFsEvents` default. You may also set the CHOKIDAR_USEPOLLING env variable\nto true (1) or false (0) in order to override this option.\n* _Polling-specific settings_ (effective when `usePolling: true`)\n  * `interval` (default: `100`). Interval of file system polling. You may also \n    set the CHOKIDAR_INTERVAL env variable to override this option.\n  * `binaryInterval` (default: `300`). Interval of file system\n  polling for binary files.\n  ([see list of binary extensions](https://github.com/sindresorhus/binary-extensions/blob/master/binary-extensions.json))\n* `useFsEvents` (default: `true` on OS X). Whether to use the\n`fsevents` watching interface if available. When set to `true` explicitly\nand `fsevents` is available this supercedes the `usePolling` setting. When\nset to `false` on OS X, `usePolling: true` becomes the default.\n* `alwaysStat` (default: `false`). If relying upon the\n[`fs.Stats`](http://nodejs.org/api/fs.html#fs_class_fs_stats)\nobject that may get passed with `add`, `addDir`, and `change` events, set\nthis to `true` to ensure it is provided even in cases where it wasn't\nalready available from the underlying watch events.\n* `depth` (default: `undefined`). If set, limits how many levels of\nsubdirectories will be traversed.\n* `awaitWriteFinish` (default: `false`).\nBy default, the `add` event will fire when a file first appears on disk, before\nthe entire file has been written. Furthermore, in some cases some `change`\nevents will be emitted while the file is being written. In some cases,\nespecially when watching for large files there will be a need to wait for the\nwrite operation to finish before responding to a file creation or modification.\nSetting `awaitWriteFinish` to `true` (or a truthy value) will poll file size,\nholding its `add` and `change` events until the size does not change for a\nconfigurable amount of time. The appropriate duration setting is heavily\ndependent on the OS and hardware. For accurate detection this parameter should\nbe relatively high, making file watching much less responsive.\nUse with caution.\n  * *`options.awaitWriteFinish` can be set to an object in order to adjust\n  timing params:*\n  * `awaitWriteFinish.stabilityThreshold` (default: 2000). Amount of time in\n  milliseconds for a file size to remain constant before emitting its event.\n  * `awaitWriteFinish.pollInterval` (default: 100). File size polling interval.\n\n#### Errors\n* `ignorePermissionErrors` (default: `false`). Indicates whether to watch files\nthat don't have read permissions if possible. If watching fails due to `EPERM`\nor `EACCES` with this set to `true`, the errors will be suppressed silently.\n* `atomic` (default: `true` if `useFsEvents` and `usePolling` are `false`).\nAutomatically filters out artifacts that occur when using editors that use\n\"atomic writes\" instead of writing directly to the source file. If a file is\nre-added within 100 ms of being deleted, Chokidar emits a `change` event\nrather than `unlink` then `add`. If the default of 100 ms does not work well\nfor you, you can override it by setting `atomic` to a custom value, in\nmilliseconds.\n\n### Methods & Events\n\n`chokidar.watch()` produces an instance of `FSWatcher`. Methods of `FSWatcher`:\n\n* `.add(path / paths)`: Add files, directories, or glob patterns for tracking.\nTakes an array of strings or just one string.\n* `.on(event, callback)`: Listen for an FS event.\nAvailable events: `add`, `addDir`, `change`, `unlink`, `unlinkDir`, `ready`,\n`raw`, `error`.\nAdditionally `all` is available which gets emitted with the underlying event\nname and path for every event other than `ready`, `raw`, and `error`.\n* `.unwatch(path / paths)`: Stop watching files, directories, or glob patterns.\nTakes an array of strings or just one string.\n* `.close()`: Removes all listeners from watched files.\n* `.getWatched()`: Returns an object representing all the paths on the file\nsystem being watched by this `FSWatcher` instance. The object's keys are all the\ndirectories (using absolute paths unless the `cwd` option was used), and the\nvalues are arrays of the names of the items contained in each directory.\n\n## CLI\n\nIf you need a CLI interface for your file watching, check out\n[chokidar-cli](https://github.com/kimmobrunfeldt/chokidar-cli), allowing you to\nexecute a command on each change, or get a stdio stream of change events.\n\n## Install Troubleshooting\n\n* `npm WARN optional dep failed, continuing fsevents@n.n.n`\n  * This message is normal part of how `npm` handles optional dependencies and is\n    not indicative of a problem. Even if accompanied by other related error messages,\n    Chokidar should function properly.\n\n* `ERR! stack Error: Python executable \"python\" is v3.4.1, which is not supported by gyp.`\n  * You should be able to resolve this by installing python 2.7 and running:\n    `npm config set python python2.7`\n\n* `gyp ERR! stack Error: not found: make`\n  * On Mac, install the XCode command-line tools\n\n## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 Paul Miller (http://paulmillr.com) & Elan Shanker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the “Software”), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"users":{"291296283":true,"fgribreau":true,"pragmadash":true,"jonathanmelville":true,"mbonaci":true,"piascikj":true,"luislobo":true,"humantriangle":true,"ee":true,"kappuccino":true,"joakin":true,"dazld":true,"gonzalofj":true,"asessa":true,"scamden":true,"silverwind":true,"marshallformula":true,"sloanb":true,"isao":true,"salmander":true,"amirmehmood":true,"alejcerro":true,"yashprit":true,"samar":true,"itonyyo":true,"sharper":true,"sprjrx":true,"mondalaci":true,"synchronous":true,"erincinci":true,"szmtcjm":true,"bpatel":true,"softwind":true,"gerst20051":true,"insdevmail":true,"ridzhi":true,"anhulife":true,"rizowski":true,"restuta":true,"gochomugo":true,"sergeymakoveev":true,"sammyteahan":true,"zacharyjuang":true,"polarisjunior":true,"abdihaikal":true,"draganhr":true,"viz":true,"papiro":true,"evan2x":true,"ninozhang":true,"pandao":true,"goliatone":true,"lavir":true,"antixrist":true,"ovrmrw":true,"adron":true,"timdp":true,"varedis":true,"vamakoda":true,"antanst":true,"egasimus":true,"abhisekp":true,"jlertle":true,"andyd":true,"robtarr":true,"manxisuo":true,"abdul":true,"temoto-kun":true,"jian263994241":true,"echaouchna":true,"zewish":true,"semencov":true,"koalaylj":true,"liruwei0109":true,"sopepos":true,"dralc":true,"clarenceho":true,"sqrtthree":true,"monsterkodi":true,"bret":true,"theoryofnekomata":true,"yinyongcom666":true,"pablo.tavarez":true,"abuelwafa":true,"456wyc":true,"shanewholloway":true,"akarem":true,"lgh06":true,"matthewcallis":true,"rochejul":true,"ajsb85":true,"scottfreecode":true,"davidnyhuis":true,"n0f3":true,"qddegtya":true,"panlw":true,"wisecolt":true,"wgerven":true,"krambuhl":true,"danielbankhead":true,"langri-sha":true,"wangnan0610":true,"laurentknauss":true,"craql":true,"monjer":true,"mattbodman":true,"ahmetertem":true,"zoluzo":true,"lonjoy":true,"seangenabe":true,"uldis.sturms":true,"tcrowe":true,"mightyjongyo":true,"jonathanredford":true,"bigp":true,"d-rob":true,"scytalezero":true,"caesor":true,"bonashen":true,"nickchow":true,"shaomingquan":true,"tommytroylin":true,"shuoshubao":true,"jnoodle":true,"xudaolong":true,"rexpan":true,"tsxuehu":true,"ngyuki":true,"cetincem":true,"asaupup":true,"sanketss84":true,"dunstontc":true,"huarse":true,"cool_zjy":true,"springy":true,"vivek.vikhere":true,"oleg_tsyba":true,"sopov":true,"ivan.marquez":true},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","versions":{"0.1.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.1.1","keywords":["fs","watch","watchFile","watcher","watching","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","scripts":{"postinstall":"node beare.js compileCoffeeScripts","test":"node beare.js testWithMocha"},"engines":{"node":"~0.6.10 || 0.7 || 0.8"},"dependencies":{"beare":"0.1.1"},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"chokidar@0.1.1","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"874eb8ccf2d3e17db63224ffde23f9134f80f7d5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.1.1.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.2.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.2.0","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"dependencies":{},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"chokidar@0.2.0","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"7c585f4d9dfb772669db81677d86530b87efff05","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.2.0.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.2.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.2.1","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"dependencies":{},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"chokidar@0.2.1","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"ea10091cdd6c413253d8f3a83db6e775d96eddbc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.2.1.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.2.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.2.2","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"dependencies":{},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"chokidar@0.2.2","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"3dfa716e7a5a55e503a77004f64e758f86124526","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.2.2.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.2.3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.2.3","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"dependencies":{},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"chokidar@0.2.3","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"1f322a97518fe051e07fc6fb2ac576bcdb208be6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.2.3.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.2.4":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.2.4","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"dependencies":{},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"chokidar@0.2.4","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"aa6df18b362a4254990dcd28014630a1553155e1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.2.4.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.2.5":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.2.5","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"dependencies":{},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"chokidar@0.2.5","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"4228827b67e28e01cbacb34925effd8768f437cc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.2.5.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.2.6":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.2.6","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"dependencies":{},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"chokidar@0.2.6","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"852022031f1fc1feb54af2fa0b5efe527370d454","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.2.6.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.3.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile","version":"0.3.0","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"scripts":{"prepublish":"coffee -o lib/ src/","postinstall":"node setup.js postinstall","test":"node setup.js test"},"dependencies":{},"devDependencies":{"mocha":"1.0.1","expect.js":"0.1.2"},"_id":"chokidar@0.3.0","dist":{"shasum":"153d3aa76231b47c7981ae8163aa141cf9c27009","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.3.0.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.4.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.4.0","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"scripts":{"prepublish":"coffee -o lib/ src/","postinstall":"node setup.js postinstall","test":"node setup.js test"},"dependencies":{},"devDependencies":{"mocha":"1.3.0","expect.js":"0.1.2"},"_id":"chokidar@0.4.0","dist":{"shasum":"4d8164c8288b930b62e7f1515a37e146329d26d3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.4.0.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.5.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.5.0","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"scripts":{"prepublish":"coffee -o lib/ src/","postinstall":"node setup.js postinstall","test":"node setup.js test"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.4.0"},"_id":"chokidar@0.5.0","dist":{"shasum":"0093837680c05f8268f868cb96ac87b0bc78c872","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.5.0.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.5.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.5.1","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8"},"scripts":{"prepublish":"coffee -o lib/ src/","postinstall":"node setup.js postinstall","test":"node setup.js test"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.4.0"},"_id":"chokidar@0.5.1","dist":{"shasum":"097e679d96a31cb1d227c14c97aa7650b9913de2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.5.1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.5.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.5.2","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8 || 0.9"},"scripts":{"prepublish":"node setup.js prepublish","postpublish":"node setup.js postpublish","test":"node setup.js test"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.4.0"},"_id":"chokidar@0.5.2","dist":{"shasum":"867e9e2ecece696897ac7bf4a656731d4e79b860","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.5.2.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.5.3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.5.3","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8 || 0.9"},"scripts":{"prepublish":"node setup.js prepublish","postpublish":"node setup.js postpublish","test":"node setup.js test"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.4.0"},"_id":"chokidar@0.5.3","dist":{"shasum":"3c5290279c4ec552466671988b76e2bc10c39191","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.5.3.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.6.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.6.0","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","engines":{"node":"~0.6.10 || 0.7 || 0.8 || 0.9"},"scripts":{"prepublish":"coffee -o lib/ src/","test":"mocha --compilers coffee:coffee-script --require test/common.js --colors"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.4.0"},"_id":"chokidar@0.6.0","dist":{"shasum":"74df31f575676bf2053576e523b0d52bbca84cad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.6.0.tgz"},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.6.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.6.1","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","scripts":{"prepublish":"coffee -o lib/ src/","test":"mocha --compilers coffee:coffee-script --require test/common.js --colors"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0"},"_id":"chokidar@0.6.1","dist":{"shasum":"a2042d38e08b2b9b85bcab62b51eb59aa31f8364","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.6.1.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.6.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.6.2","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","scripts":{"prepublish":"coffee -o lib/ src/","test":"mocha --compilers coffee:coffee-script --require test/common.js --colors"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0"},"_id":"chokidar@0.6.2","dist":{"shasum":"827ca4aba5f88198037d8e369d206b44b38e17ca","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.6.2.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.6.3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.6.3","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","scripts":{"prepublish":"node setup.js prepublish","postpublish":"node setup.js postpublish","test":"node setup.js test"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0"},"_id":"chokidar@0.6.3","dist":{"shasum":"e85968fa235f21773d388c617af085bf2104425a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.6.3.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.7.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.7.0","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","scripts":{"prepublish":"node setup.js prepublish","postpublish":"node setup.js postpublish","test":"node setup.js test","postinstall":"node setup.js postinstall"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0"},"_id":"chokidar@0.7.0","dist":{"shasum":"bfaa9bdf30c0921dbe0a98bd93a3e06a5d5814e5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.7.0.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.7.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.7.1","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","scripts":{"prepublish":"node setup.js prepublish","postpublish":"node setup.js postpublish","test":"node setup.js test","postinstall":"node setup.js postinstall"},"dependencies":{},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0"},"_id":"chokidar@0.7.1","dist":{"shasum":"a5a5b2d5df265f96d90b9888f45a9e604254112c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.7.1.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.8.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.8.0","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"main":"./lib/index","scripts":{"prepublish":"node setup.js prepublish","postpublish":"node setup.js postpublish","test":"node setup.js test"},"optionalDependencies":{"recursive-readdir":"0.0.2","fsevents":"0.1.6"},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0","rimraf":"~2.2.2"},"dependencies":{"recursive-readdir":"0.0.2","fsevents":"0.1.6"},"_id":"chokidar@0.8.0","dist":{"shasum":"13af7baabeeb7aef71bb14132f9eacfd5abaed66","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.8.0.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.8.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.8.1","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"./node_modules/.bin/mocha","postinstall":"node setup-deps.js"},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0","rimraf":"~2.2.2"},"_id":"chokidar@0.8.1","dist":{"shasum":"8ee0c99ef48420902fded73b862eac2dd75da4a6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.8.1.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.8.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.8.2","keywords":["fs","watch","watchFile","watcher","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0","rimraf":"~2.2.2"},"optionalDependencies":{"fsevents":"0.2.0","recursive-readdir":"0.0.2"},"dependencies":{"fsevents":"0.2.0","recursive-readdir":"0.0.2"},"_id":"chokidar@0.8.2","dist":{"shasum":"767e2509aaa040fd8a23cc46225a783dc1bfc899","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.8.2.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{}},"0.8.3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.8.3","keywords":["fs","watch","watchFile","watcher","watching","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0","rimraf":"~2.2.2"},"optionalDependencies":{"fsevents":"0.2.0","recursive-readdir":"0.0.2"},"gitHead":"80037cf2f94402e1c01412f385756e5bbd7b4eb5","dependencies":{"fsevents":"0.2.0","recursive-readdir":"0.0.2"},"_id":"chokidar@0.8.3","_shasum":"2d8da709a8fe3f6072c429737d7d0175fb81bef9","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"dist":{"shasum":"2d8da709a8fe3f6072c429737d7d0175fb81bef9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.8.3.tgz"},"directories":{}},"0.8.4":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.8.4","keywords":["fs","watch","watchFile","watcher","watching","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0","rimraf":"~2.2.2"},"optionalDependencies":{"fsevents":"pipobscure/fsevents#7dcdf9fa3f8956610fd6f69f72c67bace2de7138","recursive-readdir":"0.0.2"},"gitHead":"67c8c5330ed12cbbcd885409d899f86195dbe802","dependencies":{"fsevents":"pipobscure/fsevents#7dcdf9fa3f8956610fd6f69f72c67bace2de7138","recursive-readdir":"0.0.2"},"_id":"chokidar@0.8.4","_shasum":"3b2b5066817086534ba81a092bdcf4be25b8bee0","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"dist":{"shasum":"3b2b5066817086534ba81a092bdcf4be25b8bee0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.8.4.tgz"},"directories":{}},"0.9.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile.","version":"0.9.0","keywords":["fs","watch","watchFile","watcher","watching","file"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0","rimraf":"~2.2.2"},"optionalDependencies":{"fsevents":"0.3.0","recursive-readdir":"0.0.2"},"gitHead":"6ae0ec0de336119fba2c1c6bdfa2487fa59cfc4a","dependencies":{"fsevents":"0.3.0","recursive-readdir":"0.0.2"},"_id":"chokidar@0.9.0","_shasum":"c1ae41561dbdb89dd5fac615453d20b48a946c2f","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"dist":{"shasum":"c1ae41561dbdb89dd5fac615453d20b48a946c2f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.9.0.tgz"},"directories":{}},"0.10.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0","rimraf":"~2.2.2"},"optionalDependencies":{"fsevents":"0.3.0","readdirp":"~1.1.0"},"gitHead":"30a7d9eebd65c2a914969623a874c505ff9537c4","dependencies":{"fsevents":"0.3.0","readdirp":"~1.1.0"},"_id":"chokidar@0.10.0","_shasum":"0079e9cd2c92f65f527893117ae63cc6fd03292e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"0079e9cd2c92f65f527893117ae63cc6fd03292e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.0.tgz"},"directories":{}},"0.10.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~1.7.3","chai":"~1.4.0","sinon":"~1.5.2","sinon-chai":"2.2.0","coffee-script":"~1.6.0","rimraf":"~2.2.2"},"optionalDependencies":{"fsevents":"0.3.0","readdirp":"~1.1.0"},"gitHead":"88043f82830302e02c618631365f07662ee03d61","dependencies":{"fsevents":"0.3.0","readdirp":"~1.1.0"},"_id":"chokidar@0.10.1","_shasum":"ec2b4e9910c75a2b2e09ff5fdf283029b73af199","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"ec2b4e9910c75a2b2e09ff5fdf283029b73af199","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.1.tgz"},"directories":{}},"0.10.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.2","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"0.3.0","readdirp":"~1.1.0"},"dependencies":{"async-each":"~0.1.5","fsevents":"0.3.0","readdirp":"~1.1.0"},"gitHead":"ba20ee6779db57f42280bcd263b9cec5e3e9476c","_id":"chokidar@0.10.2","_shasum":"54b4221d6c8e0c57f2d2e432f8212d64d205b240","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"54b4221d6c8e0c57f2d2e432f8212d64d205b240","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.2.tgz"},"directories":{}},"0.10.3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.3","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"0.3.0","readdirp":"~1.1.0"},"dependencies":{"async-each":"~0.1.5","fsevents":"0.3.0","readdirp":"~1.1.0"},"gitHead":"c97a94c842818b829d1fad0cb88207988c460ac6","_id":"chokidar@0.10.3","_shasum":"5f228db51820140d0f9f712bd2c29f4fbc1bba49","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"5f228db51820140d0f9f712bd2c29f4fbc1bba49","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.3.tgz"},"directories":{}},"0.10.4":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.4","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1","readdirp":"~1.1.0"},"dependencies":{"async-each":"~0.1.5","fsevents":"~0.3.1","readdirp":"~1.1.0"},"gitHead":"93506dd06ab2f67a5a9d527f42ec08569d85d938","_id":"chokidar@0.10.4","_shasum":"f223829f5511b79ac0f888e981a93b241d01c89d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"f223829f5511b79ac0f888e981a93b241d01c89d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.4.tgz"},"directories":{}},"0.10.5":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.5","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.1.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"704d80225175b9eaa1464f4c71deefcaaee57765","_id":"chokidar@0.10.5","_shasum":"4a5f343c4562cd2c48fa9e6531c3feebe21eaf79","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"4a5f343c4562cd2c48fa9e6531c3feebe21eaf79","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.5.tgz"},"directories":{}},"0.10.6":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.6","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.1.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"3b229c8b1ddd96d985e8b4cda8123511ba2ae9ac","_id":"chokidar@0.10.6","_shasum":"e911c29d27bb422e61c3d2eaf621faae23c3741d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"e911c29d27bb422e61c3d2eaf621faae23c3741d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.6.tgz"},"directories":{}},"0.10.7":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.7","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.1.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"b4c76e188f091c7848b6523612628f88e5a9dc0b","_id":"chokidar@0.10.7","_shasum":"50a097e8bc1dd0297bc6b7d8c21aa4b9fdaa068d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"50a097e8bc1dd0297bc6b7d8c21aa4b9fdaa068d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.7.tgz"},"directories":{}},"0.10.8":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.8","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.1.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"34213cb36f4a1bdb6e3aa92e59cc4fbaba0801b7","_id":"chokidar@0.10.8","_shasum":"f19abef62746ec4e252195ff1754df4351ad2ef8","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"f19abef62746ec4e252195ff1754df4351ad2ef8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.8.tgz"},"directories":{}},"0.10.9":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.10.9","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.1.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"a7966d00dae54c3572ff4ffdf76cab84e347b979","_id":"chokidar@0.10.9","_shasum":"7e53db756aee61a731365c00753a35d2513e4fee","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"7e53db756aee61a731365c00753a35d2513e4fee","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.10.9.tgz"},"directories":{}},"0.11.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.11.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.1.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"5c1f795a9c4c7896ea833106ed82320d3e3a632d","_id":"chokidar@0.11.0","_shasum":"9a556c68e426ff4d13841d4bc826819fa2f2f61d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"9a556c68e426ff4d13841d4bc826819fa2f2f61d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.11.0.tgz"},"directories":{}},"0.11.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.11.1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"files":["index.js"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.1.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"c79f39cd23ebf89ead09a99c6207b813c26cb67d","_id":"chokidar@0.11.1","_shasum":"b00e01717de445783782ef5c48a803e05fed0fc4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"b00e01717de445783782ef5c48a803e05fed0fc4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.11.1.tgz"},"directories":{}},"0.12.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.12.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"main":"lib","files":["lib"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.2.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"bf9f6e6a04a33df5715e30c2487c54a3f95343c6","_id":"chokidar@0.12.0","_shasum":"71dbee9c5c6867f6b3cab081ce9f05ef9b8a0532","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"71dbee9c5c6867f6b3cab081ce9f05ef9b8a0532","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.12.0.tgz"},"directories":{}},"0.12.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.12.1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"main":"lib","files":["lib"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.2.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"abf037886b17c1fef2b32b6038da9979bd193d41","_id":"chokidar@0.12.1","_shasum":"b988914fc44d2869334fbc3b7e72256c37ab6d54","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"b988914fc44d2869334fbc3b7e72256c37ab6d54","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.12.1.tgz"},"directories":{}},"0.12.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.12.2","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"main":"lib","files":["lib"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.3.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"29e485f0080e7cc2a5f6c1d5549131f25bda8179","_id":"chokidar@0.12.2","_shasum":"9ea1719bf2cc41136ea6e8a3dc7d08ecf36c8c12","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"9ea1719bf2cc41136ea6e8a3dc7d08ecf36c8c12","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.12.2.tgz"},"directories":{}},"0.12.3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.12.3","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"main":"lib","files":["lib"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.3.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"b952a4c16161a640926263625e5a800b5b583295","_id":"chokidar@0.12.3","_shasum":"02987da6cae9ebc012370a225a1184ad69940683","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"02987da6cae9ebc012370a225a1184ad69940683","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.12.3.tgz"},"directories":{}},"0.12.4":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.12.4","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"main":"lib","files":["lib"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.3.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"c7a7d9ff03667a0e3d45c90522f386631d5b43ce","_id":"chokidar@0.12.4","_shasum":"572e9299c5f820ebb02d2ba1e5d06a52bea75706","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"572e9299c5f820ebb02d2ba1e5d06a52bea75706","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.12.4.tgz"},"directories":{}},"0.12.5":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.12.5","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"main":"lib","files":["lib"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.3.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"fa94c0f26d6a0f8a7dfe5e9143997d7a3f67b0d4","_id":"chokidar@0.12.5","_shasum":"69ce0c49752dc4d32b5a45023b4b83661f858107","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"69ce0c49752dc4d32b5a45023b4b83661f858107","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.12.5.tgz"},"directories":{}},"0.12.6":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"0.12.6","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"mocha"},"main":"lib","files":["lib"],"devDependencies":{"mocha":"~2.0.0","chai":"~1.9.2","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"readdirp":"~1.3.0","async-each":"~0.1.5","fsevents":"~0.3.1"},"gitHead":"dec31efd2f30b907bce324ff9fb2e4f1e782f92b","_id":"chokidar@0.12.6","_shasum":"be204f5b9634e009311256e5d6e8e0e508284d2f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"be204f5b9634e009311256e5d6e8e0e508284d2f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-0.12.6.tgz"},"directories":{}},"1.0.0-rc1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.0-rc1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"istanbul test _mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"main":"lib","files":["lib"],"devDependencies":{"chai":"~1.9.2","coveralls":"~2.11.2","istanbul":"~0.3.5","mocha":"~2.0.0","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"anymatch":"~1.1.0","async-each":"~0.1.5","glob-parent":"~1.0.0","readdirp":"~1.3.0","fsevents":"~0.3.1"},"gitHead":"b40daaca95a26f9df8d1d3b06968d851348b0ed8","_id":"chokidar@1.0.0-rc1","_shasum":"b1b447f2b388375820d8e766dd918bd109ddeb87","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"b1b447f2b388375820d8e766dd918bd109ddeb87","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.0-rc1.tgz"},"directories":{}},"1.0.0-rc1.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.0-rc1.1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"istanbul test _mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"main":"lib","files":["lib/"],"devDependencies":{"chai":"~1.9.2","coveralls":"~2.11.2","istanbul":"~0.3.5","mocha":"~2.0.0","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"anymatch":"~1.1.0","async-each":"~0.1.5","glob-parent":"~1.0.0","readdirp":"~1.3.0","fsevents":"~0.3.1"},"gitHead":"b40daaca95a26f9df8d1d3b06968d851348b0ed8","_id":"chokidar@1.0.0-rc1.1","_shasum":"e4ec078b2a10778963f94c00e5dca1696e6842cc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"e4ec078b2a10778963f94c00e5dca1696e6842cc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.0-rc1.1.tgz"},"directories":{}},"1.0.0-rc2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.0-rc2","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"istanbul test _mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"main":"lib","files":["lib/"],"devDependencies":{"chai":"~1.9.2","coveralls":"~2.11.2","istanbul":"~0.3.5","mocha":"~2.0.0","sinon":"~1.10.3","sinon-chai":"~2.6.0"},"optionalDependencies":{"fsevents":"~0.3.1"},"dependencies":{"anymatch":"~1.1.0","async-each":"~0.1.5","glob-parent":"~1.0.0","readdirp":"~1.3.0","fsevents":"~0.3.1"},"gitHead":"972e7b75af0e91494eadcd115104098d979d08b9","_id":"chokidar@1.0.0-rc2","_shasum":"7adc3966f8b97492a95b7d8b98ba2c21cbdaa7a1","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"7adc3966f8b97492a95b7d8b98ba2c21cbdaa7a1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.0-rc2.tgz"},"directories":{}},"1.0.0-rc3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.0-rc3","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"main":"lib","files":["lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"222a71c92a63c1cd02fcdb95c5a3c3b875686d84","_id":"chokidar@1.0.0-rc3","_shasum":"f95d5e60c7d66eb53136c8999c47e9d4f37118f5","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.4","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"f95d5e60c7d66eb53136c8999c47e9d4f37118f5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.0-rc3.tgz"},"directories":{}},"1.0.0-rc4":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.0-rc4","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"main":"lib","files":["lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"e80e0825a3f31a578039ed0ad610c4cac4ad35eb","_id":"chokidar@1.0.0-rc4","_shasum":"312378ae793e6320591f230f0f69c0de93d02b6e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"312378ae793e6320591f230f0f69c0de93d02b6e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.0-rc4.tgz"},"directories":{}},"1.0.0-rc5":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.0-rc5","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","is-glob":"^1.1.3","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"63fa12753e49fa799c5ddc63b61229008d31086e","_id":"chokidar@1.0.0-rc5","_shasum":"45cb28ae7478b981d739b35f1e18d687aeb55802","_from":".","_npmVersion":"2.7.3","_nodeVersion":"1.6.2","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"45cb28ae7478b981d739b35f1e18d687aeb55802","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.0-rc5.tgz"},"directories":{}},"1.0.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","is-glob":"^1.1.3","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"f617546aa33f2ceafb51359b65a7fddd0b882b2d","_id":"chokidar@1.0.0","_shasum":"4af904c033eda714142b8ac371498b939923f8c9","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"4af904c033eda714142b8ac371498b939923f8c9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"licenses":[{"type":"MIT","url":"http://github.com/paulmillr/chokidar/raw/master/README.md"}],"scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","is-glob":"^1.1.3","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"beb9db68404a93cac844bbd2f5b5c4e25559d1a5","_id":"chokidar@1.0.1","_shasum":"b19e476a071ac0c7a01279cdc936e0d31c6ee06a","_from":".","_npmVersion":"2.7.3","_nodeVersion":"1.6.2","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"b19e476a071ac0c7a01279cdc936e0d31c6ee06a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.2","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","is-glob":"^1.1.3","path-is-absolute":"^1.0.0","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"33320c3e40a199a87c61951a145d7c1011f3a13f","_id":"chokidar@1.0.2","_shasum":"c5d4f226ccd0044a16278498eb009c0715ce48c1","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"c5d4f226ccd0044a16278498eb009c0715ce48c1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.2.tgz"},"directories":{}},"1.0.3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.3","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","is-glob":"^1.1.3","path-is-absolute":"^1.0.0","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"ba90462886d0fbb1927f70fe2e7a25a4249b9994","_id":"chokidar@1.0.3","_shasum":"ba63580caeb89bbdf869eab51bbca4f3ca441be8","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"ba63580caeb89bbdf869eab51bbca4f3ca441be8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.3.tgz"},"directories":{}},"1.0.4":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.4","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","is-glob":"^1.1.3","path-is-absolute":"^1.0.0","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"769307823d2ec266e3679c24a080116a64680ab9","_id":"chokidar@1.0.4","_shasum":"bd9fbb1ef0cccc60e2da10c9aeafad6f2c72043f","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"bd9fbb1ef0cccc60e2da10c9aeafad6f2c72043f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.4.tgz"},"directories":{}},"1.0.5":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.5","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.1"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","is-glob":"^1.1.3","path-is-absolute":"^1.0.0","readdirp":"^1.3.0","fsevents":"^0.3.1"},"gitHead":"c9b6054e0951bffa3df140d57199d8960b7a1376","_id":"chokidar@1.0.5","_shasum":"f29278a36e174365da56ccad488ecacce4893494","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"f29278a36e174365da56ccad488ecacce4893494","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.5.tgz"},"directories":{}},"1.0.6":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.0.6","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^1.9.2","coveralls":"^2.11.2","istanbul":"^0.3.5","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^0.3.8"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^1.0.0","is-binary-path":"^1.0.0","is-glob":"^1.1.3","path-is-absolute":"^1.0.0","readdirp":"^1.3.0","fsevents":"^0.3.8"},"gitHead":"bc38ab360f1bf1020f074796e2be014caf785321","_id":"chokidar@1.0.6","_shasum":"0a1c0bce1e24993afc105a5b81ea26dda01e23af","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"dist":{"shasum":"0a1c0bce1e24993afc105a5b81ea26dda01e23af","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.0.6.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"directories":{}},"1.1.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.1.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^2.0.0","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"07d9e78c67cc918c5903cc49b610f7a6b2ff9d52","_id":"chokidar@1.1.0","_shasum":"15aa9169424828895c6c8aee4eee8d8156820b9f","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"dist":{"shasum":"15aa9169424828895c6c8aee4eee8d8156820b9f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.1.0.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"directories":{}},"1.2.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.2.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.1.0","arrify":"^1.0.0","async-each":"^0.1.5","glob-parent":"^2.0.0","is-binary-path":"^1.0.0","is-glob":"^2.0.0","lodash.flatten":"^3.0.2","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"b0e122a984f731c0829973242d05b63e7c79176b","_id":"chokidar@1.2.0","_shasum":"d7cc02d05e94092ddfacad488ebebe588ff2ff30","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"dist":{"shasum":"d7cc02d05e94092ddfacad488ebebe588ff2ff30","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.2.0.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"directories":{}},"1.3.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.3.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^0.1.6","glob-parent":"^2.0.0","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"a25a52a1cbbed8fb612bac219e5181e32a53b2f7","_id":"chokidar@1.3.0","_shasum":"a7c2af0f4234b5d83e3491e403817a88d517e4ef","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"a7c2af0f4234b5d83e3491e403817a88d517e4ef","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.3.0.tgz"},"directories":{}},"1.4.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.4.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^0.1.6","glob-parent":"^2.0.0","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"899c2438a7c3a24657f969e266ca3092e85c0512","_id":"chokidar@1.4.0","_shasum":"bb6fc855413c2e6ca5f54250103a692f2f64f51e","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"dist":{"shasum":"bb6fc855413c2e6ca5f54250103a692f2f64f51e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.4.0.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"directories":{}},"1.4.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.4.1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^0.1.6","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"ece3a67e6ff13bd88584ed3ba2b43198c46651a1","_id":"chokidar@1.4.1","_shasum":"df1d906769701a0f3df492c37dcc3cb35e6450e4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"df1d906769701a0f3df492c37dcc3cb35e6450e4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.4.1.tgz"},"directories":{}},"1.4.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.4.2","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^0.1.6","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"1df57f2631849db749ce56c4125e050937c82106","_id":"chokidar@1.4.2","_shasum":"3eaea6c2898fa7208184a453d4889a9addf567d2","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"3eaea6c2898fa7208184a453d4889a9addf567d2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.4.2.tgz"},"directories":{}},"1.4.3":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.4.3","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^1.0.0","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"798d00221fbe11dcdc2c65ea7754fd4399d81fed","_id":"chokidar@1.4.3","_shasum":"5fe733a4d9acaea51b26454b7e59559163d0dbb2","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"5fe733a4d9acaea51b26454b7e59559163d0dbb2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.4.3.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/chokidar-1.4.3.tgz_1456536294331_0.16991215758025646"},"directories":{}},"1.5.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.5.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^1.0.0","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"3b6f870bee48f33210af15ef4bba128a668934c6","_id":"chokidar@1.5.0","_shasum":"7a5f1a72e6ee3e1daffdae74832e8eb28ee2f19a","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"7a5f1a72e6ee3e1daffdae74832e8eb28ee2f19a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chokidar-1.5.0.tgz_1462914212741_0.31828335183672607"},"directories":{}},"1.5.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.5.1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^1.0.0","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"638a52986e398fa856429f195994d2a6b5b74b9d","_id":"chokidar@1.5.1","_shasum":"43115fcf2d8fb74f06b630aeeccd06715a146dd1","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"43115fcf2d8fb74f06b630aeeccd06715a146dd1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.5.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chokidar-1.5.1.tgz_1463779048839_0.31024676584638655"},"directories":{}},"1.5.2":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.5.2","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","graceful-fs":"4.1.4","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^1.0.0","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"15c642702060735f5157ee7a23fafb84b50b9a23","_id":"chokidar@1.5.2","_shasum":"293e728640cc93dd8277424334b3c6d4ad3a348a","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"dist":{"shasum":"293e728640cc93dd8277424334b3c6d4ad3a348a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.5.2.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chokidar-1.5.2.tgz_1465334533337_0.7033559519331902"},"directories":{}},"1.6.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.6.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","graceful-fs":"4.1.4","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^1.0.0","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"a5c0b127db9d46617b7a3d82cc3fffc08d2ef164","_id":"chokidar@1.6.0","_shasum":"90c32ad4802901d7713de532dc284e96a63ad058","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"dist":{"shasum":"90c32ad4802901d7713de532dc284e96a63ad058","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.6.0.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/chokidar-1.6.0.tgz_1466606619436_0.9914595072623342"},"directories":{}},"1.6.1":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.6.1","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","graceful-fs":"4.1.4","istanbul":"^0.3.20","mocha":"^2.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^1.0.0","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"c08145c5368fac6441773e621da9db215cc0d3b2","_id":"chokidar@1.6.1","_shasum":"2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.6.0","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"dist":{"shasum":"2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.6.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chokidar-1.6.1.tgz_1476470196311_0.5785318606067449"},"directories":{}},"1.7.0":{"name":"chokidar","description":"A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.","version":"1.7.0","keywords":["fs","watch","watchFile","watcher","watching","file","fsevents"],"homepage":"https://github.com/paulmillr/chokidar","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"repository":{"type":"git","url":"git+https://github.com/paulmillr/chokidar.git"},"bugs":{"url":"http://github.com/paulmillr/chokidar/issues"},"license":"MIT","scripts":{"test":"istanbul test node_modules/mocha/bin/_mocha","ci-test":"istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"},"files":["index.js","lib/"],"devDependencies":{"chai":"^3.2.0","coveralls":"^2.11.2","graceful-fs":"4.1.4","istanbul":"^0.3.20","mocha":"^3.0.0","rimraf":"^2.4.3","sinon":"^1.10.3","sinon-chai":"^2.6.0"},"optionalDependencies":{"fsevents":"^1.0.0"},"dependencies":{"anymatch":"^1.3.0","async-each":"^1.0.0","glob-parent":"^2.0.0","inherits":"^2.0.1","is-binary-path":"^1.0.0","is-glob":"^2.0.0","path-is-absolute":"^1.0.0","readdirp":"^2.0.0","fsevents":"^1.0.0"},"gitHead":"3b1071a6dd82397842f4f7dc63b72c703bd06275","_id":"chokidar@1.7.0","_shasum":"798e689778151c8076b4b360e5edd28cda2bb468","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.6.2","_npmUser":{"name":"es128","email":"elan.shanker+npm@gmail.com"},"dist":{"shasum":"798e689778151c8076b4b360e5edd28cda2bb468","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chokidar/-/chokidar-1.7.0.tgz"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"es128","email":"elan.shanker+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chokidar-1.7.0.tgz_1494269155265_0.519245742354542"},"directories":{}}},"name":"chokidar","time":{"modified":"2017-07-20T12:31:52.247Z","created":"2012-04-26T01:32:10.158Z","0.1.1":"2012-04-26T01:32:12.087Z","0.2.0":"2012-05-04T13:53:24.862Z","0.2.1":"2012-05-04T14:20:02.520Z","0.2.2":"2012-05-04T14:24:46.390Z","0.2.3":"2012-05-12T18:28:30.315Z","0.2.4":"2012-06-06T21:50:00.820Z","0.2.5":"2012-06-08T14:00:31.344Z","0.2.6":"2012-06-08T14:45:47.895Z","0.3.0":"2012-06-24T09:22:45.869Z","0.4.0":"2012-07-26T03:42:48.520Z","0.5.0":"2012-12-09T03:06:45.402Z","0.5.1":"2013-01-06T09:59:50.533Z","0.5.2":"2013-01-13T12:01:23.486Z","0.5.3":"2013-01-13T13:59:58.545Z","0.6.0":"2013-03-10T19:44:21.996Z","0.6.1":"2013-03-19T03:31:30.240Z","0.6.2":"2013-03-19T12:53:23.348Z","0.6.3":"2013-08-12T09:59:34.042Z","0.7.0":"2013-10-21T23:04:23.465Z","0.7.1":"2013-11-18T06:17:45.689Z","0.8.0":"2013-11-29T18:02:47.105Z","0.8.1":"2013-12-16T15:48:42.986Z","0.8.2":"2014-03-25T23:09:58.457Z","0.8.3":"2014-08-14T06:26:21.882Z","0.8.4":"2014-08-14T18:05:50.214Z","0.9.0":"2014-09-24T21:44:10.143Z","0.10.0":"2014-10-18T05:23:47.896Z","0.10.1":"2014-10-19T16:21:58.063Z","0.10.2":"2014-10-23T13:41:44.701Z","0.10.3":"2014-10-28T19:49:23.928Z","0.10.4":"2014-11-05T22:02:41.296Z","0.10.5":"2014-11-06T21:33:59.190Z","0.10.6":"2014-11-12T22:01:28.664Z","0.10.7":"2014-11-14T19:02:24.014Z","0.10.8":"2014-11-14T19:26:01.405Z","0.10.9":"2014-11-15T13:37:55.237Z","0.11.0":"2014-11-16T16:16:17.262Z","0.11.1":"2014-11-19T15:27:20.904Z","0.12.0":"2014-12-08T16:41:53.273Z","0.12.1":"2014-12-10T17:08:49.269Z","0.12.2":"2014-12-13T04:11:39.712Z","0.12.3":"2014-12-13T13:31:46.261Z","0.12.4":"2014-12-14T15:50:36.038Z","0.12.5":"2014-12-17T16:08:26.655Z","0.12.6":"2015-01-06T14:20:01.972Z","1.0.0-rc1":"2015-01-21T11:48:45.295Z","1.0.0-rc1.1":"2015-01-21T12:07:30.361Z","1.0.0-rc2":"2015-01-21T12:09:34.209Z","1.0.0-rc3":"2015-01-30T20:03:21.832Z","1.0.0-rc4":"2015-03-04T19:02:28.497Z","1.0.0-rc5":"2015-03-30T13:07:40.267Z","1.0.0-rc6":"2015-04-01T18:49:05.263Z","1.0.0":"2015-04-07T16:35:44.217Z","1.0.1":"2015-04-08T21:49:31.539Z","1.0.2":"2015-05-30T15:56:29.145Z","1.0.3":"2015-06-04T13:23:40.487Z","1.0.4":"2015-07-15T14:28:35.972Z","1.0.5":"2015-07-20T16:27:56.626Z","1.0.6":"2015-09-18T14:35:59.532Z","1.1.0":"2015-09-23T19:06:09.095Z","1.2.0":"2015-10-01T19:57:20.267Z","1.3.0":"2015-11-18T01:37:19.521Z","1.4.0":"2015-12-03T20:34:13.598Z","1.4.1":"2015-12-09T21:59:10.892Z","1.4.2":"2015-12-30T14:59:31.923Z","1.4.3":"2016-02-27T01:24:57.639Z","1.5.0":"2016-05-10T21:03:35.544Z","1.5.1":"2016-05-20T21:17:29.241Z","1.5.2":"2016-06-07T21:22:15.813Z","1.6.0":"2016-06-22T14:43:41.390Z","1.6.1":"2016-10-14T18:36:38.000Z","1.7.0":"2017-05-08T18:45:57.365Z"},"readmeFilename":"README.md","homepage":"https://github.com/paulmillr/chokidar"}