forked from maildev/maildev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 KB
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
{
"name": "maildev",
"description": "SMTP Server and Web Interface for reading and testing emails during development",
"version": "0.13.4",
"keywords": [
"email",
"e-mail",
"mail",
"mailcatcher"
],
"author": "Dan Farrelly",
"homepage": "http://djfarrelly.github.io/MailDev/",
"maintainers": [
{
"name": "Dan Farrelly",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "http://github.com/djfarrelly/maildev.git"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover _mocha"
},
"main": "./index.js",
"bin": {
"maildev": "./bin/maildev"
},
"license": "MIT",
"dependencies": {
"async": "1.5.1",
"commander": "2.9.0",
"express": "4.13.4",
"mailparser": "0.5.3",
"open": "0.0.5",
"simplesmtp": "0.3.35",
"smtp-connection": "2.3.1",
"smtp-server": "1.4.0",
"socket.io": "1.4.5",
"wildstring": "1.0.8"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-concurrent": "2.2.1",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-watch": "1.0.0",
"grunt-nodemon": "0.4.1",
"grunt-sass": "1.1.0",
"http-proxy-middleware": "0.12.0",
"istanbul": "0.4.4",
"matchdep": "1.0.1",
"mocha": "2.2.5",
"nodemailer": "2.3.0",
"request": "2.69.0"
},
"engines": {
"node": ">=0.10.0"
}
}