forked from zhanglyni/MailDev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.6 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
{
"name": "maildev",
"description": "SMTP Server and Web Interface for reading and testing emails during development",
"version": "1.0.0-rc3",
"keywords": [
"email",
"e-mail",
"mail",
"maildev",
"mailcatcher",
"testing",
"development",
"smtp"
],
"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": "standard && istanbul cover _mocha",
"lint": "standard",
"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"
},
"main": "./index.js",
"bin": {
"maildev": "./bin/maildev"
},
"license": "MIT",
"dependencies": {
"async": "1.5.1",
"commander": "2.9.0",
"express": "4.13.4",
"mailparser": "0.6.2",
"open": "0.0.5",
"smtp-connection": "2.3.1",
"smtp-server": "1.16.1",
"socket.io": "1.7.3",
"wildstring": "1.0.8"
},
"devDependencies": {
"expect": "1.20.2",
"got": "^6.7.1",
"http-proxy-middleware": "0.12.0",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"node-sass": "^4.5.2",
"nodemailer": "2.3.0",
"nodemon": "^1.11.0",
"standard": "^10.0.2"
},
"engines": {
"node": ">=4.0.0"
},
"standard": {
"ignore": [
"app/components/"
]
}
}