forked from SMTP2Graph/SMTP2Graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.97 KB
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
{
"name": "smtp2graph",
"version": "1.1.4",
"description": "SMTP server to relay over MSGraph API / Microsoft 365 Exchange Online",
"main": "index.js",
"scripts": {
"dev": "webpack --mode \"development\"",
"watch": "webpack --mode \"development\" -w",
"build": "webpack --mode \"production\"",
"build-binaries": "ts-node ./tools/build-binaries.ts",
"test": "mocha test/**/*.spec.ts",
"test:receive": "mocha test/01receive/**/*.spec.ts",
"test:send": "mocha test/02send/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SMTP2Graph/SMTP2Graph.git"
},
"keywords": [
"microsoft",
"office",
"exchange",
"graph",
"smtp",
"365"
],
"author": "RoelVB",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/SMTP2Graph/SMTP2Graph/issues"
},
"homepage": "https://github.com/SMTP2Graph/SMTP2Graph#readme",
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.40.0",
"@types/base64-stream": "^1.0.5",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/http-proxy": "^1.17.14",
"@types/mailparser": "^3.4.4",
"@types/mocha": "^10.0.6",
"@types/nodemailer": "^6.4.14",
"@types/smtp-server": "^3.5.10",
"@types/tar": "^6.1.11",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.3.2",
"http-proxy": "^1.18.1",
"mailparser": "^3.6.6",
"mocha": "^10.2.0",
"rcedit": "^4.0.1",
"tar": "^6.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@azure/msal-node": "^2.10.0",
"async-mutex": "^0.4.0",
"axios": "^1.6.5",
"base64-stream": "^1.0.0",
"chokidar": "^3.5.3",
"ip-cidr": "^4.0.0",
"mailsplit": "^5.4.0",
"nodemailer": "^6.9.8",
"rate-limiter-flexible": "^4.0.0",
"smtp-server": "^3.13.6",
"winston": "^3.11.0",
"yaml": "^2.3.4"
}
}