-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1002 Bytes
/
package.json
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
{
"name": "mnotify",
"version": "1.3.0",
"description": "A command-line utility for sending alerts and notifications through Messenger.",
"main": "index.js",
"bin": {
"mnotify": "src/mnotify.js"
},
"scripts": {
"test": "node test.js",
"init": "mnotify --init",
"help": "mnotify --help",
"botcore": "mnotify --using-botcore",
"postinstall": "src/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AstroCB/mnotify.git"
},
"keywords": [
"messenger",
"facebook",
"notifications",
"cli"
],
"author": "Cameron Bernhardt (AstroCB)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AstroCB/mnotify/issues"
},
"homepage": "https://github.com/AstroCB/mnotify#readme",
"dependencies": {
"chalk": "^4.1.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"facebook-chat-api": "^1.8.0",
"messenger-botcore": "^2.2.0",
"readline-sync": "^1.4.10"
}
}