forked from koushikg/node-bounce-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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-bounce-snoop",
"description": "Parse email bounce notification messages",
"keywords": [
"email bounce"
],
"contributors": [
"dasrick <dasrick@gmail.com>",
"tacitly <tacitly@little15.de>"
],
"main": "index.js",
"license": "BSD",
"author": {
"name": "Daniel Weise",
"email": "git@byskr.com"
},
"homepage": "https://github.com/byskr/node-bounce-handler",
"engines": {
"node": ">=10.0.0"
},
"version": "2.0.3",
"repository": {
"type": "git",
"url": "https://github.com/byskr/node-bounce-handler.git"
},
"bugs": {
"url": "https://github.com/byskr/node-bounce-handler/issues"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/byskr/node-bounce-handler/raw/master/LICENSE"
}
],
"scripts": {
"postversion": "git push && git push --tags",
"test": "mocha test/**/*.js",
"posttest": "npm run coverage",
"coverage": "istanbul cover _mocha"
},
"dependencies": {
"addressparser": "1.0.1",
"libmime": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
}
}