Skip to content

Commit

Permalink
Added documentation and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
robrighter committed Mar 29, 2011
1 parent c33f366 commit fdda16a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.me
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Node-Recurly
===============

node-recurly is a node.js library for using the recurly recurring billing service. This library is intended to follow very closely the recurly documentation found at:
http://docs.recurly.com/

21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ "name" : "node-recurly"
, "description" : "Library for accessing the api for the Recurly recurring billing service."
, "keywords" : [ "recurly", "e-commerce", "recurring billing" ]
, "version" : "0.0.1"
, "homepage" : "https://github.com/robrighter/node-recurly"
, "author" : "Rob Righter <[email protected]> (http://github.com/robrighter)"
, "contributors" :
[ "Rob Righter <[email protected]> (http://github.com/robrighter)" ]
, "repository" :
{ "type" : "git"
, "url" : "git://github.com/robrighter/node-recurly.git"
}
, "bugs" :
{ "web" : "https://github.com/robrighter/node-recurly/issues" }
, "directories" : { "lib" : "./lib" }
, "main" : "./lib/recurly.js"
, "dependencies" : {
"xml2js": ">= 0.1.5"
}
, "engines" : { "node" : "0.4" }
}

0 comments on commit fdda16a

Please sign in to comment.