-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "mail-attachment-notifier",
"version": "0.1.10",
"description": "Nodejs Mail watcher that converts incoming csv and excel(xlsx) attachments to json and emits an event.",
"main": "./index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name":"rob backus",
"url":"https://github.com/Robmbackus/mail-attachment-notifier"
},
"bugs": {
"url": "https://github.com/Robmbackus/mail-attachment-notifier/issues"
},
"maintainers": [
{
"name": "robmbackus",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/Robmbackus/mail-attachment-notifier.git"
},
"keywords": [
"imap",
"mail",
"notifier",
"attachments",
"csvtojson",
"xlsxtojson",
"unzip"
],
"dependencies": {
"adm-zip": "^0.4.7",
"async": "^2.5.0",
"csv-stream": "^0.1.3",
"mail-notifier": "^0.4.0",
"node-uuid": "^1.4.8",
"xlsx-to-json": "^0.3.0"
},
"devDependencies": {
"adm-zip": "^0.4.7",
"async": "^2.5.0",
"csv-stream": "^0.1.3",
"mail-notifier": "^0.4.0",
"node-uuid": "^1.4.8",
"xlsx-to-json": "^0.3.0"
}
}