From b2d214d2889a50b47adb3c94f1e553bf2fec748b Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Wed, 8 Oct 2014 19:44:14 -0400 Subject: [PATCH] first commit --- lib/node-query.js | 5 +++++ package.json | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 lib/node-query.js create mode 100644 package.json diff --git a/lib/node-query.js b/lib/node-query.js new file mode 100644 index 0000000..e918fcb --- /dev/null +++ b/lib/node-query.js @@ -0,0 +1,5 @@ +"use strict"; + +module.exports = function query() { + +}; \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..5a74bce --- /dev/null +++ b/package.json @@ -0,0 +1,21 @@ +{ + "name": "node-query", + "version": "0.0.0", + "description": "A query builder for node based on the one in CodeIgniter", + "author": "Timothy J Warren ", + "scripts": { + "test": "" + }, + "repository": { + "type": "git", + "url": "https://github.com/timw4mail/node-query" + }, + "bugs": { + "url": "https://github.com/timw4mail/node-query/issues" + }, + "main": "lib/node-query.js", + "devDependencies": { + "nodeunit":"*" + }, + "license": "MIT" +} \ No newline at end of file