forked from maildev/maildev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.3 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
{
"name": "maildev",
"description": "SMTP Server and Web Interface for reading and testing emails during development",
"version": "1.1.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]"
}
],
"repository": {
"type": "git",
"url": "http://github.com/maildev/maildev.git"
},
"scripts": {
"test": "standard && nyc _mocha --exit",
"lint": "standard",
"lint:fix": "standard --fix",
"start": "./bin/maildev",
"dev": "node ./scripts/dev.js & npm run css-watch",
"css": "node-sass --output-style compressed -o app/styles assets/styles/style.scss",
"css-watch": "node-sass -wr --output-style compressed -o app/styles assets/styles/style.scss",
"docker-build": "docker build -t maildev/maildev:$npm_package_version . && docker tag maildev/maildev:$npm_package_version maildev/maildev:latest",
"docker-run": "docker run --rm -p 1080:1080 -p 1025:1025 maildev/maildev:$npm_package_version",
"docker-push": "docker push maildev/maildev:$npm_package_version && docker push maildev/maildev:latest",
"update-readme": "node ./scripts/updateUsageREADME.js"
},
"main": "./index.js",
"bin": {
"maildev": "./bin/maildev"
},
"license": "MIT",
"dependencies": {
"async": "^3.2.3",
"commander": "^9.0.0",
"cors": "^2.8.5",
"dompurify": "^2.3.6",
"express": "^4.17.3",
"jsdom": "^19.0.0",
"mailparser-mit": "^1.0.0",
"opn": "^6.0.0",
"rimraf": "^3.0.2",
"smtp-server": "3.9.0",
"socket.io": "4.4.1",
"wildstring": "1.0.9"
},
"devDependencies": {
"expect": "^27.5.1",
"got": "^12.0.1",
"http-proxy-middleware": "2.0.3",
"mocha": "^9.2.1",
"node-sass": "^7.0.1",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"standard": "^16.0.4"
},
"engines": {
"node": ">=10.0.0"
},
"standard": {
"ignore": [
"app/components/"
]
},
"nyc": {
"exclude": [
"test/**/*"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
"json",
"lcov",
"text-summary"
]
}
}