-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 955 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
37
38
39
40
41
42
43
44
45
46
{
"name": "smsmtp",
"version": "0.3.0",
"description": "Fake SMTP server that stores and displays a single mail.",
"bin": "./bin/smsmtp",
"scripts": {
"lint": "npx eslint index.js smtp.js http.js",
"start": "node index.js"
},
"dependencies": {
"mailparser": "^3.6.3",
"memory-cache": "^0.2.0",
"smtp-server": "^3.11.0"
},
"keywords": [
"fake",
"smtp",
"test",
"dummy",
"mock",
"email",
"e-mail",
"development",
"testing",
"integration",
"ci"
],
"author": {
"name": "Ingo Struck",
"email": "testing@ingostruck.de",
"url": "http://github.com/istr"
},
"repository": {
"type": "git",
"url": "https://github.com/istr/smsmtp.git"
},
"bugs": {
"url": "https://github.com/istr/smsmtp/issues",
"email": "testing@ingostruck.de"
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.31.0",
"eslint-plugin-node": "^11.1.0"
}
}