-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 970 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 970 Bytes
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
{
"name": "BulkDelete",
"version": "1.0.0",
"description": "A Thunderbird extension for deleting emails in bulk",
"scripts": {
"test": "jest",
"lint": "eslint .",
"format": "prettier --write .",
"compile": "node compile.js"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jest": "^29.5.13",
"@types/thunderbird-webext-browser": "^127.0.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-mozilla": "^4.0.0",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"webextension-polyfill": "^0.12.0"
},
"dependencies": {
"archiver": "^7.0.1",
"dir-compare": "^5.0.0",
"extract-zip": "^2.0.1",
"mailparser": "^3.7.1"
}
}