forked from nibblebot/node-recurly
-
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.
Added documentation and package.json
- Loading branch information
1 parent
c33f366
commit fdda16a
Showing
2 changed files
with
27 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,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/ | ||
|
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,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" } | ||
} |