From fdda16af55cc354adbdbee703d5c56f5c9613033 Mon Sep 17 00:00:00 2001 From: Robert Righter Date: Tue, 29 Mar 2011 18:56:03 -0400 Subject: [PATCH] Added documentation and package.json --- README.me | 6 ++++++ package.json | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 README.me create mode 100644 package.json diff --git a/README.me b/README.me new file mode 100644 index 0000000..b6ce147 --- /dev/null +++ b/README.me @@ -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/ + diff --git a/package.json b/package.json new file mode 100644 index 0000000..94228a2 --- /dev/null +++ b/package.json @@ -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 (http://github.com/robrighter)" +, "contributors" : + [ "Rob Righter (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" } +} \ No newline at end of file