-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.61 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
{
"name": "smtpeshka",
"description": "Virtual SMTP-server for debugging mail messages third-party applications",
"version": "1.0.0",
"homepage": "https://github.com/abricos/smtpeshka",
"author": {
"name": "Alexander Kuzmin",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/abricos/smtpeshka.git"
},
"bugs": {
"url": "https://github.com/abricos/smtpeshka/issues"
},
"license": "MIT",
"main": "smtpeshka.js",
"bin": {
"smtpeshka": "./bin/smtpeshka"
},
"scripts": {
"start": "gulp",
"test": "gulp test",
"postinstall": "node scripts/install.js"
},
"keywords": [
"smtp",
"haraka",
"debug",
"virtual",
"mail",
"test",
"tester"
],
"devDependencies": {
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-coverage": "^0.3.32",
"gulp-jsdoc3": "^1.0.1",
"gulp-mocha": "^2.0.0",
"gulp-subtree": "^0.1.0",
"nodemailer": "^1.3.0",
"nodemailer-smtp-transport": "^0.1.13",
"request": "^2.51.0",
"should": "^4.5.0",
"vinyl-paths": "^1.0.0"
},
"dependencies": {
"Haraka": "^2.8.13",
"body-parser": "^1.10.2",
"bootstrap": "^3.3.2",
"cookie-parser": "^1.3.3",
"debug": "^2.1.1",
"ejs": "^2.2.1",
"express": "^4.15.0",
"fs-extra": "^0.14.0",
"glob": "^4.3.5",
"mailparser": "^0.6.2",
"md5": "^2.2.1",
"morgan": "^1.8.1",
"nopt": "^4.0.1",
"serve-favicon": "^2.2.0",
"through2": "^2.0.3",
"tree-config": "^1.0.0",
"tree-config-logger": "^1.0.0",
"tree-config-parser": "^1.0.0",
"vinyl-fs": "^0.3.13"
}
}