-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 786 Bytes
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
{
"engines": {
"node": ">= 0.10"
},
"name": "email-stream",
"version": "0.1.0",
"description": "Build a raw email with streams",
"main": "lib/email-stream.js",
"scripts": {
"test": "node_modules/tape/bin/tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/connrs/node-email-stream.git"
},
"keywords": [
"email",
"stream"
],
"author": "connrs",
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"quoted-printable-stream": "0.0.1",
"mime-part-stream": "^0.4.0",
"sandwich-stream": "0.0.4",
"mime-headers": "0.0.1",
"mime-multipart-stream": "^0.2.0"
},
"devDependencies": {
"tape": "~1.1.0"
}
}