-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.09 KB
/
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
41
{
"name": "git-messenger-webhook",
"version": "1.0.0",
"description": "A simple git push webhook event notification for facebook messenger",
"main": "webhook.js",
"dependencies": {
"dotenv": "^6.0.0",
"facebook-chat-api": "^1.6.0",
"fastify": "^1.8.0",
"ip": "^1.1.5",
"pm2": "^3.2.2",
"shelljs": "^0.8.2"
},
"devDependencies": {},
"scripts": {
"deploy:prod": "yarn install && pm2 start webhook.js --name webhook && pm2 startup && pm2 save",
"deploy:update": "git pull origin master && yarn install && pm2 restart webhook "
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaeljymsgutierrez/git-messenger-webhook.git"
},
"keywords": [
"facebook-chat-api",
"fastify",
"git-chat-bot",
"git",
"facebook",
"messenger",
"shelljs",
"nodejs",
"pm2",
"ip"
],
"author": "Chael Gutierrez",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaeljymsgutierrez/git-messenger-webhook/issues"
},
"homepage": "https://github.com/michaeljymsgutierrez/git-messenger-webhook#readme"
}