forked from robertklep/node-mbox
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 935 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 935 Bytes
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
{
"name": "node-mbox",
"version": "2.0.0",
"description": "mbox parser for Node",
"scripts": {
"test": "mocha -R spec test/"
},
"author": {
"name": "Pavel Procházka",
"email": "pavel.prochazka@spongedata.cz"
},
"contributors": [
{
"name": "Robert Klep",
"email": "robert.klep@gmail.com"
},
{
"name": "Daniel Švub",
"email": "daniel.svub@spongedata.cz"
}
],
"keywords": [
"e-mail",
"mbox"
],
"main": "./src/mbox.js",
"bugs": {
"email": "info@spongedata.cz",
"url": "https://github.com/SpongeData-cz/node-mbox/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/SpongeData-cz/node-mbox.git"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^10.2.0",
"mailparser": "^3.6.4"
},
"dependencies": {
"line-stream": "^1.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}