You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
15 KiB

  1. {
  2. "name": "grunt-contrib-watch",
  3. "description": "Run predefined tasks whenever watched file patterns are added, changed or deleted.",
  4. "version": "0.4.0",
  5. "homepage": "https://github.com/gruntjs/grunt-contrib-watch",
  6. "author": {
  7. "name": "Grunt Team",
  8. "url": "http://gruntjs.com/"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/gruntjs/grunt-contrib-watch.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/gruntjs/grunt-contrib-watch/issues"
  16. },
  17. "licenses": [
  18. {
  19. "type": "MIT",
  20. "url": "https://github.com/gruntjs/grunt-contrib-watch/blob/master/LICENSE-MIT"
  21. }
  22. ],
  23. "main": "Gruntfile.js",
  24. "engines": {
  25. "node": ">= 0.8.0"
  26. },
  27. "scripts": {
  28. "test": "grunt nodeunit -v"
  29. },
  30. "dependencies": {
  31. "gaze": "~0.3.4",
  32. "tiny-lr": "0.0.4"
  33. },
  34. "devDependencies": {
  35. "grunt": "~0.4.0",
  36. "grunt-contrib-jshint": "~0.4.3",
  37. "grunt-contrib-nodeunit": "~0.1.2",
  38. "grunt-contrib-internal": "~0.4.5"
  39. },
  40. "peerDependencies": {
  41. "grunt": "~0.4.0"
  42. },
  43. "keywords": [
  44. "gruntplugin",
  45. "watch"
  46. ],
  47. "contributors": [
  48. {
  49. "name": "Kyle Robinson Young",
  50. "url": "http://dontkry.com"
  51. },
  52. {
  53. "name": "\"Cowboy\" Ben Alman",
  54. "url": "http://benalman.com"
  55. },
  56. {
  57. "name": "Tyler Kellen",
  58. "url": "http://goingslowly.com"
  59. },
  60. {
  61. "name": "Gong Hao"
  62. },
  63. {
  64. "name": "Jaime Pillora"
  65. },
  66. {
  67. "name": "Chris Danford"
  68. },
  69. {
  70. "name": "Jason San Jose"
  71. },
  72. {
  73. "name": "Oleg Seletsky"
  74. },
  75. {
  76. "name": "Jamie Stackhouse"
  77. },
  78. {
  79. "name": "Chris Talkington"
  80. }
  81. ],
  82. "readme": "# grunt-contrib-watch [![Build Status](https://travis-ci.org/gruntjs/grunt-contrib-watch.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-watch)\n\n> Run predefined tasks whenever watched file patterns are added, changed or deleted.\n\n\n\n## Getting Started\nThis plugin requires Grunt `~0.4.0`\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:\n\n```shell\nnpm install grunt-contrib-watch --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('grunt-contrib-watch');\n```\n\n\n\n\n## Watch task\n_Run this task with the `grunt watch` command._\n\n\n### Settings\n\nThere are a number of options available. Please review the [minimatch options here](https://github.com/isaacs/minimatch#options). As well as some additional options as follows:\n\n#### files\nType: `String|Array`\n\nThis defines what file patterns this task will watch. Can be a string or an array of files and/or minimatch patterns.\n\n#### tasks\nType: `String|Array`\n\nThis defines which tasks to run when a watched file event occurs.\n\n#### options.nospawn\nType: `Boolean`\nDefault: false\n\nThis instructs the watch task to not spawn task runs in a child process. Setting this option also speeds up the reaction time of the watch (usually 500ms faster for most) and allows subsequent task runs to share the same context (i.e., using a reload task). Not spawning task runs can make the watch more prone to failing so please use as needed.\n\nExample:\n```js\nwatch: {\n scripts: {\n files: ['**/*.js'],\n tasks: ['livereload'],\n options: {\n nospawn: true\n }\n }\n}\n```\n\n#### options.interrupt\nType: `Boolean`\nDefault: false\n\nAs files are modified this watch task will spawn tasks in child processes. The default behavior will only spawn a new child process per target when the previous process has finished. Set the `interrupt` option to true to terminate the previous process and spawn a new one upon later changes.\n\nExample:\n```js\nwatch: {\n scripts: {\n files: '**/*.js',\n tasks: ['jshint'],\n options: {\n interrupt: true\n }\n }\n}\n```\n\n#### options.debounceDelay\nType: `Integer`\nDefault: 500\n\nHow long to wait before emitting events in succession for the same filepath and status. For example if your `Gruntfile.js` file was `changed`, a `changed` event will only fire again after the given milliseconds.\n\nExample:\n```js\nwatch: {\n scripts: {\n files: '**/*.js',\n tasks: ['jshint'],\n options: {\n debounceDelay: 250\n }\n }\n}\n```\n\n#### options.interval\nType: `Integer`\nDefault: 100\n\nThe `interval` is passed to `fs.watchFile`. Since `interval` is only used by `fs.watchFile` and this watcher also uses `fs.watch`; it is recommended to ignore this option. *Default is 100ms*.\n\n###### options.event\nType: `String|Array`\nDefault: `'all'`\n\nSpecify the type watch event that trigger the specified task. This option can be one or many of: `'all'`, `'changed'`, `'added'` and `'deleted'`.\n\nExample:\n```js\nwatch: {\n scripts: {\n files: '**/*.js',\n tasks: ['generateFileManifest'],\n options: {\n event: ['added', 'deleted']\n }\n }\n}\n```\n\n#### options.forever\nType: `Boolean`\nDefault: true\n\nThis is *only a task level option* and cannot be configured per target. By default the watch task will duck punch `grunt.fatal` and `grunt.warn` to try and prevent them from exiting the watch process. If you don't want `grunt.fatal` and `grunt.warn` to be overridden set the `forever` option to `false`.\n\n#### options.livereload\nType: `Boolean|Number|Object`\nDefault: false\n\nSet to `true` or set `livereload: 1337` to a port number to enable live reloading. Def
  83. "readmeFilename": "README.md",
  84. "_id": "grunt-contrib-watch@0.4.0",
  85. "_from": "grunt-contrib-watch@~0.4.0"
  86. }