forked from mscdex/node-imap
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 903 Bytes
/
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
{
"name": "node-imap",
"version": "0.9.6",
"author": "Brian White <[email protected]>",
"contributors": [
{
"email": "[email protected]",
"name": "Michael Bevz"
}
],
"description": "A fork of the famous and outdated IMAP module for node.js that makes communicating with IMAP servers easy",
"main": "./lib/Connection",
"license": "MIT",
"dependencies": {
"readable-stream": "^3.6.0",
"utf7": "^1.0.2"
},
"scripts": {
"test": "node test/test.js"
},
"engines": {
"node": ">=0.8.0"
},
"keywords": [
"imap",
"mail",
"email",
"reader",
"client"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/mscdex/node-imap/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mikebevz/node-imap"
},
"devDependencies": {
"eslint": "^7.1.0"
}
}