Skip to content

Commit

Permalink
Updated the readme and package.json files in preperation of publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesEggers1 committed May 29, 2012
1 parent 99cdd00 commit c5396b5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
12 changes: 9 additions & 3 deletions README.md
@@ -1,17 +1,23 @@
ABA-Validator
ABAValidator
=============

The American Bankers Association validation module provides a way of validating US-based Routing Number both on the client side in the user's browser as well as server side with Node.js.

## Installation ##

TBD
npm install ABAValidator

## Testing ##

The ABAValidator module has unit tests built around it than can be used to verify the package before usage. The tests are written with the Mocha and Should modules and running the below command will import such.

npm test ABAValidator

## Node.js Usage ##

TBD

## Usage ##
## Web Browser Usage ##

TBD

Expand Down
13 changes: 8 additions & 5 deletions package.json
@@ -1,18 +1,21 @@
{
"name": "aba-validation",
"name": "ABAValidator",
"version": "0.0.1",
"author": "James Eggers <james.r.eggers@gmail.com> (http://www.jamesreggers.com/)",
"description": "A client and server side validation module for validating US-based Routing Numbers.",
"description": "A validation module for browsers and Node.js to validate an American Bankers Association Routing Number used in ACH payments.",
"repository": {
"type": "git",
"url": "git://github.com/JamesEggers1/TBD"
"url": "git://github.com/JamesEggers1/node-ABAValidator"
},
"main": "./aba-validation.JS",
"main": "./src/aba-validation",
"engines": {
"node": "*"
},
"scripts": {
"test": "make test"
},
"tags": [ "ach", "validation"],
"bugs": {
"url": "https://github.com/JamesEggers1/TBD/issues"
"url": "https://github.com/JamesEggers1/node-ABAValidator/issues"
}
}

0 comments on commit c5396b5

Please sign in to comment.