forked from baalexander/node-xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (34 loc) · 852 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
{ "name" : "xmlrpc"
, "description" : "A pure JavaScript XML-RPC client and server."
, "keywords" : [ "xml-rpc", "xmlrpc", "xml", "rpc" ]
, "version" : "1.3.2"
, "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/xmlrpc.js"
, "dependencies" : {
"sax" : "1.2.x"
, "xmlbuilder" : "8.2.x"
}
, "devDependencies" : {
"vows" : "0.7.x"
}
, "scripts" : {
"test" : "vows 'test/*.js'"
}
, "engines" : {
"node" : ">=0.8",
"npm" : ">=1.0.0"
}
, "license" : "MIT"
}