-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.08 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
{
"name": "mailward",
"version": "0.1.0",
"description": "Audit SPF, DKIM, DMARC, MTA-STS, TLS-RPT and BIMI for any domain, and read DMARC aggregate reports offline. Zero dependencies, no account, nothing uploaded.",
"type": "module",
"bin": {
"mailward": "bin/mailward.js"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"lint": "node scripts/check-bom.js && node --check bin/mailward.js"
},
"engines": {
"node": ">=18.17"
},
"keywords": [
"dmarc",
"spf",
"dkim",
"bimi",
"mta-sts",
"tls-rpt",
"email",
"email-security",
"email-authentication",
"deliverability",
"phishing",
"spoofing",
"dns",
"doh",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DEM9N101/mailward.git"
},
"bugs": {
"url": "https://github.com/DEM9N101/mailward/issues"
},
"homepage": "https://github.com/DEM9N101/mailward#readme"
}