forked from crisp-oss/email-reply-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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": "email-reply-parser",
"version": "2.3.4",
"description": "Node library for parsing plain text email content. Based on https://github.com/willdurand/EmailReplyParser",
"main": "dist/emailreplyparser.js",
"types": "dist/emailreplyparser.d.ts",
"homepage": "https://github.com/crisp-oss/email-reply-parser",
"type": "module",
"exports": {
".": {
"types": "./dist/emailreplyparser.d.ts",
"import": "./dist/emailreplyparser.js"
}
},
"repository": {
"type": "git",
"url": "git://github.com/crisp-oss/email-reply-parser.git"
},
"scripts": {
"build": "npx tsc",
"lint": "eslint .",
"unit": "node ./node_modules/nodeunit/bin/nodeunit test/test.js",
"test": "npm run unit && npm run lint"
},
"engines": {
"node": ">= 20.0.0"
},
"author": "Crisp IM SAS",
"license": "MIT",
"devDependencies": {
"@types/node": "22.13.10",
"@typescript-eslint/eslint-plugin": "8.39.1",
"typescript": "5.9.2",
"eslint": "9.29.0",
"eslint-plugin-crisp": "1.1.13",
"eslint-plugin-jsdoc": "54.1.0",
"nodeunit": "v0.11.3",
"re2": "1.22.1",
"redos-detector": "^6.1.2",
"safe-regex": "^2.1.1",
"underscore": "v1.13.6"
},
"peerDependencies": {
"re2": "1.22.1"
},
"peerDependenciesMeta": {
"re2": {
"optional": true
}
}
}