diff --git a/index.html b/index.html
index ee90cc9b823ba6ff7c5d0769ca8753c279b0460e..aad20464b7453f1754728b1e22a6184faa9153dd 100644
--- a/index.html
+++ b/index.html
@@ -277,17 +277,17 @@ function linkify( selector ) {
 								<td>Apples</td>
 								<td>$1</td>
 								<td>7</td>
-							<tr>
+							</tr>
 							<tr>
 								<td>Lemonade</td>
 								<td>$2</td>
 								<td>18</td>
-							<tr>
+							</tr>
 							<tr>
 								<td>Bread</td>
 								<td>$3</td>
 								<td>2</td>
-							<tr>
+							</tr>
 						</tbody>
 					</table>
 				</section>
diff --git a/package.json b/package.json
index 201c6bf74153cdbf93b013cfa694426516b3e4ae..fc704647aaa320b9e0ad8a260f9b97217243d16b 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,7 @@
   "main": "js/reveal.js",
   "scripts": {
     "test": "grunt test",
-    "start": ""
+    "start": "grunt serve"
   },
   "author": {
     "name": "Hakim El Hattab",
@@ -40,10 +40,6 @@
     "grunt": "~0.4.0",
     "node-sass": "~0.9.3"
   },
-  "licenses": [
-    {
-      "type": "MIT",
-      "url": "https://github.com/hakimel/reveal.js/blob/master/LICENSE"
-    }
-  ]
+  
+  "license": "MIT"
 }
diff --git a/plugin/multiplex/index.js b/plugin/multiplex/index.js
index 6f5d8b112ea2bf36db653b0d95cf38a2333fd5aa..af058ed2ff6ad8a662093c661a5894c0ae1da292 100644
--- a/plugin/multiplex/index.js
+++ b/plugin/multiplex/index.js
@@ -9,7 +9,7 @@ var staticDir	= express.static;
 io				= io.listen(app);
 
 var opts = {
-	port: 1948,
+	port: process.env.PORT || 1948,
 	baseDir : __dirname + '/../../'
 };