fix(pkg): fix and clean up package.json (#17)

* chore(pkg): remove field "maintainers"
* chore(pkg): remove default-valued field "homepage"
* fix(pkg): fix declaration for binary "create"

Related to https://github.com/apache/cordova/issues/55
diff --git a/package.json b/package.json
index fe5721f..5cfc022 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,9 @@
   "name": "cordova-test-platform",
   "version": "0.0.5",
   "description": "Platform that simply stubs the platformAPI for testing and education",
-  "create": "src/bin/create",
+  "bin": {
+    "create": "src/bin/create"
+  },
   "main": "src/cordova/Api.js",
   "scripts": {
     "cover": "istanbul cover --root bin/templates/cordova --print detail jasmine",
@@ -18,17 +20,6 @@
   "author": "Apache Software Foundation",
   "license": "Apache-2.0",
   "bugs": "https://github.com/apache/cordova-test-platform/issues",
-  "homepage": "https://github.com/cordova/cordova-test-platform#readme",
-  "maintainers": [
-    {
-      "name": "stevegill",
-      "email": "stevengill97@gmail.com"
-    },
-    {
-      "name": "Jesse MacFadyen",
-      "email": "purplecabbage@apache.org"
-    }
-  ],
   "dependencies": {
     "cordova-common": "^3.0.0",
     "nopt": "^4.0.1",