-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 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
{
"name": "mailhook-cli",
"version": "1.0.1",
"description": "📫 Mailhook.app CLI tool - A simple SMTP server that forwards your emails to your webhook.",
"private": false,
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Camille Toche",
"email": "tochecamille@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/camtosh/mailhook-cli"
},
"homepage": "https://github.com/camtosh/mailhook-cli",
"bin": {
"mailhook": "./dist/mailhook.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/mailhook.js",
"dev": "ts-node src/mailhook.ts",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build"
},
"files": ["dist", "LICENSE", "README.md"],
"keywords": ["smtp", "email", "webhook", "mailhook", "mail", "forwarding"],
"dependencies": {
"aws-sdk": "^2.1040.0",
"dotenv": "^10.0.0",
"nanoid": "^3.1.30",
"node-fetch": "^2.6.1",
"node-mailin": "^2.5.0"
},
"devDependencies": {
"@types/node": "^16.11.12",
"@types/node-fetch": "^2.6.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14.0.0"
}
}