forked from postalsys/imapflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "imapflow",
"version": "1.0.28",
"description": "IMAP Client for Node",
"main": "./lib/imap-flow.js",
"types": "./lib/types.d.ts",
"scripts": {
"test": "grunt",
"prepare": "npm run build",
"docs": "rm -rf docs && mkdir -p docs && jsdoc lib/imap-flow.js -c jsdoc.json -R README.md --destination docs/ && cp assets/favicon.ico docs",
"dst": "node types.js",
"build": "npm run docs && npm run dst"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodemailer/imapflow.git"
},
"keywords": [
"imap",
"email",
"mail"
],
"author": "Andris Reinman",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nodemailer/imapflow/issues"
},
"homepage": "https://imapflow.com/",
"devDependencies": {
"braintree-jsdoc-template": "3.3.0",
"eslint": "6.8.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "6.10.0",
"grunt": "1.0.4",
"grunt-cli": "1.3.2",
"grunt-contrib-nodeunit": "2.1.0",
"grunt-eslint": "22.0.0",
"jsdoc": "3.6.3",
"tsd-jsdoc": "2.4.0"
},
"dependencies": {
"@types/node": "13.7.7",
"encoding-japanese": "1.0.30",
"iconv-lite": "0.5.1",
"libbase64": "1.2.1",
"libmime": "4.2.1",
"libqp": "1.1.0",
"mailsplit": "4.6.4",
"pino": "5.17.0",
"utf7": "1.0.2"
}
}