Files
ola5doc/sys/node_modules/node-sass/node_modules/gaze/package.json
T

165 lines
12 KiB
JSON

{
"_args": [
[
{
"raw": "gaze@^1.0.0",
"scope": null,
"escapedName": "gaze",
"name": "gaze",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
},
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass"
]
],
"_from": "gaze@>=1.0.0 <2.0.0",
"_id": "gaze@1.1.2",
"_inCache": true,
"_location": "/node-sass/gaze",
"_nodeVersion": "4.4.1",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/gaze-1.1.2.tgz_1475004682530_0.29796709935180843"
},
"_npmUser": {
"name": "shama",
"email": "kyle@dontkry.com"
},
"_npmVersion": "2.15.2",
"_phantomChildren": {},
"_requested": {
"raw": "gaze@^1.0.0",
"scope": null,
"escapedName": "gaze",
"name": "gaze",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/node-sass"
],
"_resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz",
"_shasum": "847224677adb8870d679257ed3388fdb61e40105",
"_shrinkwrap": null,
"_spec": "gaze@^1.0.0",
"_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass",
"author": {
"name": "Kyle Robinson Young",
"email": "kyle@dontkry.com"
},
"bugs": {
"url": "https://github.com/shama/gaze/issues"
},
"contributors": [
{
"name": "Kyle Robinson Young",
"url": "http://dontkry.com"
},
{
"name": "Sam Day",
"url": "http://sam.is-super-awesome.com"
},
{
"name": "Roarke Gaskill",
"url": "http://starkinvestments.com"
},
{
"name": "Lance Pollard",
"url": "http://lancepollard.com/"
},
{
"name": "Daniel Fagnan",
"url": "http://hydrocodedesign.com/"
},
{
"name": "Jonas",
"url": "http://jpommerening.github.io/"
},
{
"name": "Chris Chua",
"url": "http://sirh.cc/"
},
{
"name": "Kael Zhang",
"url": "http://kael.me"
},
{
"name": "Krasimir Tsonev",
"url": "http://krasimirtsonev.com/blog"
},
{
"name": "brett-shwom"
}
],
"dependencies": {
"globule": "^1.0.0"
},
"description": "A globbing fs.watch wrapper built from the best parts of other fine watch libs.",
"devDependencies": {
"async": "^1.5.2",
"grunt": "^1.0.1",
"grunt-benchmark": "^0.3.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"rimraf": "^2.5.2",
"semistandard": "^7.0.5"
},
"directories": {},
"dist": {
"shasum": "847224677adb8870d679257ed3388fdb61e40105",
"tarball": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"lib",
"LICENSE-MIT"
],
"gitHead": "46d6c2afd75b0061e8ec277309b2ab4046b914f1",
"homepage": "https://github.com/shama/gaze",
"keywords": [
"watch",
"glob"
],
"license": "MIT",
"main": "lib/gaze",
"maintainers": [
{
"name": "alexgorbatchev",
"email": "alex.gorbatchev@gmail.com"
},
{
"name": "joshperry",
"email": "josh@6bit.com"
},
{
"name": "shama",
"email": "kyle@dontkry.com"
}
],
"name": "gaze",
"optionalDependencies": {},
"readme": "# gaze [![Build Status](http://img.shields.io/travis/shama/gaze.svg)](https://travis-ci.org/shama/gaze) [![Build status](https://ci.appveyor.com/api/projects/status/vtx65w9eg511tgo4)](https://ci.appveyor.com/project/shama/gaze)\n\nA globbing fs.watch wrapper built from the best parts of other fine watch libs. \nCompatible with Node.js 4.x/0.12/0.10, Windows, OSX and Linux.\n\n![gaze](http://dontkry.com/images/repos/gaze.png)\n\n[![NPM](https://nodei.co/npm/gaze.png?downloads=true)](https://nodei.co/npm/gaze/)\n\n## Usage\nInstall the module with: `npm install gaze` or place into your `package.json`\nand run `npm install`.\n\n```javascript\nvar gaze = require('gaze');\n\n// Watch all .js files/dirs in process.cwd()\ngaze('**/*.js', function(err, watcher) {\n // Files have all started watching\n // watcher === this\n\n // Get all watched files\n var watched = this.watched();\n\n // On file changed\n this.on('changed', function(filepath) {\n console.log(filepath + ' was changed');\n });\n\n // On file added\n this.on('added', function(filepath) {\n console.log(filepath + ' was added');\n });\n\n // On file deleted\n this.on('deleted', function(filepath) {\n console.log(filepath + ' was deleted');\n });\n\n // On changed/added/deleted\n this.on('all', function(event, filepath) {\n console.log(filepath + ' was ' + event);\n });\n\n // Get watched files with relative paths\n var files = this.relative();\n});\n\n// Also accepts an array of patterns\ngaze(['stylesheets/*.css', 'images/**/*.png'], function() {\n // Add more patterns later to be watched\n this.add(['js/*.js']);\n});\n```\n\n### Alternate Interface\n\n```javascript\nvar Gaze = require('gaze').Gaze;\n\nvar gaze = new Gaze('**/*');\n\n// Files have all started watching\ngaze.on('ready', function(watcher) { });\n\n// A file has been added/changed/deleted has occurred\ngaze.on('all', function(event, filepath) { });\n```\n\n### Errors\n\n```javascript\ngaze('**/*', function(error, watcher) {\n if (error) {\n // Handle error if it occurred while starting up\n }\n});\n\n// Or with the alternative interface\nvar gaze = new Gaze();\ngaze.on('error', function(error) {\n // Handle error here\n});\ngaze.add('**/*');\n```\n\n### Minimatch / Glob\n\nSee [isaacs's minimatch](https://github.com/isaacs/minimatch) for more\ninformation on glob patterns.\n\n## Documentation\n\n### gaze([patterns, options, callback])\n\n* `patterns` {String|Array} File patterns to be matched\n* `options` {Object}\n* `callback` {Function}\n * `err` {Error | null}\n * `watcher` {Object} Instance of the Gaze watcher\n\n### Class: gaze.Gaze\n\nCreate a Gaze object by instancing the `gaze.Gaze` class.\n\n```javascript\nvar Gaze = require('gaze').Gaze;\nvar gaze = new Gaze(pattern, options, callback);\n```\n\n#### Properties\n\n* `options` The options object passed in.\n * `interval` {integer} Interval to pass to fs.watchFile\n * `debounceDelay` {integer} Delay for events called in succession for the same\n file/event in milliseconds\n * `mode` {string} Force the watch mode. Either `'auto'` (default), `'watch'` (force native events), or `'poll'` (force stat polling).\n * `cwd` {string} The current working directory to base file patterns from. Default is `process.cwd()`.\n\n#### Events\n\n* `ready(watcher)` When files have been globbed and watching has begun.\n* `all(event, filepath)` When an `added`, `changed` or `deleted` event occurs.\n* `added(filepath)` When a file has been added to a watch directory.\n* `changed(filepath)` When a file has been changed.\n* `deleted(filepath)` When a file has been deleted.\n* `renamed(newPath, oldPath)` When a file has been renamed.\n* `end()` When the watcher is closed and watches have been removed.\n* `error(err)` When an error occurs.\n* `nomatch` When no files have been matched.\n\n#### Methods\n\n* `emit(event, [...])` Wrapper for the EventEmitter.emit.\n `added`|`changed`|`deleted` events will also trigger the `all` event.\n* `close()` Unwatch all files and reset the watch instance.\n* `add(patterns, callback)` Adds file(s) patterns to be watched.\n* `remove(filepath)` removes a file or directory from being watched. Does not\n recurse directories.\n* `watched()` Returns the currently watched files.\n* `relative([dir, unixify])` Returns the currently watched files with relative paths.\n * `dir` {string} Only return relative files for this directory.\n * `unixify` {boolean} Return paths with `/` instead of `\\\\` if on Windows.\n\n## Similar Projects\n\nOther great watch libraries to try are:\n\n* [paulmillr's chokidar](https://github.com/paulmillr/chokidar)\n* [amasad's sane](https://github.com/amasad/sane)\n* [mikeal's watch](https://github.com/mikeal/watch)\n* [github's pathwatcher](https://github.com/atom/node-pathwatcher)\n* [bevry's watchr](https://github.com/bevry/watchr)\n\n## Contributing\nIn lieu of a formal styleguide, take care to maintain the existing coding style.\nAdd unit tests for any new or changed functionality. Lint and test your code\nusing [grunt](http://gruntjs.com/).\n\n## Release History\n* 1.1.2 - Prevent more ENOENT errors from escaping (@alexgorbatchev).\n* 1.1.1 - Prevent fs.watch errors from escaping error handler (@rosen-vladimirov). Fix _addToWatched without path.sep (@wyicwx).\n* 1.1.0 - Update to `globule@1.0.0` with `minimatch >= 3.0.0`.\n* 1.0.0 - Revert back to 0.5.2. Drop support for Node.js v0.8. Fix for `maxListeners`. Update globule to `0.2.0`.\n* 0.6.4 - Catch and emit error from readdir (@oconnore). Fix for 0 maxListeners. Use graceful-fs to avoid EMFILE errors in other places fs is used. Better method to determine if pathwatcher was built. Fix keeping process alive too much, only init pathwatcher if a file is being watched. Set min required to Windows Vista when building on Windows (@pvolok).\n* 0.6.3 - Add support for node v0.11\n* 0.6.2 - Fix argument error with watched(). Fix for erroneous added events on folders. Ignore msvs build error 4244.\n* 0.6.1 - Fix for absolute paths.\n* 0.6.0 - Uses native OS events (fork of pathwatcher) but can fall back to stat polling. Everything is async to avoid blocking, including `relative()` and `watched()`. Better error handling. Update to globule@0.2.0. No longer watches `cwd` by default. Added `mode` option. Better `EMFILE` message. Avoids `ENOENT` errors with symlinks. All constructor arguments are optional.\n* 0.5.2 - Fix for ENOENT error with non-existent symlinks [BACKPORTED].\n* 0.5.1 - Use setImmediate (process.nextTick for node v0.8) to defer ready/nomatch events (@amasad).\n* 0.5.0 - Process is now kept alive while watching files. Emits a nomatch event when no files are matching.\n* 0.4.3 - Track file additions in newly created folders (@brett-shwom).\n* 0.4.2 - Fix .remove() method to remove a single file in a directory (@kaelzhang). Fixing Cannot call method 'call' of undefined (@krasimir). Track new file additions within folders (@brett-shwom).\n* 0.4.1 - Fix watchDir not respecting close in race condition (@chrisirhc).\n* 0.4.0 - Drop support for node v0.6. Use globule for file matching. Avoid node v0.10 path.resolve/join errors. Register new files when added to non-existent folder. Multiple instances can now poll the same files (@jpommerening).\n* 0.3.4 - Code clean up. Fix path must be strings errors (@groner). Fix incorrect added events (@groner).\n* 0.3.3 - Fix for multiple patterns with negate.\n* 0.3.2 - Emit `end` before removeAllListeners.\n* 0.3.1 - Fix added events within subfolder patterns.\n* 0.3.0 - Handle safewrite events, `forceWatchMethod` option removed, bug fixes and watch optimizations (@rgaskill).\n* 0.2.2 - Fix issue where subsequent add calls dont get watched (@samcday). removeAllListeners on close.\n* 0.2.1 - Fix issue with invalid `added` events in current working dir.\n* 0.2.0 - Support and mark folders with `path.sep`. Add `forceWatchMethod` option. Support `renamed` events.\n* 0.1.6 - Recognize the `cwd` option properly\n* 0.1.5 - Catch too many open file errors\n* 0.1.4 - Really fix the race condition with 2 watches\n* 0.1.3 - Fix race condition with 2 watches\n* 0.1.2 - Read triggering changed event fix\n* 0.1.1 - Minor fixes\n* 0.1.0 - Initial release\n\n## License\nCopyright (c) 2015 Kyle Robinson Young \nLicensed under the MIT license.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/shama/gaze.git"
},
"scripts": {
"test": "semistandard && grunt nodeunit -v"
},
"semistandard": {
"ignore": [
"benchmarks",
"experiments",
"build",
"test"
]
},
"version": "1.1.2"
}