forked from maildev/maildev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.38 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
{
"name": "maildev",
"description": "SMTP Server and Web Interface for reading and testing emails during development",
"version": "0.12.1",
"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"
},
"main": "./index.js",
"bin": {
"maildev": "./bin/maildev"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/djfarrelly/maildev/blob/master/LICENSE"
}
],
"dependencies": {
"async": "^1.4.2",
"commander": "~2.8.0",
"express": "^4.12.3",
"mailparser": "^0.5.3",
"open": "~0.0.5",
"simplesmtp": "^0.3.35",
"smtp-connection": "^1.3.1",
"smtp-server": "^1.4.0",
"socket.io": "^1.3.5",
"wildstring": "0.0.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-nodemon": "^0.4.0",
"grunt-sass": "^0.18.1",
"matchdep": "^0.3.0",
"mocha": "^2.2.5",
"nodemailer": "^1.3.4"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
}
}