forked from lieser/dkim_verifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.78 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
{
"description": "A DKIM verifier add-on for Thunderbird",
"keywords": [
"thunderbird",
"mailextension",
"webextension",
"dkim"
],
"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 --config .eslintrc-ci.json --max-warnings=0 .",
"checkJs": "tsc-silent --project jsconfig.json --suppress @/thirdparty/",
"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"
},
"type": "module",
"dependencies": {
"tabulator-tables": "^5.5.2",
"tweetnacl-es6": "1.0.3"
},
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/mocha": "^10.0.4",
"@types/node": "^20.9.0",
"@types/sinon": "^17.0.1",
"@types/tabulator-tables": "^5.5.4",
"@types/thunderbird-webext-browser": "^109.0.3",
"chai": "^4.3.10",
"chalk": "^5.3.0",
"eslint": "^8.53.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-mozilla": "^3.2.0",
"globby": "^14.0.0",
"http-server": "^14.1.1",
"jszip": "^3.10.1",
"mocha": "^10.2.0",
"mocha-multi": "^1.1.7",
"simple-git": "^3.20.0",
"sinon": "^17.0.1",
"ts-essentials": "^9.4.1",
"tsc-silent": "^1.2.2",
"typescript": "^5.2.2",
"webextensions-api-fake": "^1.3.0"
},
"overrides": {
"webextensions-api-fake": {
"sinon": "^17.0.1"
}
},
"engines": {
"node": ">=20.0.0"
}
}