This repository has been archived by the owner on Oct 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "explodingemail",
"version": "1.10.2",
"description": "rewrite of https://exploding.email/",
"main": "dist/ExplodingEmail.js",
"scripts": {
"prestart": "npm run build",
"start": "npm run lint && npm run build && node dist/ExplodingEmail.js",
"lint": "eslint src/",
"build": "yarn && tsc -b --verbose"
},
"keywords": [
"temp-email",
"email-server",
"tempmail",
"email",
"exploding-email",
"explodingemail",
"server-software"
],
"author": "Alexander Epolite <alexander@epolite.net>",
"dependencies": {
"@datadog/datadog-api-client": "^1.0.0",
"discord-webhook-node": "^1.1.8",
"mailparser": "^3.4.0",
"redis": "^4.0.6",
"smtp-server": "^3.10.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/mailparser": "^3.4.0",
"@types/node": "^17.0.24",
"@types/smtp-server": "^3.5.7",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"typescript": "^4.6.3"
},
"maintainers": [
{
"email": "alexander@epolite.net",
"name": "Alexander Epolite"
}
],
"contributors": [
{
"email": "alexander@epolite.net",
"name": "Alexander Epolite"
}
],
"typings": "dist/ExplodingEmail.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/explodingemail/ExplodingEmailServer.git"
},
"private": false,
"engines": {
"node": ">=14.0.0"
},
"engineStrict": false,
"bin": {
"explodingemail": "./dist/ExplodingEmail.js"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": "off",
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
}