adding Project name as its needed for managed deployments (#8)

diff --git a/packages/hellowhisk/manifest.yaml b/packages/hellowhisk/manifest.yaml
index 7e5257d..c2f0459 100644
--- a/packages/hellowhisk/manifest.yaml
+++ b/packages/hellowhisk/manifest.yaml
@@ -1,9 +1,11 @@
 # Test manifest for incubator-openwhisk-wskdeploy utility
 # See https://github.com/apache/incubator-openwhisk-wskdeploy/tree/master/tests/src/integration/dependency
-packages:
-    hellowhisk:
-        actions:
-            greeting:
-                function: src/greeting.js
-            httpGet:
-                function: src/httpGet.swift
+project:
+    name: HelloWhisk
+    packages:
+        hellowhisk:
+            actions:
+                greeting:
+                    function: src/greeting.js
+                httpGet:
+                    function: src/httpGet.swift
diff --git a/packages/helloworlds/manifest.yaml b/packages/helloworlds/manifest.yaml
index 3460532..141be7a 100644
--- a/packages/helloworlds/manifest.yaml
+++ b/packages/helloworlds/manifest.yaml
@@ -1,7 +1,9 @@
-packages:
-    helloworlds:
-        actions:
-            hello-js:
-                function: src/hello.js
-            helloworld-js:
-                function: src/helloworld.js
+project:
+    name: HelloWorlds
+    packages:
+        helloworlds:
+            actions:
+                hello-js:
+                    function: src/hello.js
+                helloworld-js:
+                    function: src/helloworld.js