{
  "name": "node-dev",
  "version": "2.0.2",
  "description": "Restarts your app when files are modified",
  "keywords": [
    "restart",
    "reload",
    "supervisor",
    "monitor",
    "watch"
  ],
  "author": {
    "name": "Felix Gnass"
  },
  "repository": {
    "type": "git",
    "url": "http://github.com/fgnass/node-dev.git"
  },
  "license": "MIT",
  "bin": {
    "node-dev": "./bin/node-dev"
  },
  "main": "./lib",
  "preferGlobal": true,
  "engines": {
    "node": ">=0.8.0"
  },
  "scripts": {
    "test": "./node_modules/.bin/mocha"
  },
  "dependencies": {
    "growl": "~1.7.0",
    "dateformat": "~1.0.4-1.2.3",
    "chokidar": "~0.6.2"
  },
  "devDependencies": {
    "mocha": "~1.4.1",
    "expect.js": "~0.2.0",
    "touch": "0.0.2",
    "coffee-script": "~1.5.0"
  },
  "readme": "[![Build Status](https://secure.travis-ci.org/fgnass/node-dev.png)](http://travis-ci.org/fgnass/node-dev)\n\n# node-dev\n\nNode-dev is a development tool for [Node.js](http://nodejs.org) that\nautomatically restarts the node process when a script is modified.\n\nIt's an alternative to tools like\n[supervisor](https://github.com/isaacs/node-supervisor) or\n[nodemon](https://github.com/remy/nodemon) that doesn't require any\nconfiguration. Just run `node-dev foo.js` as you would normally run `node` and\nit will automatically figure out which files need to be watched.\n\nYou may also use node-dev with [CoffeeScript](http://http://coffeescript.org/)\nor [LiveScript](http://livescript.net/) apps. Just run `node-dev app.coffee`\nor `node-dev app.ls`. You may also register additional language flavors by\nadding them to the extensions list in your [.node-dev.json](#settings) config\nfile.\n\n### Desktop Notifications\n\nStatus and error messages can be displayed as desktop notification using either\n[Growl](http://growl.info/about.php) or\n[libnotify](http://developer.gnome.org/libnotify/).\n\n![Screenshot](http://fgnass.github.com/images/node-dev.png)\n\n![Screenshot](http://fgnass.github.com/images/node-dev-linux.png)\n\n### Installation\n\nNode-dev can be installed via [npm](http://github.com/isaacs/npm):\n\n    npm install -g node-dev\n\nIn order to use Growl notifications\n[growlnotify](http://growl.info/extras.php#growlnotify) must be installed on\nyour system.\n\nTo use OSX's built in notifications:\n\n    sudo gem install terminal-notifier\n\n### Settings\n\nUpon startup node-dev looks for a `.node-dev.json` file in the user's HOME\ndirectory. It will also look for a `.node-dev.json` file in the current\ndirectory which – if present – overwrites the global settings.\n\n* __vm__ – Whether to watch files loaded via Node's [VM](http://nodejs.org/docs/latest/api/vm.html) module. _Default:_ `true`\n* __fork__ – Whether to hook into [child_process.fork()](http://nodejs.org/docs/latest/api/child_process.html#child_process_child_process_fork_modulepath_args_options) which is required for [clustered](http://nodejs.org/docs/latest/api/cluster.html) programs. _Default:_ `true`\n* __notify__ – Whether to display desktop notifications. _Default:_ `true`\n* __timestamp__ – The timestamp format to use for logging restarts. _Default:_ `\"HH:MM:ss\"`\n* __clear__ – Whether to clear the screen upon restarts. _Default:_ `false`\n* __extensions__ – Modules to load based bad on extension of the main script. _Default:_\n  `{ coffee: \"coffee-script\", ls: \"LiveScript\" }`\n\n### The MIT License (MIT)\n\nCopyright (c) 2013 Felix Gnass\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",
  "readmeFilename": "README.md",
  "bugs": {
    "url": "https://github.com/fgnass/node-dev/issues"
  },
  "_id": "node-dev@2.0.2",
  "_from": "node-dev@*"
}
