forked from chirag04/mail-listener2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "mail-listener-next",
"version": "1.0.5",
"description": "Updated Mail listener library for node.js. Get notification when new email arrived.",
"author": {
"name" : "uapasha",
"email" : "uapasha@gmail.com"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/askpoly/mail-listener2.git"
},
"scripts": {
"test": "yarn lint:errors && yarn jest",
"test:watch": "yarn jest --watch",
"lint": "eslint *.js",
"lint:errors": "yarn lint --quiet",
"lint:staged": "lint-staged",
"lint:fix": "yarn lint --fix",
"jest": "TZ='America/New_York' jest",
"prepush": "yarn test",
"precommit": "yarn lint:staged"
},
"dependencies": {
"async": "^0.9.0",
"imap": "~0.8.14",
"mailparser": "^0.6.2",
"mime": "^1.0.0"
},
"keywords": [
"mail",
"job",
"imap",
"mail listener",
"email",
"email parser"
],
"license": "MIT",
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.0.1"
}
}