forked from mikaelbr/node-notifier-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 KB
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
43
44
45
46
47
48
{
"name": "node-notifier-cli",
"version": "2.0.0",
"description": "CLI API for node-notifier",
"main": "bin.js",
"bin": {
"notify": "bin.js"
},
"scripts": {
"lint": "eslint bin.js"
},
"keywords": [
"cli",
"notification center",
"mac os x 10.8",
"notify",
"terminal-notifier",
"notify-send",
"growl",
"windows 8 notification",
"toaster",
"notification"
],
"author": "Mikael Brevik",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"dependencies": {
"cli-usage": "^0.1.10",
"minimist": "^1.2.5",
"node-notifier": "^8.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikaelbr/node-notifier-cli.git"
},
"bugs": {
"url": "https://github.com/mikaelbr/node-notifier-cli/issues"
},
"homepage": "https://github.com/mikaelbr/node-notifier-cli#readme"
}