Skip to content

Commit

Permalink
Adds package.json and .npmignore to publish to NPM.
Browse files Browse the repository at this point in the history
  • Loading branch information
baalexander committed May 18, 2011
1 parent 660930c commit 7d67d3d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .npmignore
@@ -0,0 +1,5 @@
.DS_Store
.git*
example/
test/

27 changes: 27 additions & 0 deletions package.json
@@ -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"
}
]
}

0 comments on commit 7d67d3d

Please sign in to comment.