-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 808 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 808 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
{ "name" : "wwwdude",
"description" : "Simple to use HTTP library on top of the built in libs of node.js",
"tags" : ["http", "simple", "util", "rest", "utility"],
"version" : "0.1.0",
"author" : "Sven Pfleiderer <sven@roothausen.de>",
"directories" : { "lib" : "lib" },
"repository" : {
"type" : "git",
"url" : "http://github.com/pfleidi/node-wwwdude.git"
},
"bugs" : {
"web" : "http://github.com/pfleidi/node-wwwdude/issues"
},
"licenses" : [{
"type" : "MIT",
"url" : "http://github.com/pfleidi/node-wwwdude/raw/master/LICENSE"
}],
"dependencies" : {
"xml2js" : "= 0.1.9",
"compress" : "= 0.1.9"
},
"devDependencies": {
"expresso" : ">= 0.8.1",
"connect" : ">= 1.6.1"
},
"engines" : { "node": ">= 0.2.0" },
"main" : "index"
}