forked from techinems/herald
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 847 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
{
"name": "herald",
"version": "1.0.3",
"description": "A package to parse text message dispatches and send them to Slack",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techinems/herald.git"
},
"author": "Dan Bruce <dan@ddbruce.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/techinems/herald/issues"
},
"homepage": "https://github.com/techinems/herald#readme",
"dependencies": {
"@slack/bolt": "^3.12.1",
"dotenv": "^16.0.2",
"mailparser": "^3.5.0",
"nodemailer": "^6.7.8",
"simple-smtp-listener": "^1.0.1"
},
"overrides": {
"simple-smtp-listener": {
"mailparser": "^3.5.0",
"mailsplit": "^5.3.2"
}
}
}