-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
{
"name": "email-forward-parser",
"version": "1.8.3",
"description": "Parses forwarded emails and extract content",
"author": "Eliott Vincent <eliott@crisp.chat>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/crisp-oss/email-forward-parser",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git://github.com/crisp-oss/email-forward-parser"
},
"bugs": {
"url": "https://github.com/crisp-oss/email-forward-parser/issues"
},
"engineStrict": true,
"engines": {
"node": ">= 22.0.0"
},
"scripts": {
"build": "npx tsc",
"lint": "eslint .",
"unit": "node ./node_modules/nodeunit-x/bin/nodeunit test/index.js",
"unit:regexp": "EMAIL_FORWARD_PARSER_DISABLE_RE2=1 npm run unit",
"pretest": "npm run build",
"test": "npm run unit && npm run unit:regexp && npm run lint"
},
"keywords": [
"parser",
"mail",
"email",
"forward"
],
"license": "MIT",
"devDependencies": {
"@types/node": "24.13.3",
"@typescript-eslint/eslint-plugin": "8.39.1",
"eslint": "9.39.1",
"eslint-plugin-crisp": "1.4.12",
"eslint-plugin-jsdoc": "54.1.0",
"nodeunit-x": "0.15.0",
"re2": "1.26.0",
"typescript": "5.9.2"
},
"peerDependencies": {
"re2": "1.x"
},
"peerDependenciesMeta": {
"re2": {
"optional": true
}
}
}