1 | {
|
2 | "name": "node-notifier",
|
3 | "version": "3.4.0",
|
4 | "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)",
|
5 | "main": "index.js",
|
6 | "directories": {
|
7 | "example": "example"
|
8 | },
|
9 | "scripts": {
|
10 | "test": "./node_modules/.bin/mocha -R spec"
|
11 | },
|
12 | "repository": "git@github.com:mikaelbr/node-notifier.git",
|
13 | "keywords": [
|
14 | "notification center",
|
15 | "mac os x 10.8",
|
16 | "notify",
|
17 | "terminal-notifier",
|
18 | "notify-send",
|
19 | "growl",
|
20 | "windows 8 notification",
|
21 | "toaster",
|
22 | "notification"
|
23 | ],
|
24 | "author": "Mikael Brevik",
|
25 | "license": "MIT",
|
26 | "devDependencies": {
|
27 | "mocha": "^1.21.4",
|
28 | "should": "^4.0.4"
|
29 | },
|
30 | "dependencies": {
|
31 | "semver": "^3.0.1",
|
32 | "shellwords": "^0.1.0",
|
33 | "which": "^1.0.5",
|
34 | "growly": "^1.1.1"
|
35 | }
|
36 | }
|