-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.22 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
58
59
60
{
"name": "gmail-mbox-stats",
"version": "1.2.3",
"description": "Nice tool to analyze Gmail MBOX file",
"main": "./bin.js",
"scripts": {
"compile": "npx tsc --project tsconfig.json",
"go": "node ./bin.js",
"compilego": "npm run compile && npm run go",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"gmail-mbox-stats": "./bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/leodevbro/gmail-mbox-stats"
},
"keywords": [
"gmail",
"stat",
"stats",
"mbox",
"mail",
"mails",
"email",
"emails",
"mailbox",
"sender",
"senders",
"receiver",
"receivers",
"cc",
"bcc",
"frequent",
"frequency",
"inbox",
"outbox",
"sent",
"attachment",
"attachments",
"size",
"sizes"
],
"author": "leodevbro",
"bugs": {
"url": "https://github.com/leodevbro/gmail-mbox-stats/issues"
},
"homepage": "https://github.com/leodevbro/gmail-mbox-stats#readme",
"dependencies": {
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"mailparser": "^3.7.1",
"node-mbox": "^2.0.0"
},
"devDependencies": {
"@types/mailparser": "^3.4.5",
"@types/node": "^22.10.0"
}
}