-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "imapflow",
"version": "1.2.18",
"description": "IMAP Client for Node",
"main": "lib/imap-flow.js",
"types": "lib/imap-flow.d.ts",
"scripts": {
"test": "grunt",
"coverage": "c8 --reporter=text --reporter=html npx nodeunit test/*-test.js",
"update": "rm -rf node_modules package-lock.json && ncu -u && npm install",
"format": "prettier --write \"**/*.{js,json,md,yml,yaml}\" --ignore-path .prettierignore",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/postalsys/imapflow.git"
},
"keywords": [
"imap",
"email",
"mail"
],
"author": "Postal Systems OÜ",
"license": "MIT",
"bugs": {
"url": "https://github.com/postalsys/imapflow/issues"
},
"homepage": "https://imapflow.com/",
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "25.5.0",
"c8": "11.0.0",
"eslint": "10.1.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "10.1.8",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-contrib-nodeunit": "5.0.0",
"grunt-eslint": "26.0.0",
"prettier": "3.8.1",
"proxyquire": "^2.1.3",
"typescript": "6.0.2"
},
"dependencies": {
"@zone-eu/mailsplit": "5.4.8",
"encoding-japanese": "2.2.0",
"iconv-lite": "0.7.2",
"libbase64": "1.3.0",
"libmime": "5.3.7",
"libqp": "2.1.1",
"nodemailer": "8.0.4",
"pino": "10.3.1",
"socks": "2.8.7"
}
}