forked from codemoran/node-smtp-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name" : "smtp-protocol",
"description" : "implements the smtp protocol for clients and servers",
"version" : "2.4.7",
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/node-smtp-protocol.git"
},
"main" : "index.js",
"keywords" : [
"email",
"mail",
"smtp",
"client",
"server"
],
"directories" : {
"lib" : ".",
"example" : "example",
"test" : "test"
},
"scripts" : {
"test" : "tap test/*.js"
},
"dependencies" : {
"through": "^2.3.4",
"through2": "^1.0.0",
"stream-combiner": "~0.0.2",
"shallow-copy": "~0.0.1"
},
"devDependencies" : {
"tap" : "~0.4.4",
"chunky" : "~0.0.0",
"seq" : "0.3.x",
"concat-stream": "~1.2.0",
"split": "~0.2.10"
},
"license" : "MIT",
"author" : {
"name" : "James Halliday",
"email" : "mail@substack.net",
"url" : "http://substack.net"
}
}