Updated dependency locations
diff --git a/bin/lib/create.js b/bin/lib/create.js
index c547883..ecba468 100755
--- a/bin/lib/create.js
+++ b/bin/lib/create.js
@@ -67,7 +67,7 @@
 

             //copy cordova folder

             shjs.cp('-r', path.join(ROOT, 'bin', 'templates', 'project', 'cordova'), project_path);

-            shjs.cp('-r', path.join(ROOT, 'bin', 'node_modules'), path.join(project_path,'cordova'));

+            shjs.cp('-r', path.join(ROOT, 'node_modules'), path.join(project_path,'cordova'));

 

             // copy check_reqs

             shjs.cp(path.join(ROOT, 'bin', 'check_reqs.bat'), path.join(project_path, 'cordova', 'check_reqs.bat'));

diff --git a/bin/lib/update.js b/bin/lib/update.js
index 0e5a098..7e91d07 100755
--- a/bin/lib/update.js
+++ b/bin/lib/update.js
@@ -42,7 +42,7 @@
     shell.rm('-rf', destScriptsDir);

     // Copy in the new ones.

     shell.cp('-r', srcScriptsDir, projectPath);

-    shell.cp('-r', path.join(ROOT, 'bin', 'node_modules'), destScriptsDir);

+    shell.cp('-r', path.join(ROOT, 'node_modules'), destScriptsDir);

     shell.cp(path.join(ROOT, 'bin', 'check_reqs.bat'), path.join(destScriptsDir, 'check_reqs.bat'));

     shell.cp(path.join(ROOT, 'bin', 'check_reqs'), path.join(destScriptsDir, 'check_reqs'));

     shell.cp(path.join(ROOT, 'bin', 'lib', 'check_reqs.js'), path.join(destScriptsDir, 'lib', 'check_reqs.js'));