-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.32 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
73
74
75
76
77
78
79
80
81
{
"description": "Comprehensive email security suite for Thunderbird with DKIM, SPF, DMARC, phishing detection, and advanced threat analysis",
"keywords": [
"thunderbird",
"mailextension",
"webextension",
"dkim",
"spf",
"dmarc",
"email-security",
"phishing-detection",
"spam-filter",
"email-authentication",
"rsr-compliant",
"security"
],
"homepage": "https://github.com/lieser/dkim_verifier/wiki",
"bugs": {
"url": "https://github.com/lieser/dkim_verifier/issues"
},
"license": "MIT",
"author": "Philippe Lieser",
"repository": {
"type": "git",
"url": "git+https://github.com/lieser/dkim_verifier.git"
},
"scripts": {
"update-thirdparty": "node ./scripts/update-thirdparty.js",
"lint": "eslint .",
"lint:ci": "eslint --max-warnings=0 .",
"checkJs": "tsc-silent --project jsconfig.json --suppress @/thirdparty/ --suppress @/node_modules/",
"test": "node node_modules/mocha/bin/mocha --recursive --reporter dot",
"test:ci": "node node_modules/mocha/bin/mocha --recursive --reporter mocha-multi --reporter-options spec=-,json=test-results.json",
"pack": "node ./scripts/pack.js",
"atnChangelog": "node ./scripts/atnChangelog.js",
"verify-rsr": "node ./scripts/verify-rsr.js",
"verify": "npm run lint && npm run checkJs && npm run test && npm run verify-rsr"
},
"type": "module",
"dependencies": {
"tabulator-tables": "^6.3.1",
"tweetnacl-es6": "1.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.0",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.1",
"@types/sinon": "^21.0.0",
"@types/tabulator-tables": "^6.3.3",
"@types/thunderbird-webext-browser": "^127.0.0",
"chai": "^6.2.1",
"chalk": "^5.4.1",
"eslint": "^10.4.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-mocha": "^11.3.0",
"eslint-plugin-mozilla": "^4.0.0",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.6.0",
"globby": "^16.1.0",
"http-server": "^14.1.1",
"jszip": "^3.10.1",
"marked": "^18.0.4",
"mocha": "^11.7.6",
"mocha-multi": "^1.1.7",
"simple-git": "^3.27.0",
"sinon": "^22.0.0",
"ts-essentials": "^10.2.0",
"tsc-silent": "^1.2.2",
"typescript": "^6.0.2"
},
"overrides": {
"glob": "^10.5.0"
},
"engines": {
"node": ">=22.0.0"
}
}