This repository has been archived by the owner. It is now read-only.
forked from maildev/maildev
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "maildev",
"description": "Fork of github.com/maildev/maildev + improvements.",
"version": "1.3.6",
"keywords": [],
"author": "Dominik Serafin",
"homepage": "https://github.com/DominikSerafin/maildev",
"repository": {
"type": "git",
"url": "https://github.com/DominikSerafin/maildev.git"
},
"scripts": {
"version": "cross-env-shell echo $npm_package_version",
"test": "standard && nyc _mocha --exit",
"lint": "standard",
"lint:fix": "standard --fix",
"docker-build": "cross-env-shell docker build -t dominikserafin/maildev:$npm_package_version -f docker/Dockerfile-production . && cross-env-shell docker tag dominikserafin/maildev:$npm_package_version dominikserafin/maildev:latest",
"docker-run": "cross-env-shell docker run --rm -p 1080:1080 -p 1025:1025 dominikserafin/maildev:$npm_package_version",
"docker-push": "cross-env-shell docker push dominikserafin/maildev:$npm_package_version && docker push dominikserafin/maildev:latest"
},
"main": "./index.js",
"bin": {
"maildev": "./bin/maildev"
},
"license": "MIT",
"dependencies": {
"async": "3.1.0",
"commander": "2.20.3",
"cors": "2.8.5",
"express": "4.17.1",
"mailparser-mit": "1.0.0",
"opn": "6.0.0",
"rimraf": "3.0.2",
"smtp-connection": "4.0.2",
"smtp-server": "3.5.0",
"socket.io": "2.2.0",
"strip-tags": "0.1.1",
"wildstring": "1.0.9"
},
"devDependencies": {
"blns": "2.0.4",
"cross-env": "7.0.3",
"expect": "1.20.2",
"got": "9.6.0",
"http-proxy-middleware": "0.19.1",
"mocha": "7.1.1",
"node-sass": "4.13.1",
"nodemailer": "6.4.2",
"nodemon": "2.0.2",
"nyc": "14.1.1",
"standard": "12.0.1"
},
"engines": {
"node": ">=10.0.0"
},
"standard": {
"ignore": [
"app/components/"
]
},
"nyc": {
"exclude": [
"test/**/*"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
"json",
"lcov",
"text-summary"
]
}
}