forked from mikaelbr/node-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 967 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "node-notifier",
"version": "4.5.0",
"description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "./node_modules/.bin/mocha -R spec"
},
"repository": "git@github.com:mikaelbr/node-notifier.git",
"keywords": [
"notification center",
"mac os x 10.8",
"notify",
"terminal-notifier",
"notify-send",
"growl",
"windows 8 notification",
"toaster",
"notification"
],
"author": "Mikael Brevik",
"license": "MIT",
"devDependencies": {
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"dependencies": {
"cli-usage": "^0.1.1",
"growly": "^1.2.0",
"lodash.clonedeep": "^3.0.0",
"minimist": "^1.1.1",
"semver": "^5.1.0",
"shellwords": "^0.1.0",
"which": "^1.0.5"
},
"bin": {
"notify": "./bin.js"
}
}