forked from baalexander/node-xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds package.json and .npmignore to publish to NPM.
- Loading branch information
1 parent
660930c
commit 7d67d3d
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.DS_Store | ||
.git* | ||
example/ | ||
test/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ "name" : "xmlrpc" | ||
, "description" : "A pure JavaScript XML-RPC client and server." | ||
, "keywords" : [ "xml-rpc", "xmlrpc", "xml", "rpc" ] | ||
, "version" : "0.7.0" | ||
, "preferGlobal" : false | ||
, "homepage" : "https://github.com/baalexander/node-xmlrpc" | ||
, "author" : "Brandon Alexander <baalexander@gmail.com> (https://github.com/baalexander)" | ||
, "repository" : | ||
{ "type" : "git" | ||
, "url" : "git://github.com/baalexander/node-xmlrpc.git" | ||
} | ||
, "bugs" : { "web" : "https://github.com/baalexander/node-xmlrpc/issues" } | ||
, "directories" : { "lib" : "./lib" } | ||
, "main" : "./lib/node-xmlrpc.js" | ||
, "dependencies" : | ||
{ "node-xml" : "1.0.0" | ||
, "xmlbuilder" : "0.1.0" | ||
} | ||
, "devDependencies" : { "vows" : ">=0.5.8" } | ||
, "engines" : { "node" : ">=0.4, "npm" : ">=1.0.0" } | ||
, "licenses" : | ||
[ { "type" : "MIT" | ||
, "url" : "https://github.com/baalexander/node-xmlrpc/raw/master/LICENSE" | ||
} | ||
] | ||
} | ||
|