-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "rest-smtp-sink",
"version": "2.1.0",
"description": "Similar to FakeSMTP, rest-smtp-sink is a SMTP server and web server. It stores e-mails it receives in a SQLite database, and serves them via its own web server, with a RESTful API.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:llambda/rest-smtp-sink.git"
},
"bugs": {
"url": "https://github.com/llambda/rest-smtp-sink/issues"
},
"homepage": "https://github.com/llambda/rest-smtp-sink",
"dependencies": {
"JSONStream": "^0.10.0",
"bluebird": "^2.9.13",
"commander": "^2.6.0",
"compression": "^1.4.1",
"event-loop-monitor": "^0.1.0",
"express": "^4.11.2",
"inherits": "^2.0.1",
"knex": "^0.7.3",
"lodash": "^3.3.1",
"mailparser": "^0.4.9",
"simplesmtp": "^0.3.35",
"sqlite3": "^3.0.5"
},
"bin": {
"rest-smtp-sink": "./cli.js"
},
"devDependencies": {
"casual": "^1.4.7",
"pony": "^1.0.0"
}
}