-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "eml-parser-buffer",
"version": "1.5.2",
"description": "eml parser, buffer",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "node ./script/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mailhonor/node-eml-parser-buffer.git"
},
"keywords": [
"eml",
"mail",
"parser",
"buffer"
],
"author": {
"name": "linuxmail",
"email": "eli960@qq.com",
"url": "https://github.com/mailhonor/node-eml-parser-buffer"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mailhonor/node-eml-parser-buffer/issues"
},
"homepage": "https://github.com/mailhonor/node-eml-parser-buffer/",
"devDependencies": {
"@types/node": "^20.17.19",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"jschardet": "^3.1.3"
},
"files": [
"dist/"
]
}