forked from maildev/maildev
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.21 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "maildev",
"description": "SMTP Server and Web Interface for reading and testing emails during development",
"version": "3.0.0-rc2",
"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": {
"clean": "rm -rf dist coverage tsconfig.tsbuildinfo",
"build": "tsc --build && npm run copy-app && npm run css",
"copy-app": "mkdir -p dist && cp -r ./src/app ./dist/ && rm -rf ./dist/app/styles",
"start": "npm run build && node ./bin/maildev",
"test": "prettier . -c && npm run build && nyc _mocha --exit --timeout 5000",
"test:debug": "npm run build && nyc _mocha --exit --timeout 5000",
"lint": "prettier . -c",
"lint:fix": "prettier . -w",
"dev": "node ./scripts/dev.js && npm run css-watch",
"css": "sass --style=compressed --no-source-map src/app/styles/style.scss:dist/app/styles/style.css",
"css-watch": "sass --watch --style=compressed --no-source-map src/app/styles/style.scss:dist/app/styles/style.css",
"docker-build": "./src/scripts/dockerBuild.sh",
"docker-run": "docker run --rm -p 1080:1080 -p 1025:1025 maildev/maildev:$npm_package_version",
"docker-push": "./src/scripts/dockerPush.sh",
"update-readme": "node ./src/scripts/updateUsageREADME.js",
"prepare": "npm run build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"bin": {
"maildev": "./bin/maildev"
},
"license": "MIT",
"dependencies": {
"@types/mailparser": "^3.4.4",
"addressparser": "1.0.1",
"async": "^3.2.3",
"commander": "^12.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dompurify": "^3.1.6",
"express": "^4.19.2",
"jsdom": "^24.1.1",
"mailparser": "^3.7.1",
"nodemailer": "^6.9.14",
"smtp-server": "^3.13.4",
"socket.io": "^4.7.5",
"wildstring": "1.0.9",
"mime": "1.6.0"
},
"overrides": {
"socket.io-adapter": "2.5.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^18.15.3",
"expect": "^29.7.0",
"http-proxy-middleware": "^3.0.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"mocha": "^10.7.0",
"nodemon": "^3.1.4",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18.0.0"
},
"nyc": {
"exclude": [
"test/**/*",
"src/lib/helpers/strtotime.js"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
"json",
"lcov",
"text-summary"
]
},
"prettier": {
"printWidth": 100
}
}