forked from maildev/maildev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "maildev",
"description": "SMTP Server and Web Interface for reading and testing emails during development",
"version": "2.2.0",
"keywords": [
"email",
"e-mail",
"mail",
"maildev",
"mailcatcher",
"testing",
"development",
"smtp"
],
"author": "Dan Farrelly",
"homepage": "http://maildev.github.io/maildev/",
"maintainers": [
{
"name": "Dan Farrelly",
"email": "[email protected]"
},
{
"name": "Dominik Serafin",
"email": "[email protected]"
},
{
"name": "LoneRifle",
"email": "[email protected]"
},
{
"name": "soulteary",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "http://github.com/maildev/maildev.git"
},
"scripts": {
"start": "node ./bin/maildev",
"test": "standard && nyc _mocha --exit --timeout 5000",
"lint": "standard",
"lint:fix": "standard --fix",
"dev": "node ./scripts/dev.js && npm run css-watch",
"css": "sass --no-source-map --style=compressed assets/styles/style.scss app/styles/style.css",
"css-watch": "sass --no-source-map -w assets/styles/style.scss app/styles/style.css",
"docker-build": "./scripts/dockerBuild.sh",
"docker-run": "docker run --rm -p 1080:1080 -p 1025:1025 maildev/maildev:$npm_package_version",
"docker-push": "./scripts/dockerPush.sh",
"update-readme": "node ./scripts/updateUsageREADME.js"
},
"main": "./index.js",
"bin": {
"maildev": "./bin/maildev"
},
"license": "MIT",
"dependencies": {
"addressparser": "^1.0.1",
"async": "^3.2.5",
"commander": "^12.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dompurify": "^3.1.6",
"express": "^4.19.2",
"iconv-lite": "^0.6.3",
"jsdom": "^24.1.0",
"mailparser2-mit": "^1.0.1",
"mime": "3.0.0",
"nodemailer": "^6.9.14",
"rimraf": "^6.0.0",
"smtp-server": "^3.13.4",
"socket.io": "^4.7.5",
"uue": "^3.1.2"
},
"devDependencies": {
"expect": "^29.7.0",
"got": "11.8.6",
"http-proxy-middleware": "^3.0.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"mocha": "^10.6.0",
"nodemon": "^3.1.4",
"nyc": "^17.0.0",
"sass": "^1.77.6",
"standard": "^17.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"standard": {
"ignore": [
"app/components/"
]
},
"nyc": {
"exclude": [
"test/**/*"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
"json",
"lcov",
"text-summary"
]
}
}