-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
31 lines (31 loc) · 876 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
{
"name": "slack-email-webhook",
"version": "0.1.2",
"description": "A lightweight service to get notifications on Slack for received and sent mail.",
"author": "Nick Schwarzenberg <[email protected]>",
"license": "AGPLv3",
"scripts": {
"start": "node slack-email-webhook.js"
},
"bin": {
"slack-email-webhook": "./slack-email-webhook.js"
},
"main": "./slack-email-webhook.js",
"repository": {
"type": "git",
"url": "https://github.com/bitfasching/slack-email-webhook"
},
"keywords": [
"slack", "imap", "email", "webhook", "notification"
],
"engines": {
"node": ">=7.6"
},
"dependencies": {
"timestamped-console": "~0.1.0",
"emailjs-imap-client": "~2.0.5",
"envelope": "~1.0.6"
},
"preferGlobal": false,
"private": false
}