-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
36 lines (36 loc) · 949 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
{
"name": "smtp-tester",
"description": "Quick and dirty smtp server, that accepts handlers to process messages",
"version": "2.1.0",
"url": "http://github.com/deitch/smtp-tester",
"scripts": {
"test": "node test/test.js"
},
"author": "Avi Deitcher <[email protected]>",
"contributors": [
"Greg Miell (https://github.com/GothAck)",
"Damian Janowski (https://github.com/djanowski)",
"fallafeljan (https://github.com/fallafeljan)"
],
"engines": {
"node": ">=14.0.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@types/mailparser": "^3.4.0",
"@types/smtp-server": "^3.5.7",
"mailparser": "^3.5.0",
"smtp-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "http://github.com/deitch/smtp-tester.git"
},
"devDependencies": {
"eslint": "^8.22.0",
"nodemailer": "^6.7.7",
"tape": "^4.5.1",
"tape-promise": "^2.0.1"
}
}