-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
45 lines (45 loc) · 963 Bytes
/
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": "node-email-reply-parser",
"version": "0.1.4",
"description": "Parses emails to remove replies and other potentially unwanted data",
"author": "Travis Ralston <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/t2bot/node-email-reply-parser#readme",
"keywords": [
"email",
"parser",
"reply",
"github",
"signature",
"fragment"
],
"repository": {
"type": "git",
"url": "git+https://github.com/t2bot/node-email-reply-parser.git"
},
"bugs": {
"url": "https://github.com/t2bot/node-email-reply-parser/issues"
},
"engines": {
"node": ">= 14.0.0"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts",
"lib/"
],
"types": "index.d.ts",
"scripts": {
"test": "mocha test/*Test.js"
},
"dependencies": {
"esrever": "^0.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"assert": "^2.0.0",
"mocha": "^9.1.2"
}
}