{
  "author": {
    "name": "Brian Noguchi",
    "email": "brian.noguchi@gmail.com",
    "url": "https://github.com/bnoguchi"
  },
  "name": "notify-send",
  "description": "Ubuntu growl-like notifications for node.js",
  "version": "0.1.2",
  "homepage": "https://github.com/bnoguchi/node-notify-send",
  "repository": {
    "type": "git",
    "url": "git://github.com/bnoguchi/node-notify-send.git"
  },
  "main": "./lib/notify-send.js",
  "scripts": {
    "test": "make test"
  },
  "engines": {
    "node": ">=0.4.0"
  },
  "dependencies": {},
  "devDependencies": {},
  "readme": "notify-send\n===========\n\nnode.js library for `notify-send`, Ubuntu equivalent of OSX growl\n\nSee the [man page](http://man.cx/notify-send) for more information about `notify-send`.\n\n## Installation\n\n    $ npm install notify-send\n\n## Example\n\n```javascript\nvar growl = require('notify-send');\n\ngrowl.notify('summary', 'body');\n\n// Specify different urgency levels\ngrowl.low.notify('Announcement', 'Clear skies and sunshine today');\ngrowl.normal.notify('Announcement', 'Meeting in 15 minutes');\ngrowl.critical.notify('Announcement', 'Red Alert!');\n\n// Specify an urgency level only once and re-use it\nvar low = growl.low;\nlow.notify('Non-important', 'Some low urgency message');\n\n// You can specify other options\ngrowl.timeout(2000).notify('Timing', \"I'm out of here in 2\");\ngrowl.icon('/home/nodejs/path/to/icon.png').notify('Incoming', 'sponsored message');\ngrowl.category('nodejs').notify('Release', 'v1.0 released');\n\n// All options are chainable\ngrowl.low.timeout(2000).icon('/home/nodejs/path/to/icon.png').category('nodejs').notify('summary', 'body');\n\n// With minimal syntax, you can re-use all options specified in a chain prior to `notify(summary, body)`\nvar reusableNotifier = growl.critical.timeout(100);\nreusableNotifier('Gmail', '[Subject] Important...');\nreusableNotifier('Gmail', '[Subject] RE: Important...');\n```\n",
  "readmeFilename": "README.md",
  "bugs": {
    "url": "https://github.com/bnoguchi/node-notify-send/issues"
  },
  "_id": "notify-send@0.1.2",
  "dist": {
    "shasum": "d44c533fe27b90477d06ed03db37596210d7b83b"
  },
  "_from": "notify-send@",
  "_resolved": "https://registry.npmjs.org/notify-send/-/notify-send-0.1.2.tgz"
}
