forked from chadxz/imap-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "imap-simple",
"version": "6.0.0",
"description": "Wrapper over node-imap, providing a simpler api for common use cases",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "jscs . && jshint .",
"cover": "istanbul cover --report html _mocha"
},
"keywords": [
"imap",
"node-imap"
],
"contributors": [
"Aravindo Wingeier <[email protected]>",
"Brian Beaird",
"Bruce V. Schwartz <[email protected]>",
"Chad McElligott <[email protected]>",
"Dominik Beste <[email protected]>",
"Erik Bernhardsson <[email protected]>",
"Ilari Aarnio",
"Johannes Brodwall <[email protected]>",
"John Kawakami <[email protected]>",
"Julian Bilcke <[email protected]>",
"Maxiem <[email protected]>",
"Nate Watson <[email protected]>",
"Robert Vulpe <[email protected]>",
"Tuomas Tanner",
"u2ros <[email protected]>",
"Kaung Htet Aung <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chadxz/imap-simple.git"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"iconv-lite": "~0.4.13",
"imap": "^0.8.18",
"nodeify": "^1.0.0",
"quoted-printable": "^1.0.0",
"utf8": "^2.1.1",
"uuencode": "0.0.4"
},
"devDependencies": {
"hoodiecrow-imap": "^2.1.0",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.9.3",
"mocha": "^3.1.0"
}
}