Added .travis.yml
diff --git a/package.json b/package.json
index 7b542ca..b2a8b68 100644
--- a/package.json
+++ b/package.json
@@ -1,37 +1,40 @@
 {
-    "author": "Brandon Shelley",
-    "dependencies": {
-        "async": "",
-        "objectkit": "",
-        "request": "",
-        "underscore": "",
-        "underscore.inflection": "",
-        "underscore.string": "",
-        "url-join": "",
-        "volos-analytics-apigee": "",
-        "volos-analytics-common": "",
-        "volos-analytics-memory": "",
-        "volos-cache-apigee": "",
-        "volos-cache-memory": "",
-        "volos-cache-redis": "",
-        "volos-oauth-apigee": "",
-        "volos-oauth-redis": "",
-        "volos-quota-apigee": "",
-        "volos-quota-memory": "",
-        "volos-quota-redis": ""
-    },
-    "description": "The official Node.js SDK for Usergrid",
-    "devDependencies": {
-        "should": ""
-    },
-    "keywords": [],
-    "license": "MIT",
-    "main": "app.js",
-    "name": "usergrid",
-    "private": false,
-    "scripts": {
-        "start": "node app.js",
-        "test": "mocha tests"
-    },
-    "version": "2.0.0"
-}
\ No newline at end of file
+  "author": "Brandon Shelley",
+  "dependencies": {
+    "async": "",
+    "objectkit": "",
+    "request": "",
+    "underscore": "",
+    "underscore.inflection": "",
+    "underscore.string": "",
+    "url-join": "",
+    "volos-analytics-apigee": "",
+    "volos-analytics-common": "",
+    "volos-analytics-memory": "",
+    "volos-cache-apigee": "",
+    "volos-cache-memory": "",
+    "volos-cache-redis": "",
+    "volos-oauth-apigee": "",
+    "volos-oauth-redis": "",
+    "volos-quota-apigee": "",
+    "volos-quota-memory": "",
+    "volos-quota-redis": ""
+  },
+  "description": "The official Node.js SDK for Usergrid",
+  "devDependencies": {
+    "grunt": "",
+    "grunt-codacy": "",
+    "grunt-mocha-test": "",
+    "should": ""
+  },
+  "keywords": [],
+  "license": "MIT",
+  "main": "app.js",
+  "name": "usergrid",
+  "private": false,
+  "scripts": {
+    "start": "node app.js",
+    "test": "mocha tests"
+  },
+  "version": "2.0.0"
+}
diff --git a/tests/lib/client.test.js b/tests/lib/client.test.js
index a19786a..fa76d45 100644
--- a/tests/lib/client.test.js
+++ b/tests/lib/client.test.js
@@ -22,13 +22,13 @@
         Object(client).should.containDeep(config.usergrid)
     })
 
-    it('should initialize when passing an orgId and appId as arguments, taking precedence over config', function() {
+    it('should initialize when passing orgId and appId as arguments, taking precedence over config', function() {
         var client = new UsergridClient('foo', 'bar')
         client.should.be.an.instanceof(UsergridClient).with.property('orgId').equal('foo')
         client.should.be.an.instanceof(UsergridClient).with.property('appId').equal('bar')
     })
 
-    it('should initialize when passing object containing orgId and appId, taking precedence over config', function() {
+    it('should initialize when passing an object containing orgId and appId, taking precedence over config', function() {
         var client = new UsergridClient({
             orgId: 'foo',
             appId: 'bar'