-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "pleasenospam",
"version": "1.2.0",
"description": "Temporary email service",
"license": "MIT",
"repository": "JoeBiellik/pleasenospam",
"homepage": "https://github.com/JoeBiellik/pleasenospam",
"author": "Joe Biellik <[email protected]> (https://joebiellik.com/)",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/JoeBiellik/pleasenospam/issues"
},
"keywords": [
"temporary email",
"temporary mail",
"temp email",
"temp mail",
"smtp"
],
"main": "server.js",
"scripts": {
"mail-server": "node mail-server.js",
"watch": "nodemon -L -e js,json,pug -i ./public",
"watch mail-server": "nodemon -L -e js,json -i ./public mail-server.js",
"lint": "eslint . && pug-lint ./views"
},
"dependencies": {
"config": "^3.0.0",
"email-addresses": "^3.1.0",
"html-to-text": "^5.1.1",
"inline-css": "^2.2.4",
"koa": "^2.13.0",
"koa-compress": "^5.0.1",
"koa-logger": "^3.1.0",
"koa-router": "^9.1.0",
"koa-static-cache": "^5.1.2",
"koa-views": "^6.1.3",
"mailcomposer": "^4.0.0",
"mailparser": "^2.2.0",
"overwrite": "^1.0.3",
"pug": "^3.0.0",
"reserved-email-addresses-list": "0.0.8",
"sanitizer": "0.1.3",
"sillyname": "^0.1.0",
"smtp-connection": "^4.0.2",
"smtp-server": "^3.7.0",
"thinky": "^2.3.9"
},
"devDependencies": {
"eslint": "^7.4.0",
"nodemon": "^2.0.4",
"pug-lint": "^2.6.0"
}
}