forked from chadxz/imap-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 976 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
{
"name": "imap-simple",
"version": "1.5.2",
"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": [
"Chad McElligott <chad.mcelligott@gmail.com>",
"Erik Bernhardsson <erikbern@spotify.com>",
"Nate Watson <watsonn2013@my.fit.edu>",
"Julian Bilcke <julian.bilcke@gmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chadxz/imap-simple.git"
},
"dependencies": {
"es6-promise": "^2.0.1",
"imap": "^0.8.14",
"nodeify": "^1.0.0",
"quoted-printable": "^1.0.0",
"iconv-lite": "~0.4.13"
},
"devDependencies": {
"istanbul": "^0.3.6",
"mocha": "^2.1.0",
"chai": "^2.1.0",
"jscs": "^1.11.3",
"jshint": "^2.6.0"
}
}