This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
/
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 <synox.github@dubgo.com>",
"Brian Beaird",
"Bruce V. Schwartz <bruce@z2a.org>",
"Chad McElligott <chad.mcelligott@gmail.com>",
"Dominik Beste <dominik.beste@gmail.com>",
"Erik Bernhardsson <erikbern@spotify.com>",
"Ilari Aarnio",
"Johannes Brodwall <johannes@brodwall.com>",
"John Kawakami <jkawakami@ebullient.net>",
"Julian Bilcke <julian.bilcke@gmail.com>",
"Maxiem <maxiemgeldhof@msn.com>",
"Nate Watson <watsonn2013@my.fit.edu>",
"Robert Vulpe <nytr0gen.george@gmail.com>",
"Tuomas Tanner",
"u2ros <urbernik@gmail.com>",
"Kaung Htet Aung <kaung.h.ag@gmail.com>"
],
"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"
}
}