-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "dmarc-solution",
"version": "1.2.5",
"description": "One stop solution for all DMARC Problems. This package includes fetching of dmarc record, parsing the provided/fetched record, validation of DMARC record, generating a new DMARC record",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"compile": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/architjn/dmarc-solution.git"
},
"keywords": [
"dmarc",
"dkim",
"email",
"mail",
"spf",
"record",
"parser",
"txt",
"dns",
"generator",
"report"
],
"author": "Archit Jain",
"license": "ISC",
"maintainers": [
{
"name": "Archit Jain",
"email": "architjn93@gmail.com"
}
],
"bugs": {
"url": "https://github.com/architjn/dmarc-solution/issues"
},
"dependencies": {
"email-validator": "^2.0.4"
},
"devDependencies": {
"@types/dns-packet": "^5.2.4"
}
}