-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 1.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@ronomon/mime",
"version": "3.6.0",
"description": "Fast, robust, standards-compliant MIME decoder. Ships with extensive tests and fuzz tests.",
"main": "index.js",
"files": [
"tests/_common.js",
"tests/decode-base64.js",
"tests/decode-charset.js",
"tests/decode-entity.js",
"tests/decode-header-addresses-address.js",
"tests/decode-header-addresses.js",
"tests/decode-header-angle-brackets.js",
"tests/decode-header-buffer.js",
"tests/decode-header-content-transfer-encoding.js",
"tests/decode-header-content-type.js",
"tests/decode-header-date.js",
"tests/decode-header-encoded-words.js",
"tests/decode-header-identifiers.js",
"tests/decode-header-percent-encoding.js",
"tests/decode-header-quoted-strings.js",
"tests/decode-header-remove-comments.js",
"tests/decode-header-split-outside-quotes.js",
"tests/decode-header-unfold.js",
"tests/decode-header-unstructured.js",
"tests/decode-header-value-parameters.js",
"tests/decode-headers.js",
"tests/decode-parts.js",
"tests/decode-quoted-printable.js",
"tests/encode-header-received.js",
"tests/error.js",
"tests/index-of.js",
"tests/index-outside-quotes.js",
"tests/is.js",
"tests/line-length.js",
"tests/slice.js",
"charsets.js",
"charsets.txt",
"index.js",
"test.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ronomon/mime.git"
},
"keywords": [
"buffer",
"decode",
"decoder",
"email",
"message",
"mime",
"RFC 2045",
"RFC 2046",
"RFC 2047",
"RFC 2183",
"RFC 2231",
"RFC 5322",
"smtp"
],
"author": "Joran Dirk Greef",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronomon/mime/issues"
},
"homepage": "https://github.com/ronomon/mime#readme",
"scripts": {
"test": "node test.js"
},
"dependencies": {
"@ronomon/base64": "^2.4.1",
"@ronomon/quoted-printable": "^3.2.1",
"iconv": "^2.3.5"
}
}