forked from baalexander/node-xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (38 loc) · 958 Bytes
/
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
{ "name" : "xmlrpc"
, "description" : "A pure JavaScript XML-RPC client and server."
, "keywords" : [ "xml-rpc", "xmlrpc", "xml", "rpc" ]
, "version" : "0.9.4"
, "preferGlobal" : false
, "homepage" : "https://github.com/baalexander/node-xmlrpc"
, "author" : "Brandon Alexander <[email protected]> (https://github.com/baalexander)"
, "repository" : {
"type" : "git"
, "url" : "git://github.com/baalexander/node-xmlrpc.git"
}
, "bugs" : {
"url" : "https://github.com/baalexander/node-xmlrpc/issues"
}
, "directories" : {
"lib" : "./lib"
}
, "main" : "./lib/node-xmlrpc.js"
, "dependencies" : {
"sax" : "0.3.x"
, "xmlbuilder" : "0.3.1"
}
, "devDependencies" : {
"vows" : "0.6.x"
}
, "scripts" : {
"test" : "make test"
}
, "engines" : {
"node" : ">=0.4",
"npm" : ">=1.0.0"
}
, "licenses" : [ {
"type" : "MIT"
, "url" : "https://github.com/baalexander/node-xmlrpc/raw/master/LICENSE"
}
]
}