forked from ReachFive/fake-smtp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.46 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "fake-smtp-server",
"version": "0.8.1",
"description": "Fake SMTP Server for email testing",
"author": "ReachFive",
"license": "MIT",
"homepage": "https://github.com/ReachFive/fake-smtp-server",
"bugs": {
"url": "https://github.com/ReachFive/fake-smtp-server/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ReachFive/fake-smtp-server.git"
},
"keywords": [
"smtp",
"development",
"test",
"fake",
"dummy",
"mock",
"email",
"e-mail",
"automated",
"integration",
"ci"
],
"main": "index.js",
"bin": {
"fake-smtp-server": "./index.js"
},
"dependencies": {
"cli": "1.0.1",
"express": "4.18.2",
"express-basic-auth": "1.2.1",
"lodash": "4.17.21",
"mailparser": "3.5.0",
"moment": "2.29.4",
"smtp-server": "3.11.0"
},
"devDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"react-transition-group": "4.4.5",
"reactstrap": "9.1.4"
},
"engines": {
"node": ">=8.5.0"
},
"files": [
"build"
],
"scripts": {
"start": "react-scripts start",
"build": "PUBLIC_URL=./ react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prepublishOnly": "npm run build",
"docker:build": "docker build -t reachfive/fake-smtp-server ."
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}