diff --git a/deployments/ROOT.war b/deployments/ROOT.war
index 67c9922..6516036 100644
Binary files a/deployments/ROOT.war and b/deployments/ROOT.war differ
diff --git a/deployments/cardgame.war b/deployments/cardgame.war
new file mode 100644
index 0000000..4cf21e9
Binary files /dev/null and b/deployments/cardgame.war differ
diff --git a/pom.xml b/pom.xml
index 2dcaa7b..677df34 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,12 +27,18 @@
0.6.0
-
- org.hibernate
- hibernate-entitymanager
- 5.1.0.Final
- provided
-
+
+ org.hibernate
+ hibernate-entitymanager
+ 5.1.0.Final
+ provided
+
+
+
+ com.google.code.gson
+ gson
+ 2.6.2
+
@@ -43,7 +49,7 @@
openshift
- helloword
+ cardgame
org.apache.maven.plugins
@@ -52,7 +58,7 @@
false
deployments
- ROOT
+ cardgame
diff --git a/src/main/java/br/unicap/cardgame/controller/CardController.java b/src/main/java/br/unicap/cardgame/controller/CardsController.java
similarity index 87%
rename from src/main/java/br/unicap/cardgame/controller/CardController.java
rename to src/main/java/br/unicap/cardgame/controller/CardsController.java
index 4312304..35727ee 100644
--- a/src/main/java/br/unicap/cardgame/controller/CardController.java
+++ b/src/main/java/br/unicap/cardgame/controller/CardsController.java
@@ -2,7 +2,7 @@
import br.unicap.cardgame.model.Cards;
-public class CardController {
+public class CardsController {
public int getCorretAnswer(Cards card) {
return card.getQuestionId().getCorrectAnswerId().getId();
diff --git a/src/main/java/br/unicap/cardgame/controller/CharController.java b/src/main/java/br/unicap/cardgame/controller/CharController.java
deleted file mode 100644
index 082cbfc..0000000
--- a/src/main/java/br/unicap/cardgame/controller/CharController.java
+++ /dev/null
@@ -1,12 +0,0 @@
-/*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
-package br.unicap.cardgame.controller;
-
-import br.unicap.cardgame.model.Cards;
-
-public class CharController {
-
-}
diff --git a/src/main/java/br/unicap/cardgame/controller/CharsController.java b/src/main/java/br/unicap/cardgame/controller/CharsController.java
new file mode 100644
index 0000000..2a40e80
--- /dev/null
+++ b/src/main/java/br/unicap/cardgame/controller/CharsController.java
@@ -0,0 +1,23 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package br.unicap.cardgame.controller;
+
+import br.unicap.cardgame.dao.CharsDAO;
+import br.unicap.cardgame.model.Chars;
+import javax.ejb.EJB;
+import javax.ejb.Stateless;
+
+
+@Stateless
+public class CharsController {
+
+ @EJB
+ private CharsDAO charDAO;
+
+ public Chars getPlayerChar(String username) {
+ return charDAO.getPlayerChar(username);
+ }
+}
diff --git a/src/main/java/br/unicap/cardgame/controller/DeckController.java b/src/main/java/br/unicap/cardgame/controller/DecksController.java
similarity index 50%
rename from src/main/java/br/unicap/cardgame/controller/DeckController.java
rename to src/main/java/br/unicap/cardgame/controller/DecksController.java
index b4c2a5b..485268e 100644
--- a/src/main/java/br/unicap/cardgame/controller/DeckController.java
+++ b/src/main/java/br/unicap/cardgame/controller/DecksController.java
@@ -1,31 +1,22 @@
package br.unicap.cardgame.controller;
+import br.unicap.cardgame.dao.DecksDAO;
import br.unicap.cardgame.model.Cards;
import br.unicap.cardgame.model.Users;
import br.unicap.cardgame.util.Utils;
import java.util.ArrayList;
import java.util.List;
+import javax.ejb.EJB;
import javax.ejb.Stateless;
-import javax.persistence.EntityManager;
-import javax.persistence.PersistenceContext;
@Stateless
-public class DeckController {
+public class DecksController {
- @PersistenceContext(unitName = "cardgame")
- private EntityManager em;
-
- private List userCards(Users u) {
- return em.createNativeQuery("select ca.id, ca.question_id, ca.attack, ca.defense, ca.life from users u, chars c, decks d, decks_cards dc, cards ca where \n" +
- "u.id = " + u.getId() + " and \n" +
- "u.char_id = c.id and \n" +
- "c.deck_id = d.id and \n" +
- "d.id = dc.deck_id and\n" +
- "dc.card_id = ca.id;", Cards.class).getResultList();
- }
+ @EJB
+ private DecksDAO decksDAO;
public List randonCards(Users u) {
- List cards = userCards(u);
+ List cards = decksDAO.getUserCards(u);
if(cards.size() < 1) {
return new ArrayList();
}
@@ -37,7 +28,7 @@ public List randonCards(Users u) {
}
public Cards randonCard(Users u) {
- List cards = userCards(u);
+ List cards = decksDAO.getUserCards(u);
if(cards.size() < 1) {
return null;
}
diff --git a/src/main/java/br/unicap/cardgame/controller/UserController.java b/src/main/java/br/unicap/cardgame/controller/UserController.java
deleted file mode 100644
index cf32e85..0000000
--- a/src/main/java/br/unicap/cardgame/controller/UserController.java
+++ /dev/null
@@ -1,57 +0,0 @@
-package br.unicap.cardgame.controller;
-
-import br.unicap.cardgame.model.Chars;
-import br.unicap.cardgame.model.Users;
-import br.unicap.cardgame.util.Utils;
-import javax.ejb.Stateless;
-import javax.persistence.EntityManager;
-import br.unicap.cardgame.ws.response.CardGameResponseToken;
-import io.jsonwebtoken.Jwts;
-import io.jsonwebtoken.SignatureAlgorithm;
-import javax.persistence.PersistenceContext;
-
-@Stateless
-public class UserController {
-
- @PersistenceContext(unitName = "cardgame")
- private EntityManager em;
-
- public CardGameResponseToken authenticate(String username, String password) throws Exception {
-
- Users u = em.createNamedQuery("Users.findByUsername", Users.class)
- .setParameter("username", username)
- .getSingleResult();
-
- if(u == null || !verifyPassword(u, password)) {
- throw new Exception("password invalido");
- }
-
- String token = Jwts.builder()
- .setSubject(username)
- .signWith(SignatureAlgorithm.HS512, Utils.APP_CLIENT_SECRET)
- .compact();
-
- return new CardGameResponseToken(true, token);
- }
-
- private boolean verifyPassword(Users user, String password) {
- return user.getPassword().equals(password);
- }
-
- public Chars getPlayerChar(String username) {
- Users u = em.createNamedQuery("Users.findByUsername", Users.class)
- .setParameter("username", username)
- .getSingleResult();
- Chars c = em.createNamedQuery("Chars.findById", Chars.class)
- .setParameter("id", u.getCharId().getId())
- .getSingleResult();
- return c;
- }
-
- public Users getUserByName(String username) {
- Users u = em.createNamedQuery("Users.findByUsername", Users.class)
- .setParameter("username", username)
- .getSingleResult();
- return u;
- }
-}
diff --git a/src/main/java/br/unicap/cardgame/controller/UsersController.java b/src/main/java/br/unicap/cardgame/controller/UsersController.java
new file mode 100644
index 0000000..a7199d8
--- /dev/null
+++ b/src/main/java/br/unicap/cardgame/controller/UsersController.java
@@ -0,0 +1,51 @@
+package br.unicap.cardgame.controller;
+
+import br.unicap.cardgame.dao.UsersDAO;
+import br.unicap.cardgame.model.Player;
+import br.unicap.cardgame.model.Users;
+import br.unicap.cardgame.util.Utils;
+import br.unicap.cardgame.ws.response.CardGameResponse;
+import javax.ejb.Stateless;
+import br.unicap.cardgame.ws.response.CardGameResponseToken;
+import io.jsonwebtoken.Jwts;
+import io.jsonwebtoken.SignatureAlgorithm;
+import javax.ejb.EJB;
+
+@Stateless
+public class UsersController {
+
+ @EJB
+ private UsersDAO usersDAO;
+
+ public CardGameResponseToken authenticate(String username, String password) throws Exception {
+
+ Users u = usersDAO.getUserByUsername(username);
+
+ if(u == null || !verifyPassword(u, password)) {
+ throw new Exception("password invalido");
+ }
+ Player p = new Player(u.getId(), u.getUsername());
+ String token = Jwts.builder()
+ .setSubject(p.toString())
+ .signWith(SignatureAlgorithm.HS512, Utils.APP_CLIENT_SECRET)
+ .compact();
+
+ return new CardGameResponseToken(true, token);
+ }
+
+ private boolean verifyPassword(Users user, String password) {
+ return user.getPassword().equals(password);
+ }
+
+ public Users getUserByUsername(String username) {
+ return usersDAO.getUserByUsername(username);
+ }
+
+ public CardGameResponse changeUserChar(int user_id, int char_id) {
+ boolean update = usersDAO.changeUserChar(user_id, char_id);
+ if(update) {
+ return new CardGameResponse(true, 2000, "Char alterado com sucesso");
+ }
+ return new CardGameResponse(true, 2000, "Falha ao alterar char!");
+ }
+}
diff --git a/src/main/java/br/unicap/cardgame/dao/CharsDAO.java b/src/main/java/br/unicap/cardgame/dao/CharsDAO.java
new file mode 100644
index 0000000..0a14830
--- /dev/null
+++ b/src/main/java/br/unicap/cardgame/dao/CharsDAO.java
@@ -0,0 +1,25 @@
+package br.unicap.cardgame.dao;
+
+import br.unicap.cardgame.model.Chars;
+import br.unicap.cardgame.model.Users;
+import javax.ejb.Stateless;
+import javax.persistence.EntityManager;
+import javax.persistence.PersistenceContext;
+
+@Stateless
+public class CharsDAO {
+
+ @PersistenceContext(unitName = "cardgame")
+ private EntityManager em;
+
+ public Chars getPlayerChar(String username) {
+ Users u = em.createNamedQuery("Users.findByUsername", Users.class)
+ .setParameter("username", username)
+ .getSingleResult();
+ Chars c = em.createNamedQuery("Chars.findById", Chars.class)
+ .setParameter("id", u.getCharId().getId())
+ .getSingleResult();
+ return c;
+ }
+
+}
diff --git a/src/main/java/br/unicap/cardgame/dao/DecksDAO.java b/src/main/java/br/unicap/cardgame/dao/DecksDAO.java
new file mode 100644
index 0000000..59fe91f
--- /dev/null
+++ b/src/main/java/br/unicap/cardgame/dao/DecksDAO.java
@@ -0,0 +1,24 @@
+package br.unicap.cardgame.dao;
+
+import br.unicap.cardgame.model.Cards;
+import br.unicap.cardgame.model.Users;
+import java.util.List;
+import javax.ejb.Stateless;
+import javax.persistence.EntityManager;
+import javax.persistence.PersistenceContext;
+
+@Stateless
+public class DecksDAO {
+
+ @PersistenceContext(unitName = "cardgame")
+ private EntityManager em;
+
+ public List getUserCards(Users u) {
+ return em.createNativeQuery("select ca.id, ca.question_id, ca.attack, ca.defense, ca.life from users u, chars c, decks d, decks_cards dc, cards ca where \n" +
+ "u.id = " + u.getId() + " and \n" +
+ "u.char_id = c.id and \n" +
+ "c.deck_id = d.id and \n" +
+ "d.id = dc.deck_id and\n" +
+ "dc.card_id = ca.id;", Cards.class).getResultList();
+ }
+}
diff --git a/src/main/java/br/unicap/cardgame/dao/UsersDAO.java b/src/main/java/br/unicap/cardgame/dao/UsersDAO.java
new file mode 100644
index 0000000..47ac559
--- /dev/null
+++ b/src/main/java/br/unicap/cardgame/dao/UsersDAO.java
@@ -0,0 +1,36 @@
+package br.unicap.cardgame.dao;
+
+import br.unicap.cardgame.model.Users;
+import javax.ejb.Stateless;
+import javax.persistence.EntityManager;
+import javax.persistence.PersistenceContext;
+import javax.persistence.Query;
+
+@Stateless
+public class UsersDAO {
+
+ @PersistenceContext(unitName = "cardgame")
+ private EntityManager em;
+
+ public Users getUserByUsername(String username) {
+ return em.createNamedQuery("Users.findByUsername", Users.class)
+ .setParameter("username", username)
+ .getSingleResult();
+ }
+
+ public Boolean changeUserChar(int user_id, int char_id) {
+ boolean status = false;
+ try {
+ String hql = "UPDATE Users SET charId.id = :char_id " +
+ "WHERE id = :user_id";
+ Query query = em.createQuery(hql);
+ query.setParameter("char_id", char_id)
+ .setParameter("user_id", user_id);
+ status = query.executeUpdate() > 0;
+ } catch(Exception e) {
+ System.err.println(e);
+ }
+ return status;
+ }
+
+}
diff --git a/src/main/java/br/unicap/cardgame/engine/BattleField.java b/src/main/java/br/unicap/cardgame/engine/BattleField.java
index 3344330..d4b8b11 100644
--- a/src/main/java/br/unicap/cardgame/engine/BattleField.java
+++ b/src/main/java/br/unicap/cardgame/engine/BattleField.java
@@ -1,8 +1,9 @@
package br.unicap.cardgame.engine;
-import br.unicap.cardgame.controller.CardController;
-import br.unicap.cardgame.controller.DeckController;
-import br.unicap.cardgame.controller.UserController;
+import br.unicap.cardgame.controller.CardsController;
+import br.unicap.cardgame.controller.CharsController;
+import br.unicap.cardgame.controller.DecksController;
+import br.unicap.cardgame.controller.UsersController;
import br.unicap.cardgame.model.Cards;
import br.unicap.cardgame.model.Chars;
import br.unicap.cardgame.model.Player;
@@ -20,10 +21,13 @@ public class BattleField {
private final Queue audience = new LinkedList();
@EJB
- private UserController userController;
+ private UsersController usersController;
@EJB
- private DeckController deckController;
+ private CharsController charsController;
+
+ @EJB
+ private DecksController decksController;
/* getters and setters */
public Queue getAudience() {
@@ -111,8 +115,8 @@ private void swapPlayers() {
}
private void getCardFromDeck() {
- Users u = userController.getUserByName(getCurrentPlayer().getUsername());
- Cards card = deckController.randonCard(u);
+ Users u = usersController.getUserByUsername(getCurrentPlayer().getUsername());
+ Cards card = decksController.randonCard(u);
getCurrentPlayer().addCardToAvailableCards(card);
}
@@ -120,10 +124,10 @@ private PlayerFighter createNewPlayerFighter(Player player) {
Chars c = null;
PlayerFighter pf = null;
try {
- c = userController.getPlayerChar(player.getUsername());
+ c = charsController.getPlayerChar(player.getUsername());
pf = new PlayerFighter(player.getUsername(), c);
- Users u = userController.getUserByName(player.getUsername());
- pf.setAvailableCards(deckController.randonCards(u));
+ Users u = usersController.getUserByUsername(player.getUsername());
+ pf.setAvailableCards(decksController.randonCards(u));
} catch(Exception e) {
System.out.println(e);
}
@@ -131,7 +135,7 @@ private PlayerFighter createNewPlayerFighter(Player player) {
}
private boolean checkAnswer(Cards card, int answer_id) {
- CardController cardController = new CardController();
+ CardsController cardController = new CardsController();
int correctAnswer = cardController.getCorretAnswer(card);
return correctAnswer == answer_id;
}
diff --git a/src/main/java/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.java b/src/main/java/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.java
new file mode 100644
index 0000000..c4b4f7e
--- /dev/null
+++ b/src/main/java/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.java
@@ -0,0 +1,14 @@
+package br.unicap.cardgame.jax.bean;
+
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+
+
+@XmlRootElement
+public class ChangeCharJAXBean {
+
+ @XmlElement(name="char_id")
+ public int charId;
+
+}
+
diff --git a/src/main/java/br/unicap/cardgame/model/Player.java b/src/main/java/br/unicap/cardgame/model/Player.java
index ef71bb7..d29611a 100644
--- a/src/main/java/br/unicap/cardgame/model/Player.java
+++ b/src/main/java/br/unicap/cardgame/model/Player.java
@@ -7,11 +7,17 @@
@XmlRootElement
public class Player {
- private String username;
+ private int id;
+ private String username;
public Player(String username) {
this.username = username;
}
+
+ public Player(int id, String username) {
+ this.id = id;
+ this.username = username;
+ }
public String getUsername() {
return username;
@@ -21,6 +27,14 @@ public void setUsername(String username) {
this.username = username;
}
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
@Override
public int hashCode() {
int hash = 7;
@@ -49,6 +63,7 @@ public boolean equals(Object obj) {
@Override
public String toString() {
return "{"
+ + "id:" + id + ","
+ "username:" + username
+ "}";
}
diff --git a/src/main/java/br/unicap/cardgame/model/PlayerFighter.java b/src/main/java/br/unicap/cardgame/model/PlayerFighter.java
index 4bbaebe..ca202f6 100644
--- a/src/main/java/br/unicap/cardgame/model/PlayerFighter.java
+++ b/src/main/java/br/unicap/cardgame/model/PlayerFighter.java
@@ -1,6 +1,6 @@
package br.unicap.cardgame.model;
-import br.unicap.cardgame.controller.DeckController;
+import br.unicap.cardgame.controller.DecksController;
import br.unicap.cardgame.util.Constants;
import java.util.LinkedList;
import java.util.List;
diff --git a/src/main/java/br/unicap/cardgame/util/Utils.java b/src/main/java/br/unicap/cardgame/util/Utils.java
index 631587e..15a4a41 100644
--- a/src/main/java/br/unicap/cardgame/util/Utils.java
+++ b/src/main/java/br/unicap/cardgame/util/Utils.java
@@ -1,6 +1,9 @@
package br.unicap.cardgame.util;
+import br.unicap.cardgame.model.Player;
+import com.google.gson.Gson;
import io.jsonwebtoken.Jwts;
+import static java.lang.Integer.decode;
import java.util.Random;
public class Utils {
@@ -18,13 +21,26 @@ public static int getRandomNumber(int min, int max) {
}
public static String getUsername(String token) {
+ Gson gson = new Gson();
token = token.substring("Bearer".length()).trim();
- String decode = Jwts.parser()
+ String decodeJson = Jwts.parser()
.setSigningKey(Utils.APP_CLIENT_SECRET)
.parseClaimsJws(token)
.getBody()
.getSubject();
- return decode;
-
+ Player p = gson.fromJson(decodeJson, Player.class);
+ return p.getUsername();
+ }
+
+ public static int getUserId(String token) {
+ Gson gson = new Gson();
+ token = token.substring("Bearer".length()).trim();
+ String decodeJson = Jwts.parser()
+ .setSigningKey(Utils.APP_CLIENT_SECRET)
+ .parseClaimsJws(token)
+ .getBody()
+ .getSubject();
+ Player p = gson.fromJson(decodeJson, Player.class);
+ return p.getId();
}
}
diff --git a/src/main/java/br/unicap/cardgame/ws/ChangeCharGameWS.java b/src/main/java/br/unicap/cardgame/ws/ChangeCharGameWS.java
new file mode 100644
index 0000000..fb20b04
--- /dev/null
+++ b/src/main/java/br/unicap/cardgame/ws/ChangeCharGameWS.java
@@ -0,0 +1,34 @@
+package br.unicap.cardgame.ws;
+
+import br.unicap.cardgame.app.Secured;
+import br.unicap.cardgame.controller.UsersController;
+import br.unicap.cardgame.jax.bean.ChangeCharJAXBean;
+import br.unicap.cardgame.model.Player;
+import br.unicap.cardgame.util.Utils;
+import br.unicap.cardgame.ws.response.CardGameResponse;
+import javax.ejb.EJB;
+import javax.ws.rs.Consumes;
+import javax.ws.rs.HeaderParam;
+import javax.ws.rs.POST;
+import javax.ws.rs.Path;
+import javax.ws.rs.Produces;
+import javax.ws.rs.core.MediaType;
+import javax.ws.rs.core.Response;
+
+@Path("/change-char")
+public class ChangeCharGameWS {
+
+ @EJB
+ private UsersController usersController;
+
+ @POST
+ @Consumes({ MediaType.APPLICATION_JSON })
+ @Produces({ MediaType.APPLICATION_JSON })
+ @Secured
+ public Response changeChar(ChangeCharJAXBean changeCharBean,
+ @HeaderParam("Authorization") String token) {
+ CardGameResponse response;
+ response = usersController.changeUserChar(Utils.getUserId(token), changeCharBean.charId);
+ return Response.status(200).entity(response).build();
+ }
+}
diff --git a/src/main/java/br/unicap/cardgame/ws/LoginGameWS.java b/src/main/java/br/unicap/cardgame/ws/LoginGameWS.java
index ca1b402..79d94bd 100644
--- a/src/main/java/br/unicap/cardgame/ws/LoginGameWS.java
+++ b/src/main/java/br/unicap/cardgame/ws/LoginGameWS.java
@@ -1,6 +1,6 @@
package br.unicap.cardgame.ws;
-import br.unicap.cardgame.controller.UserController;
+import br.unicap.cardgame.controller.UsersController;
import br.unicap.cardgame.jax.bean.LoginGameJAXBean;
import br.unicap.cardgame.ws.response.CardGameResponseToken;
import javax.ejb.EJB;
@@ -15,7 +15,7 @@
public class LoginGameWS {
@EJB
- private UserController user;
+ private UsersController user;
@POST
@Consumes({ MediaType.APPLICATION_JSON })
diff --git a/src/main/java/br/unicap/cardgame/ws/OnlinePlayersWS.java b/src/main/java/br/unicap/cardgame/ws/OnlinePlayersGameWS.java
similarity index 95%
rename from src/main/java/br/unicap/cardgame/ws/OnlinePlayersWS.java
rename to src/main/java/br/unicap/cardgame/ws/OnlinePlayersGameWS.java
index 531422d..4958614 100644
--- a/src/main/java/br/unicap/cardgame/ws/OnlinePlayersWS.java
+++ b/src/main/java/br/unicap/cardgame/ws/OnlinePlayersGameWS.java
@@ -11,7 +11,7 @@
import javax.ws.rs.core.Response;
@Path("/online")
-public class OnlinePlayersWS {
+public class OnlinePlayersGameWS {
@EJB
private BattleFieldController battleFieldController;
diff --git a/src/main/webapp/js/joinController.js b/src/main/webapp/js/joinController.js
index ad7550b..bb97298 100644
--- a/src/main/webapp/js/joinController.js
+++ b/src/main/webapp/js/joinController.js
@@ -18,6 +18,7 @@
if(data.code === 1002 || data.code === 1001) return alert(data.msg);
$location.path('/dashboard');
}).catch(function(err) {
+ console.log(err);
if(err.status == 401){
alert("Login Invalido");
}
diff --git a/target/helloword/WEB-INF/classes/.gitkeep b/target/cardgame/WEB-INF/classes/.gitkeep
similarity index 100%
rename from target/helloword/WEB-INF/classes/.gitkeep
rename to target/cardgame/WEB-INF/classes/.gitkeep
diff --git a/target/helloword/WEB-INF/classes/.netbeans_automatic_build b/target/cardgame/WEB-INF/classes/.netbeans_automatic_build
similarity index 100%
rename from target/helloword/WEB-INF/classes/.netbeans_automatic_build
rename to target/cardgame/WEB-INF/classes/.netbeans_automatic_build
diff --git a/target/helloword/WEB-INF/classes/META-INF/persistence.xml b/target/cardgame/WEB-INF/classes/META-INF/persistence.xml
similarity index 100%
rename from target/helloword/WEB-INF/classes/META-INF/persistence.xml
rename to target/cardgame/WEB-INF/classes/META-INF/persistence.xml
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/app/App.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/App.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/app/App.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/App.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/app/AuthenticationFilter.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/AuthenticationFilter.class
similarity index 74%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/app/AuthenticationFilter.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/AuthenticationFilter.class
index 337e7dd..43584f1 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/app/AuthenticationFilter.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/AuthenticationFilter.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/app/ResponseAllowCORS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/ResponseAllowCORS.class
similarity index 63%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/app/ResponseAllowCORS.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/ResponseAllowCORS.class
index 273de97..d138838 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/app/ResponseAllowCORS.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/ResponseAllowCORS.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/app/Secured.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/Secured.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/app/Secured.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/app/Secured.class
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/CardsController.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/CardsController.class
new file mode 100644
index 0000000..b4a0ae1
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/CardsController.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/CharsController.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/CharsController.class
new file mode 100644
index 0000000..52715f2
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/CharsController.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/DecksController.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/DecksController.class
new file mode 100644
index 0000000..3b30a66
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/DecksController.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/UsersController.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/UsersController.class
new file mode 100644
index 0000000..b3a8f6e
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/controller/UsersController.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/CharsDAO.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/CharsDAO.class
new file mode 100644
index 0000000..44de61b
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/CharsDAO.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/DecksDAO.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/DecksDAO.class
new file mode 100644
index 0000000..a5b2e19
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/DecksDAO.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/UsersDAO.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/UsersDAO.class
new file mode 100644
index 0000000..56372f4
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/dao/UsersDAO.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/engine/BattleField.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/engine/BattleField.class
new file mode 100644
index 0000000..99fdd7e
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/engine/BattleField.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/engine/BattleFieldController.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/engine/BattleFieldController.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/engine/BattleFieldController.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/engine/BattleFieldController.class
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.class
new file mode 100644
index 0000000..0d4b302
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/jax/bean/LoginGameJAXBean.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/LoginGameJAXBean.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/jax/bean/LoginGameJAXBean.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/LoginGameJAXBean.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/jax/bean/MoveGameJAXBean.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/MoveGameJAXBean.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/jax/bean/MoveGameJAXBean.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/MoveGameJAXBean.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/jax/bean/PlayGameJAXBean.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/PlayGameJAXBean.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/jax/bean/PlayGameJAXBean.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/jax/bean/PlayGameJAXBean.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Answers.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Answers.class
similarity index 81%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Answers.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Answers.class
index af7266d..07d0822 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Answers.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Answers.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/BattleFieldStatus.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/BattleFieldStatus.class
similarity index 77%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/BattleFieldStatus.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/BattleFieldStatus.class
index 98530ab..d537d0a 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/BattleFieldStatus.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/BattleFieldStatus.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Cards.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Cards.class
similarity index 77%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Cards.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Cards.class
index c1d03e4..11a6fd4 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Cards.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Cards.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Chars.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Chars.class
similarity index 75%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Chars.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Chars.class
index dedc550..88c24d6 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Chars.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Chars.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Decks.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Decks.class
similarity index 72%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Decks.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Decks.class
index 91e52e3..a97fa57 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Decks.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Decks.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/DecksCards.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/DecksCards.class
similarity index 70%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/DecksCards.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/DecksCards.class
index 98797de..e97875d 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/DecksCards.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/DecksCards.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Player.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Player.class
new file mode 100644
index 0000000..4413221
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Player.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/PlayerFighter.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/PlayerFighter.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/PlayerFighter.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/PlayerFighter.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Questions.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Questions.class
similarity index 83%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Questions.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Questions.class
index 67cd037..9e9a2b1 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Questions.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Questions.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Subjects.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Subjects.class
similarity index 71%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Subjects.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Subjects.class
index a6c8a9f..1f627d3 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Subjects.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Subjects.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Users.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Users.class
similarity index 76%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Users.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Users.class
index 7e240c7..3283d86 100644
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Users.class and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/model/Users.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/util/Constants.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/util/Constants.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/util/Constants.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/util/Constants.class
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/util/Utils.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/util/Utils.class
new file mode 100644
index 0000000..8c30531
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/util/Utils.class differ
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/ChangeCharGameWS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/ChangeCharGameWS.class
new file mode 100644
index 0000000..f9d2507
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/ChangeCharGameWS.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/JoinGameWS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/JoinGameWS.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/JoinGameWS.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/JoinGameWS.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/LeaveGameWS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/LeaveGameWS.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/LeaveGameWS.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/LeaveGameWS.class
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/LoginGameWS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/LoginGameWS.class
new file mode 100644
index 0000000..418ea45
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/LoginGameWS.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/MoveGameWS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/MoveGameWS.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/MoveGameWS.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/MoveGameWS.class
diff --git a/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/OnlinePlayersGameWS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/OnlinePlayersGameWS.class
new file mode 100644
index 0000000..5932b2d
Binary files /dev/null and b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/OnlinePlayersGameWS.class differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/PlayGameWS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/PlayGameWS.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/PlayGameWS.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/PlayGameWS.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/StatusGameWS.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/StatusGameWS.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/StatusGameWS.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/StatusGameWS.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/response/CardGameResponse.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/response/CardGameResponse.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/response/CardGameResponse.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/response/CardGameResponse.class
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/response/CardGameResponseToken.class b/target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/response/CardGameResponseToken.class
similarity index 100%
rename from target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/response/CardGameResponseToken.class
rename to target/cardgame/WEB-INF/classes/br/unicap/cardgame/ws/response/CardGameResponseToken.class
diff --git a/target/helloword/WEB-INF/jboss-web.xml b/target/cardgame/WEB-INF/jboss-web.xml
similarity index 100%
rename from target/helloword/WEB-INF/jboss-web.xml
rename to target/cardgame/WEB-INF/jboss-web.xml
diff --git a/target/cardgame/WEB-INF/lib/gson-2.6.2.jar b/target/cardgame/WEB-INF/lib/gson-2.6.2.jar
new file mode 100644
index 0000000..9d78626
Binary files /dev/null and b/target/cardgame/WEB-INF/lib/gson-2.6.2.jar differ
diff --git a/target/helloword/WEB-INF/lib/jackson-annotations-2.4.0.jar b/target/cardgame/WEB-INF/lib/jackson-annotations-2.4.0.jar
similarity index 100%
rename from target/helloword/WEB-INF/lib/jackson-annotations-2.4.0.jar
rename to target/cardgame/WEB-INF/lib/jackson-annotations-2.4.0.jar
diff --git a/target/helloword/WEB-INF/lib/jackson-core-2.4.2.jar b/target/cardgame/WEB-INF/lib/jackson-core-2.4.2.jar
similarity index 100%
rename from target/helloword/WEB-INF/lib/jackson-core-2.4.2.jar
rename to target/cardgame/WEB-INF/lib/jackson-core-2.4.2.jar
diff --git a/target/helloword/WEB-INF/lib/jackson-databind-2.4.2.jar b/target/cardgame/WEB-INF/lib/jackson-databind-2.4.2.jar
similarity index 100%
rename from target/helloword/WEB-INF/lib/jackson-databind-2.4.2.jar
rename to target/cardgame/WEB-INF/lib/jackson-databind-2.4.2.jar
diff --git a/target/helloword/WEB-INF/lib/jjwt-0.6.0.jar b/target/cardgame/WEB-INF/lib/jjwt-0.6.0.jar
similarity index 100%
rename from target/helloword/WEB-INF/lib/jjwt-0.6.0.jar
rename to target/cardgame/WEB-INF/lib/jjwt-0.6.0.jar
diff --git a/target/helloword/WEB-INF/web.xml b/target/cardgame/WEB-INF/web.xml
similarity index 100%
rename from target/helloword/WEB-INF/web.xml
rename to target/cardgame/WEB-INF/web.xml
diff --git a/target/helloword/WildFly.dpf b/target/cardgame/WildFly.dpf
similarity index 100%
rename from target/helloword/WildFly.dpf
rename to target/cardgame/WildFly.dpf
diff --git a/target/helloword/css/bootstrap.min.css b/target/cardgame/css/bootstrap.min.css
similarity index 100%
rename from target/helloword/css/bootstrap.min.css
rename to target/cardgame/css/bootstrap.min.css
diff --git a/target/helloword/css/style.css b/target/cardgame/css/style.css
similarity index 100%
rename from target/helloword/css/style.css
rename to target/cardgame/css/style.css
diff --git a/target/helloword/img/bg.png b/target/cardgame/img/bg.png
similarity index 100%
rename from target/helloword/img/bg.png
rename to target/cardgame/img/bg.png
diff --git a/target/helloword/img/cardGeography.png b/target/cardgame/img/cardGeography.png
similarity index 100%
rename from target/helloword/img/cardGeography.png
rename to target/cardgame/img/cardGeography.png
diff --git a/target/helloword/img/cardHistory.png b/target/cardgame/img/cardHistory.png
similarity index 100%
rename from target/helloword/img/cardHistory.png
rename to target/cardgame/img/cardHistory.png
diff --git a/target/helloword/img/cardMath.png b/target/cardgame/img/cardMath.png
similarity index 100%
rename from target/helloword/img/cardMath.png
rename to target/cardgame/img/cardMath.png
diff --git a/target/helloword/img/cardPortuguese.png b/target/cardgame/img/cardPortuguese.png
similarity index 100%
rename from target/helloword/img/cardPortuguese.png
rename to target/cardgame/img/cardPortuguese.png
diff --git a/target/helloword/img/cardScience.png b/target/cardgame/img/cardScience.png
similarity index 100%
rename from target/helloword/img/cardScience.png
rename to target/cardgame/img/cardScience.png
diff --git a/target/helloword/img/cardgamex6.png b/target/cardgame/img/cardgamex6.png
similarity index 100%
rename from target/helloword/img/cardgamex6.png
rename to target/cardgame/img/cardgamex6.png
diff --git a/target/helloword/img/deck.png b/target/cardgame/img/deck.png
similarity index 100%
rename from target/helloword/img/deck.png
rename to target/cardgame/img/deck.png
diff --git a/target/helloword/img/fighter.png b/target/cardgame/img/fighter.png
similarity index 100%
rename from target/helloword/img/fighter.png
rename to target/cardgame/img/fighter.png
diff --git a/target/helloword/img/gladiator.png b/target/cardgame/img/gladiator.png
similarity index 100%
rename from target/helloword/img/gladiator.png
rename to target/cardgame/img/gladiator.png
diff --git a/target/helloword/img/knight.png b/target/cardgame/img/knight.png
similarity index 100%
rename from target/helloword/img/knight.png
rename to target/cardgame/img/knight.png
diff --git a/target/helloword/img/magician.png b/target/cardgame/img/magician.png
similarity index 100%
rename from target/helloword/img/magician.png
rename to target/cardgame/img/magician.png
diff --git a/target/helloword/index.html b/target/cardgame/index.html
similarity index 100%
rename from target/helloword/index.html
rename to target/cardgame/index.html
diff --git a/target/helloword/js/alertController.js b/target/cardgame/js/alertController.js
similarity index 100%
rename from target/helloword/js/alertController.js
rename to target/cardgame/js/alertController.js
diff --git a/target/helloword/js/angular-ui-router.js b/target/cardgame/js/angular-ui-router.js
similarity index 100%
rename from target/helloword/js/angular-ui-router.js
rename to target/cardgame/js/angular-ui-router.js
diff --git a/target/helloword/js/app.js b/target/cardgame/js/app.js
similarity index 100%
rename from target/helloword/js/app.js
rename to target/cardgame/js/app.js
diff --git a/target/helloword/js/dashboardCtrl.js b/target/cardgame/js/dashboardCtrl.js
similarity index 100%
rename from target/helloword/js/dashboardCtrl.js
rename to target/cardgame/js/dashboardCtrl.js
diff --git a/target/helloword/js/joinController.js b/target/cardgame/js/joinController.js
similarity index 98%
rename from target/helloword/js/joinController.js
rename to target/cardgame/js/joinController.js
index ad7550b..bb97298 100644
--- a/target/helloword/js/joinController.js
+++ b/target/cardgame/js/joinController.js
@@ -18,6 +18,7 @@
if(data.code === 1002 || data.code === 1001) return alert(data.msg);
$location.path('/dashboard');
}).catch(function(err) {
+ console.log(err);
if(err.status == 401){
alert("Login Invalido");
}
diff --git a/target/helloword/js/logoutController.js b/target/cardgame/js/logoutController.js
similarity index 100%
rename from target/helloword/js/logoutController.js
rename to target/cardgame/js/logoutController.js
diff --git a/target/helloword/js/modalCtrl.js b/target/cardgame/js/modalCtrl.js
similarity index 100%
rename from target/helloword/js/modalCtrl.js
rename to target/cardgame/js/modalCtrl.js
diff --git a/target/helloword/js/ui-bootstrap-tpls-1.2.2.min.js b/target/cardgame/js/ui-bootstrap-tpls-1.2.2.min.js
similarity index 100%
rename from target/helloword/js/ui-bootstrap-tpls-1.2.2.min.js
rename to target/cardgame/js/ui-bootstrap-tpls-1.2.2.min.js
diff --git a/target/helloword/node_modules/.bin/mime b/target/cardgame/node_modules/.bin/mime
similarity index 100%
rename from target/helloword/node_modules/.bin/mime
rename to target/cardgame/node_modules/.bin/mime
diff --git a/target/helloword/node_modules/accepts/HISTORY.md b/target/cardgame/node_modules/accepts/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/accepts/HISTORY.md
rename to target/cardgame/node_modules/accepts/HISTORY.md
diff --git a/target/helloword/node_modules/accepts/LICENSE b/target/cardgame/node_modules/accepts/LICENSE
similarity index 100%
rename from target/helloword/node_modules/accepts/LICENSE
rename to target/cardgame/node_modules/accepts/LICENSE
diff --git a/target/helloword/node_modules/accepts/README.md b/target/cardgame/node_modules/accepts/README.md
similarity index 100%
rename from target/helloword/node_modules/accepts/README.md
rename to target/cardgame/node_modules/accepts/README.md
diff --git a/target/helloword/node_modules/accepts/index.js b/target/cardgame/node_modules/accepts/index.js
similarity index 100%
rename from target/helloword/node_modules/accepts/index.js
rename to target/cardgame/node_modules/accepts/index.js
diff --git a/target/helloword/node_modules/accepts/package.json b/target/cardgame/node_modules/accepts/package.json
similarity index 100%
rename from target/helloword/node_modules/accepts/package.json
rename to target/cardgame/node_modules/accepts/package.json
diff --git a/target/helloword/node_modules/angular-animate/README.md b/target/cardgame/node_modules/angular-animate/README.md
similarity index 100%
rename from target/helloword/node_modules/angular-animate/README.md
rename to target/cardgame/node_modules/angular-animate/README.md
diff --git a/target/helloword/node_modules/angular-animate/angular-animate.js b/target/cardgame/node_modules/angular-animate/angular-animate.js
similarity index 100%
rename from target/helloword/node_modules/angular-animate/angular-animate.js
rename to target/cardgame/node_modules/angular-animate/angular-animate.js
diff --git a/target/helloword/node_modules/angular-animate/angular-animate.min.js b/target/cardgame/node_modules/angular-animate/angular-animate.min.js
similarity index 100%
rename from target/helloword/node_modules/angular-animate/angular-animate.min.js
rename to target/cardgame/node_modules/angular-animate/angular-animate.min.js
diff --git a/target/helloword/node_modules/angular-animate/angular-animate.min.js.map b/target/cardgame/node_modules/angular-animate/angular-animate.min.js.map
similarity index 100%
rename from target/helloword/node_modules/angular-animate/angular-animate.min.js.map
rename to target/cardgame/node_modules/angular-animate/angular-animate.min.js.map
diff --git a/target/helloword/node_modules/angular-animate/bower.json b/target/cardgame/node_modules/angular-animate/bower.json
similarity index 100%
rename from target/helloword/node_modules/angular-animate/bower.json
rename to target/cardgame/node_modules/angular-animate/bower.json
diff --git a/target/helloword/node_modules/angular-animate/index.js b/target/cardgame/node_modules/angular-animate/index.js
similarity index 100%
rename from target/helloword/node_modules/angular-animate/index.js
rename to target/cardgame/node_modules/angular-animate/index.js
diff --git a/target/helloword/node_modules/angular-animate/package.json b/target/cardgame/node_modules/angular-animate/package.json
similarity index 100%
rename from target/helloword/node_modules/angular-animate/package.json
rename to target/cardgame/node_modules/angular-animate/package.json
diff --git a/target/helloword/node_modules/angular-touch/README.md b/target/cardgame/node_modules/angular-touch/README.md
similarity index 100%
rename from target/helloword/node_modules/angular-touch/README.md
rename to target/cardgame/node_modules/angular-touch/README.md
diff --git a/target/helloword/node_modules/angular-touch/angular-touch.js b/target/cardgame/node_modules/angular-touch/angular-touch.js
similarity index 100%
rename from target/helloword/node_modules/angular-touch/angular-touch.js
rename to target/cardgame/node_modules/angular-touch/angular-touch.js
diff --git a/target/helloword/node_modules/angular-touch/angular-touch.min.js b/target/cardgame/node_modules/angular-touch/angular-touch.min.js
similarity index 100%
rename from target/helloword/node_modules/angular-touch/angular-touch.min.js
rename to target/cardgame/node_modules/angular-touch/angular-touch.min.js
diff --git a/target/helloword/node_modules/angular-touch/angular-touch.min.js.map b/target/cardgame/node_modules/angular-touch/angular-touch.min.js.map
similarity index 100%
rename from target/helloword/node_modules/angular-touch/angular-touch.min.js.map
rename to target/cardgame/node_modules/angular-touch/angular-touch.min.js.map
diff --git a/target/helloword/node_modules/angular-touch/bower.json b/target/cardgame/node_modules/angular-touch/bower.json
similarity index 100%
rename from target/helloword/node_modules/angular-touch/bower.json
rename to target/cardgame/node_modules/angular-touch/bower.json
diff --git a/target/helloword/node_modules/angular-touch/index.js b/target/cardgame/node_modules/angular-touch/index.js
similarity index 100%
rename from target/helloword/node_modules/angular-touch/index.js
rename to target/cardgame/node_modules/angular-touch/index.js
diff --git a/target/helloword/node_modules/angular-touch/package.json b/target/cardgame/node_modules/angular-touch/package.json
similarity index 100%
rename from target/helloword/node_modules/angular-touch/package.json
rename to target/cardgame/node_modules/angular-touch/package.json
diff --git a/target/helloword/node_modules/angular/README.md b/target/cardgame/node_modules/angular/README.md
similarity index 100%
rename from target/helloword/node_modules/angular/README.md
rename to target/cardgame/node_modules/angular/README.md
diff --git a/target/helloword/node_modules/angular/angular-csp.css b/target/cardgame/node_modules/angular/angular-csp.css
similarity index 100%
rename from target/helloword/node_modules/angular/angular-csp.css
rename to target/cardgame/node_modules/angular/angular-csp.css
diff --git a/target/helloword/node_modules/angular/angular.js b/target/cardgame/node_modules/angular/angular.js
similarity index 100%
rename from target/helloword/node_modules/angular/angular.js
rename to target/cardgame/node_modules/angular/angular.js
diff --git a/target/helloword/node_modules/angular/angular.min.js b/target/cardgame/node_modules/angular/angular.min.js
similarity index 100%
rename from target/helloword/node_modules/angular/angular.min.js
rename to target/cardgame/node_modules/angular/angular.min.js
diff --git a/target/helloword/node_modules/angular/angular.min.js.gzip b/target/cardgame/node_modules/angular/angular.min.js.gzip
similarity index 100%
rename from target/helloword/node_modules/angular/angular.min.js.gzip
rename to target/cardgame/node_modules/angular/angular.min.js.gzip
diff --git a/target/helloword/node_modules/angular/angular.min.js.map b/target/cardgame/node_modules/angular/angular.min.js.map
similarity index 100%
rename from target/helloword/node_modules/angular/angular.min.js.map
rename to target/cardgame/node_modules/angular/angular.min.js.map
diff --git a/target/helloword/node_modules/angular/bower.json b/target/cardgame/node_modules/angular/bower.json
similarity index 100%
rename from target/helloword/node_modules/angular/bower.json
rename to target/cardgame/node_modules/angular/bower.json
diff --git a/target/helloword/node_modules/angular/index.js b/target/cardgame/node_modules/angular/index.js
similarity index 100%
rename from target/helloword/node_modules/angular/index.js
rename to target/cardgame/node_modules/angular/index.js
diff --git a/target/helloword/node_modules/angular/package.json b/target/cardgame/node_modules/angular/package.json
similarity index 100%
rename from target/helloword/node_modules/angular/package.json
rename to target/cardgame/node_modules/angular/package.json
diff --git a/target/helloword/node_modules/array-flatten/LICENSE b/target/cardgame/node_modules/array-flatten/LICENSE
similarity index 100%
rename from target/helloword/node_modules/array-flatten/LICENSE
rename to target/cardgame/node_modules/array-flatten/LICENSE
diff --git a/target/helloword/node_modules/array-flatten/README.md b/target/cardgame/node_modules/array-flatten/README.md
similarity index 100%
rename from target/helloword/node_modules/array-flatten/README.md
rename to target/cardgame/node_modules/array-flatten/README.md
diff --git a/target/helloword/node_modules/array-flatten/array-flatten.js b/target/cardgame/node_modules/array-flatten/array-flatten.js
similarity index 100%
rename from target/helloword/node_modules/array-flatten/array-flatten.js
rename to target/cardgame/node_modules/array-flatten/array-flatten.js
diff --git a/target/helloword/node_modules/array-flatten/package.json b/target/cardgame/node_modules/array-flatten/package.json
similarity index 100%
rename from target/helloword/node_modules/array-flatten/package.json
rename to target/cardgame/node_modules/array-flatten/package.json
diff --git a/target/helloword/node_modules/async/CHANGELOG.md b/target/cardgame/node_modules/async/CHANGELOG.md
similarity index 100%
rename from target/helloword/node_modules/async/CHANGELOG.md
rename to target/cardgame/node_modules/async/CHANGELOG.md
diff --git a/target/helloword/node_modules/async/LICENSE b/target/cardgame/node_modules/async/LICENSE
similarity index 100%
rename from target/helloword/node_modules/async/LICENSE
rename to target/cardgame/node_modules/async/LICENSE
diff --git a/target/helloword/node_modules/async/README.md b/target/cardgame/node_modules/async/README.md
similarity index 100%
rename from target/helloword/node_modules/async/README.md
rename to target/cardgame/node_modules/async/README.md
diff --git a/target/helloword/node_modules/async/apply.js b/target/cardgame/node_modules/async/apply.js
similarity index 100%
rename from target/helloword/node_modules/async/apply.js
rename to target/cardgame/node_modules/async/apply.js
diff --git a/target/helloword/node_modules/async/applyEach.js b/target/cardgame/node_modules/async/applyEach.js
similarity index 100%
rename from target/helloword/node_modules/async/applyEach.js
rename to target/cardgame/node_modules/async/applyEach.js
diff --git a/target/helloword/node_modules/async/applyEachSeries.js b/target/cardgame/node_modules/async/applyEachSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/applyEachSeries.js
rename to target/cardgame/node_modules/async/applyEachSeries.js
diff --git a/target/helloword/node_modules/async/asyncify.js b/target/cardgame/node_modules/async/asyncify.js
similarity index 100%
rename from target/helloword/node_modules/async/asyncify.js
rename to target/cardgame/node_modules/async/asyncify.js
diff --git a/target/helloword/node_modules/async/auto.js b/target/cardgame/node_modules/async/auto.js
similarity index 100%
rename from target/helloword/node_modules/async/auto.js
rename to target/cardgame/node_modules/async/auto.js
diff --git a/target/helloword/node_modules/async/autoInject.js b/target/cardgame/node_modules/async/autoInject.js
similarity index 100%
rename from target/helloword/node_modules/async/autoInject.js
rename to target/cardgame/node_modules/async/autoInject.js
diff --git a/target/helloword/node_modules/async/bower.json b/target/cardgame/node_modules/async/bower.json
similarity index 100%
rename from target/helloword/node_modules/async/bower.json
rename to target/cardgame/node_modules/async/bower.json
diff --git a/target/helloword/node_modules/async/cargo.js b/target/cardgame/node_modules/async/cargo.js
similarity index 100%
rename from target/helloword/node_modules/async/cargo.js
rename to target/cardgame/node_modules/async/cargo.js
diff --git a/target/helloword/node_modules/async/component.json b/target/cardgame/node_modules/async/component.json
similarity index 100%
rename from target/helloword/node_modules/async/component.json
rename to target/cardgame/node_modules/async/component.json
diff --git a/target/helloword/node_modules/async/compose.js b/target/cardgame/node_modules/async/compose.js
similarity index 100%
rename from target/helloword/node_modules/async/compose.js
rename to target/cardgame/node_modules/async/compose.js
diff --git a/target/helloword/node_modules/async/concat.js b/target/cardgame/node_modules/async/concat.js
similarity index 100%
rename from target/helloword/node_modules/async/concat.js
rename to target/cardgame/node_modules/async/concat.js
diff --git a/target/helloword/node_modules/async/concatSeries.js b/target/cardgame/node_modules/async/concatSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/concatSeries.js
rename to target/cardgame/node_modules/async/concatSeries.js
diff --git a/target/helloword/node_modules/async/constant.js b/target/cardgame/node_modules/async/constant.js
similarity index 100%
rename from target/helloword/node_modules/async/constant.js
rename to target/cardgame/node_modules/async/constant.js
diff --git a/target/helloword/node_modules/async/detect.js b/target/cardgame/node_modules/async/detect.js
similarity index 100%
rename from target/helloword/node_modules/async/detect.js
rename to target/cardgame/node_modules/async/detect.js
diff --git a/target/helloword/node_modules/async/detectLimit.js b/target/cardgame/node_modules/async/detectLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/detectLimit.js
rename to target/cardgame/node_modules/async/detectLimit.js
diff --git a/target/helloword/node_modules/async/detectSeries.js b/target/cardgame/node_modules/async/detectSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/detectSeries.js
rename to target/cardgame/node_modules/async/detectSeries.js
diff --git a/target/helloword/node_modules/async/dir.js b/target/cardgame/node_modules/async/dir.js
similarity index 100%
rename from target/helloword/node_modules/async/dir.js
rename to target/cardgame/node_modules/async/dir.js
diff --git a/target/helloword/node_modules/async/dist/async.js b/target/cardgame/node_modules/async/dist/async.js
similarity index 100%
rename from target/helloword/node_modules/async/dist/async.js
rename to target/cardgame/node_modules/async/dist/async.js
diff --git a/target/helloword/node_modules/async/dist/async.min.js b/target/cardgame/node_modules/async/dist/async.min.js
similarity index 100%
rename from target/helloword/node_modules/async/dist/async.min.js
rename to target/cardgame/node_modules/async/dist/async.min.js
diff --git a/target/helloword/node_modules/async/doDuring.js b/target/cardgame/node_modules/async/doDuring.js
similarity index 100%
rename from target/helloword/node_modules/async/doDuring.js
rename to target/cardgame/node_modules/async/doDuring.js
diff --git a/target/helloword/node_modules/async/doUntil.js b/target/cardgame/node_modules/async/doUntil.js
similarity index 100%
rename from target/helloword/node_modules/async/doUntil.js
rename to target/cardgame/node_modules/async/doUntil.js
diff --git a/target/helloword/node_modules/async/doWhilst.js b/target/cardgame/node_modules/async/doWhilst.js
similarity index 100%
rename from target/helloword/node_modules/async/doWhilst.js
rename to target/cardgame/node_modules/async/doWhilst.js
diff --git a/target/helloword/node_modules/async/during.js b/target/cardgame/node_modules/async/during.js
similarity index 100%
rename from target/helloword/node_modules/async/during.js
rename to target/cardgame/node_modules/async/during.js
diff --git a/target/helloword/node_modules/async/each.js b/target/cardgame/node_modules/async/each.js
similarity index 100%
rename from target/helloword/node_modules/async/each.js
rename to target/cardgame/node_modules/async/each.js
diff --git a/target/helloword/node_modules/async/eachLimit.js b/target/cardgame/node_modules/async/eachLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/eachLimit.js
rename to target/cardgame/node_modules/async/eachLimit.js
diff --git a/target/helloword/node_modules/async/eachOf.js b/target/cardgame/node_modules/async/eachOf.js
similarity index 100%
rename from target/helloword/node_modules/async/eachOf.js
rename to target/cardgame/node_modules/async/eachOf.js
diff --git a/target/helloword/node_modules/async/eachOfLimit.js b/target/cardgame/node_modules/async/eachOfLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/eachOfLimit.js
rename to target/cardgame/node_modules/async/eachOfLimit.js
diff --git a/target/helloword/node_modules/async/eachOfSeries.js b/target/cardgame/node_modules/async/eachOfSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/eachOfSeries.js
rename to target/cardgame/node_modules/async/eachOfSeries.js
diff --git a/target/helloword/node_modules/async/eachSeries.js b/target/cardgame/node_modules/async/eachSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/eachSeries.js
rename to target/cardgame/node_modules/async/eachSeries.js
diff --git a/target/helloword/node_modules/async/ensureAsync.js b/target/cardgame/node_modules/async/ensureAsync.js
similarity index 100%
rename from target/helloword/node_modules/async/ensureAsync.js
rename to target/cardgame/node_modules/async/ensureAsync.js
diff --git a/target/helloword/node_modules/async/every.js b/target/cardgame/node_modules/async/every.js
similarity index 100%
rename from target/helloword/node_modules/async/every.js
rename to target/cardgame/node_modules/async/every.js
diff --git a/target/helloword/node_modules/async/everyLimit.js b/target/cardgame/node_modules/async/everyLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/everyLimit.js
rename to target/cardgame/node_modules/async/everyLimit.js
diff --git a/target/helloword/node_modules/async/everySeries.js b/target/cardgame/node_modules/async/everySeries.js
similarity index 100%
rename from target/helloword/node_modules/async/everySeries.js
rename to target/cardgame/node_modules/async/everySeries.js
diff --git a/target/helloword/node_modules/async/filter.js b/target/cardgame/node_modules/async/filter.js
similarity index 100%
rename from target/helloword/node_modules/async/filter.js
rename to target/cardgame/node_modules/async/filter.js
diff --git a/target/helloword/node_modules/async/filterLimit.js b/target/cardgame/node_modules/async/filterLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/filterLimit.js
rename to target/cardgame/node_modules/async/filterLimit.js
diff --git a/target/helloword/node_modules/async/filterSeries.js b/target/cardgame/node_modules/async/filterSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/filterSeries.js
rename to target/cardgame/node_modules/async/filterSeries.js
diff --git a/target/helloword/node_modules/async/forever.js b/target/cardgame/node_modules/async/forever.js
similarity index 100%
rename from target/helloword/node_modules/async/forever.js
rename to target/cardgame/node_modules/async/forever.js
diff --git a/target/helloword/node_modules/async/index.js b/target/cardgame/node_modules/async/index.js
similarity index 100%
rename from target/helloword/node_modules/async/index.js
rename to target/cardgame/node_modules/async/index.js
diff --git a/target/helloword/node_modules/async/internal/applyEach.js b/target/cardgame/node_modules/async/internal/applyEach.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/applyEach.js
rename to target/cardgame/node_modules/async/internal/applyEach.js
diff --git a/target/helloword/node_modules/async/internal/concat.js b/target/cardgame/node_modules/async/internal/concat.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/concat.js
rename to target/cardgame/node_modules/async/internal/concat.js
diff --git a/target/helloword/node_modules/async/internal/consoleFunc.js b/target/cardgame/node_modules/async/internal/consoleFunc.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/consoleFunc.js
rename to target/cardgame/node_modules/async/internal/consoleFunc.js
diff --git a/target/helloword/node_modules/async/internal/createTester.js b/target/cardgame/node_modules/async/internal/createTester.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/createTester.js
rename to target/cardgame/node_modules/async/internal/createTester.js
diff --git a/target/helloword/node_modules/async/internal/doLimit.js b/target/cardgame/node_modules/async/internal/doLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/doLimit.js
rename to target/cardgame/node_modules/async/internal/doLimit.js
diff --git a/target/helloword/node_modules/async/internal/doParallel.js b/target/cardgame/node_modules/async/internal/doParallel.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/doParallel.js
rename to target/cardgame/node_modules/async/internal/doParallel.js
diff --git a/target/helloword/node_modules/async/internal/doParallelLimit.js b/target/cardgame/node_modules/async/internal/doParallelLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/doParallelLimit.js
rename to target/cardgame/node_modules/async/internal/doParallelLimit.js
diff --git a/target/helloword/node_modules/async/internal/doSeries.js b/target/cardgame/node_modules/async/internal/doSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/doSeries.js
rename to target/cardgame/node_modules/async/internal/doSeries.js
diff --git a/target/helloword/node_modules/async/internal/eachOfLimit.js b/target/cardgame/node_modules/async/internal/eachOfLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/eachOfLimit.js
rename to target/cardgame/node_modules/async/internal/eachOfLimit.js
diff --git a/target/helloword/node_modules/async/internal/filter.js b/target/cardgame/node_modules/async/internal/filter.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/filter.js
rename to target/cardgame/node_modules/async/internal/filter.js
diff --git a/target/helloword/node_modules/async/internal/findGetResult.js b/target/cardgame/node_modules/async/internal/findGetResult.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/findGetResult.js
rename to target/cardgame/node_modules/async/internal/findGetResult.js
diff --git a/target/helloword/node_modules/async/internal/getIterator.js b/target/cardgame/node_modules/async/internal/getIterator.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/getIterator.js
rename to target/cardgame/node_modules/async/internal/getIterator.js
diff --git a/target/helloword/node_modules/async/internal/initialParams.js b/target/cardgame/node_modules/async/internal/initialParams.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/initialParams.js
rename to target/cardgame/node_modules/async/internal/initialParams.js
diff --git a/target/helloword/node_modules/async/internal/iterator.js b/target/cardgame/node_modules/async/internal/iterator.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/iterator.js
rename to target/cardgame/node_modules/async/internal/iterator.js
diff --git a/target/helloword/node_modules/async/internal/map.js b/target/cardgame/node_modules/async/internal/map.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/map.js
rename to target/cardgame/node_modules/async/internal/map.js
diff --git a/target/helloword/node_modules/async/internal/notId.js b/target/cardgame/node_modules/async/internal/notId.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/notId.js
rename to target/cardgame/node_modules/async/internal/notId.js
diff --git a/target/helloword/node_modules/async/internal/once.js b/target/cardgame/node_modules/async/internal/once.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/once.js
rename to target/cardgame/node_modules/async/internal/once.js
diff --git a/target/helloword/node_modules/async/internal/onlyOnce.js b/target/cardgame/node_modules/async/internal/onlyOnce.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/onlyOnce.js
rename to target/cardgame/node_modules/async/internal/onlyOnce.js
diff --git a/target/helloword/node_modules/async/internal/parallel.js b/target/cardgame/node_modules/async/internal/parallel.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/parallel.js
rename to target/cardgame/node_modules/async/internal/parallel.js
diff --git a/target/helloword/node_modules/async/internal/queue.js b/target/cardgame/node_modules/async/internal/queue.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/queue.js
rename to target/cardgame/node_modules/async/internal/queue.js
diff --git a/target/helloword/node_modules/async/internal/reject.js b/target/cardgame/node_modules/async/internal/reject.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/reject.js
rename to target/cardgame/node_modules/async/internal/reject.js
diff --git a/target/helloword/node_modules/async/internal/setImmediate.js b/target/cardgame/node_modules/async/internal/setImmediate.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/setImmediate.js
rename to target/cardgame/node_modules/async/internal/setImmediate.js
diff --git a/target/helloword/node_modules/async/internal/withoutIndex.js b/target/cardgame/node_modules/async/internal/withoutIndex.js
similarity index 100%
rename from target/helloword/node_modules/async/internal/withoutIndex.js
rename to target/cardgame/node_modules/async/internal/withoutIndex.js
diff --git a/target/helloword/node_modules/async/iterator.js b/target/cardgame/node_modules/async/iterator.js
similarity index 100%
rename from target/helloword/node_modules/async/iterator.js
rename to target/cardgame/node_modules/async/iterator.js
diff --git a/target/helloword/node_modules/async/log.js b/target/cardgame/node_modules/async/log.js
similarity index 100%
rename from target/helloword/node_modules/async/log.js
rename to target/cardgame/node_modules/async/log.js
diff --git a/target/helloword/node_modules/async/map.js b/target/cardgame/node_modules/async/map.js
similarity index 100%
rename from target/helloword/node_modules/async/map.js
rename to target/cardgame/node_modules/async/map.js
diff --git a/target/helloword/node_modules/async/mapLimit.js b/target/cardgame/node_modules/async/mapLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/mapLimit.js
rename to target/cardgame/node_modules/async/mapLimit.js
diff --git a/target/helloword/node_modules/async/mapSeries.js b/target/cardgame/node_modules/async/mapSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/mapSeries.js
rename to target/cardgame/node_modules/async/mapSeries.js
diff --git a/target/helloword/node_modules/async/memoize.js b/target/cardgame/node_modules/async/memoize.js
similarity index 100%
rename from target/helloword/node_modules/async/memoize.js
rename to target/cardgame/node_modules/async/memoize.js
diff --git a/target/helloword/node_modules/async/nextTick.js b/target/cardgame/node_modules/async/nextTick.js
similarity index 100%
rename from target/helloword/node_modules/async/nextTick.js
rename to target/cardgame/node_modules/async/nextTick.js
diff --git a/target/helloword/node_modules/async/package.json b/target/cardgame/node_modules/async/package.json
similarity index 100%
rename from target/helloword/node_modules/async/package.json
rename to target/cardgame/node_modules/async/package.json
diff --git a/target/helloword/node_modules/async/parallel.js b/target/cardgame/node_modules/async/parallel.js
similarity index 100%
rename from target/helloword/node_modules/async/parallel.js
rename to target/cardgame/node_modules/async/parallel.js
diff --git a/target/helloword/node_modules/async/parallelLimit.js b/target/cardgame/node_modules/async/parallelLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/parallelLimit.js
rename to target/cardgame/node_modules/async/parallelLimit.js
diff --git a/target/helloword/node_modules/async/priorityQueue.js b/target/cardgame/node_modules/async/priorityQueue.js
similarity index 100%
rename from target/helloword/node_modules/async/priorityQueue.js
rename to target/cardgame/node_modules/async/priorityQueue.js
diff --git a/target/helloword/node_modules/async/queue.js b/target/cardgame/node_modules/async/queue.js
similarity index 100%
rename from target/helloword/node_modules/async/queue.js
rename to target/cardgame/node_modules/async/queue.js
diff --git a/target/helloword/node_modules/async/race.js b/target/cardgame/node_modules/async/race.js
similarity index 100%
rename from target/helloword/node_modules/async/race.js
rename to target/cardgame/node_modules/async/race.js
diff --git a/target/helloword/node_modules/async/reduce.js b/target/cardgame/node_modules/async/reduce.js
similarity index 100%
rename from target/helloword/node_modules/async/reduce.js
rename to target/cardgame/node_modules/async/reduce.js
diff --git a/target/helloword/node_modules/async/reduceRight.js b/target/cardgame/node_modules/async/reduceRight.js
similarity index 100%
rename from target/helloword/node_modules/async/reduceRight.js
rename to target/cardgame/node_modules/async/reduceRight.js
diff --git a/target/helloword/node_modules/async/reflect.js b/target/cardgame/node_modules/async/reflect.js
similarity index 100%
rename from target/helloword/node_modules/async/reflect.js
rename to target/cardgame/node_modules/async/reflect.js
diff --git a/target/helloword/node_modules/async/reflectAll.js b/target/cardgame/node_modules/async/reflectAll.js
similarity index 100%
rename from target/helloword/node_modules/async/reflectAll.js
rename to target/cardgame/node_modules/async/reflectAll.js
diff --git a/target/helloword/node_modules/async/reject.js b/target/cardgame/node_modules/async/reject.js
similarity index 100%
rename from target/helloword/node_modules/async/reject.js
rename to target/cardgame/node_modules/async/reject.js
diff --git a/target/helloword/node_modules/async/rejectLimit.js b/target/cardgame/node_modules/async/rejectLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/rejectLimit.js
rename to target/cardgame/node_modules/async/rejectLimit.js
diff --git a/target/helloword/node_modules/async/rejectSeries.js b/target/cardgame/node_modules/async/rejectSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/rejectSeries.js
rename to target/cardgame/node_modules/async/rejectSeries.js
diff --git a/target/helloword/node_modules/async/retry.js b/target/cardgame/node_modules/async/retry.js
similarity index 100%
rename from target/helloword/node_modules/async/retry.js
rename to target/cardgame/node_modules/async/retry.js
diff --git a/target/helloword/node_modules/async/retryable.js b/target/cardgame/node_modules/async/retryable.js
similarity index 100%
rename from target/helloword/node_modules/async/retryable.js
rename to target/cardgame/node_modules/async/retryable.js
diff --git a/target/helloword/node_modules/async/seq.js b/target/cardgame/node_modules/async/seq.js
similarity index 100%
rename from target/helloword/node_modules/async/seq.js
rename to target/cardgame/node_modules/async/seq.js
diff --git a/target/helloword/node_modules/async/series.js b/target/cardgame/node_modules/async/series.js
similarity index 100%
rename from target/helloword/node_modules/async/series.js
rename to target/cardgame/node_modules/async/series.js
diff --git a/target/helloword/node_modules/async/setImmediate.js b/target/cardgame/node_modules/async/setImmediate.js
similarity index 100%
rename from target/helloword/node_modules/async/setImmediate.js
rename to target/cardgame/node_modules/async/setImmediate.js
diff --git a/target/helloword/node_modules/async/some.js b/target/cardgame/node_modules/async/some.js
similarity index 100%
rename from target/helloword/node_modules/async/some.js
rename to target/cardgame/node_modules/async/some.js
diff --git a/target/helloword/node_modules/async/someLimit.js b/target/cardgame/node_modules/async/someLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/someLimit.js
rename to target/cardgame/node_modules/async/someLimit.js
diff --git a/target/helloword/node_modules/async/someSeries.js b/target/cardgame/node_modules/async/someSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/someSeries.js
rename to target/cardgame/node_modules/async/someSeries.js
diff --git a/target/helloword/node_modules/async/sortBy.js b/target/cardgame/node_modules/async/sortBy.js
similarity index 100%
rename from target/helloword/node_modules/async/sortBy.js
rename to target/cardgame/node_modules/async/sortBy.js
diff --git a/target/helloword/node_modules/async/timeout.js b/target/cardgame/node_modules/async/timeout.js
similarity index 100%
rename from target/helloword/node_modules/async/timeout.js
rename to target/cardgame/node_modules/async/timeout.js
diff --git a/target/helloword/node_modules/async/times.js b/target/cardgame/node_modules/async/times.js
similarity index 100%
rename from target/helloword/node_modules/async/times.js
rename to target/cardgame/node_modules/async/times.js
diff --git a/target/helloword/node_modules/async/timesLimit.js b/target/cardgame/node_modules/async/timesLimit.js
similarity index 100%
rename from target/helloword/node_modules/async/timesLimit.js
rename to target/cardgame/node_modules/async/timesLimit.js
diff --git a/target/helloword/node_modules/async/timesSeries.js b/target/cardgame/node_modules/async/timesSeries.js
similarity index 100%
rename from target/helloword/node_modules/async/timesSeries.js
rename to target/cardgame/node_modules/async/timesSeries.js
diff --git a/target/helloword/node_modules/async/transform.js b/target/cardgame/node_modules/async/transform.js
similarity index 100%
rename from target/helloword/node_modules/async/transform.js
rename to target/cardgame/node_modules/async/transform.js
diff --git a/target/helloword/node_modules/async/unmemoize.js b/target/cardgame/node_modules/async/unmemoize.js
similarity index 100%
rename from target/helloword/node_modules/async/unmemoize.js
rename to target/cardgame/node_modules/async/unmemoize.js
diff --git a/target/helloword/node_modules/async/until.js b/target/cardgame/node_modules/async/until.js
similarity index 100%
rename from target/helloword/node_modules/async/until.js
rename to target/cardgame/node_modules/async/until.js
diff --git a/target/helloword/node_modules/async/waterfall.js b/target/cardgame/node_modules/async/waterfall.js
similarity index 100%
rename from target/helloword/node_modules/async/waterfall.js
rename to target/cardgame/node_modules/async/waterfall.js
diff --git a/target/helloword/node_modules/async/whilst.js b/target/cardgame/node_modules/async/whilst.js
similarity index 100%
rename from target/helloword/node_modules/async/whilst.js
rename to target/cardgame/node_modules/async/whilst.js
diff --git a/target/helloword/node_modules/body-parser/HISTORY.md b/target/cardgame/node_modules/body-parser/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/body-parser/HISTORY.md
rename to target/cardgame/node_modules/body-parser/HISTORY.md
diff --git a/target/helloword/node_modules/body-parser/LICENSE b/target/cardgame/node_modules/body-parser/LICENSE
similarity index 100%
rename from target/helloword/node_modules/body-parser/LICENSE
rename to target/cardgame/node_modules/body-parser/LICENSE
diff --git a/target/helloword/node_modules/body-parser/README.md b/target/cardgame/node_modules/body-parser/README.md
similarity index 100%
rename from target/helloword/node_modules/body-parser/README.md
rename to target/cardgame/node_modules/body-parser/README.md
diff --git a/target/helloword/node_modules/body-parser/index.js b/target/cardgame/node_modules/body-parser/index.js
similarity index 100%
rename from target/helloword/node_modules/body-parser/index.js
rename to target/cardgame/node_modules/body-parser/index.js
diff --git a/target/helloword/node_modules/body-parser/lib/read.js b/target/cardgame/node_modules/body-parser/lib/read.js
similarity index 100%
rename from target/helloword/node_modules/body-parser/lib/read.js
rename to target/cardgame/node_modules/body-parser/lib/read.js
diff --git a/target/helloword/node_modules/body-parser/lib/types/json.js b/target/cardgame/node_modules/body-parser/lib/types/json.js
similarity index 100%
rename from target/helloword/node_modules/body-parser/lib/types/json.js
rename to target/cardgame/node_modules/body-parser/lib/types/json.js
diff --git a/target/helloword/node_modules/body-parser/lib/types/raw.js b/target/cardgame/node_modules/body-parser/lib/types/raw.js
similarity index 100%
rename from target/helloword/node_modules/body-parser/lib/types/raw.js
rename to target/cardgame/node_modules/body-parser/lib/types/raw.js
diff --git a/target/helloword/node_modules/body-parser/lib/types/text.js b/target/cardgame/node_modules/body-parser/lib/types/text.js
similarity index 100%
rename from target/helloword/node_modules/body-parser/lib/types/text.js
rename to target/cardgame/node_modules/body-parser/lib/types/text.js
diff --git a/target/helloword/node_modules/body-parser/lib/types/urlencoded.js b/target/cardgame/node_modules/body-parser/lib/types/urlencoded.js
similarity index 100%
rename from target/helloword/node_modules/body-parser/lib/types/urlencoded.js
rename to target/cardgame/node_modules/body-parser/lib/types/urlencoded.js
diff --git a/target/helloword/node_modules/body-parser/package.json b/target/cardgame/node_modules/body-parser/package.json
similarity index 100%
rename from target/helloword/node_modules/body-parser/package.json
rename to target/cardgame/node_modules/body-parser/package.json
diff --git a/target/helloword/node_modules/bytes/History.md b/target/cardgame/node_modules/bytes/History.md
similarity index 100%
rename from target/helloword/node_modules/bytes/History.md
rename to target/cardgame/node_modules/bytes/History.md
diff --git a/target/helloword/node_modules/bytes/LICENSE b/target/cardgame/node_modules/bytes/LICENSE
similarity index 100%
rename from target/helloword/node_modules/bytes/LICENSE
rename to target/cardgame/node_modules/bytes/LICENSE
diff --git a/target/helloword/node_modules/bytes/Readme.md b/target/cardgame/node_modules/bytes/Readme.md
similarity index 100%
rename from target/helloword/node_modules/bytes/Readme.md
rename to target/cardgame/node_modules/bytes/Readme.md
diff --git a/target/helloword/node_modules/bytes/index.js b/target/cardgame/node_modules/bytes/index.js
similarity index 100%
rename from target/helloword/node_modules/bytes/index.js
rename to target/cardgame/node_modules/bytes/index.js
diff --git a/target/helloword/node_modules/bytes/package.json b/target/cardgame/node_modules/bytes/package.json
similarity index 100%
rename from target/helloword/node_modules/bytes/package.json
rename to target/cardgame/node_modules/bytes/package.json
diff --git a/target/helloword/node_modules/content-disposition/HISTORY.md b/target/cardgame/node_modules/content-disposition/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/content-disposition/HISTORY.md
rename to target/cardgame/node_modules/content-disposition/HISTORY.md
diff --git a/target/helloword/node_modules/content-disposition/LICENSE b/target/cardgame/node_modules/content-disposition/LICENSE
similarity index 100%
rename from target/helloword/node_modules/content-disposition/LICENSE
rename to target/cardgame/node_modules/content-disposition/LICENSE
diff --git a/target/helloword/node_modules/content-disposition/README.md b/target/cardgame/node_modules/content-disposition/README.md
similarity index 100%
rename from target/helloword/node_modules/content-disposition/README.md
rename to target/cardgame/node_modules/content-disposition/README.md
diff --git a/target/helloword/node_modules/content-disposition/index.js b/target/cardgame/node_modules/content-disposition/index.js
similarity index 100%
rename from target/helloword/node_modules/content-disposition/index.js
rename to target/cardgame/node_modules/content-disposition/index.js
diff --git a/target/helloword/node_modules/content-disposition/package.json b/target/cardgame/node_modules/content-disposition/package.json
similarity index 100%
rename from target/helloword/node_modules/content-disposition/package.json
rename to target/cardgame/node_modules/content-disposition/package.json
diff --git a/target/helloword/node_modules/content-type/HISTORY.md b/target/cardgame/node_modules/content-type/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/content-type/HISTORY.md
rename to target/cardgame/node_modules/content-type/HISTORY.md
diff --git a/target/helloword/node_modules/content-type/LICENSE b/target/cardgame/node_modules/content-type/LICENSE
similarity index 100%
rename from target/helloword/node_modules/content-type/LICENSE
rename to target/cardgame/node_modules/content-type/LICENSE
diff --git a/target/helloword/node_modules/content-type/README.md b/target/cardgame/node_modules/content-type/README.md
similarity index 100%
rename from target/helloword/node_modules/content-type/README.md
rename to target/cardgame/node_modules/content-type/README.md
diff --git a/target/helloword/node_modules/content-type/index.js b/target/cardgame/node_modules/content-type/index.js
similarity index 100%
rename from target/helloword/node_modules/content-type/index.js
rename to target/cardgame/node_modules/content-type/index.js
diff --git a/target/helloword/node_modules/content-type/package.json b/target/cardgame/node_modules/content-type/package.json
similarity index 100%
rename from target/helloword/node_modules/content-type/package.json
rename to target/cardgame/node_modules/content-type/package.json
diff --git a/target/helloword/node_modules/cookie-signature/.npmignore b/target/cardgame/node_modules/cookie-signature/.npmignore
similarity index 100%
rename from target/helloword/node_modules/cookie-signature/.npmignore
rename to target/cardgame/node_modules/cookie-signature/.npmignore
diff --git a/target/helloword/node_modules/cookie-signature/History.md b/target/cardgame/node_modules/cookie-signature/History.md
similarity index 100%
rename from target/helloword/node_modules/cookie-signature/History.md
rename to target/cardgame/node_modules/cookie-signature/History.md
diff --git a/target/helloword/node_modules/cookie-signature/Readme.md b/target/cardgame/node_modules/cookie-signature/Readme.md
similarity index 100%
rename from target/helloword/node_modules/cookie-signature/Readme.md
rename to target/cardgame/node_modules/cookie-signature/Readme.md
diff --git a/target/helloword/node_modules/cookie-signature/index.js b/target/cardgame/node_modules/cookie-signature/index.js
similarity index 100%
rename from target/helloword/node_modules/cookie-signature/index.js
rename to target/cardgame/node_modules/cookie-signature/index.js
diff --git a/target/helloword/node_modules/cookie-signature/package.json b/target/cardgame/node_modules/cookie-signature/package.json
similarity index 100%
rename from target/helloword/node_modules/cookie-signature/package.json
rename to target/cardgame/node_modules/cookie-signature/package.json
diff --git a/target/helloword/node_modules/cookie/HISTORY.md b/target/cardgame/node_modules/cookie/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/cookie/HISTORY.md
rename to target/cardgame/node_modules/cookie/HISTORY.md
diff --git a/target/helloword/node_modules/cookie/LICENSE b/target/cardgame/node_modules/cookie/LICENSE
similarity index 100%
rename from target/helloword/node_modules/cookie/LICENSE
rename to target/cardgame/node_modules/cookie/LICENSE
diff --git a/target/helloword/node_modules/cookie/README.md b/target/cardgame/node_modules/cookie/README.md
similarity index 100%
rename from target/helloword/node_modules/cookie/README.md
rename to target/cardgame/node_modules/cookie/README.md
diff --git a/target/helloword/node_modules/cookie/index.js b/target/cardgame/node_modules/cookie/index.js
similarity index 100%
rename from target/helloword/node_modules/cookie/index.js
rename to target/cardgame/node_modules/cookie/index.js
diff --git a/target/helloword/node_modules/cookie/package.json b/target/cardgame/node_modules/cookie/package.json
similarity index 100%
rename from target/helloword/node_modules/cookie/package.json
rename to target/cardgame/node_modules/cookie/package.json
diff --git a/target/helloword/node_modules/debug/.jshintrc b/target/cardgame/node_modules/debug/.jshintrc
similarity index 100%
rename from target/helloword/node_modules/debug/.jshintrc
rename to target/cardgame/node_modules/debug/.jshintrc
diff --git a/target/helloword/node_modules/debug/.npmignore b/target/cardgame/node_modules/debug/.npmignore
similarity index 100%
rename from target/helloword/node_modules/debug/.npmignore
rename to target/cardgame/node_modules/debug/.npmignore
diff --git a/target/helloword/node_modules/debug/History.md b/target/cardgame/node_modules/debug/History.md
similarity index 100%
rename from target/helloword/node_modules/debug/History.md
rename to target/cardgame/node_modules/debug/History.md
diff --git a/target/helloword/node_modules/debug/Makefile b/target/cardgame/node_modules/debug/Makefile
similarity index 100%
rename from target/helloword/node_modules/debug/Makefile
rename to target/cardgame/node_modules/debug/Makefile
diff --git a/target/helloword/node_modules/debug/Readme.md b/target/cardgame/node_modules/debug/Readme.md
similarity index 100%
rename from target/helloword/node_modules/debug/Readme.md
rename to target/cardgame/node_modules/debug/Readme.md
diff --git a/target/helloword/node_modules/debug/bower.json b/target/cardgame/node_modules/debug/bower.json
similarity index 100%
rename from target/helloword/node_modules/debug/bower.json
rename to target/cardgame/node_modules/debug/bower.json
diff --git a/target/helloword/node_modules/debug/browser.js b/target/cardgame/node_modules/debug/browser.js
similarity index 100%
rename from target/helloword/node_modules/debug/browser.js
rename to target/cardgame/node_modules/debug/browser.js
diff --git a/target/helloword/node_modules/debug/component.json b/target/cardgame/node_modules/debug/component.json
similarity index 100%
rename from target/helloword/node_modules/debug/component.json
rename to target/cardgame/node_modules/debug/component.json
diff --git a/target/helloword/node_modules/debug/debug.js b/target/cardgame/node_modules/debug/debug.js
similarity index 100%
rename from target/helloword/node_modules/debug/debug.js
rename to target/cardgame/node_modules/debug/debug.js
diff --git a/target/helloword/node_modules/debug/node.js b/target/cardgame/node_modules/debug/node.js
similarity index 100%
rename from target/helloword/node_modules/debug/node.js
rename to target/cardgame/node_modules/debug/node.js
diff --git a/target/helloword/node_modules/debug/package.json b/target/cardgame/node_modules/debug/package.json
similarity index 100%
rename from target/helloword/node_modules/debug/package.json
rename to target/cardgame/node_modules/debug/package.json
diff --git a/target/helloword/node_modules/depd/History.md b/target/cardgame/node_modules/depd/History.md
similarity index 100%
rename from target/helloword/node_modules/depd/History.md
rename to target/cardgame/node_modules/depd/History.md
diff --git a/target/helloword/node_modules/depd/LICENSE b/target/cardgame/node_modules/depd/LICENSE
similarity index 100%
rename from target/helloword/node_modules/depd/LICENSE
rename to target/cardgame/node_modules/depd/LICENSE
diff --git a/target/helloword/node_modules/depd/Readme.md b/target/cardgame/node_modules/depd/Readme.md
similarity index 100%
rename from target/helloword/node_modules/depd/Readme.md
rename to target/cardgame/node_modules/depd/Readme.md
diff --git a/target/helloword/node_modules/depd/index.js b/target/cardgame/node_modules/depd/index.js
similarity index 100%
rename from target/helloword/node_modules/depd/index.js
rename to target/cardgame/node_modules/depd/index.js
diff --git a/target/helloword/node_modules/depd/lib/browser/index.js b/target/cardgame/node_modules/depd/lib/browser/index.js
similarity index 100%
rename from target/helloword/node_modules/depd/lib/browser/index.js
rename to target/cardgame/node_modules/depd/lib/browser/index.js
diff --git a/target/helloword/node_modules/depd/lib/compat/buffer-concat.js b/target/cardgame/node_modules/depd/lib/compat/buffer-concat.js
similarity index 100%
rename from target/helloword/node_modules/depd/lib/compat/buffer-concat.js
rename to target/cardgame/node_modules/depd/lib/compat/buffer-concat.js
diff --git a/target/helloword/node_modules/depd/lib/compat/callsite-tostring.js b/target/cardgame/node_modules/depd/lib/compat/callsite-tostring.js
similarity index 100%
rename from target/helloword/node_modules/depd/lib/compat/callsite-tostring.js
rename to target/cardgame/node_modules/depd/lib/compat/callsite-tostring.js
diff --git a/target/helloword/node_modules/depd/lib/compat/event-listener-count.js b/target/cardgame/node_modules/depd/lib/compat/event-listener-count.js
similarity index 100%
rename from target/helloword/node_modules/depd/lib/compat/event-listener-count.js
rename to target/cardgame/node_modules/depd/lib/compat/event-listener-count.js
diff --git a/target/helloword/node_modules/depd/lib/compat/index.js b/target/cardgame/node_modules/depd/lib/compat/index.js
similarity index 100%
rename from target/helloword/node_modules/depd/lib/compat/index.js
rename to target/cardgame/node_modules/depd/lib/compat/index.js
diff --git a/target/helloword/node_modules/depd/package.json b/target/cardgame/node_modules/depd/package.json
similarity index 100%
rename from target/helloword/node_modules/depd/package.json
rename to target/cardgame/node_modules/depd/package.json
diff --git a/target/helloword/node_modules/destroy/LICENSE b/target/cardgame/node_modules/destroy/LICENSE
similarity index 100%
rename from target/helloword/node_modules/destroy/LICENSE
rename to target/cardgame/node_modules/destroy/LICENSE
diff --git a/target/helloword/node_modules/destroy/README.md b/target/cardgame/node_modules/destroy/README.md
similarity index 100%
rename from target/helloword/node_modules/destroy/README.md
rename to target/cardgame/node_modules/destroy/README.md
diff --git a/target/helloword/node_modules/destroy/index.js b/target/cardgame/node_modules/destroy/index.js
similarity index 100%
rename from target/helloword/node_modules/destroy/index.js
rename to target/cardgame/node_modules/destroy/index.js
diff --git a/target/helloword/node_modules/destroy/package.json b/target/cardgame/node_modules/destroy/package.json
similarity index 100%
rename from target/helloword/node_modules/destroy/package.json
rename to target/cardgame/node_modules/destroy/package.json
diff --git a/target/helloword/node_modules/ee-first/LICENSE b/target/cardgame/node_modules/ee-first/LICENSE
similarity index 100%
rename from target/helloword/node_modules/ee-first/LICENSE
rename to target/cardgame/node_modules/ee-first/LICENSE
diff --git a/target/helloword/node_modules/ee-first/README.md b/target/cardgame/node_modules/ee-first/README.md
similarity index 100%
rename from target/helloword/node_modules/ee-first/README.md
rename to target/cardgame/node_modules/ee-first/README.md
diff --git a/target/helloword/node_modules/ee-first/index.js b/target/cardgame/node_modules/ee-first/index.js
similarity index 100%
rename from target/helloword/node_modules/ee-first/index.js
rename to target/cardgame/node_modules/ee-first/index.js
diff --git a/target/helloword/node_modules/ee-first/package.json b/target/cardgame/node_modules/ee-first/package.json
similarity index 100%
rename from target/helloword/node_modules/ee-first/package.json
rename to target/cardgame/node_modules/ee-first/package.json
diff --git a/target/helloword/node_modules/escape-html/LICENSE b/target/cardgame/node_modules/escape-html/LICENSE
similarity index 100%
rename from target/helloword/node_modules/escape-html/LICENSE
rename to target/cardgame/node_modules/escape-html/LICENSE
diff --git a/target/helloword/node_modules/escape-html/Readme.md b/target/cardgame/node_modules/escape-html/Readme.md
similarity index 100%
rename from target/helloword/node_modules/escape-html/Readme.md
rename to target/cardgame/node_modules/escape-html/Readme.md
diff --git a/target/helloword/node_modules/escape-html/index.js b/target/cardgame/node_modules/escape-html/index.js
similarity index 100%
rename from target/helloword/node_modules/escape-html/index.js
rename to target/cardgame/node_modules/escape-html/index.js
diff --git a/target/helloword/node_modules/escape-html/package.json b/target/cardgame/node_modules/escape-html/package.json
similarity index 100%
rename from target/helloword/node_modules/escape-html/package.json
rename to target/cardgame/node_modules/escape-html/package.json
diff --git a/target/helloword/node_modules/etag/HISTORY.md b/target/cardgame/node_modules/etag/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/etag/HISTORY.md
rename to target/cardgame/node_modules/etag/HISTORY.md
diff --git a/target/helloword/node_modules/etag/LICENSE b/target/cardgame/node_modules/etag/LICENSE
similarity index 100%
rename from target/helloword/node_modules/etag/LICENSE
rename to target/cardgame/node_modules/etag/LICENSE
diff --git a/target/helloword/node_modules/etag/README.md b/target/cardgame/node_modules/etag/README.md
similarity index 100%
rename from target/helloword/node_modules/etag/README.md
rename to target/cardgame/node_modules/etag/README.md
diff --git a/target/helloword/node_modules/etag/index.js b/target/cardgame/node_modules/etag/index.js
similarity index 100%
rename from target/helloword/node_modules/etag/index.js
rename to target/cardgame/node_modules/etag/index.js
diff --git a/target/helloword/node_modules/etag/package.json b/target/cardgame/node_modules/etag/package.json
similarity index 100%
rename from target/helloword/node_modules/etag/package.json
rename to target/cardgame/node_modules/etag/package.json
diff --git a/target/helloword/node_modules/express/History.md b/target/cardgame/node_modules/express/History.md
similarity index 100%
rename from target/helloword/node_modules/express/History.md
rename to target/cardgame/node_modules/express/History.md
diff --git a/target/helloword/node_modules/express/LICENSE b/target/cardgame/node_modules/express/LICENSE
similarity index 100%
rename from target/helloword/node_modules/express/LICENSE
rename to target/cardgame/node_modules/express/LICENSE
diff --git a/target/helloword/node_modules/express/Readme.md b/target/cardgame/node_modules/express/Readme.md
similarity index 100%
rename from target/helloword/node_modules/express/Readme.md
rename to target/cardgame/node_modules/express/Readme.md
diff --git a/target/helloword/node_modules/express/index.js b/target/cardgame/node_modules/express/index.js
similarity index 100%
rename from target/helloword/node_modules/express/index.js
rename to target/cardgame/node_modules/express/index.js
diff --git a/target/helloword/node_modules/express/lib/application.js b/target/cardgame/node_modules/express/lib/application.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/application.js
rename to target/cardgame/node_modules/express/lib/application.js
diff --git a/target/helloword/node_modules/express/lib/express.js b/target/cardgame/node_modules/express/lib/express.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/express.js
rename to target/cardgame/node_modules/express/lib/express.js
diff --git a/target/helloword/node_modules/express/lib/middleware/init.js b/target/cardgame/node_modules/express/lib/middleware/init.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/middleware/init.js
rename to target/cardgame/node_modules/express/lib/middleware/init.js
diff --git a/target/helloword/node_modules/express/lib/middleware/query.js b/target/cardgame/node_modules/express/lib/middleware/query.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/middleware/query.js
rename to target/cardgame/node_modules/express/lib/middleware/query.js
diff --git a/target/helloword/node_modules/express/lib/request.js b/target/cardgame/node_modules/express/lib/request.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/request.js
rename to target/cardgame/node_modules/express/lib/request.js
diff --git a/target/helloword/node_modules/express/lib/response.js b/target/cardgame/node_modules/express/lib/response.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/response.js
rename to target/cardgame/node_modules/express/lib/response.js
diff --git a/target/helloword/node_modules/express/lib/router/index.js b/target/cardgame/node_modules/express/lib/router/index.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/router/index.js
rename to target/cardgame/node_modules/express/lib/router/index.js
diff --git a/target/helloword/node_modules/express/lib/router/layer.js b/target/cardgame/node_modules/express/lib/router/layer.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/router/layer.js
rename to target/cardgame/node_modules/express/lib/router/layer.js
diff --git a/target/helloword/node_modules/express/lib/router/route.js b/target/cardgame/node_modules/express/lib/router/route.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/router/route.js
rename to target/cardgame/node_modules/express/lib/router/route.js
diff --git a/target/helloword/node_modules/express/lib/utils.js b/target/cardgame/node_modules/express/lib/utils.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/utils.js
rename to target/cardgame/node_modules/express/lib/utils.js
diff --git a/target/helloword/node_modules/express/lib/view.js b/target/cardgame/node_modules/express/lib/view.js
similarity index 100%
rename from target/helloword/node_modules/express/lib/view.js
rename to target/cardgame/node_modules/express/lib/view.js
diff --git a/target/helloword/node_modules/express/node_modules/qs/.eslintignore b/target/cardgame/node_modules/express/node_modules/qs/.eslintignore
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/.eslintignore
rename to target/cardgame/node_modules/express/node_modules/qs/.eslintignore
diff --git a/target/helloword/node_modules/express/node_modules/qs/.npmignore b/target/cardgame/node_modules/express/node_modules/qs/.npmignore
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/.npmignore
rename to target/cardgame/node_modules/express/node_modules/qs/.npmignore
diff --git a/target/helloword/node_modules/express/node_modules/qs/.travis.yml b/target/cardgame/node_modules/express/node_modules/qs/.travis.yml
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/.travis.yml
rename to target/cardgame/node_modules/express/node_modules/qs/.travis.yml
diff --git a/target/helloword/node_modules/express/node_modules/qs/CHANGELOG.md b/target/cardgame/node_modules/express/node_modules/qs/CHANGELOG.md
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/CHANGELOG.md
rename to target/cardgame/node_modules/express/node_modules/qs/CHANGELOG.md
diff --git a/target/helloword/node_modules/express/node_modules/qs/CONTRIBUTING.md b/target/cardgame/node_modules/express/node_modules/qs/CONTRIBUTING.md
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/CONTRIBUTING.md
rename to target/cardgame/node_modules/express/node_modules/qs/CONTRIBUTING.md
diff --git a/target/helloword/node_modules/express/node_modules/qs/LICENSE b/target/cardgame/node_modules/express/node_modules/qs/LICENSE
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/LICENSE
rename to target/cardgame/node_modules/express/node_modules/qs/LICENSE
diff --git a/target/helloword/node_modules/express/node_modules/qs/README.md b/target/cardgame/node_modules/express/node_modules/qs/README.md
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/README.md
rename to target/cardgame/node_modules/express/node_modules/qs/README.md
diff --git a/target/helloword/node_modules/express/node_modules/qs/bower.json b/target/cardgame/node_modules/express/node_modules/qs/bower.json
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/bower.json
rename to target/cardgame/node_modules/express/node_modules/qs/bower.json
diff --git a/target/helloword/node_modules/express/node_modules/qs/lib/index.js b/target/cardgame/node_modules/express/node_modules/qs/lib/index.js
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/lib/index.js
rename to target/cardgame/node_modules/express/node_modules/qs/lib/index.js
diff --git a/target/helloword/node_modules/express/node_modules/qs/lib/parse.js b/target/cardgame/node_modules/express/node_modules/qs/lib/parse.js
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/lib/parse.js
rename to target/cardgame/node_modules/express/node_modules/qs/lib/parse.js
diff --git a/target/helloword/node_modules/express/node_modules/qs/lib/stringify.js b/target/cardgame/node_modules/express/node_modules/qs/lib/stringify.js
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/lib/stringify.js
rename to target/cardgame/node_modules/express/node_modules/qs/lib/stringify.js
diff --git a/target/helloword/node_modules/express/node_modules/qs/lib/utils.js b/target/cardgame/node_modules/express/node_modules/qs/lib/utils.js
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/lib/utils.js
rename to target/cardgame/node_modules/express/node_modules/qs/lib/utils.js
diff --git a/target/helloword/node_modules/express/node_modules/qs/package.json b/target/cardgame/node_modules/express/node_modules/qs/package.json
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/package.json
rename to target/cardgame/node_modules/express/node_modules/qs/package.json
diff --git a/target/helloword/node_modules/express/node_modules/qs/test/parse.js b/target/cardgame/node_modules/express/node_modules/qs/test/parse.js
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/test/parse.js
rename to target/cardgame/node_modules/express/node_modules/qs/test/parse.js
diff --git a/target/helloword/node_modules/express/node_modules/qs/test/stringify.js b/target/cardgame/node_modules/express/node_modules/qs/test/stringify.js
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/test/stringify.js
rename to target/cardgame/node_modules/express/node_modules/qs/test/stringify.js
diff --git a/target/helloword/node_modules/express/node_modules/qs/test/utils.js b/target/cardgame/node_modules/express/node_modules/qs/test/utils.js
similarity index 100%
rename from target/helloword/node_modules/express/node_modules/qs/test/utils.js
rename to target/cardgame/node_modules/express/node_modules/qs/test/utils.js
diff --git a/target/helloword/node_modules/express/package.json b/target/cardgame/node_modules/express/package.json
similarity index 100%
rename from target/helloword/node_modules/express/package.json
rename to target/cardgame/node_modules/express/package.json
diff --git a/target/helloword/node_modules/finalhandler/HISTORY.md b/target/cardgame/node_modules/finalhandler/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/finalhandler/HISTORY.md
rename to target/cardgame/node_modules/finalhandler/HISTORY.md
diff --git a/target/helloword/node_modules/finalhandler/LICENSE b/target/cardgame/node_modules/finalhandler/LICENSE
similarity index 100%
rename from target/helloword/node_modules/finalhandler/LICENSE
rename to target/cardgame/node_modules/finalhandler/LICENSE
diff --git a/target/helloword/node_modules/finalhandler/README.md b/target/cardgame/node_modules/finalhandler/README.md
similarity index 100%
rename from target/helloword/node_modules/finalhandler/README.md
rename to target/cardgame/node_modules/finalhandler/README.md
diff --git a/target/helloword/node_modules/finalhandler/index.js b/target/cardgame/node_modules/finalhandler/index.js
similarity index 100%
rename from target/helloword/node_modules/finalhandler/index.js
rename to target/cardgame/node_modules/finalhandler/index.js
diff --git a/target/helloword/node_modules/finalhandler/package.json b/target/cardgame/node_modules/finalhandler/package.json
similarity index 100%
rename from target/helloword/node_modules/finalhandler/package.json
rename to target/cardgame/node_modules/finalhandler/package.json
diff --git a/target/helloword/node_modules/forwarded/HISTORY.md b/target/cardgame/node_modules/forwarded/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/forwarded/HISTORY.md
rename to target/cardgame/node_modules/forwarded/HISTORY.md
diff --git a/target/helloword/node_modules/forwarded/LICENSE b/target/cardgame/node_modules/forwarded/LICENSE
similarity index 100%
rename from target/helloword/node_modules/forwarded/LICENSE
rename to target/cardgame/node_modules/forwarded/LICENSE
diff --git a/target/helloword/node_modules/forwarded/README.md b/target/cardgame/node_modules/forwarded/README.md
similarity index 100%
rename from target/helloword/node_modules/forwarded/README.md
rename to target/cardgame/node_modules/forwarded/README.md
diff --git a/target/helloword/node_modules/forwarded/index.js b/target/cardgame/node_modules/forwarded/index.js
similarity index 100%
rename from target/helloword/node_modules/forwarded/index.js
rename to target/cardgame/node_modules/forwarded/index.js
diff --git a/target/helloword/node_modules/forwarded/package.json b/target/cardgame/node_modules/forwarded/package.json
similarity index 100%
rename from target/helloword/node_modules/forwarded/package.json
rename to target/cardgame/node_modules/forwarded/package.json
diff --git a/target/helloword/node_modules/fresh/HISTORY.md b/target/cardgame/node_modules/fresh/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/fresh/HISTORY.md
rename to target/cardgame/node_modules/fresh/HISTORY.md
diff --git a/target/helloword/node_modules/fresh/LICENSE b/target/cardgame/node_modules/fresh/LICENSE
similarity index 100%
rename from target/helloword/node_modules/fresh/LICENSE
rename to target/cardgame/node_modules/fresh/LICENSE
diff --git a/target/helloword/node_modules/fresh/README.md b/target/cardgame/node_modules/fresh/README.md
similarity index 100%
rename from target/helloword/node_modules/fresh/README.md
rename to target/cardgame/node_modules/fresh/README.md
diff --git a/target/helloword/node_modules/fresh/index.js b/target/cardgame/node_modules/fresh/index.js
similarity index 100%
rename from target/helloword/node_modules/fresh/index.js
rename to target/cardgame/node_modules/fresh/index.js
diff --git a/target/helloword/node_modules/fresh/package.json b/target/cardgame/node_modules/fresh/package.json
similarity index 100%
rename from target/helloword/node_modules/fresh/package.json
rename to target/cardgame/node_modules/fresh/package.json
diff --git a/target/helloword/node_modules/http-errors/HISTORY.md b/target/cardgame/node_modules/http-errors/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/http-errors/HISTORY.md
rename to target/cardgame/node_modules/http-errors/HISTORY.md
diff --git a/target/helloword/node_modules/http-errors/LICENSE b/target/cardgame/node_modules/http-errors/LICENSE
similarity index 100%
rename from target/helloword/node_modules/http-errors/LICENSE
rename to target/cardgame/node_modules/http-errors/LICENSE
diff --git a/target/helloword/node_modules/http-errors/README.md b/target/cardgame/node_modules/http-errors/README.md
similarity index 100%
rename from target/helloword/node_modules/http-errors/README.md
rename to target/cardgame/node_modules/http-errors/README.md
diff --git a/target/helloword/node_modules/http-errors/index.js b/target/cardgame/node_modules/http-errors/index.js
similarity index 100%
rename from target/helloword/node_modules/http-errors/index.js
rename to target/cardgame/node_modules/http-errors/index.js
diff --git a/target/helloword/node_modules/http-errors/package.json b/target/cardgame/node_modules/http-errors/package.json
similarity index 100%
rename from target/helloword/node_modules/http-errors/package.json
rename to target/cardgame/node_modules/http-errors/package.json
diff --git a/target/helloword/node_modules/iconv-lite/.npmignore b/target/cardgame/node_modules/iconv-lite/.npmignore
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/.npmignore
rename to target/cardgame/node_modules/iconv-lite/.npmignore
diff --git a/target/helloword/node_modules/iconv-lite/.travis.yml b/target/cardgame/node_modules/iconv-lite/.travis.yml
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/.travis.yml
rename to target/cardgame/node_modules/iconv-lite/.travis.yml
diff --git a/target/helloword/node_modules/iconv-lite/Changelog.md b/target/cardgame/node_modules/iconv-lite/Changelog.md
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/Changelog.md
rename to target/cardgame/node_modules/iconv-lite/Changelog.md
diff --git a/target/helloword/node_modules/iconv-lite/LICENSE b/target/cardgame/node_modules/iconv-lite/LICENSE
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/LICENSE
rename to target/cardgame/node_modules/iconv-lite/LICENSE
diff --git a/target/helloword/node_modules/iconv-lite/README.md b/target/cardgame/node_modules/iconv-lite/README.md
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/README.md
rename to target/cardgame/node_modules/iconv-lite/README.md
diff --git a/target/helloword/node_modules/iconv-lite/encodings/dbcs-codec.js b/target/cardgame/node_modules/iconv-lite/encodings/dbcs-codec.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/dbcs-codec.js
rename to target/cardgame/node_modules/iconv-lite/encodings/dbcs-codec.js
diff --git a/target/helloword/node_modules/iconv-lite/encodings/dbcs-data.js b/target/cardgame/node_modules/iconv-lite/encodings/dbcs-data.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/dbcs-data.js
rename to target/cardgame/node_modules/iconv-lite/encodings/dbcs-data.js
diff --git a/target/helloword/node_modules/iconv-lite/encodings/index.js b/target/cardgame/node_modules/iconv-lite/encodings/index.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/index.js
rename to target/cardgame/node_modules/iconv-lite/encodings/index.js
diff --git a/target/helloword/node_modules/iconv-lite/encodings/internal.js b/target/cardgame/node_modules/iconv-lite/encodings/internal.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/internal.js
rename to target/cardgame/node_modules/iconv-lite/encodings/internal.js
diff --git a/target/helloword/node_modules/iconv-lite/encodings/sbcs-codec.js b/target/cardgame/node_modules/iconv-lite/encodings/sbcs-codec.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/sbcs-codec.js
rename to target/cardgame/node_modules/iconv-lite/encodings/sbcs-codec.js
diff --git a/target/helloword/node_modules/iconv-lite/encodings/sbcs-data-generated.js b/target/cardgame/node_modules/iconv-lite/encodings/sbcs-data-generated.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/sbcs-data-generated.js
rename to target/cardgame/node_modules/iconv-lite/encodings/sbcs-data-generated.js
diff --git a/target/helloword/node_modules/iconv-lite/encodings/sbcs-data.js b/target/cardgame/node_modules/iconv-lite/encodings/sbcs-data.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/sbcs-data.js
rename to target/cardgame/node_modules/iconv-lite/encodings/sbcs-data.js
diff --git a/target/helloword/node_modules/iconv-lite/encodings/tables/big5-added.json b/target/cardgame/node_modules/iconv-lite/encodings/tables/big5-added.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/tables/big5-added.json
rename to target/cardgame/node_modules/iconv-lite/encodings/tables/big5-added.json
diff --git a/target/helloword/node_modules/iconv-lite/encodings/tables/cp936.json b/target/cardgame/node_modules/iconv-lite/encodings/tables/cp936.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/tables/cp936.json
rename to target/cardgame/node_modules/iconv-lite/encodings/tables/cp936.json
diff --git a/target/helloword/node_modules/iconv-lite/encodings/tables/cp949.json b/target/cardgame/node_modules/iconv-lite/encodings/tables/cp949.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/tables/cp949.json
rename to target/cardgame/node_modules/iconv-lite/encodings/tables/cp949.json
diff --git a/target/helloword/node_modules/iconv-lite/encodings/tables/cp950.json b/target/cardgame/node_modules/iconv-lite/encodings/tables/cp950.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/tables/cp950.json
rename to target/cardgame/node_modules/iconv-lite/encodings/tables/cp950.json
diff --git a/target/helloword/node_modules/iconv-lite/encodings/tables/eucjp.json b/target/cardgame/node_modules/iconv-lite/encodings/tables/eucjp.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/tables/eucjp.json
rename to target/cardgame/node_modules/iconv-lite/encodings/tables/eucjp.json
diff --git a/target/helloword/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json b/target/cardgame/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
rename to target/cardgame/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
diff --git a/target/helloword/node_modules/iconv-lite/encodings/tables/gbk-added.json b/target/cardgame/node_modules/iconv-lite/encodings/tables/gbk-added.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/tables/gbk-added.json
rename to target/cardgame/node_modules/iconv-lite/encodings/tables/gbk-added.json
diff --git a/target/helloword/node_modules/iconv-lite/encodings/tables/shiftjis.json b/target/cardgame/node_modules/iconv-lite/encodings/tables/shiftjis.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/tables/shiftjis.json
rename to target/cardgame/node_modules/iconv-lite/encodings/tables/shiftjis.json
diff --git a/target/helloword/node_modules/iconv-lite/encodings/utf16.js b/target/cardgame/node_modules/iconv-lite/encodings/utf16.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/utf16.js
rename to target/cardgame/node_modules/iconv-lite/encodings/utf16.js
diff --git a/target/helloword/node_modules/iconv-lite/encodings/utf7.js b/target/cardgame/node_modules/iconv-lite/encodings/utf7.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/encodings/utf7.js
rename to target/cardgame/node_modules/iconv-lite/encodings/utf7.js
diff --git a/target/helloword/node_modules/iconv-lite/lib/bom-handling.js b/target/cardgame/node_modules/iconv-lite/lib/bom-handling.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/lib/bom-handling.js
rename to target/cardgame/node_modules/iconv-lite/lib/bom-handling.js
diff --git a/target/helloword/node_modules/iconv-lite/lib/extend-node.js b/target/cardgame/node_modules/iconv-lite/lib/extend-node.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/lib/extend-node.js
rename to target/cardgame/node_modules/iconv-lite/lib/extend-node.js
diff --git a/target/helloword/node_modules/iconv-lite/lib/index.js b/target/cardgame/node_modules/iconv-lite/lib/index.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/lib/index.js
rename to target/cardgame/node_modules/iconv-lite/lib/index.js
diff --git a/target/helloword/node_modules/iconv-lite/lib/streams.js b/target/cardgame/node_modules/iconv-lite/lib/streams.js
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/lib/streams.js
rename to target/cardgame/node_modules/iconv-lite/lib/streams.js
diff --git a/target/helloword/node_modules/iconv-lite/package.json b/target/cardgame/node_modules/iconv-lite/package.json
similarity index 100%
rename from target/helloword/node_modules/iconv-lite/package.json
rename to target/cardgame/node_modules/iconv-lite/package.json
diff --git a/target/helloword/node_modules/inherits/LICENSE b/target/cardgame/node_modules/inherits/LICENSE
similarity index 100%
rename from target/helloword/node_modules/inherits/LICENSE
rename to target/cardgame/node_modules/inherits/LICENSE
diff --git a/target/helloword/node_modules/inherits/README.md b/target/cardgame/node_modules/inherits/README.md
similarity index 100%
rename from target/helloword/node_modules/inherits/README.md
rename to target/cardgame/node_modules/inherits/README.md
diff --git a/target/helloword/node_modules/inherits/inherits.js b/target/cardgame/node_modules/inherits/inherits.js
similarity index 100%
rename from target/helloword/node_modules/inherits/inherits.js
rename to target/cardgame/node_modules/inherits/inherits.js
diff --git a/target/helloword/node_modules/inherits/inherits_browser.js b/target/cardgame/node_modules/inherits/inherits_browser.js
similarity index 100%
rename from target/helloword/node_modules/inherits/inherits_browser.js
rename to target/cardgame/node_modules/inherits/inherits_browser.js
diff --git a/target/helloword/node_modules/inherits/package.json b/target/cardgame/node_modules/inherits/package.json
similarity index 100%
rename from target/helloword/node_modules/inherits/package.json
rename to target/cardgame/node_modules/inherits/package.json
diff --git a/target/helloword/node_modules/inherits/test.js b/target/cardgame/node_modules/inherits/test.js
similarity index 100%
rename from target/helloword/node_modules/inherits/test.js
rename to target/cardgame/node_modules/inherits/test.js
diff --git a/target/helloword/node_modules/ipaddr.js/.npmignore b/target/cardgame/node_modules/ipaddr.js/.npmignore
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/.npmignore
rename to target/cardgame/node_modules/ipaddr.js/.npmignore
diff --git a/target/helloword/node_modules/ipaddr.js/.travis.yml b/target/cardgame/node_modules/ipaddr.js/.travis.yml
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/.travis.yml
rename to target/cardgame/node_modules/ipaddr.js/.travis.yml
diff --git a/target/helloword/node_modules/ipaddr.js/Cakefile b/target/cardgame/node_modules/ipaddr.js/Cakefile
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/Cakefile
rename to target/cardgame/node_modules/ipaddr.js/Cakefile
diff --git a/target/helloword/node_modules/ipaddr.js/LICENSE b/target/cardgame/node_modules/ipaddr.js/LICENSE
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/LICENSE
rename to target/cardgame/node_modules/ipaddr.js/LICENSE
diff --git a/target/helloword/node_modules/ipaddr.js/README.md b/target/cardgame/node_modules/ipaddr.js/README.md
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/README.md
rename to target/cardgame/node_modules/ipaddr.js/README.md
diff --git a/target/helloword/node_modules/ipaddr.js/bower.json b/target/cardgame/node_modules/ipaddr.js/bower.json
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/bower.json
rename to target/cardgame/node_modules/ipaddr.js/bower.json
diff --git a/target/helloword/node_modules/ipaddr.js/ipaddr.min.js b/target/cardgame/node_modules/ipaddr.js/ipaddr.min.js
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/ipaddr.min.js
rename to target/cardgame/node_modules/ipaddr.js/ipaddr.min.js
diff --git a/target/helloword/node_modules/ipaddr.js/lib/ipaddr.js b/target/cardgame/node_modules/ipaddr.js/lib/ipaddr.js
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/lib/ipaddr.js
rename to target/cardgame/node_modules/ipaddr.js/lib/ipaddr.js
diff --git a/target/helloword/node_modules/ipaddr.js/package.json b/target/cardgame/node_modules/ipaddr.js/package.json
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/package.json
rename to target/cardgame/node_modules/ipaddr.js/package.json
diff --git a/target/helloword/node_modules/ipaddr.js/src/ipaddr.coffee b/target/cardgame/node_modules/ipaddr.js/src/ipaddr.coffee
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/src/ipaddr.coffee
rename to target/cardgame/node_modules/ipaddr.js/src/ipaddr.coffee
diff --git a/target/helloword/node_modules/ipaddr.js/test/ipaddr.test.coffee b/target/cardgame/node_modules/ipaddr.js/test/ipaddr.test.coffee
similarity index 100%
rename from target/helloword/node_modules/ipaddr.js/test/ipaddr.test.coffee
rename to target/cardgame/node_modules/ipaddr.js/test/ipaddr.test.coffee
diff --git a/target/helloword/node_modules/lodash/LICENSE b/target/cardgame/node_modules/lodash/LICENSE
similarity index 100%
rename from target/helloword/node_modules/lodash/LICENSE
rename to target/cardgame/node_modules/lodash/LICENSE
diff --git a/target/helloword/node_modules/lodash/README.md b/target/cardgame/node_modules/lodash/README.md
similarity index 100%
rename from target/helloword/node_modules/lodash/README.md
rename to target/cardgame/node_modules/lodash/README.md
diff --git a/target/helloword/node_modules/lodash/_DataView.js b/target/cardgame/node_modules/lodash/_DataView.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_DataView.js
rename to target/cardgame/node_modules/lodash/_DataView.js
diff --git a/target/helloword/node_modules/lodash/_Hash.js b/target/cardgame/node_modules/lodash/_Hash.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_Hash.js
rename to target/cardgame/node_modules/lodash/_Hash.js
diff --git a/target/helloword/node_modules/lodash/_LazyWrapper.js b/target/cardgame/node_modules/lodash/_LazyWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_LazyWrapper.js
rename to target/cardgame/node_modules/lodash/_LazyWrapper.js
diff --git a/target/helloword/node_modules/lodash/_ListCache.js b/target/cardgame/node_modules/lodash/_ListCache.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_ListCache.js
rename to target/cardgame/node_modules/lodash/_ListCache.js
diff --git a/target/helloword/node_modules/lodash/_LodashWrapper.js b/target/cardgame/node_modules/lodash/_LodashWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_LodashWrapper.js
rename to target/cardgame/node_modules/lodash/_LodashWrapper.js
diff --git a/target/helloword/node_modules/lodash/_Map.js b/target/cardgame/node_modules/lodash/_Map.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_Map.js
rename to target/cardgame/node_modules/lodash/_Map.js
diff --git a/target/helloword/node_modules/lodash/_MapCache.js b/target/cardgame/node_modules/lodash/_MapCache.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_MapCache.js
rename to target/cardgame/node_modules/lodash/_MapCache.js
diff --git a/target/helloword/node_modules/lodash/_Promise.js b/target/cardgame/node_modules/lodash/_Promise.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_Promise.js
rename to target/cardgame/node_modules/lodash/_Promise.js
diff --git a/target/helloword/node_modules/lodash/_Reflect.js b/target/cardgame/node_modules/lodash/_Reflect.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_Reflect.js
rename to target/cardgame/node_modules/lodash/_Reflect.js
diff --git a/target/helloword/node_modules/lodash/_Set.js b/target/cardgame/node_modules/lodash/_Set.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_Set.js
rename to target/cardgame/node_modules/lodash/_Set.js
diff --git a/target/helloword/node_modules/lodash/_SetCache.js b/target/cardgame/node_modules/lodash/_SetCache.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_SetCache.js
rename to target/cardgame/node_modules/lodash/_SetCache.js
diff --git a/target/helloword/node_modules/lodash/_Stack.js b/target/cardgame/node_modules/lodash/_Stack.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_Stack.js
rename to target/cardgame/node_modules/lodash/_Stack.js
diff --git a/target/helloword/node_modules/lodash/_Symbol.js b/target/cardgame/node_modules/lodash/_Symbol.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_Symbol.js
rename to target/cardgame/node_modules/lodash/_Symbol.js
diff --git a/target/helloword/node_modules/lodash/_Uint8Array.js b/target/cardgame/node_modules/lodash/_Uint8Array.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_Uint8Array.js
rename to target/cardgame/node_modules/lodash/_Uint8Array.js
diff --git a/target/helloword/node_modules/lodash/_WeakMap.js b/target/cardgame/node_modules/lodash/_WeakMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_WeakMap.js
rename to target/cardgame/node_modules/lodash/_WeakMap.js
diff --git a/target/helloword/node_modules/lodash/_addMapEntry.js b/target/cardgame/node_modules/lodash/_addMapEntry.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_addMapEntry.js
rename to target/cardgame/node_modules/lodash/_addMapEntry.js
diff --git a/target/helloword/node_modules/lodash/_addSetEntry.js b/target/cardgame/node_modules/lodash/_addSetEntry.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_addSetEntry.js
rename to target/cardgame/node_modules/lodash/_addSetEntry.js
diff --git a/target/helloword/node_modules/lodash/_apply.js b/target/cardgame/node_modules/lodash/_apply.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_apply.js
rename to target/cardgame/node_modules/lodash/_apply.js
diff --git a/target/helloword/node_modules/lodash/_arrayAggregator.js b/target/cardgame/node_modules/lodash/_arrayAggregator.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayAggregator.js
rename to target/cardgame/node_modules/lodash/_arrayAggregator.js
diff --git a/target/helloword/node_modules/lodash/_arrayEach.js b/target/cardgame/node_modules/lodash/_arrayEach.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayEach.js
rename to target/cardgame/node_modules/lodash/_arrayEach.js
diff --git a/target/helloword/node_modules/lodash/_arrayEachRight.js b/target/cardgame/node_modules/lodash/_arrayEachRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayEachRight.js
rename to target/cardgame/node_modules/lodash/_arrayEachRight.js
diff --git a/target/helloword/node_modules/lodash/_arrayEvery.js b/target/cardgame/node_modules/lodash/_arrayEvery.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayEvery.js
rename to target/cardgame/node_modules/lodash/_arrayEvery.js
diff --git a/target/helloword/node_modules/lodash/_arrayFilter.js b/target/cardgame/node_modules/lodash/_arrayFilter.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayFilter.js
rename to target/cardgame/node_modules/lodash/_arrayFilter.js
diff --git a/target/helloword/node_modules/lodash/_arrayIncludes.js b/target/cardgame/node_modules/lodash/_arrayIncludes.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayIncludes.js
rename to target/cardgame/node_modules/lodash/_arrayIncludes.js
diff --git a/target/helloword/node_modules/lodash/_arrayIncludesWith.js b/target/cardgame/node_modules/lodash/_arrayIncludesWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayIncludesWith.js
rename to target/cardgame/node_modules/lodash/_arrayIncludesWith.js
diff --git a/target/helloword/node_modules/lodash/_arrayMap.js b/target/cardgame/node_modules/lodash/_arrayMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayMap.js
rename to target/cardgame/node_modules/lodash/_arrayMap.js
diff --git a/target/helloword/node_modules/lodash/_arrayPush.js b/target/cardgame/node_modules/lodash/_arrayPush.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayPush.js
rename to target/cardgame/node_modules/lodash/_arrayPush.js
diff --git a/target/helloword/node_modules/lodash/_arrayReduce.js b/target/cardgame/node_modules/lodash/_arrayReduce.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayReduce.js
rename to target/cardgame/node_modules/lodash/_arrayReduce.js
diff --git a/target/helloword/node_modules/lodash/_arrayReduceRight.js b/target/cardgame/node_modules/lodash/_arrayReduceRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arrayReduceRight.js
rename to target/cardgame/node_modules/lodash/_arrayReduceRight.js
diff --git a/target/helloword/node_modules/lodash/_arraySome.js b/target/cardgame/node_modules/lodash/_arraySome.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_arraySome.js
rename to target/cardgame/node_modules/lodash/_arraySome.js
diff --git a/target/helloword/node_modules/lodash/_assignInDefaults.js b/target/cardgame/node_modules/lodash/_assignInDefaults.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_assignInDefaults.js
rename to target/cardgame/node_modules/lodash/_assignInDefaults.js
diff --git a/target/helloword/node_modules/lodash/_assignMergeValue.js b/target/cardgame/node_modules/lodash/_assignMergeValue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_assignMergeValue.js
rename to target/cardgame/node_modules/lodash/_assignMergeValue.js
diff --git a/target/helloword/node_modules/lodash/_assignValue.js b/target/cardgame/node_modules/lodash/_assignValue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_assignValue.js
rename to target/cardgame/node_modules/lodash/_assignValue.js
diff --git a/target/helloword/node_modules/lodash/_assocIndexOf.js b/target/cardgame/node_modules/lodash/_assocIndexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_assocIndexOf.js
rename to target/cardgame/node_modules/lodash/_assocIndexOf.js
diff --git a/target/helloword/node_modules/lodash/_baseAggregator.js b/target/cardgame/node_modules/lodash/_baseAggregator.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseAggregator.js
rename to target/cardgame/node_modules/lodash/_baseAggregator.js
diff --git a/target/helloword/node_modules/lodash/_baseAssign.js b/target/cardgame/node_modules/lodash/_baseAssign.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseAssign.js
rename to target/cardgame/node_modules/lodash/_baseAssign.js
diff --git a/target/helloword/node_modules/lodash/_baseAt.js b/target/cardgame/node_modules/lodash/_baseAt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseAt.js
rename to target/cardgame/node_modules/lodash/_baseAt.js
diff --git a/target/helloword/node_modules/lodash/_baseClamp.js b/target/cardgame/node_modules/lodash/_baseClamp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseClamp.js
rename to target/cardgame/node_modules/lodash/_baseClamp.js
diff --git a/target/helloword/node_modules/lodash/_baseClone.js b/target/cardgame/node_modules/lodash/_baseClone.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseClone.js
rename to target/cardgame/node_modules/lodash/_baseClone.js
diff --git a/target/helloword/node_modules/lodash/_baseConforms.js b/target/cardgame/node_modules/lodash/_baseConforms.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseConforms.js
rename to target/cardgame/node_modules/lodash/_baseConforms.js
diff --git a/target/helloword/node_modules/lodash/_baseCreate.js b/target/cardgame/node_modules/lodash/_baseCreate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseCreate.js
rename to target/cardgame/node_modules/lodash/_baseCreate.js
diff --git a/target/helloword/node_modules/lodash/_baseDelay.js b/target/cardgame/node_modules/lodash/_baseDelay.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseDelay.js
rename to target/cardgame/node_modules/lodash/_baseDelay.js
diff --git a/target/helloword/node_modules/lodash/_baseDifference.js b/target/cardgame/node_modules/lodash/_baseDifference.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseDifference.js
rename to target/cardgame/node_modules/lodash/_baseDifference.js
diff --git a/target/helloword/node_modules/lodash/_baseEach.js b/target/cardgame/node_modules/lodash/_baseEach.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseEach.js
rename to target/cardgame/node_modules/lodash/_baseEach.js
diff --git a/target/helloword/node_modules/lodash/_baseEachRight.js b/target/cardgame/node_modules/lodash/_baseEachRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseEachRight.js
rename to target/cardgame/node_modules/lodash/_baseEachRight.js
diff --git a/target/helloword/node_modules/lodash/_baseEvery.js b/target/cardgame/node_modules/lodash/_baseEvery.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseEvery.js
rename to target/cardgame/node_modules/lodash/_baseEvery.js
diff --git a/target/helloword/node_modules/lodash/_baseExtremum.js b/target/cardgame/node_modules/lodash/_baseExtremum.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseExtremum.js
rename to target/cardgame/node_modules/lodash/_baseExtremum.js
diff --git a/target/helloword/node_modules/lodash/_baseFill.js b/target/cardgame/node_modules/lodash/_baseFill.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseFill.js
rename to target/cardgame/node_modules/lodash/_baseFill.js
diff --git a/target/helloword/node_modules/lodash/_baseFilter.js b/target/cardgame/node_modules/lodash/_baseFilter.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseFilter.js
rename to target/cardgame/node_modules/lodash/_baseFilter.js
diff --git a/target/helloword/node_modules/lodash/_baseFindIndex.js b/target/cardgame/node_modules/lodash/_baseFindIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseFindIndex.js
rename to target/cardgame/node_modules/lodash/_baseFindIndex.js
diff --git a/target/helloword/node_modules/lodash/_baseFindKey.js b/target/cardgame/node_modules/lodash/_baseFindKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseFindKey.js
rename to target/cardgame/node_modules/lodash/_baseFindKey.js
diff --git a/target/helloword/node_modules/lodash/_baseFlatten.js b/target/cardgame/node_modules/lodash/_baseFlatten.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseFlatten.js
rename to target/cardgame/node_modules/lodash/_baseFlatten.js
diff --git a/target/helloword/node_modules/lodash/_baseFor.js b/target/cardgame/node_modules/lodash/_baseFor.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseFor.js
rename to target/cardgame/node_modules/lodash/_baseFor.js
diff --git a/target/helloword/node_modules/lodash/_baseForOwn.js b/target/cardgame/node_modules/lodash/_baseForOwn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseForOwn.js
rename to target/cardgame/node_modules/lodash/_baseForOwn.js
diff --git a/target/helloword/node_modules/lodash/_baseForOwnRight.js b/target/cardgame/node_modules/lodash/_baseForOwnRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseForOwnRight.js
rename to target/cardgame/node_modules/lodash/_baseForOwnRight.js
diff --git a/target/helloword/node_modules/lodash/_baseForRight.js b/target/cardgame/node_modules/lodash/_baseForRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseForRight.js
rename to target/cardgame/node_modules/lodash/_baseForRight.js
diff --git a/target/helloword/node_modules/lodash/_baseFunctions.js b/target/cardgame/node_modules/lodash/_baseFunctions.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseFunctions.js
rename to target/cardgame/node_modules/lodash/_baseFunctions.js
diff --git a/target/helloword/node_modules/lodash/_baseGet.js b/target/cardgame/node_modules/lodash/_baseGet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseGet.js
rename to target/cardgame/node_modules/lodash/_baseGet.js
diff --git a/target/helloword/node_modules/lodash/_baseGetAllKeys.js b/target/cardgame/node_modules/lodash/_baseGetAllKeys.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseGetAllKeys.js
rename to target/cardgame/node_modules/lodash/_baseGetAllKeys.js
diff --git a/target/helloword/node_modules/lodash/_baseGt.js b/target/cardgame/node_modules/lodash/_baseGt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseGt.js
rename to target/cardgame/node_modules/lodash/_baseGt.js
diff --git a/target/helloword/node_modules/lodash/_baseHas.js b/target/cardgame/node_modules/lodash/_baseHas.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseHas.js
rename to target/cardgame/node_modules/lodash/_baseHas.js
diff --git a/target/helloword/node_modules/lodash/_baseHasIn.js b/target/cardgame/node_modules/lodash/_baseHasIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseHasIn.js
rename to target/cardgame/node_modules/lodash/_baseHasIn.js
diff --git a/target/helloword/node_modules/lodash/_baseInRange.js b/target/cardgame/node_modules/lodash/_baseInRange.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseInRange.js
rename to target/cardgame/node_modules/lodash/_baseInRange.js
diff --git a/target/helloword/node_modules/lodash/_baseIndexOf.js b/target/cardgame/node_modules/lodash/_baseIndexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseIndexOf.js
rename to target/cardgame/node_modules/lodash/_baseIndexOf.js
diff --git a/target/helloword/node_modules/lodash/_baseIndexOfWith.js b/target/cardgame/node_modules/lodash/_baseIndexOfWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseIndexOfWith.js
rename to target/cardgame/node_modules/lodash/_baseIndexOfWith.js
diff --git a/target/helloword/node_modules/lodash/_baseIntersection.js b/target/cardgame/node_modules/lodash/_baseIntersection.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseIntersection.js
rename to target/cardgame/node_modules/lodash/_baseIntersection.js
diff --git a/target/helloword/node_modules/lodash/_baseInverter.js b/target/cardgame/node_modules/lodash/_baseInverter.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseInverter.js
rename to target/cardgame/node_modules/lodash/_baseInverter.js
diff --git a/target/helloword/node_modules/lodash/_baseInvoke.js b/target/cardgame/node_modules/lodash/_baseInvoke.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseInvoke.js
rename to target/cardgame/node_modules/lodash/_baseInvoke.js
diff --git a/target/helloword/node_modules/lodash/_baseIsEqual.js b/target/cardgame/node_modules/lodash/_baseIsEqual.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseIsEqual.js
rename to target/cardgame/node_modules/lodash/_baseIsEqual.js
diff --git a/target/helloword/node_modules/lodash/_baseIsEqualDeep.js b/target/cardgame/node_modules/lodash/_baseIsEqualDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseIsEqualDeep.js
rename to target/cardgame/node_modules/lodash/_baseIsEqualDeep.js
diff --git a/target/helloword/node_modules/lodash/_baseIsMatch.js b/target/cardgame/node_modules/lodash/_baseIsMatch.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseIsMatch.js
rename to target/cardgame/node_modules/lodash/_baseIsMatch.js
diff --git a/target/helloword/node_modules/lodash/_baseIsNative.js b/target/cardgame/node_modules/lodash/_baseIsNative.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseIsNative.js
rename to target/cardgame/node_modules/lodash/_baseIsNative.js
diff --git a/target/helloword/node_modules/lodash/_baseIteratee.js b/target/cardgame/node_modules/lodash/_baseIteratee.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseIteratee.js
rename to target/cardgame/node_modules/lodash/_baseIteratee.js
diff --git a/target/helloword/node_modules/lodash/_baseKeys.js b/target/cardgame/node_modules/lodash/_baseKeys.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseKeys.js
rename to target/cardgame/node_modules/lodash/_baseKeys.js
diff --git a/target/helloword/node_modules/lodash/_baseKeysIn.js b/target/cardgame/node_modules/lodash/_baseKeysIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseKeysIn.js
rename to target/cardgame/node_modules/lodash/_baseKeysIn.js
diff --git a/target/helloword/node_modules/lodash/_baseLodash.js b/target/cardgame/node_modules/lodash/_baseLodash.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseLodash.js
rename to target/cardgame/node_modules/lodash/_baseLodash.js
diff --git a/target/helloword/node_modules/lodash/_baseLt.js b/target/cardgame/node_modules/lodash/_baseLt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseLt.js
rename to target/cardgame/node_modules/lodash/_baseLt.js
diff --git a/target/helloword/node_modules/lodash/_baseMap.js b/target/cardgame/node_modules/lodash/_baseMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseMap.js
rename to target/cardgame/node_modules/lodash/_baseMap.js
diff --git a/target/helloword/node_modules/lodash/_baseMatches.js b/target/cardgame/node_modules/lodash/_baseMatches.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseMatches.js
rename to target/cardgame/node_modules/lodash/_baseMatches.js
diff --git a/target/helloword/node_modules/lodash/_baseMatchesProperty.js b/target/cardgame/node_modules/lodash/_baseMatchesProperty.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseMatchesProperty.js
rename to target/cardgame/node_modules/lodash/_baseMatchesProperty.js
diff --git a/target/helloword/node_modules/lodash/_baseMean.js b/target/cardgame/node_modules/lodash/_baseMean.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseMean.js
rename to target/cardgame/node_modules/lodash/_baseMean.js
diff --git a/target/helloword/node_modules/lodash/_baseMerge.js b/target/cardgame/node_modules/lodash/_baseMerge.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseMerge.js
rename to target/cardgame/node_modules/lodash/_baseMerge.js
diff --git a/target/helloword/node_modules/lodash/_baseMergeDeep.js b/target/cardgame/node_modules/lodash/_baseMergeDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseMergeDeep.js
rename to target/cardgame/node_modules/lodash/_baseMergeDeep.js
diff --git a/target/helloword/node_modules/lodash/_baseNth.js b/target/cardgame/node_modules/lodash/_baseNth.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseNth.js
rename to target/cardgame/node_modules/lodash/_baseNth.js
diff --git a/target/helloword/node_modules/lodash/_baseOrderBy.js b/target/cardgame/node_modules/lodash/_baseOrderBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseOrderBy.js
rename to target/cardgame/node_modules/lodash/_baseOrderBy.js
diff --git a/target/helloword/node_modules/lodash/_basePick.js b/target/cardgame/node_modules/lodash/_basePick.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_basePick.js
rename to target/cardgame/node_modules/lodash/_basePick.js
diff --git a/target/helloword/node_modules/lodash/_basePickBy.js b/target/cardgame/node_modules/lodash/_basePickBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_basePickBy.js
rename to target/cardgame/node_modules/lodash/_basePickBy.js
diff --git a/target/helloword/node_modules/lodash/_baseProperty.js b/target/cardgame/node_modules/lodash/_baseProperty.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseProperty.js
rename to target/cardgame/node_modules/lodash/_baseProperty.js
diff --git a/target/helloword/node_modules/lodash/_basePropertyDeep.js b/target/cardgame/node_modules/lodash/_basePropertyDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_basePropertyDeep.js
rename to target/cardgame/node_modules/lodash/_basePropertyDeep.js
diff --git a/target/helloword/node_modules/lodash/_basePullAll.js b/target/cardgame/node_modules/lodash/_basePullAll.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_basePullAll.js
rename to target/cardgame/node_modules/lodash/_basePullAll.js
diff --git a/target/helloword/node_modules/lodash/_basePullAt.js b/target/cardgame/node_modules/lodash/_basePullAt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_basePullAt.js
rename to target/cardgame/node_modules/lodash/_basePullAt.js
diff --git a/target/helloword/node_modules/lodash/_baseRandom.js b/target/cardgame/node_modules/lodash/_baseRandom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseRandom.js
rename to target/cardgame/node_modules/lodash/_baseRandom.js
diff --git a/target/helloword/node_modules/lodash/_baseRange.js b/target/cardgame/node_modules/lodash/_baseRange.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseRange.js
rename to target/cardgame/node_modules/lodash/_baseRange.js
diff --git a/target/helloword/node_modules/lodash/_baseReduce.js b/target/cardgame/node_modules/lodash/_baseReduce.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseReduce.js
rename to target/cardgame/node_modules/lodash/_baseReduce.js
diff --git a/target/helloword/node_modules/lodash/_baseRepeat.js b/target/cardgame/node_modules/lodash/_baseRepeat.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseRepeat.js
rename to target/cardgame/node_modules/lodash/_baseRepeat.js
diff --git a/target/helloword/node_modules/lodash/_baseSet.js b/target/cardgame/node_modules/lodash/_baseSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSet.js
rename to target/cardgame/node_modules/lodash/_baseSet.js
diff --git a/target/helloword/node_modules/lodash/_baseSetData.js b/target/cardgame/node_modules/lodash/_baseSetData.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSetData.js
rename to target/cardgame/node_modules/lodash/_baseSetData.js
diff --git a/target/helloword/node_modules/lodash/_baseSlice.js b/target/cardgame/node_modules/lodash/_baseSlice.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSlice.js
rename to target/cardgame/node_modules/lodash/_baseSlice.js
diff --git a/target/helloword/node_modules/lodash/_baseSome.js b/target/cardgame/node_modules/lodash/_baseSome.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSome.js
rename to target/cardgame/node_modules/lodash/_baseSome.js
diff --git a/target/helloword/node_modules/lodash/_baseSortBy.js b/target/cardgame/node_modules/lodash/_baseSortBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSortBy.js
rename to target/cardgame/node_modules/lodash/_baseSortBy.js
diff --git a/target/helloword/node_modules/lodash/_baseSortedIndex.js b/target/cardgame/node_modules/lodash/_baseSortedIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSortedIndex.js
rename to target/cardgame/node_modules/lodash/_baseSortedIndex.js
diff --git a/target/helloword/node_modules/lodash/_baseSortedIndexBy.js b/target/cardgame/node_modules/lodash/_baseSortedIndexBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSortedIndexBy.js
rename to target/cardgame/node_modules/lodash/_baseSortedIndexBy.js
diff --git a/target/helloword/node_modules/lodash/_baseSortedUniq.js b/target/cardgame/node_modules/lodash/_baseSortedUniq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSortedUniq.js
rename to target/cardgame/node_modules/lodash/_baseSortedUniq.js
diff --git a/target/helloword/node_modules/lodash/_baseSum.js b/target/cardgame/node_modules/lodash/_baseSum.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseSum.js
rename to target/cardgame/node_modules/lodash/_baseSum.js
diff --git a/target/helloword/node_modules/lodash/_baseTimes.js b/target/cardgame/node_modules/lodash/_baseTimes.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseTimes.js
rename to target/cardgame/node_modules/lodash/_baseTimes.js
diff --git a/target/helloword/node_modules/lodash/_baseToNumber.js b/target/cardgame/node_modules/lodash/_baseToNumber.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseToNumber.js
rename to target/cardgame/node_modules/lodash/_baseToNumber.js
diff --git a/target/helloword/node_modules/lodash/_baseToPairs.js b/target/cardgame/node_modules/lodash/_baseToPairs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseToPairs.js
rename to target/cardgame/node_modules/lodash/_baseToPairs.js
diff --git a/target/helloword/node_modules/lodash/_baseToString.js b/target/cardgame/node_modules/lodash/_baseToString.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseToString.js
rename to target/cardgame/node_modules/lodash/_baseToString.js
diff --git a/target/helloword/node_modules/lodash/_baseUnary.js b/target/cardgame/node_modules/lodash/_baseUnary.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseUnary.js
rename to target/cardgame/node_modules/lodash/_baseUnary.js
diff --git a/target/helloword/node_modules/lodash/_baseUniq.js b/target/cardgame/node_modules/lodash/_baseUniq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseUniq.js
rename to target/cardgame/node_modules/lodash/_baseUniq.js
diff --git a/target/helloword/node_modules/lodash/_baseUnset.js b/target/cardgame/node_modules/lodash/_baseUnset.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseUnset.js
rename to target/cardgame/node_modules/lodash/_baseUnset.js
diff --git a/target/helloword/node_modules/lodash/_baseUpdate.js b/target/cardgame/node_modules/lodash/_baseUpdate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseUpdate.js
rename to target/cardgame/node_modules/lodash/_baseUpdate.js
diff --git a/target/helloword/node_modules/lodash/_baseValues.js b/target/cardgame/node_modules/lodash/_baseValues.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseValues.js
rename to target/cardgame/node_modules/lodash/_baseValues.js
diff --git a/target/helloword/node_modules/lodash/_baseWhile.js b/target/cardgame/node_modules/lodash/_baseWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseWhile.js
rename to target/cardgame/node_modules/lodash/_baseWhile.js
diff --git a/target/helloword/node_modules/lodash/_baseWrapperValue.js b/target/cardgame/node_modules/lodash/_baseWrapperValue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseWrapperValue.js
rename to target/cardgame/node_modules/lodash/_baseWrapperValue.js
diff --git a/target/helloword/node_modules/lodash/_baseXor.js b/target/cardgame/node_modules/lodash/_baseXor.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseXor.js
rename to target/cardgame/node_modules/lodash/_baseXor.js
diff --git a/target/helloword/node_modules/lodash/_baseZipObject.js b/target/cardgame/node_modules/lodash/_baseZipObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_baseZipObject.js
rename to target/cardgame/node_modules/lodash/_baseZipObject.js
diff --git a/target/helloword/node_modules/lodash/_cacheHas.js b/target/cardgame/node_modules/lodash/_cacheHas.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cacheHas.js
rename to target/cardgame/node_modules/lodash/_cacheHas.js
diff --git a/target/helloword/node_modules/lodash/_castArrayLikeObject.js b/target/cardgame/node_modules/lodash/_castArrayLikeObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_castArrayLikeObject.js
rename to target/cardgame/node_modules/lodash/_castArrayLikeObject.js
diff --git a/target/helloword/node_modules/lodash/_castFunction.js b/target/cardgame/node_modules/lodash/_castFunction.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_castFunction.js
rename to target/cardgame/node_modules/lodash/_castFunction.js
diff --git a/target/helloword/node_modules/lodash/_castPath.js b/target/cardgame/node_modules/lodash/_castPath.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_castPath.js
rename to target/cardgame/node_modules/lodash/_castPath.js
diff --git a/target/helloword/node_modules/lodash/_castSlice.js b/target/cardgame/node_modules/lodash/_castSlice.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_castSlice.js
rename to target/cardgame/node_modules/lodash/_castSlice.js
diff --git a/target/helloword/node_modules/lodash/_charsEndIndex.js b/target/cardgame/node_modules/lodash/_charsEndIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_charsEndIndex.js
rename to target/cardgame/node_modules/lodash/_charsEndIndex.js
diff --git a/target/helloword/node_modules/lodash/_charsStartIndex.js b/target/cardgame/node_modules/lodash/_charsStartIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_charsStartIndex.js
rename to target/cardgame/node_modules/lodash/_charsStartIndex.js
diff --git a/target/helloword/node_modules/lodash/_checkGlobal.js b/target/cardgame/node_modules/lodash/_checkGlobal.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_checkGlobal.js
rename to target/cardgame/node_modules/lodash/_checkGlobal.js
diff --git a/target/helloword/node_modules/lodash/_cloneArrayBuffer.js b/target/cardgame/node_modules/lodash/_cloneArrayBuffer.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cloneArrayBuffer.js
rename to target/cardgame/node_modules/lodash/_cloneArrayBuffer.js
diff --git a/target/helloword/node_modules/lodash/_cloneBuffer.js b/target/cardgame/node_modules/lodash/_cloneBuffer.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cloneBuffer.js
rename to target/cardgame/node_modules/lodash/_cloneBuffer.js
diff --git a/target/helloword/node_modules/lodash/_cloneDataView.js b/target/cardgame/node_modules/lodash/_cloneDataView.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cloneDataView.js
rename to target/cardgame/node_modules/lodash/_cloneDataView.js
diff --git a/target/helloword/node_modules/lodash/_cloneMap.js b/target/cardgame/node_modules/lodash/_cloneMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cloneMap.js
rename to target/cardgame/node_modules/lodash/_cloneMap.js
diff --git a/target/helloword/node_modules/lodash/_cloneRegExp.js b/target/cardgame/node_modules/lodash/_cloneRegExp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cloneRegExp.js
rename to target/cardgame/node_modules/lodash/_cloneRegExp.js
diff --git a/target/helloword/node_modules/lodash/_cloneSet.js b/target/cardgame/node_modules/lodash/_cloneSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cloneSet.js
rename to target/cardgame/node_modules/lodash/_cloneSet.js
diff --git a/target/helloword/node_modules/lodash/_cloneSymbol.js b/target/cardgame/node_modules/lodash/_cloneSymbol.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cloneSymbol.js
rename to target/cardgame/node_modules/lodash/_cloneSymbol.js
diff --git a/target/helloword/node_modules/lodash/_cloneTypedArray.js b/target/cardgame/node_modules/lodash/_cloneTypedArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_cloneTypedArray.js
rename to target/cardgame/node_modules/lodash/_cloneTypedArray.js
diff --git a/target/helloword/node_modules/lodash/_compareAscending.js b/target/cardgame/node_modules/lodash/_compareAscending.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_compareAscending.js
rename to target/cardgame/node_modules/lodash/_compareAscending.js
diff --git a/target/helloword/node_modules/lodash/_compareMultiple.js b/target/cardgame/node_modules/lodash/_compareMultiple.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_compareMultiple.js
rename to target/cardgame/node_modules/lodash/_compareMultiple.js
diff --git a/target/helloword/node_modules/lodash/_composeArgs.js b/target/cardgame/node_modules/lodash/_composeArgs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_composeArgs.js
rename to target/cardgame/node_modules/lodash/_composeArgs.js
diff --git a/target/helloword/node_modules/lodash/_composeArgsRight.js b/target/cardgame/node_modules/lodash/_composeArgsRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_composeArgsRight.js
rename to target/cardgame/node_modules/lodash/_composeArgsRight.js
diff --git a/target/helloword/node_modules/lodash/_copyArray.js b/target/cardgame/node_modules/lodash/_copyArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_copyArray.js
rename to target/cardgame/node_modules/lodash/_copyArray.js
diff --git a/target/helloword/node_modules/lodash/_copyObject.js b/target/cardgame/node_modules/lodash/_copyObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_copyObject.js
rename to target/cardgame/node_modules/lodash/_copyObject.js
diff --git a/target/helloword/node_modules/lodash/_copySymbols.js b/target/cardgame/node_modules/lodash/_copySymbols.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_copySymbols.js
rename to target/cardgame/node_modules/lodash/_copySymbols.js
diff --git a/target/helloword/node_modules/lodash/_coreJsData.js b/target/cardgame/node_modules/lodash/_coreJsData.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_coreJsData.js
rename to target/cardgame/node_modules/lodash/_coreJsData.js
diff --git a/target/helloword/node_modules/lodash/_countHolders.js b/target/cardgame/node_modules/lodash/_countHolders.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_countHolders.js
rename to target/cardgame/node_modules/lodash/_countHolders.js
diff --git a/target/helloword/node_modules/lodash/_createAggregator.js b/target/cardgame/node_modules/lodash/_createAggregator.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createAggregator.js
rename to target/cardgame/node_modules/lodash/_createAggregator.js
diff --git a/target/helloword/node_modules/lodash/_createAssigner.js b/target/cardgame/node_modules/lodash/_createAssigner.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createAssigner.js
rename to target/cardgame/node_modules/lodash/_createAssigner.js
diff --git a/target/helloword/node_modules/lodash/_createBaseEach.js b/target/cardgame/node_modules/lodash/_createBaseEach.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createBaseEach.js
rename to target/cardgame/node_modules/lodash/_createBaseEach.js
diff --git a/target/helloword/node_modules/lodash/_createBaseFor.js b/target/cardgame/node_modules/lodash/_createBaseFor.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createBaseFor.js
rename to target/cardgame/node_modules/lodash/_createBaseFor.js
diff --git a/target/helloword/node_modules/lodash/_createBaseWrapper.js b/target/cardgame/node_modules/lodash/_createBaseWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createBaseWrapper.js
rename to target/cardgame/node_modules/lodash/_createBaseWrapper.js
diff --git a/target/helloword/node_modules/lodash/_createCaseFirst.js b/target/cardgame/node_modules/lodash/_createCaseFirst.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createCaseFirst.js
rename to target/cardgame/node_modules/lodash/_createCaseFirst.js
diff --git a/target/helloword/node_modules/lodash/_createCompounder.js b/target/cardgame/node_modules/lodash/_createCompounder.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createCompounder.js
rename to target/cardgame/node_modules/lodash/_createCompounder.js
diff --git a/target/helloword/node_modules/lodash/_createCtorWrapper.js b/target/cardgame/node_modules/lodash/_createCtorWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createCtorWrapper.js
rename to target/cardgame/node_modules/lodash/_createCtorWrapper.js
diff --git a/target/helloword/node_modules/lodash/_createCurryWrapper.js b/target/cardgame/node_modules/lodash/_createCurryWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createCurryWrapper.js
rename to target/cardgame/node_modules/lodash/_createCurryWrapper.js
diff --git a/target/helloword/node_modules/lodash/_createFind.js b/target/cardgame/node_modules/lodash/_createFind.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createFind.js
rename to target/cardgame/node_modules/lodash/_createFind.js
diff --git a/target/helloword/node_modules/lodash/_createFlow.js b/target/cardgame/node_modules/lodash/_createFlow.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createFlow.js
rename to target/cardgame/node_modules/lodash/_createFlow.js
diff --git a/target/helloword/node_modules/lodash/_createHybridWrapper.js b/target/cardgame/node_modules/lodash/_createHybridWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createHybridWrapper.js
rename to target/cardgame/node_modules/lodash/_createHybridWrapper.js
diff --git a/target/helloword/node_modules/lodash/_createInverter.js b/target/cardgame/node_modules/lodash/_createInverter.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createInverter.js
rename to target/cardgame/node_modules/lodash/_createInverter.js
diff --git a/target/helloword/node_modules/lodash/_createMathOperation.js b/target/cardgame/node_modules/lodash/_createMathOperation.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createMathOperation.js
rename to target/cardgame/node_modules/lodash/_createMathOperation.js
diff --git a/target/helloword/node_modules/lodash/_createOver.js b/target/cardgame/node_modules/lodash/_createOver.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createOver.js
rename to target/cardgame/node_modules/lodash/_createOver.js
diff --git a/target/helloword/node_modules/lodash/_createPadding.js b/target/cardgame/node_modules/lodash/_createPadding.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createPadding.js
rename to target/cardgame/node_modules/lodash/_createPadding.js
diff --git a/target/helloword/node_modules/lodash/_createPartialWrapper.js b/target/cardgame/node_modules/lodash/_createPartialWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createPartialWrapper.js
rename to target/cardgame/node_modules/lodash/_createPartialWrapper.js
diff --git a/target/helloword/node_modules/lodash/_createRange.js b/target/cardgame/node_modules/lodash/_createRange.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createRange.js
rename to target/cardgame/node_modules/lodash/_createRange.js
diff --git a/target/helloword/node_modules/lodash/_createRecurryWrapper.js b/target/cardgame/node_modules/lodash/_createRecurryWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createRecurryWrapper.js
rename to target/cardgame/node_modules/lodash/_createRecurryWrapper.js
diff --git a/target/helloword/node_modules/lodash/_createRelationalOperation.js b/target/cardgame/node_modules/lodash/_createRelationalOperation.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createRelationalOperation.js
rename to target/cardgame/node_modules/lodash/_createRelationalOperation.js
diff --git a/target/helloword/node_modules/lodash/_createRound.js b/target/cardgame/node_modules/lodash/_createRound.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createRound.js
rename to target/cardgame/node_modules/lodash/_createRound.js
diff --git a/target/helloword/node_modules/lodash/_createSet.js b/target/cardgame/node_modules/lodash/_createSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createSet.js
rename to target/cardgame/node_modules/lodash/_createSet.js
diff --git a/target/helloword/node_modules/lodash/_createToPairs.js b/target/cardgame/node_modules/lodash/_createToPairs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createToPairs.js
rename to target/cardgame/node_modules/lodash/_createToPairs.js
diff --git a/target/helloword/node_modules/lodash/_createWrapper.js b/target/cardgame/node_modules/lodash/_createWrapper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_createWrapper.js
rename to target/cardgame/node_modules/lodash/_createWrapper.js
diff --git a/target/helloword/node_modules/lodash/_deburrLetter.js b/target/cardgame/node_modules/lodash/_deburrLetter.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_deburrLetter.js
rename to target/cardgame/node_modules/lodash/_deburrLetter.js
diff --git a/target/helloword/node_modules/lodash/_equalArrays.js b/target/cardgame/node_modules/lodash/_equalArrays.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_equalArrays.js
rename to target/cardgame/node_modules/lodash/_equalArrays.js
diff --git a/target/helloword/node_modules/lodash/_equalByTag.js b/target/cardgame/node_modules/lodash/_equalByTag.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_equalByTag.js
rename to target/cardgame/node_modules/lodash/_equalByTag.js
diff --git a/target/helloword/node_modules/lodash/_equalObjects.js b/target/cardgame/node_modules/lodash/_equalObjects.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_equalObjects.js
rename to target/cardgame/node_modules/lodash/_equalObjects.js
diff --git a/target/helloword/node_modules/lodash/_escapeHtmlChar.js b/target/cardgame/node_modules/lodash/_escapeHtmlChar.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_escapeHtmlChar.js
rename to target/cardgame/node_modules/lodash/_escapeHtmlChar.js
diff --git a/target/helloword/node_modules/lodash/_escapeStringChar.js b/target/cardgame/node_modules/lodash/_escapeStringChar.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_escapeStringChar.js
rename to target/cardgame/node_modules/lodash/_escapeStringChar.js
diff --git a/target/helloword/node_modules/lodash/_getAllKeys.js b/target/cardgame/node_modules/lodash/_getAllKeys.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getAllKeys.js
rename to target/cardgame/node_modules/lodash/_getAllKeys.js
diff --git a/target/helloword/node_modules/lodash/_getAllKeysIn.js b/target/cardgame/node_modules/lodash/_getAllKeysIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getAllKeysIn.js
rename to target/cardgame/node_modules/lodash/_getAllKeysIn.js
diff --git a/target/helloword/node_modules/lodash/_getData.js b/target/cardgame/node_modules/lodash/_getData.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getData.js
rename to target/cardgame/node_modules/lodash/_getData.js
diff --git a/target/helloword/node_modules/lodash/_getFuncName.js b/target/cardgame/node_modules/lodash/_getFuncName.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getFuncName.js
rename to target/cardgame/node_modules/lodash/_getFuncName.js
diff --git a/target/helloword/node_modules/lodash/_getHolder.js b/target/cardgame/node_modules/lodash/_getHolder.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getHolder.js
rename to target/cardgame/node_modules/lodash/_getHolder.js
diff --git a/target/helloword/node_modules/lodash/_getLength.js b/target/cardgame/node_modules/lodash/_getLength.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getLength.js
rename to target/cardgame/node_modules/lodash/_getLength.js
diff --git a/target/helloword/node_modules/lodash/_getMapData.js b/target/cardgame/node_modules/lodash/_getMapData.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getMapData.js
rename to target/cardgame/node_modules/lodash/_getMapData.js
diff --git a/target/helloword/node_modules/lodash/_getMatchData.js b/target/cardgame/node_modules/lodash/_getMatchData.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getMatchData.js
rename to target/cardgame/node_modules/lodash/_getMatchData.js
diff --git a/target/helloword/node_modules/lodash/_getNative.js b/target/cardgame/node_modules/lodash/_getNative.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getNative.js
rename to target/cardgame/node_modules/lodash/_getNative.js
diff --git a/target/helloword/node_modules/lodash/_getPrototype.js b/target/cardgame/node_modules/lodash/_getPrototype.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getPrototype.js
rename to target/cardgame/node_modules/lodash/_getPrototype.js
diff --git a/target/helloword/node_modules/lodash/_getSymbols.js b/target/cardgame/node_modules/lodash/_getSymbols.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getSymbols.js
rename to target/cardgame/node_modules/lodash/_getSymbols.js
diff --git a/target/helloword/node_modules/lodash/_getSymbolsIn.js b/target/cardgame/node_modules/lodash/_getSymbolsIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getSymbolsIn.js
rename to target/cardgame/node_modules/lodash/_getSymbolsIn.js
diff --git a/target/helloword/node_modules/lodash/_getTag.js b/target/cardgame/node_modules/lodash/_getTag.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getTag.js
rename to target/cardgame/node_modules/lodash/_getTag.js
diff --git a/target/helloword/node_modules/lodash/_getValue.js b/target/cardgame/node_modules/lodash/_getValue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getValue.js
rename to target/cardgame/node_modules/lodash/_getValue.js
diff --git a/target/helloword/node_modules/lodash/_getView.js b/target/cardgame/node_modules/lodash/_getView.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_getView.js
rename to target/cardgame/node_modules/lodash/_getView.js
diff --git a/target/helloword/node_modules/lodash/_hasPath.js b/target/cardgame/node_modules/lodash/_hasPath.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_hasPath.js
rename to target/cardgame/node_modules/lodash/_hasPath.js
diff --git a/target/helloword/node_modules/lodash/_hashClear.js b/target/cardgame/node_modules/lodash/_hashClear.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_hashClear.js
rename to target/cardgame/node_modules/lodash/_hashClear.js
diff --git a/target/helloword/node_modules/lodash/_hashDelete.js b/target/cardgame/node_modules/lodash/_hashDelete.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_hashDelete.js
rename to target/cardgame/node_modules/lodash/_hashDelete.js
diff --git a/target/helloword/node_modules/lodash/_hashGet.js b/target/cardgame/node_modules/lodash/_hashGet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_hashGet.js
rename to target/cardgame/node_modules/lodash/_hashGet.js
diff --git a/target/helloword/node_modules/lodash/_hashHas.js b/target/cardgame/node_modules/lodash/_hashHas.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_hashHas.js
rename to target/cardgame/node_modules/lodash/_hashHas.js
diff --git a/target/helloword/node_modules/lodash/_hashSet.js b/target/cardgame/node_modules/lodash/_hashSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_hashSet.js
rename to target/cardgame/node_modules/lodash/_hashSet.js
diff --git a/target/helloword/node_modules/lodash/_indexKeys.js b/target/cardgame/node_modules/lodash/_indexKeys.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_indexKeys.js
rename to target/cardgame/node_modules/lodash/_indexKeys.js
diff --git a/target/helloword/node_modules/lodash/_indexOfNaN.js b/target/cardgame/node_modules/lodash/_indexOfNaN.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_indexOfNaN.js
rename to target/cardgame/node_modules/lodash/_indexOfNaN.js
diff --git a/target/helloword/node_modules/lodash/_initCloneArray.js b/target/cardgame/node_modules/lodash/_initCloneArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_initCloneArray.js
rename to target/cardgame/node_modules/lodash/_initCloneArray.js
diff --git a/target/helloword/node_modules/lodash/_initCloneByTag.js b/target/cardgame/node_modules/lodash/_initCloneByTag.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_initCloneByTag.js
rename to target/cardgame/node_modules/lodash/_initCloneByTag.js
diff --git a/target/helloword/node_modules/lodash/_initCloneObject.js b/target/cardgame/node_modules/lodash/_initCloneObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_initCloneObject.js
rename to target/cardgame/node_modules/lodash/_initCloneObject.js
diff --git a/target/helloword/node_modules/lodash/_isFlattenable.js b/target/cardgame/node_modules/lodash/_isFlattenable.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isFlattenable.js
rename to target/cardgame/node_modules/lodash/_isFlattenable.js
diff --git a/target/helloword/node_modules/lodash/_isFlattenableIteratee.js b/target/cardgame/node_modules/lodash/_isFlattenableIteratee.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isFlattenableIteratee.js
rename to target/cardgame/node_modules/lodash/_isFlattenableIteratee.js
diff --git a/target/helloword/node_modules/lodash/_isHostObject.js b/target/cardgame/node_modules/lodash/_isHostObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isHostObject.js
rename to target/cardgame/node_modules/lodash/_isHostObject.js
diff --git a/target/helloword/node_modules/lodash/_isIndex.js b/target/cardgame/node_modules/lodash/_isIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isIndex.js
rename to target/cardgame/node_modules/lodash/_isIndex.js
diff --git a/target/helloword/node_modules/lodash/_isIterateeCall.js b/target/cardgame/node_modules/lodash/_isIterateeCall.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isIterateeCall.js
rename to target/cardgame/node_modules/lodash/_isIterateeCall.js
diff --git a/target/helloword/node_modules/lodash/_isKey.js b/target/cardgame/node_modules/lodash/_isKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isKey.js
rename to target/cardgame/node_modules/lodash/_isKey.js
diff --git a/target/helloword/node_modules/lodash/_isKeyable.js b/target/cardgame/node_modules/lodash/_isKeyable.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isKeyable.js
rename to target/cardgame/node_modules/lodash/_isKeyable.js
diff --git a/target/helloword/node_modules/lodash/_isLaziable.js b/target/cardgame/node_modules/lodash/_isLaziable.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isLaziable.js
rename to target/cardgame/node_modules/lodash/_isLaziable.js
diff --git a/target/helloword/node_modules/lodash/_isMaskable.js b/target/cardgame/node_modules/lodash/_isMaskable.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isMaskable.js
rename to target/cardgame/node_modules/lodash/_isMaskable.js
diff --git a/target/helloword/node_modules/lodash/_isMasked.js b/target/cardgame/node_modules/lodash/_isMasked.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isMasked.js
rename to target/cardgame/node_modules/lodash/_isMasked.js
diff --git a/target/helloword/node_modules/lodash/_isPrototype.js b/target/cardgame/node_modules/lodash/_isPrototype.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isPrototype.js
rename to target/cardgame/node_modules/lodash/_isPrototype.js
diff --git a/target/helloword/node_modules/lodash/_isStrictComparable.js b/target/cardgame/node_modules/lodash/_isStrictComparable.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_isStrictComparable.js
rename to target/cardgame/node_modules/lodash/_isStrictComparable.js
diff --git a/target/helloword/node_modules/lodash/_iteratorToArray.js b/target/cardgame/node_modules/lodash/_iteratorToArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_iteratorToArray.js
rename to target/cardgame/node_modules/lodash/_iteratorToArray.js
diff --git a/target/helloword/node_modules/lodash/_lazyClone.js b/target/cardgame/node_modules/lodash/_lazyClone.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_lazyClone.js
rename to target/cardgame/node_modules/lodash/_lazyClone.js
diff --git a/target/helloword/node_modules/lodash/_lazyReverse.js b/target/cardgame/node_modules/lodash/_lazyReverse.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_lazyReverse.js
rename to target/cardgame/node_modules/lodash/_lazyReverse.js
diff --git a/target/helloword/node_modules/lodash/_lazyValue.js b/target/cardgame/node_modules/lodash/_lazyValue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_lazyValue.js
rename to target/cardgame/node_modules/lodash/_lazyValue.js
diff --git a/target/helloword/node_modules/lodash/_listCacheClear.js b/target/cardgame/node_modules/lodash/_listCacheClear.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_listCacheClear.js
rename to target/cardgame/node_modules/lodash/_listCacheClear.js
diff --git a/target/helloword/node_modules/lodash/_listCacheDelete.js b/target/cardgame/node_modules/lodash/_listCacheDelete.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_listCacheDelete.js
rename to target/cardgame/node_modules/lodash/_listCacheDelete.js
diff --git a/target/helloword/node_modules/lodash/_listCacheGet.js b/target/cardgame/node_modules/lodash/_listCacheGet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_listCacheGet.js
rename to target/cardgame/node_modules/lodash/_listCacheGet.js
diff --git a/target/helloword/node_modules/lodash/_listCacheHas.js b/target/cardgame/node_modules/lodash/_listCacheHas.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_listCacheHas.js
rename to target/cardgame/node_modules/lodash/_listCacheHas.js
diff --git a/target/helloword/node_modules/lodash/_listCacheSet.js b/target/cardgame/node_modules/lodash/_listCacheSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_listCacheSet.js
rename to target/cardgame/node_modules/lodash/_listCacheSet.js
diff --git a/target/helloword/node_modules/lodash/_mapCacheClear.js b/target/cardgame/node_modules/lodash/_mapCacheClear.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_mapCacheClear.js
rename to target/cardgame/node_modules/lodash/_mapCacheClear.js
diff --git a/target/helloword/node_modules/lodash/_mapCacheDelete.js b/target/cardgame/node_modules/lodash/_mapCacheDelete.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_mapCacheDelete.js
rename to target/cardgame/node_modules/lodash/_mapCacheDelete.js
diff --git a/target/helloword/node_modules/lodash/_mapCacheGet.js b/target/cardgame/node_modules/lodash/_mapCacheGet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_mapCacheGet.js
rename to target/cardgame/node_modules/lodash/_mapCacheGet.js
diff --git a/target/helloword/node_modules/lodash/_mapCacheHas.js b/target/cardgame/node_modules/lodash/_mapCacheHas.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_mapCacheHas.js
rename to target/cardgame/node_modules/lodash/_mapCacheHas.js
diff --git a/target/helloword/node_modules/lodash/_mapCacheSet.js b/target/cardgame/node_modules/lodash/_mapCacheSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_mapCacheSet.js
rename to target/cardgame/node_modules/lodash/_mapCacheSet.js
diff --git a/target/helloword/node_modules/lodash/_mapToArray.js b/target/cardgame/node_modules/lodash/_mapToArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_mapToArray.js
rename to target/cardgame/node_modules/lodash/_mapToArray.js
diff --git a/target/helloword/node_modules/lodash/_matchesStrictComparable.js b/target/cardgame/node_modules/lodash/_matchesStrictComparable.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_matchesStrictComparable.js
rename to target/cardgame/node_modules/lodash/_matchesStrictComparable.js
diff --git a/target/helloword/node_modules/lodash/_mergeData.js b/target/cardgame/node_modules/lodash/_mergeData.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_mergeData.js
rename to target/cardgame/node_modules/lodash/_mergeData.js
diff --git a/target/helloword/node_modules/lodash/_mergeDefaults.js b/target/cardgame/node_modules/lodash/_mergeDefaults.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_mergeDefaults.js
rename to target/cardgame/node_modules/lodash/_mergeDefaults.js
diff --git a/target/helloword/node_modules/lodash/_metaMap.js b/target/cardgame/node_modules/lodash/_metaMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_metaMap.js
rename to target/cardgame/node_modules/lodash/_metaMap.js
diff --git a/target/helloword/node_modules/lodash/_nativeCreate.js b/target/cardgame/node_modules/lodash/_nativeCreate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_nativeCreate.js
rename to target/cardgame/node_modules/lodash/_nativeCreate.js
diff --git a/target/helloword/node_modules/lodash/_parent.js b/target/cardgame/node_modules/lodash/_parent.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_parent.js
rename to target/cardgame/node_modules/lodash/_parent.js
diff --git a/target/helloword/node_modules/lodash/_reEscape.js b/target/cardgame/node_modules/lodash/_reEscape.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_reEscape.js
rename to target/cardgame/node_modules/lodash/_reEscape.js
diff --git a/target/helloword/node_modules/lodash/_reEvaluate.js b/target/cardgame/node_modules/lodash/_reEvaluate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_reEvaluate.js
rename to target/cardgame/node_modules/lodash/_reEvaluate.js
diff --git a/target/helloword/node_modules/lodash/_reHasComplexSymbol.js b/target/cardgame/node_modules/lodash/_reHasComplexSymbol.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_reHasComplexSymbol.js
rename to target/cardgame/node_modules/lodash/_reHasComplexSymbol.js
diff --git a/target/helloword/node_modules/lodash/_reInterpolate.js b/target/cardgame/node_modules/lodash/_reInterpolate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_reInterpolate.js
rename to target/cardgame/node_modules/lodash/_reInterpolate.js
diff --git a/target/helloword/node_modules/lodash/_realNames.js b/target/cardgame/node_modules/lodash/_realNames.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_realNames.js
rename to target/cardgame/node_modules/lodash/_realNames.js
diff --git a/target/helloword/node_modules/lodash/_reorder.js b/target/cardgame/node_modules/lodash/_reorder.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_reorder.js
rename to target/cardgame/node_modules/lodash/_reorder.js
diff --git a/target/helloword/node_modules/lodash/_replaceHolders.js b/target/cardgame/node_modules/lodash/_replaceHolders.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_replaceHolders.js
rename to target/cardgame/node_modules/lodash/_replaceHolders.js
diff --git a/target/helloword/node_modules/lodash/_root.js b/target/cardgame/node_modules/lodash/_root.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_root.js
rename to target/cardgame/node_modules/lodash/_root.js
diff --git a/target/helloword/node_modules/lodash/_setCacheAdd.js b/target/cardgame/node_modules/lodash/_setCacheAdd.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_setCacheAdd.js
rename to target/cardgame/node_modules/lodash/_setCacheAdd.js
diff --git a/target/helloword/node_modules/lodash/_setCacheHas.js b/target/cardgame/node_modules/lodash/_setCacheHas.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_setCacheHas.js
rename to target/cardgame/node_modules/lodash/_setCacheHas.js
diff --git a/target/helloword/node_modules/lodash/_setData.js b/target/cardgame/node_modules/lodash/_setData.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_setData.js
rename to target/cardgame/node_modules/lodash/_setData.js
diff --git a/target/helloword/node_modules/lodash/_setToArray.js b/target/cardgame/node_modules/lodash/_setToArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_setToArray.js
rename to target/cardgame/node_modules/lodash/_setToArray.js
diff --git a/target/helloword/node_modules/lodash/_setToPairs.js b/target/cardgame/node_modules/lodash/_setToPairs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_setToPairs.js
rename to target/cardgame/node_modules/lodash/_setToPairs.js
diff --git a/target/helloword/node_modules/lodash/_stackClear.js b/target/cardgame/node_modules/lodash/_stackClear.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_stackClear.js
rename to target/cardgame/node_modules/lodash/_stackClear.js
diff --git a/target/helloword/node_modules/lodash/_stackDelete.js b/target/cardgame/node_modules/lodash/_stackDelete.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_stackDelete.js
rename to target/cardgame/node_modules/lodash/_stackDelete.js
diff --git a/target/helloword/node_modules/lodash/_stackGet.js b/target/cardgame/node_modules/lodash/_stackGet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_stackGet.js
rename to target/cardgame/node_modules/lodash/_stackGet.js
diff --git a/target/helloword/node_modules/lodash/_stackHas.js b/target/cardgame/node_modules/lodash/_stackHas.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_stackHas.js
rename to target/cardgame/node_modules/lodash/_stackHas.js
diff --git a/target/helloword/node_modules/lodash/_stackSet.js b/target/cardgame/node_modules/lodash/_stackSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_stackSet.js
rename to target/cardgame/node_modules/lodash/_stackSet.js
diff --git a/target/helloword/node_modules/lodash/_stringSize.js b/target/cardgame/node_modules/lodash/_stringSize.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_stringSize.js
rename to target/cardgame/node_modules/lodash/_stringSize.js
diff --git a/target/helloword/node_modules/lodash/_stringToArray.js b/target/cardgame/node_modules/lodash/_stringToArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_stringToArray.js
rename to target/cardgame/node_modules/lodash/_stringToArray.js
diff --git a/target/helloword/node_modules/lodash/_stringToPath.js b/target/cardgame/node_modules/lodash/_stringToPath.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_stringToPath.js
rename to target/cardgame/node_modules/lodash/_stringToPath.js
diff --git a/target/helloword/node_modules/lodash/_toKey.js b/target/cardgame/node_modules/lodash/_toKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_toKey.js
rename to target/cardgame/node_modules/lodash/_toKey.js
diff --git a/target/helloword/node_modules/lodash/_toSource.js b/target/cardgame/node_modules/lodash/_toSource.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_toSource.js
rename to target/cardgame/node_modules/lodash/_toSource.js
diff --git a/target/helloword/node_modules/lodash/_unescapeHtmlChar.js b/target/cardgame/node_modules/lodash/_unescapeHtmlChar.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_unescapeHtmlChar.js
rename to target/cardgame/node_modules/lodash/_unescapeHtmlChar.js
diff --git a/target/helloword/node_modules/lodash/_wrapperClone.js b/target/cardgame/node_modules/lodash/_wrapperClone.js
similarity index 100%
rename from target/helloword/node_modules/lodash/_wrapperClone.js
rename to target/cardgame/node_modules/lodash/_wrapperClone.js
diff --git a/target/helloword/node_modules/lodash/add.js b/target/cardgame/node_modules/lodash/add.js
similarity index 100%
rename from target/helloword/node_modules/lodash/add.js
rename to target/cardgame/node_modules/lodash/add.js
diff --git a/target/helloword/node_modules/lodash/after.js b/target/cardgame/node_modules/lodash/after.js
similarity index 100%
rename from target/helloword/node_modules/lodash/after.js
rename to target/cardgame/node_modules/lodash/after.js
diff --git a/target/helloword/node_modules/lodash/array.js b/target/cardgame/node_modules/lodash/array.js
similarity index 100%
rename from target/helloword/node_modules/lodash/array.js
rename to target/cardgame/node_modules/lodash/array.js
diff --git a/target/helloword/node_modules/lodash/ary.js b/target/cardgame/node_modules/lodash/ary.js
similarity index 100%
rename from target/helloword/node_modules/lodash/ary.js
rename to target/cardgame/node_modules/lodash/ary.js
diff --git a/target/helloword/node_modules/lodash/assign.js b/target/cardgame/node_modules/lodash/assign.js
similarity index 100%
rename from target/helloword/node_modules/lodash/assign.js
rename to target/cardgame/node_modules/lodash/assign.js
diff --git a/target/helloword/node_modules/lodash/assignIn.js b/target/cardgame/node_modules/lodash/assignIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/assignIn.js
rename to target/cardgame/node_modules/lodash/assignIn.js
diff --git a/target/helloword/node_modules/lodash/assignInWith.js b/target/cardgame/node_modules/lodash/assignInWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/assignInWith.js
rename to target/cardgame/node_modules/lodash/assignInWith.js
diff --git a/target/helloword/node_modules/lodash/assignWith.js b/target/cardgame/node_modules/lodash/assignWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/assignWith.js
rename to target/cardgame/node_modules/lodash/assignWith.js
diff --git a/target/helloword/node_modules/lodash/at.js b/target/cardgame/node_modules/lodash/at.js
similarity index 100%
rename from target/helloword/node_modules/lodash/at.js
rename to target/cardgame/node_modules/lodash/at.js
diff --git a/target/helloword/node_modules/lodash/attempt.js b/target/cardgame/node_modules/lodash/attempt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/attempt.js
rename to target/cardgame/node_modules/lodash/attempt.js
diff --git a/target/helloword/node_modules/lodash/before.js b/target/cardgame/node_modules/lodash/before.js
similarity index 100%
rename from target/helloword/node_modules/lodash/before.js
rename to target/cardgame/node_modules/lodash/before.js
diff --git a/target/helloword/node_modules/lodash/bind.js b/target/cardgame/node_modules/lodash/bind.js
similarity index 100%
rename from target/helloword/node_modules/lodash/bind.js
rename to target/cardgame/node_modules/lodash/bind.js
diff --git a/target/helloword/node_modules/lodash/bindAll.js b/target/cardgame/node_modules/lodash/bindAll.js
similarity index 100%
rename from target/helloword/node_modules/lodash/bindAll.js
rename to target/cardgame/node_modules/lodash/bindAll.js
diff --git a/target/helloword/node_modules/lodash/bindKey.js b/target/cardgame/node_modules/lodash/bindKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/bindKey.js
rename to target/cardgame/node_modules/lodash/bindKey.js
diff --git a/target/helloword/node_modules/lodash/camelCase.js b/target/cardgame/node_modules/lodash/camelCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/camelCase.js
rename to target/cardgame/node_modules/lodash/camelCase.js
diff --git a/target/helloword/node_modules/lodash/capitalize.js b/target/cardgame/node_modules/lodash/capitalize.js
similarity index 100%
rename from target/helloword/node_modules/lodash/capitalize.js
rename to target/cardgame/node_modules/lodash/capitalize.js
diff --git a/target/helloword/node_modules/lodash/castArray.js b/target/cardgame/node_modules/lodash/castArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/castArray.js
rename to target/cardgame/node_modules/lodash/castArray.js
diff --git a/target/helloword/node_modules/lodash/ceil.js b/target/cardgame/node_modules/lodash/ceil.js
similarity index 100%
rename from target/helloword/node_modules/lodash/ceil.js
rename to target/cardgame/node_modules/lodash/ceil.js
diff --git a/target/helloword/node_modules/lodash/chain.js b/target/cardgame/node_modules/lodash/chain.js
similarity index 100%
rename from target/helloword/node_modules/lodash/chain.js
rename to target/cardgame/node_modules/lodash/chain.js
diff --git a/target/helloword/node_modules/lodash/chunk.js b/target/cardgame/node_modules/lodash/chunk.js
similarity index 100%
rename from target/helloword/node_modules/lodash/chunk.js
rename to target/cardgame/node_modules/lodash/chunk.js
diff --git a/target/helloword/node_modules/lodash/clamp.js b/target/cardgame/node_modules/lodash/clamp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/clamp.js
rename to target/cardgame/node_modules/lodash/clamp.js
diff --git a/target/helloword/node_modules/lodash/clone.js b/target/cardgame/node_modules/lodash/clone.js
similarity index 100%
rename from target/helloword/node_modules/lodash/clone.js
rename to target/cardgame/node_modules/lodash/clone.js
diff --git a/target/helloword/node_modules/lodash/cloneDeep.js b/target/cardgame/node_modules/lodash/cloneDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/cloneDeep.js
rename to target/cardgame/node_modules/lodash/cloneDeep.js
diff --git a/target/helloword/node_modules/lodash/cloneDeepWith.js b/target/cardgame/node_modules/lodash/cloneDeepWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/cloneDeepWith.js
rename to target/cardgame/node_modules/lodash/cloneDeepWith.js
diff --git a/target/helloword/node_modules/lodash/cloneWith.js b/target/cardgame/node_modules/lodash/cloneWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/cloneWith.js
rename to target/cardgame/node_modules/lodash/cloneWith.js
diff --git a/target/helloword/node_modules/lodash/collection.js b/target/cardgame/node_modules/lodash/collection.js
similarity index 100%
rename from target/helloword/node_modules/lodash/collection.js
rename to target/cardgame/node_modules/lodash/collection.js
diff --git a/target/helloword/node_modules/lodash/commit.js b/target/cardgame/node_modules/lodash/commit.js
similarity index 100%
rename from target/helloword/node_modules/lodash/commit.js
rename to target/cardgame/node_modules/lodash/commit.js
diff --git a/target/helloword/node_modules/lodash/compact.js b/target/cardgame/node_modules/lodash/compact.js
similarity index 100%
rename from target/helloword/node_modules/lodash/compact.js
rename to target/cardgame/node_modules/lodash/compact.js
diff --git a/target/helloword/node_modules/lodash/concat.js b/target/cardgame/node_modules/lodash/concat.js
similarity index 100%
rename from target/helloword/node_modules/lodash/concat.js
rename to target/cardgame/node_modules/lodash/concat.js
diff --git a/target/helloword/node_modules/lodash/cond.js b/target/cardgame/node_modules/lodash/cond.js
similarity index 100%
rename from target/helloword/node_modules/lodash/cond.js
rename to target/cardgame/node_modules/lodash/cond.js
diff --git a/target/helloword/node_modules/lodash/conforms.js b/target/cardgame/node_modules/lodash/conforms.js
similarity index 100%
rename from target/helloword/node_modules/lodash/conforms.js
rename to target/cardgame/node_modules/lodash/conforms.js
diff --git a/target/helloword/node_modules/lodash/constant.js b/target/cardgame/node_modules/lodash/constant.js
similarity index 100%
rename from target/helloword/node_modules/lodash/constant.js
rename to target/cardgame/node_modules/lodash/constant.js
diff --git a/target/helloword/node_modules/lodash/core.js b/target/cardgame/node_modules/lodash/core.js
similarity index 100%
rename from target/helloword/node_modules/lodash/core.js
rename to target/cardgame/node_modules/lodash/core.js
diff --git a/target/helloword/node_modules/lodash/core.min.js b/target/cardgame/node_modules/lodash/core.min.js
similarity index 100%
rename from target/helloword/node_modules/lodash/core.min.js
rename to target/cardgame/node_modules/lodash/core.min.js
diff --git a/target/helloword/node_modules/lodash/countBy.js b/target/cardgame/node_modules/lodash/countBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/countBy.js
rename to target/cardgame/node_modules/lodash/countBy.js
diff --git a/target/helloword/node_modules/lodash/create.js b/target/cardgame/node_modules/lodash/create.js
similarity index 100%
rename from target/helloword/node_modules/lodash/create.js
rename to target/cardgame/node_modules/lodash/create.js
diff --git a/target/helloword/node_modules/lodash/curry.js b/target/cardgame/node_modules/lodash/curry.js
similarity index 100%
rename from target/helloword/node_modules/lodash/curry.js
rename to target/cardgame/node_modules/lodash/curry.js
diff --git a/target/helloword/node_modules/lodash/curryRight.js b/target/cardgame/node_modules/lodash/curryRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/curryRight.js
rename to target/cardgame/node_modules/lodash/curryRight.js
diff --git a/target/helloword/node_modules/lodash/date.js b/target/cardgame/node_modules/lodash/date.js
similarity index 100%
rename from target/helloword/node_modules/lodash/date.js
rename to target/cardgame/node_modules/lodash/date.js
diff --git a/target/helloword/node_modules/lodash/debounce.js b/target/cardgame/node_modules/lodash/debounce.js
similarity index 100%
rename from target/helloword/node_modules/lodash/debounce.js
rename to target/cardgame/node_modules/lodash/debounce.js
diff --git a/target/helloword/node_modules/lodash/deburr.js b/target/cardgame/node_modules/lodash/deburr.js
similarity index 100%
rename from target/helloword/node_modules/lodash/deburr.js
rename to target/cardgame/node_modules/lodash/deburr.js
diff --git a/target/helloword/node_modules/lodash/defaults.js b/target/cardgame/node_modules/lodash/defaults.js
similarity index 100%
rename from target/helloword/node_modules/lodash/defaults.js
rename to target/cardgame/node_modules/lodash/defaults.js
diff --git a/target/helloword/node_modules/lodash/defaultsDeep.js b/target/cardgame/node_modules/lodash/defaultsDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/defaultsDeep.js
rename to target/cardgame/node_modules/lodash/defaultsDeep.js
diff --git a/target/helloword/node_modules/lodash/defer.js b/target/cardgame/node_modules/lodash/defer.js
similarity index 100%
rename from target/helloword/node_modules/lodash/defer.js
rename to target/cardgame/node_modules/lodash/defer.js
diff --git a/target/helloword/node_modules/lodash/delay.js b/target/cardgame/node_modules/lodash/delay.js
similarity index 100%
rename from target/helloword/node_modules/lodash/delay.js
rename to target/cardgame/node_modules/lodash/delay.js
diff --git a/target/helloword/node_modules/lodash/difference.js b/target/cardgame/node_modules/lodash/difference.js
similarity index 100%
rename from target/helloword/node_modules/lodash/difference.js
rename to target/cardgame/node_modules/lodash/difference.js
diff --git a/target/helloword/node_modules/lodash/differenceBy.js b/target/cardgame/node_modules/lodash/differenceBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/differenceBy.js
rename to target/cardgame/node_modules/lodash/differenceBy.js
diff --git a/target/helloword/node_modules/lodash/differenceWith.js b/target/cardgame/node_modules/lodash/differenceWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/differenceWith.js
rename to target/cardgame/node_modules/lodash/differenceWith.js
diff --git a/target/helloword/node_modules/lodash/divide.js b/target/cardgame/node_modules/lodash/divide.js
similarity index 100%
rename from target/helloword/node_modules/lodash/divide.js
rename to target/cardgame/node_modules/lodash/divide.js
diff --git a/target/helloword/node_modules/lodash/drop.js b/target/cardgame/node_modules/lodash/drop.js
similarity index 100%
rename from target/helloword/node_modules/lodash/drop.js
rename to target/cardgame/node_modules/lodash/drop.js
diff --git a/target/helloword/node_modules/lodash/dropRight.js b/target/cardgame/node_modules/lodash/dropRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/dropRight.js
rename to target/cardgame/node_modules/lodash/dropRight.js
diff --git a/target/helloword/node_modules/lodash/dropRightWhile.js b/target/cardgame/node_modules/lodash/dropRightWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/dropRightWhile.js
rename to target/cardgame/node_modules/lodash/dropRightWhile.js
diff --git a/target/helloword/node_modules/lodash/dropWhile.js b/target/cardgame/node_modules/lodash/dropWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/dropWhile.js
rename to target/cardgame/node_modules/lodash/dropWhile.js
diff --git a/target/helloword/node_modules/lodash/each.js b/target/cardgame/node_modules/lodash/each.js
similarity index 100%
rename from target/helloword/node_modules/lodash/each.js
rename to target/cardgame/node_modules/lodash/each.js
diff --git a/target/helloword/node_modules/lodash/eachRight.js b/target/cardgame/node_modules/lodash/eachRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/eachRight.js
rename to target/cardgame/node_modules/lodash/eachRight.js
diff --git a/target/helloword/node_modules/lodash/endsWith.js b/target/cardgame/node_modules/lodash/endsWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/endsWith.js
rename to target/cardgame/node_modules/lodash/endsWith.js
diff --git a/target/helloword/node_modules/lodash/entries.js b/target/cardgame/node_modules/lodash/entries.js
similarity index 100%
rename from target/helloword/node_modules/lodash/entries.js
rename to target/cardgame/node_modules/lodash/entries.js
diff --git a/target/helloword/node_modules/lodash/entriesIn.js b/target/cardgame/node_modules/lodash/entriesIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/entriesIn.js
rename to target/cardgame/node_modules/lodash/entriesIn.js
diff --git a/target/helloword/node_modules/lodash/eq.js b/target/cardgame/node_modules/lodash/eq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/eq.js
rename to target/cardgame/node_modules/lodash/eq.js
diff --git a/target/helloword/node_modules/lodash/escape.js b/target/cardgame/node_modules/lodash/escape.js
similarity index 100%
rename from target/helloword/node_modules/lodash/escape.js
rename to target/cardgame/node_modules/lodash/escape.js
diff --git a/target/helloword/node_modules/lodash/escapeRegExp.js b/target/cardgame/node_modules/lodash/escapeRegExp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/escapeRegExp.js
rename to target/cardgame/node_modules/lodash/escapeRegExp.js
diff --git a/target/helloword/node_modules/lodash/every.js b/target/cardgame/node_modules/lodash/every.js
similarity index 100%
rename from target/helloword/node_modules/lodash/every.js
rename to target/cardgame/node_modules/lodash/every.js
diff --git a/target/helloword/node_modules/lodash/extend.js b/target/cardgame/node_modules/lodash/extend.js
similarity index 100%
rename from target/helloword/node_modules/lodash/extend.js
rename to target/cardgame/node_modules/lodash/extend.js
diff --git a/target/helloword/node_modules/lodash/extendWith.js b/target/cardgame/node_modules/lodash/extendWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/extendWith.js
rename to target/cardgame/node_modules/lodash/extendWith.js
diff --git a/target/helloword/node_modules/lodash/fill.js b/target/cardgame/node_modules/lodash/fill.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fill.js
rename to target/cardgame/node_modules/lodash/fill.js
diff --git a/target/helloword/node_modules/lodash/filter.js b/target/cardgame/node_modules/lodash/filter.js
similarity index 100%
rename from target/helloword/node_modules/lodash/filter.js
rename to target/cardgame/node_modules/lodash/filter.js
diff --git a/target/helloword/node_modules/lodash/find.js b/target/cardgame/node_modules/lodash/find.js
similarity index 100%
rename from target/helloword/node_modules/lodash/find.js
rename to target/cardgame/node_modules/lodash/find.js
diff --git a/target/helloword/node_modules/lodash/findIndex.js b/target/cardgame/node_modules/lodash/findIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/findIndex.js
rename to target/cardgame/node_modules/lodash/findIndex.js
diff --git a/target/helloword/node_modules/lodash/findKey.js b/target/cardgame/node_modules/lodash/findKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/findKey.js
rename to target/cardgame/node_modules/lodash/findKey.js
diff --git a/target/helloword/node_modules/lodash/findLast.js b/target/cardgame/node_modules/lodash/findLast.js
similarity index 100%
rename from target/helloword/node_modules/lodash/findLast.js
rename to target/cardgame/node_modules/lodash/findLast.js
diff --git a/target/helloword/node_modules/lodash/findLastIndex.js b/target/cardgame/node_modules/lodash/findLastIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/findLastIndex.js
rename to target/cardgame/node_modules/lodash/findLastIndex.js
diff --git a/target/helloword/node_modules/lodash/findLastKey.js b/target/cardgame/node_modules/lodash/findLastKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/findLastKey.js
rename to target/cardgame/node_modules/lodash/findLastKey.js
diff --git a/target/helloword/node_modules/lodash/first.js b/target/cardgame/node_modules/lodash/first.js
similarity index 100%
rename from target/helloword/node_modules/lodash/first.js
rename to target/cardgame/node_modules/lodash/first.js
diff --git a/target/helloword/node_modules/lodash/flatMap.js b/target/cardgame/node_modules/lodash/flatMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flatMap.js
rename to target/cardgame/node_modules/lodash/flatMap.js
diff --git a/target/helloword/node_modules/lodash/flatMapDeep.js b/target/cardgame/node_modules/lodash/flatMapDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flatMapDeep.js
rename to target/cardgame/node_modules/lodash/flatMapDeep.js
diff --git a/target/helloword/node_modules/lodash/flatMapDepth.js b/target/cardgame/node_modules/lodash/flatMapDepth.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flatMapDepth.js
rename to target/cardgame/node_modules/lodash/flatMapDepth.js
diff --git a/target/helloword/node_modules/lodash/flatten.js b/target/cardgame/node_modules/lodash/flatten.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flatten.js
rename to target/cardgame/node_modules/lodash/flatten.js
diff --git a/target/helloword/node_modules/lodash/flattenDeep.js b/target/cardgame/node_modules/lodash/flattenDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flattenDeep.js
rename to target/cardgame/node_modules/lodash/flattenDeep.js
diff --git a/target/helloword/node_modules/lodash/flattenDepth.js b/target/cardgame/node_modules/lodash/flattenDepth.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flattenDepth.js
rename to target/cardgame/node_modules/lodash/flattenDepth.js
diff --git a/target/helloword/node_modules/lodash/flip.js b/target/cardgame/node_modules/lodash/flip.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flip.js
rename to target/cardgame/node_modules/lodash/flip.js
diff --git a/target/helloword/node_modules/lodash/floor.js b/target/cardgame/node_modules/lodash/floor.js
similarity index 100%
rename from target/helloword/node_modules/lodash/floor.js
rename to target/cardgame/node_modules/lodash/floor.js
diff --git a/target/helloword/node_modules/lodash/flow.js b/target/cardgame/node_modules/lodash/flow.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flow.js
rename to target/cardgame/node_modules/lodash/flow.js
diff --git a/target/helloword/node_modules/lodash/flowRight.js b/target/cardgame/node_modules/lodash/flowRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/flowRight.js
rename to target/cardgame/node_modules/lodash/flowRight.js
diff --git a/target/helloword/node_modules/lodash/forEach.js b/target/cardgame/node_modules/lodash/forEach.js
similarity index 100%
rename from target/helloword/node_modules/lodash/forEach.js
rename to target/cardgame/node_modules/lodash/forEach.js
diff --git a/target/helloword/node_modules/lodash/forEachRight.js b/target/cardgame/node_modules/lodash/forEachRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/forEachRight.js
rename to target/cardgame/node_modules/lodash/forEachRight.js
diff --git a/target/helloword/node_modules/lodash/forIn.js b/target/cardgame/node_modules/lodash/forIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/forIn.js
rename to target/cardgame/node_modules/lodash/forIn.js
diff --git a/target/helloword/node_modules/lodash/forInRight.js b/target/cardgame/node_modules/lodash/forInRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/forInRight.js
rename to target/cardgame/node_modules/lodash/forInRight.js
diff --git a/target/helloword/node_modules/lodash/forOwn.js b/target/cardgame/node_modules/lodash/forOwn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/forOwn.js
rename to target/cardgame/node_modules/lodash/forOwn.js
diff --git a/target/helloword/node_modules/lodash/forOwnRight.js b/target/cardgame/node_modules/lodash/forOwnRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/forOwnRight.js
rename to target/cardgame/node_modules/lodash/forOwnRight.js
diff --git a/target/helloword/node_modules/lodash/fp.js b/target/cardgame/node_modules/lodash/fp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp.js
rename to target/cardgame/node_modules/lodash/fp.js
diff --git a/target/helloword/node_modules/lodash/fp/__.js b/target/cardgame/node_modules/lodash/fp/__.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/__.js
rename to target/cardgame/node_modules/lodash/fp/__.js
diff --git a/target/helloword/node_modules/lodash/fp/_baseConvert.js b/target/cardgame/node_modules/lodash/fp/_baseConvert.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/_baseConvert.js
rename to target/cardgame/node_modules/lodash/fp/_baseConvert.js
diff --git a/target/helloword/node_modules/lodash/fp/_convertBrowser.js b/target/cardgame/node_modules/lodash/fp/_convertBrowser.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/_convertBrowser.js
rename to target/cardgame/node_modules/lodash/fp/_convertBrowser.js
diff --git a/target/helloword/node_modules/lodash/fp/_falseOptions.js b/target/cardgame/node_modules/lodash/fp/_falseOptions.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/_falseOptions.js
rename to target/cardgame/node_modules/lodash/fp/_falseOptions.js
diff --git a/target/helloword/node_modules/lodash/fp/_mapping.js b/target/cardgame/node_modules/lodash/fp/_mapping.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/_mapping.js
rename to target/cardgame/node_modules/lodash/fp/_mapping.js
diff --git a/target/helloword/node_modules/lodash/fp/_util.js b/target/cardgame/node_modules/lodash/fp/_util.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/_util.js
rename to target/cardgame/node_modules/lodash/fp/_util.js
diff --git a/target/helloword/node_modules/lodash/fp/add.js b/target/cardgame/node_modules/lodash/fp/add.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/add.js
rename to target/cardgame/node_modules/lodash/fp/add.js
diff --git a/target/helloword/node_modules/lodash/fp/after.js b/target/cardgame/node_modules/lodash/fp/after.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/after.js
rename to target/cardgame/node_modules/lodash/fp/after.js
diff --git a/target/helloword/node_modules/lodash/fp/all.js b/target/cardgame/node_modules/lodash/fp/all.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/all.js
rename to target/cardgame/node_modules/lodash/fp/all.js
diff --git a/target/helloword/node_modules/lodash/fp/allPass.js b/target/cardgame/node_modules/lodash/fp/allPass.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/allPass.js
rename to target/cardgame/node_modules/lodash/fp/allPass.js
diff --git a/target/helloword/node_modules/lodash/fp/always.js b/target/cardgame/node_modules/lodash/fp/always.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/always.js
rename to target/cardgame/node_modules/lodash/fp/always.js
diff --git a/target/helloword/node_modules/lodash/fp/any.js b/target/cardgame/node_modules/lodash/fp/any.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/any.js
rename to target/cardgame/node_modules/lodash/fp/any.js
diff --git a/target/helloword/node_modules/lodash/fp/anyPass.js b/target/cardgame/node_modules/lodash/fp/anyPass.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/anyPass.js
rename to target/cardgame/node_modules/lodash/fp/anyPass.js
diff --git a/target/helloword/node_modules/lodash/fp/apply.js b/target/cardgame/node_modules/lodash/fp/apply.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/apply.js
rename to target/cardgame/node_modules/lodash/fp/apply.js
diff --git a/target/helloword/node_modules/lodash/fp/array.js b/target/cardgame/node_modules/lodash/fp/array.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/array.js
rename to target/cardgame/node_modules/lodash/fp/array.js
diff --git a/target/helloword/node_modules/lodash/fp/ary.js b/target/cardgame/node_modules/lodash/fp/ary.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/ary.js
rename to target/cardgame/node_modules/lodash/fp/ary.js
diff --git a/target/helloword/node_modules/lodash/fp/assign.js b/target/cardgame/node_modules/lodash/fp/assign.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/assign.js
rename to target/cardgame/node_modules/lodash/fp/assign.js
diff --git a/target/helloword/node_modules/lodash/fp/assignIn.js b/target/cardgame/node_modules/lodash/fp/assignIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/assignIn.js
rename to target/cardgame/node_modules/lodash/fp/assignIn.js
diff --git a/target/helloword/node_modules/lodash/fp/assignInWith.js b/target/cardgame/node_modules/lodash/fp/assignInWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/assignInWith.js
rename to target/cardgame/node_modules/lodash/fp/assignInWith.js
diff --git a/target/helloword/node_modules/lodash/fp/assignWith.js b/target/cardgame/node_modules/lodash/fp/assignWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/assignWith.js
rename to target/cardgame/node_modules/lodash/fp/assignWith.js
diff --git a/target/helloword/node_modules/lodash/fp/assoc.js b/target/cardgame/node_modules/lodash/fp/assoc.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/assoc.js
rename to target/cardgame/node_modules/lodash/fp/assoc.js
diff --git a/target/helloword/node_modules/lodash/fp/assocPath.js b/target/cardgame/node_modules/lodash/fp/assocPath.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/assocPath.js
rename to target/cardgame/node_modules/lodash/fp/assocPath.js
diff --git a/target/helloword/node_modules/lodash/fp/at.js b/target/cardgame/node_modules/lodash/fp/at.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/at.js
rename to target/cardgame/node_modules/lodash/fp/at.js
diff --git a/target/helloword/node_modules/lodash/fp/attempt.js b/target/cardgame/node_modules/lodash/fp/attempt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/attempt.js
rename to target/cardgame/node_modules/lodash/fp/attempt.js
diff --git a/target/helloword/node_modules/lodash/fp/before.js b/target/cardgame/node_modules/lodash/fp/before.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/before.js
rename to target/cardgame/node_modules/lodash/fp/before.js
diff --git a/target/helloword/node_modules/lodash/fp/bind.js b/target/cardgame/node_modules/lodash/fp/bind.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/bind.js
rename to target/cardgame/node_modules/lodash/fp/bind.js
diff --git a/target/helloword/node_modules/lodash/fp/bindAll.js b/target/cardgame/node_modules/lodash/fp/bindAll.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/bindAll.js
rename to target/cardgame/node_modules/lodash/fp/bindAll.js
diff --git a/target/helloword/node_modules/lodash/fp/bindKey.js b/target/cardgame/node_modules/lodash/fp/bindKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/bindKey.js
rename to target/cardgame/node_modules/lodash/fp/bindKey.js
diff --git a/target/helloword/node_modules/lodash/fp/camelCase.js b/target/cardgame/node_modules/lodash/fp/camelCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/camelCase.js
rename to target/cardgame/node_modules/lodash/fp/camelCase.js
diff --git a/target/helloword/node_modules/lodash/fp/capitalize.js b/target/cardgame/node_modules/lodash/fp/capitalize.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/capitalize.js
rename to target/cardgame/node_modules/lodash/fp/capitalize.js
diff --git a/target/helloword/node_modules/lodash/fp/castArray.js b/target/cardgame/node_modules/lodash/fp/castArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/castArray.js
rename to target/cardgame/node_modules/lodash/fp/castArray.js
diff --git a/target/helloword/node_modules/lodash/fp/ceil.js b/target/cardgame/node_modules/lodash/fp/ceil.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/ceil.js
rename to target/cardgame/node_modules/lodash/fp/ceil.js
diff --git a/target/helloword/node_modules/lodash/fp/chain.js b/target/cardgame/node_modules/lodash/fp/chain.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/chain.js
rename to target/cardgame/node_modules/lodash/fp/chain.js
diff --git a/target/helloword/node_modules/lodash/fp/chunk.js b/target/cardgame/node_modules/lodash/fp/chunk.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/chunk.js
rename to target/cardgame/node_modules/lodash/fp/chunk.js
diff --git a/target/helloword/node_modules/lodash/fp/clamp.js b/target/cardgame/node_modules/lodash/fp/clamp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/clamp.js
rename to target/cardgame/node_modules/lodash/fp/clamp.js
diff --git a/target/helloword/node_modules/lodash/fp/clone.js b/target/cardgame/node_modules/lodash/fp/clone.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/clone.js
rename to target/cardgame/node_modules/lodash/fp/clone.js
diff --git a/target/helloword/node_modules/lodash/fp/cloneDeep.js b/target/cardgame/node_modules/lodash/fp/cloneDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/cloneDeep.js
rename to target/cardgame/node_modules/lodash/fp/cloneDeep.js
diff --git a/target/helloword/node_modules/lodash/fp/cloneDeepWith.js b/target/cardgame/node_modules/lodash/fp/cloneDeepWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/cloneDeepWith.js
rename to target/cardgame/node_modules/lodash/fp/cloneDeepWith.js
diff --git a/target/helloword/node_modules/lodash/fp/cloneWith.js b/target/cardgame/node_modules/lodash/fp/cloneWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/cloneWith.js
rename to target/cardgame/node_modules/lodash/fp/cloneWith.js
diff --git a/target/helloword/node_modules/lodash/fp/collection.js b/target/cardgame/node_modules/lodash/fp/collection.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/collection.js
rename to target/cardgame/node_modules/lodash/fp/collection.js
diff --git a/target/helloword/node_modules/lodash/fp/commit.js b/target/cardgame/node_modules/lodash/fp/commit.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/commit.js
rename to target/cardgame/node_modules/lodash/fp/commit.js
diff --git a/target/helloword/node_modules/lodash/fp/compact.js b/target/cardgame/node_modules/lodash/fp/compact.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/compact.js
rename to target/cardgame/node_modules/lodash/fp/compact.js
diff --git a/target/helloword/node_modules/lodash/fp/complement.js b/target/cardgame/node_modules/lodash/fp/complement.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/complement.js
rename to target/cardgame/node_modules/lodash/fp/complement.js
diff --git a/target/helloword/node_modules/lodash/fp/compose.js b/target/cardgame/node_modules/lodash/fp/compose.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/compose.js
rename to target/cardgame/node_modules/lodash/fp/compose.js
diff --git a/target/helloword/node_modules/lodash/fp/concat.js b/target/cardgame/node_modules/lodash/fp/concat.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/concat.js
rename to target/cardgame/node_modules/lodash/fp/concat.js
diff --git a/target/helloword/node_modules/lodash/fp/cond.js b/target/cardgame/node_modules/lodash/fp/cond.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/cond.js
rename to target/cardgame/node_modules/lodash/fp/cond.js
diff --git a/target/helloword/node_modules/lodash/fp/conforms.js b/target/cardgame/node_modules/lodash/fp/conforms.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/conforms.js
rename to target/cardgame/node_modules/lodash/fp/conforms.js
diff --git a/target/helloword/node_modules/lodash/fp/constant.js b/target/cardgame/node_modules/lodash/fp/constant.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/constant.js
rename to target/cardgame/node_modules/lodash/fp/constant.js
diff --git a/target/helloword/node_modules/lodash/fp/contains.js b/target/cardgame/node_modules/lodash/fp/contains.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/contains.js
rename to target/cardgame/node_modules/lodash/fp/contains.js
diff --git a/target/helloword/node_modules/lodash/fp/convert.js b/target/cardgame/node_modules/lodash/fp/convert.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/convert.js
rename to target/cardgame/node_modules/lodash/fp/convert.js
diff --git a/target/helloword/node_modules/lodash/fp/countBy.js b/target/cardgame/node_modules/lodash/fp/countBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/countBy.js
rename to target/cardgame/node_modules/lodash/fp/countBy.js
diff --git a/target/helloword/node_modules/lodash/fp/create.js b/target/cardgame/node_modules/lodash/fp/create.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/create.js
rename to target/cardgame/node_modules/lodash/fp/create.js
diff --git a/target/helloword/node_modules/lodash/fp/curry.js b/target/cardgame/node_modules/lodash/fp/curry.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/curry.js
rename to target/cardgame/node_modules/lodash/fp/curry.js
diff --git a/target/helloword/node_modules/lodash/fp/curryN.js b/target/cardgame/node_modules/lodash/fp/curryN.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/curryN.js
rename to target/cardgame/node_modules/lodash/fp/curryN.js
diff --git a/target/helloword/node_modules/lodash/fp/curryRight.js b/target/cardgame/node_modules/lodash/fp/curryRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/curryRight.js
rename to target/cardgame/node_modules/lodash/fp/curryRight.js
diff --git a/target/helloword/node_modules/lodash/fp/curryRightN.js b/target/cardgame/node_modules/lodash/fp/curryRightN.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/curryRightN.js
rename to target/cardgame/node_modules/lodash/fp/curryRightN.js
diff --git a/target/helloword/node_modules/lodash/fp/date.js b/target/cardgame/node_modules/lodash/fp/date.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/date.js
rename to target/cardgame/node_modules/lodash/fp/date.js
diff --git a/target/helloword/node_modules/lodash/fp/debounce.js b/target/cardgame/node_modules/lodash/fp/debounce.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/debounce.js
rename to target/cardgame/node_modules/lodash/fp/debounce.js
diff --git a/target/helloword/node_modules/lodash/fp/deburr.js b/target/cardgame/node_modules/lodash/fp/deburr.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/deburr.js
rename to target/cardgame/node_modules/lodash/fp/deburr.js
diff --git a/target/helloword/node_modules/lodash/fp/defaults.js b/target/cardgame/node_modules/lodash/fp/defaults.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/defaults.js
rename to target/cardgame/node_modules/lodash/fp/defaults.js
diff --git a/target/helloword/node_modules/lodash/fp/defaultsDeep.js b/target/cardgame/node_modules/lodash/fp/defaultsDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/defaultsDeep.js
rename to target/cardgame/node_modules/lodash/fp/defaultsDeep.js
diff --git a/target/helloword/node_modules/lodash/fp/defer.js b/target/cardgame/node_modules/lodash/fp/defer.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/defer.js
rename to target/cardgame/node_modules/lodash/fp/defer.js
diff --git a/target/helloword/node_modules/lodash/fp/delay.js b/target/cardgame/node_modules/lodash/fp/delay.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/delay.js
rename to target/cardgame/node_modules/lodash/fp/delay.js
diff --git a/target/helloword/node_modules/lodash/fp/difference.js b/target/cardgame/node_modules/lodash/fp/difference.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/difference.js
rename to target/cardgame/node_modules/lodash/fp/difference.js
diff --git a/target/helloword/node_modules/lodash/fp/differenceBy.js b/target/cardgame/node_modules/lodash/fp/differenceBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/differenceBy.js
rename to target/cardgame/node_modules/lodash/fp/differenceBy.js
diff --git a/target/helloword/node_modules/lodash/fp/differenceWith.js b/target/cardgame/node_modules/lodash/fp/differenceWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/differenceWith.js
rename to target/cardgame/node_modules/lodash/fp/differenceWith.js
diff --git a/target/helloword/node_modules/lodash/fp/dissoc.js b/target/cardgame/node_modules/lodash/fp/dissoc.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/dissoc.js
rename to target/cardgame/node_modules/lodash/fp/dissoc.js
diff --git a/target/helloword/node_modules/lodash/fp/dissocPath.js b/target/cardgame/node_modules/lodash/fp/dissocPath.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/dissocPath.js
rename to target/cardgame/node_modules/lodash/fp/dissocPath.js
diff --git a/target/helloword/node_modules/lodash/fp/divide.js b/target/cardgame/node_modules/lodash/fp/divide.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/divide.js
rename to target/cardgame/node_modules/lodash/fp/divide.js
diff --git a/target/helloword/node_modules/lodash/fp/drop.js b/target/cardgame/node_modules/lodash/fp/drop.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/drop.js
rename to target/cardgame/node_modules/lodash/fp/drop.js
diff --git a/target/helloword/node_modules/lodash/fp/dropRight.js b/target/cardgame/node_modules/lodash/fp/dropRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/dropRight.js
rename to target/cardgame/node_modules/lodash/fp/dropRight.js
diff --git a/target/helloword/node_modules/lodash/fp/dropRightWhile.js b/target/cardgame/node_modules/lodash/fp/dropRightWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/dropRightWhile.js
rename to target/cardgame/node_modules/lodash/fp/dropRightWhile.js
diff --git a/target/helloword/node_modules/lodash/fp/dropWhile.js b/target/cardgame/node_modules/lodash/fp/dropWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/dropWhile.js
rename to target/cardgame/node_modules/lodash/fp/dropWhile.js
diff --git a/target/helloword/node_modules/lodash/fp/each.js b/target/cardgame/node_modules/lodash/fp/each.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/each.js
rename to target/cardgame/node_modules/lodash/fp/each.js
diff --git a/target/helloword/node_modules/lodash/fp/eachRight.js b/target/cardgame/node_modules/lodash/fp/eachRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/eachRight.js
rename to target/cardgame/node_modules/lodash/fp/eachRight.js
diff --git a/target/helloword/node_modules/lodash/fp/endsWith.js b/target/cardgame/node_modules/lodash/fp/endsWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/endsWith.js
rename to target/cardgame/node_modules/lodash/fp/endsWith.js
diff --git a/target/helloword/node_modules/lodash/fp/entries.js b/target/cardgame/node_modules/lodash/fp/entries.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/entries.js
rename to target/cardgame/node_modules/lodash/fp/entries.js
diff --git a/target/helloword/node_modules/lodash/fp/entriesIn.js b/target/cardgame/node_modules/lodash/fp/entriesIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/entriesIn.js
rename to target/cardgame/node_modules/lodash/fp/entriesIn.js
diff --git a/target/helloword/node_modules/lodash/fp/eq.js b/target/cardgame/node_modules/lodash/fp/eq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/eq.js
rename to target/cardgame/node_modules/lodash/fp/eq.js
diff --git a/target/helloword/node_modules/lodash/fp/equals.js b/target/cardgame/node_modules/lodash/fp/equals.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/equals.js
rename to target/cardgame/node_modules/lodash/fp/equals.js
diff --git a/target/helloword/node_modules/lodash/fp/escape.js b/target/cardgame/node_modules/lodash/fp/escape.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/escape.js
rename to target/cardgame/node_modules/lodash/fp/escape.js
diff --git a/target/helloword/node_modules/lodash/fp/escapeRegExp.js b/target/cardgame/node_modules/lodash/fp/escapeRegExp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/escapeRegExp.js
rename to target/cardgame/node_modules/lodash/fp/escapeRegExp.js
diff --git a/target/helloword/node_modules/lodash/fp/every.js b/target/cardgame/node_modules/lodash/fp/every.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/every.js
rename to target/cardgame/node_modules/lodash/fp/every.js
diff --git a/target/helloword/node_modules/lodash/fp/extend.js b/target/cardgame/node_modules/lodash/fp/extend.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/extend.js
rename to target/cardgame/node_modules/lodash/fp/extend.js
diff --git a/target/helloword/node_modules/lodash/fp/extendWith.js b/target/cardgame/node_modules/lodash/fp/extendWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/extendWith.js
rename to target/cardgame/node_modules/lodash/fp/extendWith.js
diff --git a/target/helloword/node_modules/lodash/fp/fill.js b/target/cardgame/node_modules/lodash/fp/fill.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/fill.js
rename to target/cardgame/node_modules/lodash/fp/fill.js
diff --git a/target/helloword/node_modules/lodash/fp/filter.js b/target/cardgame/node_modules/lodash/fp/filter.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/filter.js
rename to target/cardgame/node_modules/lodash/fp/filter.js
diff --git a/target/helloword/node_modules/lodash/fp/find.js b/target/cardgame/node_modules/lodash/fp/find.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/find.js
rename to target/cardgame/node_modules/lodash/fp/find.js
diff --git a/target/helloword/node_modules/lodash/fp/findFrom.js b/target/cardgame/node_modules/lodash/fp/findFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findFrom.js
rename to target/cardgame/node_modules/lodash/fp/findFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/findIndex.js b/target/cardgame/node_modules/lodash/fp/findIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findIndex.js
rename to target/cardgame/node_modules/lodash/fp/findIndex.js
diff --git a/target/helloword/node_modules/lodash/fp/findIndexFrom.js b/target/cardgame/node_modules/lodash/fp/findIndexFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findIndexFrom.js
rename to target/cardgame/node_modules/lodash/fp/findIndexFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/findKey.js b/target/cardgame/node_modules/lodash/fp/findKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findKey.js
rename to target/cardgame/node_modules/lodash/fp/findKey.js
diff --git a/target/helloword/node_modules/lodash/fp/findLast.js b/target/cardgame/node_modules/lodash/fp/findLast.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findLast.js
rename to target/cardgame/node_modules/lodash/fp/findLast.js
diff --git a/target/helloword/node_modules/lodash/fp/findLastFrom.js b/target/cardgame/node_modules/lodash/fp/findLastFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findLastFrom.js
rename to target/cardgame/node_modules/lodash/fp/findLastFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/findLastIndex.js b/target/cardgame/node_modules/lodash/fp/findLastIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findLastIndex.js
rename to target/cardgame/node_modules/lodash/fp/findLastIndex.js
diff --git a/target/helloword/node_modules/lodash/fp/findLastIndexFrom.js b/target/cardgame/node_modules/lodash/fp/findLastIndexFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findLastIndexFrom.js
rename to target/cardgame/node_modules/lodash/fp/findLastIndexFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/findLastKey.js b/target/cardgame/node_modules/lodash/fp/findLastKey.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/findLastKey.js
rename to target/cardgame/node_modules/lodash/fp/findLastKey.js
diff --git a/target/helloword/node_modules/lodash/fp/first.js b/target/cardgame/node_modules/lodash/fp/first.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/first.js
rename to target/cardgame/node_modules/lodash/fp/first.js
diff --git a/target/helloword/node_modules/lodash/fp/flatMap.js b/target/cardgame/node_modules/lodash/fp/flatMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flatMap.js
rename to target/cardgame/node_modules/lodash/fp/flatMap.js
diff --git a/target/helloword/node_modules/lodash/fp/flatMapDeep.js b/target/cardgame/node_modules/lodash/fp/flatMapDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flatMapDeep.js
rename to target/cardgame/node_modules/lodash/fp/flatMapDeep.js
diff --git a/target/helloword/node_modules/lodash/fp/flatMapDepth.js b/target/cardgame/node_modules/lodash/fp/flatMapDepth.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flatMapDepth.js
rename to target/cardgame/node_modules/lodash/fp/flatMapDepth.js
diff --git a/target/helloword/node_modules/lodash/fp/flatten.js b/target/cardgame/node_modules/lodash/fp/flatten.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flatten.js
rename to target/cardgame/node_modules/lodash/fp/flatten.js
diff --git a/target/helloword/node_modules/lodash/fp/flattenDeep.js b/target/cardgame/node_modules/lodash/fp/flattenDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flattenDeep.js
rename to target/cardgame/node_modules/lodash/fp/flattenDeep.js
diff --git a/target/helloword/node_modules/lodash/fp/flattenDepth.js b/target/cardgame/node_modules/lodash/fp/flattenDepth.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flattenDepth.js
rename to target/cardgame/node_modules/lodash/fp/flattenDepth.js
diff --git a/target/helloword/node_modules/lodash/fp/flip.js b/target/cardgame/node_modules/lodash/fp/flip.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flip.js
rename to target/cardgame/node_modules/lodash/fp/flip.js
diff --git a/target/helloword/node_modules/lodash/fp/floor.js b/target/cardgame/node_modules/lodash/fp/floor.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/floor.js
rename to target/cardgame/node_modules/lodash/fp/floor.js
diff --git a/target/helloword/node_modules/lodash/fp/flow.js b/target/cardgame/node_modules/lodash/fp/flow.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flow.js
rename to target/cardgame/node_modules/lodash/fp/flow.js
diff --git a/target/helloword/node_modules/lodash/fp/flowRight.js b/target/cardgame/node_modules/lodash/fp/flowRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/flowRight.js
rename to target/cardgame/node_modules/lodash/fp/flowRight.js
diff --git a/target/helloword/node_modules/lodash/fp/forEach.js b/target/cardgame/node_modules/lodash/fp/forEach.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/forEach.js
rename to target/cardgame/node_modules/lodash/fp/forEach.js
diff --git a/target/helloword/node_modules/lodash/fp/forEachRight.js b/target/cardgame/node_modules/lodash/fp/forEachRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/forEachRight.js
rename to target/cardgame/node_modules/lodash/fp/forEachRight.js
diff --git a/target/helloword/node_modules/lodash/fp/forIn.js b/target/cardgame/node_modules/lodash/fp/forIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/forIn.js
rename to target/cardgame/node_modules/lodash/fp/forIn.js
diff --git a/target/helloword/node_modules/lodash/fp/forInRight.js b/target/cardgame/node_modules/lodash/fp/forInRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/forInRight.js
rename to target/cardgame/node_modules/lodash/fp/forInRight.js
diff --git a/target/helloword/node_modules/lodash/fp/forOwn.js b/target/cardgame/node_modules/lodash/fp/forOwn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/forOwn.js
rename to target/cardgame/node_modules/lodash/fp/forOwn.js
diff --git a/target/helloword/node_modules/lodash/fp/forOwnRight.js b/target/cardgame/node_modules/lodash/fp/forOwnRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/forOwnRight.js
rename to target/cardgame/node_modules/lodash/fp/forOwnRight.js
diff --git a/target/helloword/node_modules/lodash/fp/fromPairs.js b/target/cardgame/node_modules/lodash/fp/fromPairs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/fromPairs.js
rename to target/cardgame/node_modules/lodash/fp/fromPairs.js
diff --git a/target/helloword/node_modules/lodash/fp/function.js b/target/cardgame/node_modules/lodash/fp/function.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/function.js
rename to target/cardgame/node_modules/lodash/fp/function.js
diff --git a/target/helloword/node_modules/lodash/fp/functions.js b/target/cardgame/node_modules/lodash/fp/functions.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/functions.js
rename to target/cardgame/node_modules/lodash/fp/functions.js
diff --git a/target/helloword/node_modules/lodash/fp/functionsIn.js b/target/cardgame/node_modules/lodash/fp/functionsIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/functionsIn.js
rename to target/cardgame/node_modules/lodash/fp/functionsIn.js
diff --git a/target/helloword/node_modules/lodash/fp/get.js b/target/cardgame/node_modules/lodash/fp/get.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/get.js
rename to target/cardgame/node_modules/lodash/fp/get.js
diff --git a/target/helloword/node_modules/lodash/fp/getOr.js b/target/cardgame/node_modules/lodash/fp/getOr.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/getOr.js
rename to target/cardgame/node_modules/lodash/fp/getOr.js
diff --git a/target/helloword/node_modules/lodash/fp/groupBy.js b/target/cardgame/node_modules/lodash/fp/groupBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/groupBy.js
rename to target/cardgame/node_modules/lodash/fp/groupBy.js
diff --git a/target/helloword/node_modules/lodash/fp/gt.js b/target/cardgame/node_modules/lodash/fp/gt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/gt.js
rename to target/cardgame/node_modules/lodash/fp/gt.js
diff --git a/target/helloword/node_modules/lodash/fp/gte.js b/target/cardgame/node_modules/lodash/fp/gte.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/gte.js
rename to target/cardgame/node_modules/lodash/fp/gte.js
diff --git a/target/helloword/node_modules/lodash/fp/has.js b/target/cardgame/node_modules/lodash/fp/has.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/has.js
rename to target/cardgame/node_modules/lodash/fp/has.js
diff --git a/target/helloword/node_modules/lodash/fp/hasIn.js b/target/cardgame/node_modules/lodash/fp/hasIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/hasIn.js
rename to target/cardgame/node_modules/lodash/fp/hasIn.js
diff --git a/target/helloword/node_modules/lodash/fp/head.js b/target/cardgame/node_modules/lodash/fp/head.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/head.js
rename to target/cardgame/node_modules/lodash/fp/head.js
diff --git a/target/helloword/node_modules/lodash/fp/identical.js b/target/cardgame/node_modules/lodash/fp/identical.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/identical.js
rename to target/cardgame/node_modules/lodash/fp/identical.js
diff --git a/target/helloword/node_modules/lodash/fp/identity.js b/target/cardgame/node_modules/lodash/fp/identity.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/identity.js
rename to target/cardgame/node_modules/lodash/fp/identity.js
diff --git a/target/helloword/node_modules/lodash/fp/inRange.js b/target/cardgame/node_modules/lodash/fp/inRange.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/inRange.js
rename to target/cardgame/node_modules/lodash/fp/inRange.js
diff --git a/target/helloword/node_modules/lodash/fp/includes.js b/target/cardgame/node_modules/lodash/fp/includes.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/includes.js
rename to target/cardgame/node_modules/lodash/fp/includes.js
diff --git a/target/helloword/node_modules/lodash/fp/includesFrom.js b/target/cardgame/node_modules/lodash/fp/includesFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/includesFrom.js
rename to target/cardgame/node_modules/lodash/fp/includesFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/indexOf.js b/target/cardgame/node_modules/lodash/fp/indexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/indexOf.js
rename to target/cardgame/node_modules/lodash/fp/indexOf.js
diff --git a/target/helloword/node_modules/lodash/fp/indexOfFrom.js b/target/cardgame/node_modules/lodash/fp/indexOfFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/indexOfFrom.js
rename to target/cardgame/node_modules/lodash/fp/indexOfFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/init.js b/target/cardgame/node_modules/lodash/fp/init.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/init.js
rename to target/cardgame/node_modules/lodash/fp/init.js
diff --git a/target/helloword/node_modules/lodash/fp/initial.js b/target/cardgame/node_modules/lodash/fp/initial.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/initial.js
rename to target/cardgame/node_modules/lodash/fp/initial.js
diff --git a/target/helloword/node_modules/lodash/fp/intersection.js b/target/cardgame/node_modules/lodash/fp/intersection.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/intersection.js
rename to target/cardgame/node_modules/lodash/fp/intersection.js
diff --git a/target/helloword/node_modules/lodash/fp/intersectionBy.js b/target/cardgame/node_modules/lodash/fp/intersectionBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/intersectionBy.js
rename to target/cardgame/node_modules/lodash/fp/intersectionBy.js
diff --git a/target/helloword/node_modules/lodash/fp/intersectionWith.js b/target/cardgame/node_modules/lodash/fp/intersectionWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/intersectionWith.js
rename to target/cardgame/node_modules/lodash/fp/intersectionWith.js
diff --git a/target/helloword/node_modules/lodash/fp/invert.js b/target/cardgame/node_modules/lodash/fp/invert.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/invert.js
rename to target/cardgame/node_modules/lodash/fp/invert.js
diff --git a/target/helloword/node_modules/lodash/fp/invertBy.js b/target/cardgame/node_modules/lodash/fp/invertBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/invertBy.js
rename to target/cardgame/node_modules/lodash/fp/invertBy.js
diff --git a/target/helloword/node_modules/lodash/fp/invertObj.js b/target/cardgame/node_modules/lodash/fp/invertObj.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/invertObj.js
rename to target/cardgame/node_modules/lodash/fp/invertObj.js
diff --git a/target/helloword/node_modules/lodash/fp/invoke.js b/target/cardgame/node_modules/lodash/fp/invoke.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/invoke.js
rename to target/cardgame/node_modules/lodash/fp/invoke.js
diff --git a/target/helloword/node_modules/lodash/fp/invokeArgs.js b/target/cardgame/node_modules/lodash/fp/invokeArgs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/invokeArgs.js
rename to target/cardgame/node_modules/lodash/fp/invokeArgs.js
diff --git a/target/helloword/node_modules/lodash/fp/invokeArgsMap.js b/target/cardgame/node_modules/lodash/fp/invokeArgsMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/invokeArgsMap.js
rename to target/cardgame/node_modules/lodash/fp/invokeArgsMap.js
diff --git a/target/helloword/node_modules/lodash/fp/invokeMap.js b/target/cardgame/node_modules/lodash/fp/invokeMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/invokeMap.js
rename to target/cardgame/node_modules/lodash/fp/invokeMap.js
diff --git a/target/helloword/node_modules/lodash/fp/isArguments.js b/target/cardgame/node_modules/lodash/fp/isArguments.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isArguments.js
rename to target/cardgame/node_modules/lodash/fp/isArguments.js
diff --git a/target/helloword/node_modules/lodash/fp/isArray.js b/target/cardgame/node_modules/lodash/fp/isArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isArray.js
rename to target/cardgame/node_modules/lodash/fp/isArray.js
diff --git a/target/helloword/node_modules/lodash/fp/isArrayBuffer.js b/target/cardgame/node_modules/lodash/fp/isArrayBuffer.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isArrayBuffer.js
rename to target/cardgame/node_modules/lodash/fp/isArrayBuffer.js
diff --git a/target/helloword/node_modules/lodash/fp/isArrayLike.js b/target/cardgame/node_modules/lodash/fp/isArrayLike.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isArrayLike.js
rename to target/cardgame/node_modules/lodash/fp/isArrayLike.js
diff --git a/target/helloword/node_modules/lodash/fp/isArrayLikeObject.js b/target/cardgame/node_modules/lodash/fp/isArrayLikeObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isArrayLikeObject.js
rename to target/cardgame/node_modules/lodash/fp/isArrayLikeObject.js
diff --git a/target/helloword/node_modules/lodash/fp/isBoolean.js b/target/cardgame/node_modules/lodash/fp/isBoolean.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isBoolean.js
rename to target/cardgame/node_modules/lodash/fp/isBoolean.js
diff --git a/target/helloword/node_modules/lodash/fp/isBuffer.js b/target/cardgame/node_modules/lodash/fp/isBuffer.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isBuffer.js
rename to target/cardgame/node_modules/lodash/fp/isBuffer.js
diff --git a/target/helloword/node_modules/lodash/fp/isDate.js b/target/cardgame/node_modules/lodash/fp/isDate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isDate.js
rename to target/cardgame/node_modules/lodash/fp/isDate.js
diff --git a/target/helloword/node_modules/lodash/fp/isElement.js b/target/cardgame/node_modules/lodash/fp/isElement.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isElement.js
rename to target/cardgame/node_modules/lodash/fp/isElement.js
diff --git a/target/helloword/node_modules/lodash/fp/isEmpty.js b/target/cardgame/node_modules/lodash/fp/isEmpty.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isEmpty.js
rename to target/cardgame/node_modules/lodash/fp/isEmpty.js
diff --git a/target/helloword/node_modules/lodash/fp/isEqual.js b/target/cardgame/node_modules/lodash/fp/isEqual.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isEqual.js
rename to target/cardgame/node_modules/lodash/fp/isEqual.js
diff --git a/target/helloword/node_modules/lodash/fp/isEqualWith.js b/target/cardgame/node_modules/lodash/fp/isEqualWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isEqualWith.js
rename to target/cardgame/node_modules/lodash/fp/isEqualWith.js
diff --git a/target/helloword/node_modules/lodash/fp/isError.js b/target/cardgame/node_modules/lodash/fp/isError.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isError.js
rename to target/cardgame/node_modules/lodash/fp/isError.js
diff --git a/target/helloword/node_modules/lodash/fp/isFinite.js b/target/cardgame/node_modules/lodash/fp/isFinite.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isFinite.js
rename to target/cardgame/node_modules/lodash/fp/isFinite.js
diff --git a/target/helloword/node_modules/lodash/fp/isFunction.js b/target/cardgame/node_modules/lodash/fp/isFunction.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isFunction.js
rename to target/cardgame/node_modules/lodash/fp/isFunction.js
diff --git a/target/helloword/node_modules/lodash/fp/isInteger.js b/target/cardgame/node_modules/lodash/fp/isInteger.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isInteger.js
rename to target/cardgame/node_modules/lodash/fp/isInteger.js
diff --git a/target/helloword/node_modules/lodash/fp/isLength.js b/target/cardgame/node_modules/lodash/fp/isLength.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isLength.js
rename to target/cardgame/node_modules/lodash/fp/isLength.js
diff --git a/target/helloword/node_modules/lodash/fp/isMap.js b/target/cardgame/node_modules/lodash/fp/isMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isMap.js
rename to target/cardgame/node_modules/lodash/fp/isMap.js
diff --git a/target/helloword/node_modules/lodash/fp/isMatch.js b/target/cardgame/node_modules/lodash/fp/isMatch.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isMatch.js
rename to target/cardgame/node_modules/lodash/fp/isMatch.js
diff --git a/target/helloword/node_modules/lodash/fp/isMatchWith.js b/target/cardgame/node_modules/lodash/fp/isMatchWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isMatchWith.js
rename to target/cardgame/node_modules/lodash/fp/isMatchWith.js
diff --git a/target/helloword/node_modules/lodash/fp/isNaN.js b/target/cardgame/node_modules/lodash/fp/isNaN.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isNaN.js
rename to target/cardgame/node_modules/lodash/fp/isNaN.js
diff --git a/target/helloword/node_modules/lodash/fp/isNative.js b/target/cardgame/node_modules/lodash/fp/isNative.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isNative.js
rename to target/cardgame/node_modules/lodash/fp/isNative.js
diff --git a/target/helloword/node_modules/lodash/fp/isNil.js b/target/cardgame/node_modules/lodash/fp/isNil.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isNil.js
rename to target/cardgame/node_modules/lodash/fp/isNil.js
diff --git a/target/helloword/node_modules/lodash/fp/isNull.js b/target/cardgame/node_modules/lodash/fp/isNull.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isNull.js
rename to target/cardgame/node_modules/lodash/fp/isNull.js
diff --git a/target/helloword/node_modules/lodash/fp/isNumber.js b/target/cardgame/node_modules/lodash/fp/isNumber.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isNumber.js
rename to target/cardgame/node_modules/lodash/fp/isNumber.js
diff --git a/target/helloword/node_modules/lodash/fp/isObject.js b/target/cardgame/node_modules/lodash/fp/isObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isObject.js
rename to target/cardgame/node_modules/lodash/fp/isObject.js
diff --git a/target/helloword/node_modules/lodash/fp/isObjectLike.js b/target/cardgame/node_modules/lodash/fp/isObjectLike.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isObjectLike.js
rename to target/cardgame/node_modules/lodash/fp/isObjectLike.js
diff --git a/target/helloword/node_modules/lodash/fp/isPlainObject.js b/target/cardgame/node_modules/lodash/fp/isPlainObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isPlainObject.js
rename to target/cardgame/node_modules/lodash/fp/isPlainObject.js
diff --git a/target/helloword/node_modules/lodash/fp/isRegExp.js b/target/cardgame/node_modules/lodash/fp/isRegExp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isRegExp.js
rename to target/cardgame/node_modules/lodash/fp/isRegExp.js
diff --git a/target/helloword/node_modules/lodash/fp/isSafeInteger.js b/target/cardgame/node_modules/lodash/fp/isSafeInteger.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isSafeInteger.js
rename to target/cardgame/node_modules/lodash/fp/isSafeInteger.js
diff --git a/target/helloword/node_modules/lodash/fp/isSet.js b/target/cardgame/node_modules/lodash/fp/isSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isSet.js
rename to target/cardgame/node_modules/lodash/fp/isSet.js
diff --git a/target/helloword/node_modules/lodash/fp/isString.js b/target/cardgame/node_modules/lodash/fp/isString.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isString.js
rename to target/cardgame/node_modules/lodash/fp/isString.js
diff --git a/target/helloword/node_modules/lodash/fp/isSymbol.js b/target/cardgame/node_modules/lodash/fp/isSymbol.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isSymbol.js
rename to target/cardgame/node_modules/lodash/fp/isSymbol.js
diff --git a/target/helloword/node_modules/lodash/fp/isTypedArray.js b/target/cardgame/node_modules/lodash/fp/isTypedArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isTypedArray.js
rename to target/cardgame/node_modules/lodash/fp/isTypedArray.js
diff --git a/target/helloword/node_modules/lodash/fp/isUndefined.js b/target/cardgame/node_modules/lodash/fp/isUndefined.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isUndefined.js
rename to target/cardgame/node_modules/lodash/fp/isUndefined.js
diff --git a/target/helloword/node_modules/lodash/fp/isWeakMap.js b/target/cardgame/node_modules/lodash/fp/isWeakMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isWeakMap.js
rename to target/cardgame/node_modules/lodash/fp/isWeakMap.js
diff --git a/target/helloword/node_modules/lodash/fp/isWeakSet.js b/target/cardgame/node_modules/lodash/fp/isWeakSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/isWeakSet.js
rename to target/cardgame/node_modules/lodash/fp/isWeakSet.js
diff --git a/target/helloword/node_modules/lodash/fp/iteratee.js b/target/cardgame/node_modules/lodash/fp/iteratee.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/iteratee.js
rename to target/cardgame/node_modules/lodash/fp/iteratee.js
diff --git a/target/helloword/node_modules/lodash/fp/join.js b/target/cardgame/node_modules/lodash/fp/join.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/join.js
rename to target/cardgame/node_modules/lodash/fp/join.js
diff --git a/target/helloword/node_modules/lodash/fp/juxt.js b/target/cardgame/node_modules/lodash/fp/juxt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/juxt.js
rename to target/cardgame/node_modules/lodash/fp/juxt.js
diff --git a/target/helloword/node_modules/lodash/fp/kebabCase.js b/target/cardgame/node_modules/lodash/fp/kebabCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/kebabCase.js
rename to target/cardgame/node_modules/lodash/fp/kebabCase.js
diff --git a/target/helloword/node_modules/lodash/fp/keyBy.js b/target/cardgame/node_modules/lodash/fp/keyBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/keyBy.js
rename to target/cardgame/node_modules/lodash/fp/keyBy.js
diff --git a/target/helloword/node_modules/lodash/fp/keys.js b/target/cardgame/node_modules/lodash/fp/keys.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/keys.js
rename to target/cardgame/node_modules/lodash/fp/keys.js
diff --git a/target/helloword/node_modules/lodash/fp/keysIn.js b/target/cardgame/node_modules/lodash/fp/keysIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/keysIn.js
rename to target/cardgame/node_modules/lodash/fp/keysIn.js
diff --git a/target/helloword/node_modules/lodash/fp/lang.js b/target/cardgame/node_modules/lodash/fp/lang.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/lang.js
rename to target/cardgame/node_modules/lodash/fp/lang.js
diff --git a/target/helloword/node_modules/lodash/fp/last.js b/target/cardgame/node_modules/lodash/fp/last.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/last.js
rename to target/cardgame/node_modules/lodash/fp/last.js
diff --git a/target/helloword/node_modules/lodash/fp/lastIndexOf.js b/target/cardgame/node_modules/lodash/fp/lastIndexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/lastIndexOf.js
rename to target/cardgame/node_modules/lodash/fp/lastIndexOf.js
diff --git a/target/helloword/node_modules/lodash/fp/lastIndexOfFrom.js b/target/cardgame/node_modules/lodash/fp/lastIndexOfFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/lastIndexOfFrom.js
rename to target/cardgame/node_modules/lodash/fp/lastIndexOfFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/lowerCase.js b/target/cardgame/node_modules/lodash/fp/lowerCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/lowerCase.js
rename to target/cardgame/node_modules/lodash/fp/lowerCase.js
diff --git a/target/helloword/node_modules/lodash/fp/lowerFirst.js b/target/cardgame/node_modules/lodash/fp/lowerFirst.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/lowerFirst.js
rename to target/cardgame/node_modules/lodash/fp/lowerFirst.js
diff --git a/target/helloword/node_modules/lodash/fp/lt.js b/target/cardgame/node_modules/lodash/fp/lt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/lt.js
rename to target/cardgame/node_modules/lodash/fp/lt.js
diff --git a/target/helloword/node_modules/lodash/fp/lte.js b/target/cardgame/node_modules/lodash/fp/lte.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/lte.js
rename to target/cardgame/node_modules/lodash/fp/lte.js
diff --git a/target/helloword/node_modules/lodash/fp/map.js b/target/cardgame/node_modules/lodash/fp/map.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/map.js
rename to target/cardgame/node_modules/lodash/fp/map.js
diff --git a/target/helloword/node_modules/lodash/fp/mapKeys.js b/target/cardgame/node_modules/lodash/fp/mapKeys.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/mapKeys.js
rename to target/cardgame/node_modules/lodash/fp/mapKeys.js
diff --git a/target/helloword/node_modules/lodash/fp/mapValues.js b/target/cardgame/node_modules/lodash/fp/mapValues.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/mapValues.js
rename to target/cardgame/node_modules/lodash/fp/mapValues.js
diff --git a/target/helloword/node_modules/lodash/fp/matches.js b/target/cardgame/node_modules/lodash/fp/matches.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/matches.js
rename to target/cardgame/node_modules/lodash/fp/matches.js
diff --git a/target/helloword/node_modules/lodash/fp/matchesProperty.js b/target/cardgame/node_modules/lodash/fp/matchesProperty.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/matchesProperty.js
rename to target/cardgame/node_modules/lodash/fp/matchesProperty.js
diff --git a/target/helloword/node_modules/lodash/fp/math.js b/target/cardgame/node_modules/lodash/fp/math.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/math.js
rename to target/cardgame/node_modules/lodash/fp/math.js
diff --git a/target/helloword/node_modules/lodash/fp/max.js b/target/cardgame/node_modules/lodash/fp/max.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/max.js
rename to target/cardgame/node_modules/lodash/fp/max.js
diff --git a/target/helloword/node_modules/lodash/fp/maxBy.js b/target/cardgame/node_modules/lodash/fp/maxBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/maxBy.js
rename to target/cardgame/node_modules/lodash/fp/maxBy.js
diff --git a/target/helloword/node_modules/lodash/fp/mean.js b/target/cardgame/node_modules/lodash/fp/mean.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/mean.js
rename to target/cardgame/node_modules/lodash/fp/mean.js
diff --git a/target/helloword/node_modules/lodash/fp/meanBy.js b/target/cardgame/node_modules/lodash/fp/meanBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/meanBy.js
rename to target/cardgame/node_modules/lodash/fp/meanBy.js
diff --git a/target/helloword/node_modules/lodash/fp/memoize.js b/target/cardgame/node_modules/lodash/fp/memoize.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/memoize.js
rename to target/cardgame/node_modules/lodash/fp/memoize.js
diff --git a/target/helloword/node_modules/lodash/fp/merge.js b/target/cardgame/node_modules/lodash/fp/merge.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/merge.js
rename to target/cardgame/node_modules/lodash/fp/merge.js
diff --git a/target/helloword/node_modules/lodash/fp/mergeWith.js b/target/cardgame/node_modules/lodash/fp/mergeWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/mergeWith.js
rename to target/cardgame/node_modules/lodash/fp/mergeWith.js
diff --git a/target/helloword/node_modules/lodash/fp/method.js b/target/cardgame/node_modules/lodash/fp/method.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/method.js
rename to target/cardgame/node_modules/lodash/fp/method.js
diff --git a/target/helloword/node_modules/lodash/fp/methodOf.js b/target/cardgame/node_modules/lodash/fp/methodOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/methodOf.js
rename to target/cardgame/node_modules/lodash/fp/methodOf.js
diff --git a/target/helloword/node_modules/lodash/fp/min.js b/target/cardgame/node_modules/lodash/fp/min.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/min.js
rename to target/cardgame/node_modules/lodash/fp/min.js
diff --git a/target/helloword/node_modules/lodash/fp/minBy.js b/target/cardgame/node_modules/lodash/fp/minBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/minBy.js
rename to target/cardgame/node_modules/lodash/fp/minBy.js
diff --git a/target/helloword/node_modules/lodash/fp/mixin.js b/target/cardgame/node_modules/lodash/fp/mixin.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/mixin.js
rename to target/cardgame/node_modules/lodash/fp/mixin.js
diff --git a/target/helloword/node_modules/lodash/fp/multiply.js b/target/cardgame/node_modules/lodash/fp/multiply.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/multiply.js
rename to target/cardgame/node_modules/lodash/fp/multiply.js
diff --git a/target/helloword/node_modules/lodash/fp/nAry.js b/target/cardgame/node_modules/lodash/fp/nAry.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/nAry.js
rename to target/cardgame/node_modules/lodash/fp/nAry.js
diff --git a/target/helloword/node_modules/lodash/fp/negate.js b/target/cardgame/node_modules/lodash/fp/negate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/negate.js
rename to target/cardgame/node_modules/lodash/fp/negate.js
diff --git a/target/helloword/node_modules/lodash/fp/next.js b/target/cardgame/node_modules/lodash/fp/next.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/next.js
rename to target/cardgame/node_modules/lodash/fp/next.js
diff --git a/target/helloword/node_modules/lodash/fp/noop.js b/target/cardgame/node_modules/lodash/fp/noop.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/noop.js
rename to target/cardgame/node_modules/lodash/fp/noop.js
diff --git a/target/helloword/node_modules/lodash/fp/now.js b/target/cardgame/node_modules/lodash/fp/now.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/now.js
rename to target/cardgame/node_modules/lodash/fp/now.js
diff --git a/target/helloword/node_modules/lodash/fp/nth.js b/target/cardgame/node_modules/lodash/fp/nth.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/nth.js
rename to target/cardgame/node_modules/lodash/fp/nth.js
diff --git a/target/helloword/node_modules/lodash/fp/nthArg.js b/target/cardgame/node_modules/lodash/fp/nthArg.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/nthArg.js
rename to target/cardgame/node_modules/lodash/fp/nthArg.js
diff --git a/target/helloword/node_modules/lodash/fp/number.js b/target/cardgame/node_modules/lodash/fp/number.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/number.js
rename to target/cardgame/node_modules/lodash/fp/number.js
diff --git a/target/helloword/node_modules/lodash/fp/object.js b/target/cardgame/node_modules/lodash/fp/object.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/object.js
rename to target/cardgame/node_modules/lodash/fp/object.js
diff --git a/target/helloword/node_modules/lodash/fp/omit.js b/target/cardgame/node_modules/lodash/fp/omit.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/omit.js
rename to target/cardgame/node_modules/lodash/fp/omit.js
diff --git a/target/helloword/node_modules/lodash/fp/omitAll.js b/target/cardgame/node_modules/lodash/fp/omitAll.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/omitAll.js
rename to target/cardgame/node_modules/lodash/fp/omitAll.js
diff --git a/target/helloword/node_modules/lodash/fp/omitBy.js b/target/cardgame/node_modules/lodash/fp/omitBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/omitBy.js
rename to target/cardgame/node_modules/lodash/fp/omitBy.js
diff --git a/target/helloword/node_modules/lodash/fp/once.js b/target/cardgame/node_modules/lodash/fp/once.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/once.js
rename to target/cardgame/node_modules/lodash/fp/once.js
diff --git a/target/helloword/node_modules/lodash/fp/orderBy.js b/target/cardgame/node_modules/lodash/fp/orderBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/orderBy.js
rename to target/cardgame/node_modules/lodash/fp/orderBy.js
diff --git a/target/helloword/node_modules/lodash/fp/over.js b/target/cardgame/node_modules/lodash/fp/over.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/over.js
rename to target/cardgame/node_modules/lodash/fp/over.js
diff --git a/target/helloword/node_modules/lodash/fp/overArgs.js b/target/cardgame/node_modules/lodash/fp/overArgs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/overArgs.js
rename to target/cardgame/node_modules/lodash/fp/overArgs.js
diff --git a/target/helloword/node_modules/lodash/fp/overEvery.js b/target/cardgame/node_modules/lodash/fp/overEvery.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/overEvery.js
rename to target/cardgame/node_modules/lodash/fp/overEvery.js
diff --git a/target/helloword/node_modules/lodash/fp/overSome.js b/target/cardgame/node_modules/lodash/fp/overSome.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/overSome.js
rename to target/cardgame/node_modules/lodash/fp/overSome.js
diff --git a/target/helloword/node_modules/lodash/fp/pad.js b/target/cardgame/node_modules/lodash/fp/pad.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pad.js
rename to target/cardgame/node_modules/lodash/fp/pad.js
diff --git a/target/helloword/node_modules/lodash/fp/padChars.js b/target/cardgame/node_modules/lodash/fp/padChars.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/padChars.js
rename to target/cardgame/node_modules/lodash/fp/padChars.js
diff --git a/target/helloword/node_modules/lodash/fp/padCharsEnd.js b/target/cardgame/node_modules/lodash/fp/padCharsEnd.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/padCharsEnd.js
rename to target/cardgame/node_modules/lodash/fp/padCharsEnd.js
diff --git a/target/helloword/node_modules/lodash/fp/padCharsStart.js b/target/cardgame/node_modules/lodash/fp/padCharsStart.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/padCharsStart.js
rename to target/cardgame/node_modules/lodash/fp/padCharsStart.js
diff --git a/target/helloword/node_modules/lodash/fp/padEnd.js b/target/cardgame/node_modules/lodash/fp/padEnd.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/padEnd.js
rename to target/cardgame/node_modules/lodash/fp/padEnd.js
diff --git a/target/helloword/node_modules/lodash/fp/padStart.js b/target/cardgame/node_modules/lodash/fp/padStart.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/padStart.js
rename to target/cardgame/node_modules/lodash/fp/padStart.js
diff --git a/target/helloword/node_modules/lodash/fp/parseInt.js b/target/cardgame/node_modules/lodash/fp/parseInt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/parseInt.js
rename to target/cardgame/node_modules/lodash/fp/parseInt.js
diff --git a/target/helloword/node_modules/lodash/fp/partial.js b/target/cardgame/node_modules/lodash/fp/partial.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/partial.js
rename to target/cardgame/node_modules/lodash/fp/partial.js
diff --git a/target/helloword/node_modules/lodash/fp/partialRight.js b/target/cardgame/node_modules/lodash/fp/partialRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/partialRight.js
rename to target/cardgame/node_modules/lodash/fp/partialRight.js
diff --git a/target/helloword/node_modules/lodash/fp/partition.js b/target/cardgame/node_modules/lodash/fp/partition.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/partition.js
rename to target/cardgame/node_modules/lodash/fp/partition.js
diff --git a/target/helloword/node_modules/lodash/fp/path.js b/target/cardgame/node_modules/lodash/fp/path.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/path.js
rename to target/cardgame/node_modules/lodash/fp/path.js
diff --git a/target/helloword/node_modules/lodash/fp/pathEq.js b/target/cardgame/node_modules/lodash/fp/pathEq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pathEq.js
rename to target/cardgame/node_modules/lodash/fp/pathEq.js
diff --git a/target/helloword/node_modules/lodash/fp/pathOr.js b/target/cardgame/node_modules/lodash/fp/pathOr.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pathOr.js
rename to target/cardgame/node_modules/lodash/fp/pathOr.js
diff --git a/target/helloword/node_modules/lodash/fp/paths.js b/target/cardgame/node_modules/lodash/fp/paths.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/paths.js
rename to target/cardgame/node_modules/lodash/fp/paths.js
diff --git a/target/helloword/node_modules/lodash/fp/pick.js b/target/cardgame/node_modules/lodash/fp/pick.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pick.js
rename to target/cardgame/node_modules/lodash/fp/pick.js
diff --git a/target/helloword/node_modules/lodash/fp/pickAll.js b/target/cardgame/node_modules/lodash/fp/pickAll.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pickAll.js
rename to target/cardgame/node_modules/lodash/fp/pickAll.js
diff --git a/target/helloword/node_modules/lodash/fp/pickBy.js b/target/cardgame/node_modules/lodash/fp/pickBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pickBy.js
rename to target/cardgame/node_modules/lodash/fp/pickBy.js
diff --git a/target/helloword/node_modules/lodash/fp/pipe.js b/target/cardgame/node_modules/lodash/fp/pipe.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pipe.js
rename to target/cardgame/node_modules/lodash/fp/pipe.js
diff --git a/target/helloword/node_modules/lodash/fp/placeholder.js b/target/cardgame/node_modules/lodash/fp/placeholder.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/placeholder.js
rename to target/cardgame/node_modules/lodash/fp/placeholder.js
diff --git a/target/helloword/node_modules/lodash/fp/plant.js b/target/cardgame/node_modules/lodash/fp/plant.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/plant.js
rename to target/cardgame/node_modules/lodash/fp/plant.js
diff --git a/target/helloword/node_modules/lodash/fp/pluck.js b/target/cardgame/node_modules/lodash/fp/pluck.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pluck.js
rename to target/cardgame/node_modules/lodash/fp/pluck.js
diff --git a/target/helloword/node_modules/lodash/fp/prop.js b/target/cardgame/node_modules/lodash/fp/prop.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/prop.js
rename to target/cardgame/node_modules/lodash/fp/prop.js
diff --git a/target/helloword/node_modules/lodash/fp/propEq.js b/target/cardgame/node_modules/lodash/fp/propEq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/propEq.js
rename to target/cardgame/node_modules/lodash/fp/propEq.js
diff --git a/target/helloword/node_modules/lodash/fp/propOr.js b/target/cardgame/node_modules/lodash/fp/propOr.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/propOr.js
rename to target/cardgame/node_modules/lodash/fp/propOr.js
diff --git a/target/helloword/node_modules/lodash/fp/property.js b/target/cardgame/node_modules/lodash/fp/property.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/property.js
rename to target/cardgame/node_modules/lodash/fp/property.js
diff --git a/target/helloword/node_modules/lodash/fp/propertyOf.js b/target/cardgame/node_modules/lodash/fp/propertyOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/propertyOf.js
rename to target/cardgame/node_modules/lodash/fp/propertyOf.js
diff --git a/target/helloword/node_modules/lodash/fp/props.js b/target/cardgame/node_modules/lodash/fp/props.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/props.js
rename to target/cardgame/node_modules/lodash/fp/props.js
diff --git a/target/helloword/node_modules/lodash/fp/pull.js b/target/cardgame/node_modules/lodash/fp/pull.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pull.js
rename to target/cardgame/node_modules/lodash/fp/pull.js
diff --git a/target/helloword/node_modules/lodash/fp/pullAll.js b/target/cardgame/node_modules/lodash/fp/pullAll.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pullAll.js
rename to target/cardgame/node_modules/lodash/fp/pullAll.js
diff --git a/target/helloword/node_modules/lodash/fp/pullAllBy.js b/target/cardgame/node_modules/lodash/fp/pullAllBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pullAllBy.js
rename to target/cardgame/node_modules/lodash/fp/pullAllBy.js
diff --git a/target/helloword/node_modules/lodash/fp/pullAllWith.js b/target/cardgame/node_modules/lodash/fp/pullAllWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pullAllWith.js
rename to target/cardgame/node_modules/lodash/fp/pullAllWith.js
diff --git a/target/helloword/node_modules/lodash/fp/pullAt.js b/target/cardgame/node_modules/lodash/fp/pullAt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/pullAt.js
rename to target/cardgame/node_modules/lodash/fp/pullAt.js
diff --git a/target/helloword/node_modules/lodash/fp/random.js b/target/cardgame/node_modules/lodash/fp/random.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/random.js
rename to target/cardgame/node_modules/lodash/fp/random.js
diff --git a/target/helloword/node_modules/lodash/fp/range.js b/target/cardgame/node_modules/lodash/fp/range.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/range.js
rename to target/cardgame/node_modules/lodash/fp/range.js
diff --git a/target/helloword/node_modules/lodash/fp/rangeRight.js b/target/cardgame/node_modules/lodash/fp/rangeRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/rangeRight.js
rename to target/cardgame/node_modules/lodash/fp/rangeRight.js
diff --git a/target/helloword/node_modules/lodash/fp/rearg.js b/target/cardgame/node_modules/lodash/fp/rearg.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/rearg.js
rename to target/cardgame/node_modules/lodash/fp/rearg.js
diff --git a/target/helloword/node_modules/lodash/fp/reduce.js b/target/cardgame/node_modules/lodash/fp/reduce.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/reduce.js
rename to target/cardgame/node_modules/lodash/fp/reduce.js
diff --git a/target/helloword/node_modules/lodash/fp/reduceRight.js b/target/cardgame/node_modules/lodash/fp/reduceRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/reduceRight.js
rename to target/cardgame/node_modules/lodash/fp/reduceRight.js
diff --git a/target/helloword/node_modules/lodash/fp/reject.js b/target/cardgame/node_modules/lodash/fp/reject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/reject.js
rename to target/cardgame/node_modules/lodash/fp/reject.js
diff --git a/target/helloword/node_modules/lodash/fp/remove.js b/target/cardgame/node_modules/lodash/fp/remove.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/remove.js
rename to target/cardgame/node_modules/lodash/fp/remove.js
diff --git a/target/helloword/node_modules/lodash/fp/repeat.js b/target/cardgame/node_modules/lodash/fp/repeat.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/repeat.js
rename to target/cardgame/node_modules/lodash/fp/repeat.js
diff --git a/target/helloword/node_modules/lodash/fp/replace.js b/target/cardgame/node_modules/lodash/fp/replace.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/replace.js
rename to target/cardgame/node_modules/lodash/fp/replace.js
diff --git a/target/helloword/node_modules/lodash/fp/rest.js b/target/cardgame/node_modules/lodash/fp/rest.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/rest.js
rename to target/cardgame/node_modules/lodash/fp/rest.js
diff --git a/target/helloword/node_modules/lodash/fp/restFrom.js b/target/cardgame/node_modules/lodash/fp/restFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/restFrom.js
rename to target/cardgame/node_modules/lodash/fp/restFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/result.js b/target/cardgame/node_modules/lodash/fp/result.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/result.js
rename to target/cardgame/node_modules/lodash/fp/result.js
diff --git a/target/helloword/node_modules/lodash/fp/reverse.js b/target/cardgame/node_modules/lodash/fp/reverse.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/reverse.js
rename to target/cardgame/node_modules/lodash/fp/reverse.js
diff --git a/target/helloword/node_modules/lodash/fp/round.js b/target/cardgame/node_modules/lodash/fp/round.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/round.js
rename to target/cardgame/node_modules/lodash/fp/round.js
diff --git a/target/helloword/node_modules/lodash/fp/sample.js b/target/cardgame/node_modules/lodash/fp/sample.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sample.js
rename to target/cardgame/node_modules/lodash/fp/sample.js
diff --git a/target/helloword/node_modules/lodash/fp/sampleSize.js b/target/cardgame/node_modules/lodash/fp/sampleSize.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sampleSize.js
rename to target/cardgame/node_modules/lodash/fp/sampleSize.js
diff --git a/target/helloword/node_modules/lodash/fp/seq.js b/target/cardgame/node_modules/lodash/fp/seq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/seq.js
rename to target/cardgame/node_modules/lodash/fp/seq.js
diff --git a/target/helloword/node_modules/lodash/fp/set.js b/target/cardgame/node_modules/lodash/fp/set.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/set.js
rename to target/cardgame/node_modules/lodash/fp/set.js
diff --git a/target/helloword/node_modules/lodash/fp/setWith.js b/target/cardgame/node_modules/lodash/fp/setWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/setWith.js
rename to target/cardgame/node_modules/lodash/fp/setWith.js
diff --git a/target/helloword/node_modules/lodash/fp/shuffle.js b/target/cardgame/node_modules/lodash/fp/shuffle.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/shuffle.js
rename to target/cardgame/node_modules/lodash/fp/shuffle.js
diff --git a/target/helloword/node_modules/lodash/fp/size.js b/target/cardgame/node_modules/lodash/fp/size.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/size.js
rename to target/cardgame/node_modules/lodash/fp/size.js
diff --git a/target/helloword/node_modules/lodash/fp/slice.js b/target/cardgame/node_modules/lodash/fp/slice.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/slice.js
rename to target/cardgame/node_modules/lodash/fp/slice.js
diff --git a/target/helloword/node_modules/lodash/fp/snakeCase.js b/target/cardgame/node_modules/lodash/fp/snakeCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/snakeCase.js
rename to target/cardgame/node_modules/lodash/fp/snakeCase.js
diff --git a/target/helloword/node_modules/lodash/fp/some.js b/target/cardgame/node_modules/lodash/fp/some.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/some.js
rename to target/cardgame/node_modules/lodash/fp/some.js
diff --git a/target/helloword/node_modules/lodash/fp/sortBy.js b/target/cardgame/node_modules/lodash/fp/sortBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortBy.js
rename to target/cardgame/node_modules/lodash/fp/sortBy.js
diff --git a/target/helloword/node_modules/lodash/fp/sortedIndex.js b/target/cardgame/node_modules/lodash/fp/sortedIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortedIndex.js
rename to target/cardgame/node_modules/lodash/fp/sortedIndex.js
diff --git a/target/helloword/node_modules/lodash/fp/sortedIndexBy.js b/target/cardgame/node_modules/lodash/fp/sortedIndexBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortedIndexBy.js
rename to target/cardgame/node_modules/lodash/fp/sortedIndexBy.js
diff --git a/target/helloword/node_modules/lodash/fp/sortedIndexOf.js b/target/cardgame/node_modules/lodash/fp/sortedIndexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortedIndexOf.js
rename to target/cardgame/node_modules/lodash/fp/sortedIndexOf.js
diff --git a/target/helloword/node_modules/lodash/fp/sortedLastIndex.js b/target/cardgame/node_modules/lodash/fp/sortedLastIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortedLastIndex.js
rename to target/cardgame/node_modules/lodash/fp/sortedLastIndex.js
diff --git a/target/helloword/node_modules/lodash/fp/sortedLastIndexBy.js b/target/cardgame/node_modules/lodash/fp/sortedLastIndexBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortedLastIndexBy.js
rename to target/cardgame/node_modules/lodash/fp/sortedLastIndexBy.js
diff --git a/target/helloword/node_modules/lodash/fp/sortedLastIndexOf.js b/target/cardgame/node_modules/lodash/fp/sortedLastIndexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortedLastIndexOf.js
rename to target/cardgame/node_modules/lodash/fp/sortedLastIndexOf.js
diff --git a/target/helloword/node_modules/lodash/fp/sortedUniq.js b/target/cardgame/node_modules/lodash/fp/sortedUniq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortedUniq.js
rename to target/cardgame/node_modules/lodash/fp/sortedUniq.js
diff --git a/target/helloword/node_modules/lodash/fp/sortedUniqBy.js b/target/cardgame/node_modules/lodash/fp/sortedUniqBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sortedUniqBy.js
rename to target/cardgame/node_modules/lodash/fp/sortedUniqBy.js
diff --git a/target/helloword/node_modules/lodash/fp/split.js b/target/cardgame/node_modules/lodash/fp/split.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/split.js
rename to target/cardgame/node_modules/lodash/fp/split.js
diff --git a/target/helloword/node_modules/lodash/fp/spread.js b/target/cardgame/node_modules/lodash/fp/spread.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/spread.js
rename to target/cardgame/node_modules/lodash/fp/spread.js
diff --git a/target/helloword/node_modules/lodash/fp/spreadFrom.js b/target/cardgame/node_modules/lodash/fp/spreadFrom.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/spreadFrom.js
rename to target/cardgame/node_modules/lodash/fp/spreadFrom.js
diff --git a/target/helloword/node_modules/lodash/fp/startCase.js b/target/cardgame/node_modules/lodash/fp/startCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/startCase.js
rename to target/cardgame/node_modules/lodash/fp/startCase.js
diff --git a/target/helloword/node_modules/lodash/fp/startsWith.js b/target/cardgame/node_modules/lodash/fp/startsWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/startsWith.js
rename to target/cardgame/node_modules/lodash/fp/startsWith.js
diff --git a/target/helloword/node_modules/lodash/fp/string.js b/target/cardgame/node_modules/lodash/fp/string.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/string.js
rename to target/cardgame/node_modules/lodash/fp/string.js
diff --git a/target/helloword/node_modules/lodash/fp/stubArray.js b/target/cardgame/node_modules/lodash/fp/stubArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/stubArray.js
rename to target/cardgame/node_modules/lodash/fp/stubArray.js
diff --git a/target/helloword/node_modules/lodash/fp/stubFalse.js b/target/cardgame/node_modules/lodash/fp/stubFalse.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/stubFalse.js
rename to target/cardgame/node_modules/lodash/fp/stubFalse.js
diff --git a/target/helloword/node_modules/lodash/fp/stubObject.js b/target/cardgame/node_modules/lodash/fp/stubObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/stubObject.js
rename to target/cardgame/node_modules/lodash/fp/stubObject.js
diff --git a/target/helloword/node_modules/lodash/fp/stubString.js b/target/cardgame/node_modules/lodash/fp/stubString.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/stubString.js
rename to target/cardgame/node_modules/lodash/fp/stubString.js
diff --git a/target/helloword/node_modules/lodash/fp/stubTrue.js b/target/cardgame/node_modules/lodash/fp/stubTrue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/stubTrue.js
rename to target/cardgame/node_modules/lodash/fp/stubTrue.js
diff --git a/target/helloword/node_modules/lodash/fp/subtract.js b/target/cardgame/node_modules/lodash/fp/subtract.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/subtract.js
rename to target/cardgame/node_modules/lodash/fp/subtract.js
diff --git a/target/helloword/node_modules/lodash/fp/sum.js b/target/cardgame/node_modules/lodash/fp/sum.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sum.js
rename to target/cardgame/node_modules/lodash/fp/sum.js
diff --git a/target/helloword/node_modules/lodash/fp/sumBy.js b/target/cardgame/node_modules/lodash/fp/sumBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/sumBy.js
rename to target/cardgame/node_modules/lodash/fp/sumBy.js
diff --git a/target/helloword/node_modules/lodash/fp/tail.js b/target/cardgame/node_modules/lodash/fp/tail.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/tail.js
rename to target/cardgame/node_modules/lodash/fp/tail.js
diff --git a/target/helloword/node_modules/lodash/fp/take.js b/target/cardgame/node_modules/lodash/fp/take.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/take.js
rename to target/cardgame/node_modules/lodash/fp/take.js
diff --git a/target/helloword/node_modules/lodash/fp/takeRight.js b/target/cardgame/node_modules/lodash/fp/takeRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/takeRight.js
rename to target/cardgame/node_modules/lodash/fp/takeRight.js
diff --git a/target/helloword/node_modules/lodash/fp/takeRightWhile.js b/target/cardgame/node_modules/lodash/fp/takeRightWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/takeRightWhile.js
rename to target/cardgame/node_modules/lodash/fp/takeRightWhile.js
diff --git a/target/helloword/node_modules/lodash/fp/takeWhile.js b/target/cardgame/node_modules/lodash/fp/takeWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/takeWhile.js
rename to target/cardgame/node_modules/lodash/fp/takeWhile.js
diff --git a/target/helloword/node_modules/lodash/fp/tap.js b/target/cardgame/node_modules/lodash/fp/tap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/tap.js
rename to target/cardgame/node_modules/lodash/fp/tap.js
diff --git a/target/helloword/node_modules/lodash/fp/template.js b/target/cardgame/node_modules/lodash/fp/template.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/template.js
rename to target/cardgame/node_modules/lodash/fp/template.js
diff --git a/target/helloword/node_modules/lodash/fp/templateSettings.js b/target/cardgame/node_modules/lodash/fp/templateSettings.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/templateSettings.js
rename to target/cardgame/node_modules/lodash/fp/templateSettings.js
diff --git a/target/helloword/node_modules/lodash/fp/throttle.js b/target/cardgame/node_modules/lodash/fp/throttle.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/throttle.js
rename to target/cardgame/node_modules/lodash/fp/throttle.js
diff --git a/target/helloword/node_modules/lodash/fp/thru.js b/target/cardgame/node_modules/lodash/fp/thru.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/thru.js
rename to target/cardgame/node_modules/lodash/fp/thru.js
diff --git a/target/helloword/node_modules/lodash/fp/times.js b/target/cardgame/node_modules/lodash/fp/times.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/times.js
rename to target/cardgame/node_modules/lodash/fp/times.js
diff --git a/target/helloword/node_modules/lodash/fp/toArray.js b/target/cardgame/node_modules/lodash/fp/toArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toArray.js
rename to target/cardgame/node_modules/lodash/fp/toArray.js
diff --git a/target/helloword/node_modules/lodash/fp/toFinite.js b/target/cardgame/node_modules/lodash/fp/toFinite.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toFinite.js
rename to target/cardgame/node_modules/lodash/fp/toFinite.js
diff --git a/target/helloword/node_modules/lodash/fp/toInteger.js b/target/cardgame/node_modules/lodash/fp/toInteger.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toInteger.js
rename to target/cardgame/node_modules/lodash/fp/toInteger.js
diff --git a/target/helloword/node_modules/lodash/fp/toIterator.js b/target/cardgame/node_modules/lodash/fp/toIterator.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toIterator.js
rename to target/cardgame/node_modules/lodash/fp/toIterator.js
diff --git a/target/helloword/node_modules/lodash/fp/toJSON.js b/target/cardgame/node_modules/lodash/fp/toJSON.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toJSON.js
rename to target/cardgame/node_modules/lodash/fp/toJSON.js
diff --git a/target/helloword/node_modules/lodash/fp/toLength.js b/target/cardgame/node_modules/lodash/fp/toLength.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toLength.js
rename to target/cardgame/node_modules/lodash/fp/toLength.js
diff --git a/target/helloword/node_modules/lodash/fp/toLower.js b/target/cardgame/node_modules/lodash/fp/toLower.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toLower.js
rename to target/cardgame/node_modules/lodash/fp/toLower.js
diff --git a/target/helloword/node_modules/lodash/fp/toNumber.js b/target/cardgame/node_modules/lodash/fp/toNumber.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toNumber.js
rename to target/cardgame/node_modules/lodash/fp/toNumber.js
diff --git a/target/helloword/node_modules/lodash/fp/toPairs.js b/target/cardgame/node_modules/lodash/fp/toPairs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toPairs.js
rename to target/cardgame/node_modules/lodash/fp/toPairs.js
diff --git a/target/helloword/node_modules/lodash/fp/toPairsIn.js b/target/cardgame/node_modules/lodash/fp/toPairsIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toPairsIn.js
rename to target/cardgame/node_modules/lodash/fp/toPairsIn.js
diff --git a/target/helloword/node_modules/lodash/fp/toPath.js b/target/cardgame/node_modules/lodash/fp/toPath.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toPath.js
rename to target/cardgame/node_modules/lodash/fp/toPath.js
diff --git a/target/helloword/node_modules/lodash/fp/toPlainObject.js b/target/cardgame/node_modules/lodash/fp/toPlainObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toPlainObject.js
rename to target/cardgame/node_modules/lodash/fp/toPlainObject.js
diff --git a/target/helloword/node_modules/lodash/fp/toSafeInteger.js b/target/cardgame/node_modules/lodash/fp/toSafeInteger.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toSafeInteger.js
rename to target/cardgame/node_modules/lodash/fp/toSafeInteger.js
diff --git a/target/helloword/node_modules/lodash/fp/toString.js b/target/cardgame/node_modules/lodash/fp/toString.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toString.js
rename to target/cardgame/node_modules/lodash/fp/toString.js
diff --git a/target/helloword/node_modules/lodash/fp/toUpper.js b/target/cardgame/node_modules/lodash/fp/toUpper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/toUpper.js
rename to target/cardgame/node_modules/lodash/fp/toUpper.js
diff --git a/target/helloword/node_modules/lodash/fp/transform.js b/target/cardgame/node_modules/lodash/fp/transform.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/transform.js
rename to target/cardgame/node_modules/lodash/fp/transform.js
diff --git a/target/helloword/node_modules/lodash/fp/trim.js b/target/cardgame/node_modules/lodash/fp/trim.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/trim.js
rename to target/cardgame/node_modules/lodash/fp/trim.js
diff --git a/target/helloword/node_modules/lodash/fp/trimChars.js b/target/cardgame/node_modules/lodash/fp/trimChars.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/trimChars.js
rename to target/cardgame/node_modules/lodash/fp/trimChars.js
diff --git a/target/helloword/node_modules/lodash/fp/trimCharsEnd.js b/target/cardgame/node_modules/lodash/fp/trimCharsEnd.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/trimCharsEnd.js
rename to target/cardgame/node_modules/lodash/fp/trimCharsEnd.js
diff --git a/target/helloword/node_modules/lodash/fp/trimCharsStart.js b/target/cardgame/node_modules/lodash/fp/trimCharsStart.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/trimCharsStart.js
rename to target/cardgame/node_modules/lodash/fp/trimCharsStart.js
diff --git a/target/helloword/node_modules/lodash/fp/trimEnd.js b/target/cardgame/node_modules/lodash/fp/trimEnd.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/trimEnd.js
rename to target/cardgame/node_modules/lodash/fp/trimEnd.js
diff --git a/target/helloword/node_modules/lodash/fp/trimStart.js b/target/cardgame/node_modules/lodash/fp/trimStart.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/trimStart.js
rename to target/cardgame/node_modules/lodash/fp/trimStart.js
diff --git a/target/helloword/node_modules/lodash/fp/truncate.js b/target/cardgame/node_modules/lodash/fp/truncate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/truncate.js
rename to target/cardgame/node_modules/lodash/fp/truncate.js
diff --git a/target/helloword/node_modules/lodash/fp/unapply.js b/target/cardgame/node_modules/lodash/fp/unapply.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unapply.js
rename to target/cardgame/node_modules/lodash/fp/unapply.js
diff --git a/target/helloword/node_modules/lodash/fp/unary.js b/target/cardgame/node_modules/lodash/fp/unary.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unary.js
rename to target/cardgame/node_modules/lodash/fp/unary.js
diff --git a/target/helloword/node_modules/lodash/fp/unescape.js b/target/cardgame/node_modules/lodash/fp/unescape.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unescape.js
rename to target/cardgame/node_modules/lodash/fp/unescape.js
diff --git a/target/helloword/node_modules/lodash/fp/union.js b/target/cardgame/node_modules/lodash/fp/union.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/union.js
rename to target/cardgame/node_modules/lodash/fp/union.js
diff --git a/target/helloword/node_modules/lodash/fp/unionBy.js b/target/cardgame/node_modules/lodash/fp/unionBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unionBy.js
rename to target/cardgame/node_modules/lodash/fp/unionBy.js
diff --git a/target/helloword/node_modules/lodash/fp/unionWith.js b/target/cardgame/node_modules/lodash/fp/unionWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unionWith.js
rename to target/cardgame/node_modules/lodash/fp/unionWith.js
diff --git a/target/helloword/node_modules/lodash/fp/uniq.js b/target/cardgame/node_modules/lodash/fp/uniq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/uniq.js
rename to target/cardgame/node_modules/lodash/fp/uniq.js
diff --git a/target/helloword/node_modules/lodash/fp/uniqBy.js b/target/cardgame/node_modules/lodash/fp/uniqBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/uniqBy.js
rename to target/cardgame/node_modules/lodash/fp/uniqBy.js
diff --git a/target/helloword/node_modules/lodash/fp/uniqWith.js b/target/cardgame/node_modules/lodash/fp/uniqWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/uniqWith.js
rename to target/cardgame/node_modules/lodash/fp/uniqWith.js
diff --git a/target/helloword/node_modules/lodash/fp/uniqueId.js b/target/cardgame/node_modules/lodash/fp/uniqueId.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/uniqueId.js
rename to target/cardgame/node_modules/lodash/fp/uniqueId.js
diff --git a/target/helloword/node_modules/lodash/fp/unnest.js b/target/cardgame/node_modules/lodash/fp/unnest.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unnest.js
rename to target/cardgame/node_modules/lodash/fp/unnest.js
diff --git a/target/helloword/node_modules/lodash/fp/unset.js b/target/cardgame/node_modules/lodash/fp/unset.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unset.js
rename to target/cardgame/node_modules/lodash/fp/unset.js
diff --git a/target/helloword/node_modules/lodash/fp/unzip.js b/target/cardgame/node_modules/lodash/fp/unzip.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unzip.js
rename to target/cardgame/node_modules/lodash/fp/unzip.js
diff --git a/target/helloword/node_modules/lodash/fp/unzipWith.js b/target/cardgame/node_modules/lodash/fp/unzipWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/unzipWith.js
rename to target/cardgame/node_modules/lodash/fp/unzipWith.js
diff --git a/target/helloword/node_modules/lodash/fp/update.js b/target/cardgame/node_modules/lodash/fp/update.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/update.js
rename to target/cardgame/node_modules/lodash/fp/update.js
diff --git a/target/helloword/node_modules/lodash/fp/updateWith.js b/target/cardgame/node_modules/lodash/fp/updateWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/updateWith.js
rename to target/cardgame/node_modules/lodash/fp/updateWith.js
diff --git a/target/helloword/node_modules/lodash/fp/upperCase.js b/target/cardgame/node_modules/lodash/fp/upperCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/upperCase.js
rename to target/cardgame/node_modules/lodash/fp/upperCase.js
diff --git a/target/helloword/node_modules/lodash/fp/upperFirst.js b/target/cardgame/node_modules/lodash/fp/upperFirst.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/upperFirst.js
rename to target/cardgame/node_modules/lodash/fp/upperFirst.js
diff --git a/target/helloword/node_modules/lodash/fp/useWith.js b/target/cardgame/node_modules/lodash/fp/useWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/useWith.js
rename to target/cardgame/node_modules/lodash/fp/useWith.js
diff --git a/target/helloword/node_modules/lodash/fp/util.js b/target/cardgame/node_modules/lodash/fp/util.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/util.js
rename to target/cardgame/node_modules/lodash/fp/util.js
diff --git a/target/helloword/node_modules/lodash/fp/value.js b/target/cardgame/node_modules/lodash/fp/value.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/value.js
rename to target/cardgame/node_modules/lodash/fp/value.js
diff --git a/target/helloword/node_modules/lodash/fp/valueOf.js b/target/cardgame/node_modules/lodash/fp/valueOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/valueOf.js
rename to target/cardgame/node_modules/lodash/fp/valueOf.js
diff --git a/target/helloword/node_modules/lodash/fp/values.js b/target/cardgame/node_modules/lodash/fp/values.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/values.js
rename to target/cardgame/node_modules/lodash/fp/values.js
diff --git a/target/helloword/node_modules/lodash/fp/valuesIn.js b/target/cardgame/node_modules/lodash/fp/valuesIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/valuesIn.js
rename to target/cardgame/node_modules/lodash/fp/valuesIn.js
diff --git a/target/helloword/node_modules/lodash/fp/whereEq.js b/target/cardgame/node_modules/lodash/fp/whereEq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/whereEq.js
rename to target/cardgame/node_modules/lodash/fp/whereEq.js
diff --git a/target/helloword/node_modules/lodash/fp/without.js b/target/cardgame/node_modules/lodash/fp/without.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/without.js
rename to target/cardgame/node_modules/lodash/fp/without.js
diff --git a/target/helloword/node_modules/lodash/fp/words.js b/target/cardgame/node_modules/lodash/fp/words.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/words.js
rename to target/cardgame/node_modules/lodash/fp/words.js
diff --git a/target/helloword/node_modules/lodash/fp/wrap.js b/target/cardgame/node_modules/lodash/fp/wrap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/wrap.js
rename to target/cardgame/node_modules/lodash/fp/wrap.js
diff --git a/target/helloword/node_modules/lodash/fp/wrapperAt.js b/target/cardgame/node_modules/lodash/fp/wrapperAt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/wrapperAt.js
rename to target/cardgame/node_modules/lodash/fp/wrapperAt.js
diff --git a/target/helloword/node_modules/lodash/fp/wrapperChain.js b/target/cardgame/node_modules/lodash/fp/wrapperChain.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/wrapperChain.js
rename to target/cardgame/node_modules/lodash/fp/wrapperChain.js
diff --git a/target/helloword/node_modules/lodash/fp/wrapperLodash.js b/target/cardgame/node_modules/lodash/fp/wrapperLodash.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/wrapperLodash.js
rename to target/cardgame/node_modules/lodash/fp/wrapperLodash.js
diff --git a/target/helloword/node_modules/lodash/fp/wrapperReverse.js b/target/cardgame/node_modules/lodash/fp/wrapperReverse.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/wrapperReverse.js
rename to target/cardgame/node_modules/lodash/fp/wrapperReverse.js
diff --git a/target/helloword/node_modules/lodash/fp/wrapperValue.js b/target/cardgame/node_modules/lodash/fp/wrapperValue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/wrapperValue.js
rename to target/cardgame/node_modules/lodash/fp/wrapperValue.js
diff --git a/target/helloword/node_modules/lodash/fp/xor.js b/target/cardgame/node_modules/lodash/fp/xor.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/xor.js
rename to target/cardgame/node_modules/lodash/fp/xor.js
diff --git a/target/helloword/node_modules/lodash/fp/xorBy.js b/target/cardgame/node_modules/lodash/fp/xorBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/xorBy.js
rename to target/cardgame/node_modules/lodash/fp/xorBy.js
diff --git a/target/helloword/node_modules/lodash/fp/xorWith.js b/target/cardgame/node_modules/lodash/fp/xorWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/xorWith.js
rename to target/cardgame/node_modules/lodash/fp/xorWith.js
diff --git a/target/helloword/node_modules/lodash/fp/zip.js b/target/cardgame/node_modules/lodash/fp/zip.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/zip.js
rename to target/cardgame/node_modules/lodash/fp/zip.js
diff --git a/target/helloword/node_modules/lodash/fp/zipObj.js b/target/cardgame/node_modules/lodash/fp/zipObj.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/zipObj.js
rename to target/cardgame/node_modules/lodash/fp/zipObj.js
diff --git a/target/helloword/node_modules/lodash/fp/zipObject.js b/target/cardgame/node_modules/lodash/fp/zipObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/zipObject.js
rename to target/cardgame/node_modules/lodash/fp/zipObject.js
diff --git a/target/helloword/node_modules/lodash/fp/zipObjectDeep.js b/target/cardgame/node_modules/lodash/fp/zipObjectDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/zipObjectDeep.js
rename to target/cardgame/node_modules/lodash/fp/zipObjectDeep.js
diff --git a/target/helloword/node_modules/lodash/fp/zipWith.js b/target/cardgame/node_modules/lodash/fp/zipWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fp/zipWith.js
rename to target/cardgame/node_modules/lodash/fp/zipWith.js
diff --git a/target/helloword/node_modules/lodash/fromPairs.js b/target/cardgame/node_modules/lodash/fromPairs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/fromPairs.js
rename to target/cardgame/node_modules/lodash/fromPairs.js
diff --git a/target/helloword/node_modules/lodash/function.js b/target/cardgame/node_modules/lodash/function.js
similarity index 100%
rename from target/helloword/node_modules/lodash/function.js
rename to target/cardgame/node_modules/lodash/function.js
diff --git a/target/helloword/node_modules/lodash/functions.js b/target/cardgame/node_modules/lodash/functions.js
similarity index 100%
rename from target/helloword/node_modules/lodash/functions.js
rename to target/cardgame/node_modules/lodash/functions.js
diff --git a/target/helloword/node_modules/lodash/functionsIn.js b/target/cardgame/node_modules/lodash/functionsIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/functionsIn.js
rename to target/cardgame/node_modules/lodash/functionsIn.js
diff --git a/target/helloword/node_modules/lodash/get.js b/target/cardgame/node_modules/lodash/get.js
similarity index 100%
rename from target/helloword/node_modules/lodash/get.js
rename to target/cardgame/node_modules/lodash/get.js
diff --git a/target/helloword/node_modules/lodash/groupBy.js b/target/cardgame/node_modules/lodash/groupBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/groupBy.js
rename to target/cardgame/node_modules/lodash/groupBy.js
diff --git a/target/helloword/node_modules/lodash/gt.js b/target/cardgame/node_modules/lodash/gt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/gt.js
rename to target/cardgame/node_modules/lodash/gt.js
diff --git a/target/helloword/node_modules/lodash/gte.js b/target/cardgame/node_modules/lodash/gte.js
similarity index 100%
rename from target/helloword/node_modules/lodash/gte.js
rename to target/cardgame/node_modules/lodash/gte.js
diff --git a/target/helloword/node_modules/lodash/has.js b/target/cardgame/node_modules/lodash/has.js
similarity index 100%
rename from target/helloword/node_modules/lodash/has.js
rename to target/cardgame/node_modules/lodash/has.js
diff --git a/target/helloword/node_modules/lodash/hasIn.js b/target/cardgame/node_modules/lodash/hasIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/hasIn.js
rename to target/cardgame/node_modules/lodash/hasIn.js
diff --git a/target/helloword/node_modules/lodash/head.js b/target/cardgame/node_modules/lodash/head.js
similarity index 100%
rename from target/helloword/node_modules/lodash/head.js
rename to target/cardgame/node_modules/lodash/head.js
diff --git a/target/helloword/node_modules/lodash/identity.js b/target/cardgame/node_modules/lodash/identity.js
similarity index 100%
rename from target/helloword/node_modules/lodash/identity.js
rename to target/cardgame/node_modules/lodash/identity.js
diff --git a/target/helloword/node_modules/lodash/inRange.js b/target/cardgame/node_modules/lodash/inRange.js
similarity index 100%
rename from target/helloword/node_modules/lodash/inRange.js
rename to target/cardgame/node_modules/lodash/inRange.js
diff --git a/target/helloword/node_modules/lodash/includes.js b/target/cardgame/node_modules/lodash/includes.js
similarity index 100%
rename from target/helloword/node_modules/lodash/includes.js
rename to target/cardgame/node_modules/lodash/includes.js
diff --git a/target/helloword/node_modules/lodash/index.js b/target/cardgame/node_modules/lodash/index.js
similarity index 100%
rename from target/helloword/node_modules/lodash/index.js
rename to target/cardgame/node_modules/lodash/index.js
diff --git a/target/helloword/node_modules/lodash/indexOf.js b/target/cardgame/node_modules/lodash/indexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/indexOf.js
rename to target/cardgame/node_modules/lodash/indexOf.js
diff --git a/target/helloword/node_modules/lodash/initial.js b/target/cardgame/node_modules/lodash/initial.js
similarity index 100%
rename from target/helloword/node_modules/lodash/initial.js
rename to target/cardgame/node_modules/lodash/initial.js
diff --git a/target/helloword/node_modules/lodash/intersection.js b/target/cardgame/node_modules/lodash/intersection.js
similarity index 100%
rename from target/helloword/node_modules/lodash/intersection.js
rename to target/cardgame/node_modules/lodash/intersection.js
diff --git a/target/helloword/node_modules/lodash/intersectionBy.js b/target/cardgame/node_modules/lodash/intersectionBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/intersectionBy.js
rename to target/cardgame/node_modules/lodash/intersectionBy.js
diff --git a/target/helloword/node_modules/lodash/intersectionWith.js b/target/cardgame/node_modules/lodash/intersectionWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/intersectionWith.js
rename to target/cardgame/node_modules/lodash/intersectionWith.js
diff --git a/target/helloword/node_modules/lodash/invert.js b/target/cardgame/node_modules/lodash/invert.js
similarity index 100%
rename from target/helloword/node_modules/lodash/invert.js
rename to target/cardgame/node_modules/lodash/invert.js
diff --git a/target/helloword/node_modules/lodash/invertBy.js b/target/cardgame/node_modules/lodash/invertBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/invertBy.js
rename to target/cardgame/node_modules/lodash/invertBy.js
diff --git a/target/helloword/node_modules/lodash/invoke.js b/target/cardgame/node_modules/lodash/invoke.js
similarity index 100%
rename from target/helloword/node_modules/lodash/invoke.js
rename to target/cardgame/node_modules/lodash/invoke.js
diff --git a/target/helloword/node_modules/lodash/invokeMap.js b/target/cardgame/node_modules/lodash/invokeMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/invokeMap.js
rename to target/cardgame/node_modules/lodash/invokeMap.js
diff --git a/target/helloword/node_modules/lodash/isArguments.js b/target/cardgame/node_modules/lodash/isArguments.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isArguments.js
rename to target/cardgame/node_modules/lodash/isArguments.js
diff --git a/target/helloword/node_modules/lodash/isArray.js b/target/cardgame/node_modules/lodash/isArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isArray.js
rename to target/cardgame/node_modules/lodash/isArray.js
diff --git a/target/helloword/node_modules/lodash/isArrayBuffer.js b/target/cardgame/node_modules/lodash/isArrayBuffer.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isArrayBuffer.js
rename to target/cardgame/node_modules/lodash/isArrayBuffer.js
diff --git a/target/helloword/node_modules/lodash/isArrayLike.js b/target/cardgame/node_modules/lodash/isArrayLike.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isArrayLike.js
rename to target/cardgame/node_modules/lodash/isArrayLike.js
diff --git a/target/helloword/node_modules/lodash/isArrayLikeObject.js b/target/cardgame/node_modules/lodash/isArrayLikeObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isArrayLikeObject.js
rename to target/cardgame/node_modules/lodash/isArrayLikeObject.js
diff --git a/target/helloword/node_modules/lodash/isBoolean.js b/target/cardgame/node_modules/lodash/isBoolean.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isBoolean.js
rename to target/cardgame/node_modules/lodash/isBoolean.js
diff --git a/target/helloword/node_modules/lodash/isBuffer.js b/target/cardgame/node_modules/lodash/isBuffer.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isBuffer.js
rename to target/cardgame/node_modules/lodash/isBuffer.js
diff --git a/target/helloword/node_modules/lodash/isDate.js b/target/cardgame/node_modules/lodash/isDate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isDate.js
rename to target/cardgame/node_modules/lodash/isDate.js
diff --git a/target/helloword/node_modules/lodash/isElement.js b/target/cardgame/node_modules/lodash/isElement.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isElement.js
rename to target/cardgame/node_modules/lodash/isElement.js
diff --git a/target/helloword/node_modules/lodash/isEmpty.js b/target/cardgame/node_modules/lodash/isEmpty.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isEmpty.js
rename to target/cardgame/node_modules/lodash/isEmpty.js
diff --git a/target/helloword/node_modules/lodash/isEqual.js b/target/cardgame/node_modules/lodash/isEqual.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isEqual.js
rename to target/cardgame/node_modules/lodash/isEqual.js
diff --git a/target/helloword/node_modules/lodash/isEqualWith.js b/target/cardgame/node_modules/lodash/isEqualWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isEqualWith.js
rename to target/cardgame/node_modules/lodash/isEqualWith.js
diff --git a/target/helloword/node_modules/lodash/isError.js b/target/cardgame/node_modules/lodash/isError.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isError.js
rename to target/cardgame/node_modules/lodash/isError.js
diff --git a/target/helloword/node_modules/lodash/isFinite.js b/target/cardgame/node_modules/lodash/isFinite.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isFinite.js
rename to target/cardgame/node_modules/lodash/isFinite.js
diff --git a/target/helloword/node_modules/lodash/isFunction.js b/target/cardgame/node_modules/lodash/isFunction.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isFunction.js
rename to target/cardgame/node_modules/lodash/isFunction.js
diff --git a/target/helloword/node_modules/lodash/isInteger.js b/target/cardgame/node_modules/lodash/isInteger.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isInteger.js
rename to target/cardgame/node_modules/lodash/isInteger.js
diff --git a/target/helloword/node_modules/lodash/isLength.js b/target/cardgame/node_modules/lodash/isLength.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isLength.js
rename to target/cardgame/node_modules/lodash/isLength.js
diff --git a/target/helloword/node_modules/lodash/isMap.js b/target/cardgame/node_modules/lodash/isMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isMap.js
rename to target/cardgame/node_modules/lodash/isMap.js
diff --git a/target/helloword/node_modules/lodash/isMatch.js b/target/cardgame/node_modules/lodash/isMatch.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isMatch.js
rename to target/cardgame/node_modules/lodash/isMatch.js
diff --git a/target/helloword/node_modules/lodash/isMatchWith.js b/target/cardgame/node_modules/lodash/isMatchWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isMatchWith.js
rename to target/cardgame/node_modules/lodash/isMatchWith.js
diff --git a/target/helloword/node_modules/lodash/isNaN.js b/target/cardgame/node_modules/lodash/isNaN.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isNaN.js
rename to target/cardgame/node_modules/lodash/isNaN.js
diff --git a/target/helloword/node_modules/lodash/isNative.js b/target/cardgame/node_modules/lodash/isNative.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isNative.js
rename to target/cardgame/node_modules/lodash/isNative.js
diff --git a/target/helloword/node_modules/lodash/isNil.js b/target/cardgame/node_modules/lodash/isNil.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isNil.js
rename to target/cardgame/node_modules/lodash/isNil.js
diff --git a/target/helloword/node_modules/lodash/isNull.js b/target/cardgame/node_modules/lodash/isNull.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isNull.js
rename to target/cardgame/node_modules/lodash/isNull.js
diff --git a/target/helloword/node_modules/lodash/isNumber.js b/target/cardgame/node_modules/lodash/isNumber.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isNumber.js
rename to target/cardgame/node_modules/lodash/isNumber.js
diff --git a/target/helloword/node_modules/lodash/isObject.js b/target/cardgame/node_modules/lodash/isObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isObject.js
rename to target/cardgame/node_modules/lodash/isObject.js
diff --git a/target/helloword/node_modules/lodash/isObjectLike.js b/target/cardgame/node_modules/lodash/isObjectLike.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isObjectLike.js
rename to target/cardgame/node_modules/lodash/isObjectLike.js
diff --git a/target/helloword/node_modules/lodash/isPlainObject.js b/target/cardgame/node_modules/lodash/isPlainObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isPlainObject.js
rename to target/cardgame/node_modules/lodash/isPlainObject.js
diff --git a/target/helloword/node_modules/lodash/isRegExp.js b/target/cardgame/node_modules/lodash/isRegExp.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isRegExp.js
rename to target/cardgame/node_modules/lodash/isRegExp.js
diff --git a/target/helloword/node_modules/lodash/isSafeInteger.js b/target/cardgame/node_modules/lodash/isSafeInteger.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isSafeInteger.js
rename to target/cardgame/node_modules/lodash/isSafeInteger.js
diff --git a/target/helloword/node_modules/lodash/isSet.js b/target/cardgame/node_modules/lodash/isSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isSet.js
rename to target/cardgame/node_modules/lodash/isSet.js
diff --git a/target/helloword/node_modules/lodash/isString.js b/target/cardgame/node_modules/lodash/isString.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isString.js
rename to target/cardgame/node_modules/lodash/isString.js
diff --git a/target/helloword/node_modules/lodash/isSymbol.js b/target/cardgame/node_modules/lodash/isSymbol.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isSymbol.js
rename to target/cardgame/node_modules/lodash/isSymbol.js
diff --git a/target/helloword/node_modules/lodash/isTypedArray.js b/target/cardgame/node_modules/lodash/isTypedArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isTypedArray.js
rename to target/cardgame/node_modules/lodash/isTypedArray.js
diff --git a/target/helloword/node_modules/lodash/isUndefined.js b/target/cardgame/node_modules/lodash/isUndefined.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isUndefined.js
rename to target/cardgame/node_modules/lodash/isUndefined.js
diff --git a/target/helloword/node_modules/lodash/isWeakMap.js b/target/cardgame/node_modules/lodash/isWeakMap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isWeakMap.js
rename to target/cardgame/node_modules/lodash/isWeakMap.js
diff --git a/target/helloword/node_modules/lodash/isWeakSet.js b/target/cardgame/node_modules/lodash/isWeakSet.js
similarity index 100%
rename from target/helloword/node_modules/lodash/isWeakSet.js
rename to target/cardgame/node_modules/lodash/isWeakSet.js
diff --git a/target/helloword/node_modules/lodash/iteratee.js b/target/cardgame/node_modules/lodash/iteratee.js
similarity index 100%
rename from target/helloword/node_modules/lodash/iteratee.js
rename to target/cardgame/node_modules/lodash/iteratee.js
diff --git a/target/helloword/node_modules/lodash/join.js b/target/cardgame/node_modules/lodash/join.js
similarity index 100%
rename from target/helloword/node_modules/lodash/join.js
rename to target/cardgame/node_modules/lodash/join.js
diff --git a/target/helloword/node_modules/lodash/kebabCase.js b/target/cardgame/node_modules/lodash/kebabCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/kebabCase.js
rename to target/cardgame/node_modules/lodash/kebabCase.js
diff --git a/target/helloword/node_modules/lodash/keyBy.js b/target/cardgame/node_modules/lodash/keyBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/keyBy.js
rename to target/cardgame/node_modules/lodash/keyBy.js
diff --git a/target/helloword/node_modules/lodash/keys.js b/target/cardgame/node_modules/lodash/keys.js
similarity index 100%
rename from target/helloword/node_modules/lodash/keys.js
rename to target/cardgame/node_modules/lodash/keys.js
diff --git a/target/helloword/node_modules/lodash/keysIn.js b/target/cardgame/node_modules/lodash/keysIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/keysIn.js
rename to target/cardgame/node_modules/lodash/keysIn.js
diff --git a/target/helloword/node_modules/lodash/lang.js b/target/cardgame/node_modules/lodash/lang.js
similarity index 100%
rename from target/helloword/node_modules/lodash/lang.js
rename to target/cardgame/node_modules/lodash/lang.js
diff --git a/target/helloword/node_modules/lodash/last.js b/target/cardgame/node_modules/lodash/last.js
similarity index 100%
rename from target/helloword/node_modules/lodash/last.js
rename to target/cardgame/node_modules/lodash/last.js
diff --git a/target/helloword/node_modules/lodash/lastIndexOf.js b/target/cardgame/node_modules/lodash/lastIndexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/lastIndexOf.js
rename to target/cardgame/node_modules/lodash/lastIndexOf.js
diff --git a/target/helloword/node_modules/lodash/lodash.js b/target/cardgame/node_modules/lodash/lodash.js
similarity index 100%
rename from target/helloword/node_modules/lodash/lodash.js
rename to target/cardgame/node_modules/lodash/lodash.js
diff --git a/target/helloword/node_modules/lodash/lodash.min.js b/target/cardgame/node_modules/lodash/lodash.min.js
similarity index 100%
rename from target/helloword/node_modules/lodash/lodash.min.js
rename to target/cardgame/node_modules/lodash/lodash.min.js
diff --git a/target/helloword/node_modules/lodash/lowerCase.js b/target/cardgame/node_modules/lodash/lowerCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/lowerCase.js
rename to target/cardgame/node_modules/lodash/lowerCase.js
diff --git a/target/helloword/node_modules/lodash/lowerFirst.js b/target/cardgame/node_modules/lodash/lowerFirst.js
similarity index 100%
rename from target/helloword/node_modules/lodash/lowerFirst.js
rename to target/cardgame/node_modules/lodash/lowerFirst.js
diff --git a/target/helloword/node_modules/lodash/lt.js b/target/cardgame/node_modules/lodash/lt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/lt.js
rename to target/cardgame/node_modules/lodash/lt.js
diff --git a/target/helloword/node_modules/lodash/lte.js b/target/cardgame/node_modules/lodash/lte.js
similarity index 100%
rename from target/helloword/node_modules/lodash/lte.js
rename to target/cardgame/node_modules/lodash/lte.js
diff --git a/target/helloword/node_modules/lodash/map.js b/target/cardgame/node_modules/lodash/map.js
similarity index 100%
rename from target/helloword/node_modules/lodash/map.js
rename to target/cardgame/node_modules/lodash/map.js
diff --git a/target/helloword/node_modules/lodash/mapKeys.js b/target/cardgame/node_modules/lodash/mapKeys.js
similarity index 100%
rename from target/helloword/node_modules/lodash/mapKeys.js
rename to target/cardgame/node_modules/lodash/mapKeys.js
diff --git a/target/helloword/node_modules/lodash/mapValues.js b/target/cardgame/node_modules/lodash/mapValues.js
similarity index 100%
rename from target/helloword/node_modules/lodash/mapValues.js
rename to target/cardgame/node_modules/lodash/mapValues.js
diff --git a/target/helloword/node_modules/lodash/matches.js b/target/cardgame/node_modules/lodash/matches.js
similarity index 100%
rename from target/helloword/node_modules/lodash/matches.js
rename to target/cardgame/node_modules/lodash/matches.js
diff --git a/target/helloword/node_modules/lodash/matchesProperty.js b/target/cardgame/node_modules/lodash/matchesProperty.js
similarity index 100%
rename from target/helloword/node_modules/lodash/matchesProperty.js
rename to target/cardgame/node_modules/lodash/matchesProperty.js
diff --git a/target/helloword/node_modules/lodash/math.js b/target/cardgame/node_modules/lodash/math.js
similarity index 100%
rename from target/helloword/node_modules/lodash/math.js
rename to target/cardgame/node_modules/lodash/math.js
diff --git a/target/helloword/node_modules/lodash/max.js b/target/cardgame/node_modules/lodash/max.js
similarity index 100%
rename from target/helloword/node_modules/lodash/max.js
rename to target/cardgame/node_modules/lodash/max.js
diff --git a/target/helloword/node_modules/lodash/maxBy.js b/target/cardgame/node_modules/lodash/maxBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/maxBy.js
rename to target/cardgame/node_modules/lodash/maxBy.js
diff --git a/target/helloword/node_modules/lodash/mean.js b/target/cardgame/node_modules/lodash/mean.js
similarity index 100%
rename from target/helloword/node_modules/lodash/mean.js
rename to target/cardgame/node_modules/lodash/mean.js
diff --git a/target/helloword/node_modules/lodash/meanBy.js b/target/cardgame/node_modules/lodash/meanBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/meanBy.js
rename to target/cardgame/node_modules/lodash/meanBy.js
diff --git a/target/helloword/node_modules/lodash/memoize.js b/target/cardgame/node_modules/lodash/memoize.js
similarity index 100%
rename from target/helloword/node_modules/lodash/memoize.js
rename to target/cardgame/node_modules/lodash/memoize.js
diff --git a/target/helloword/node_modules/lodash/merge.js b/target/cardgame/node_modules/lodash/merge.js
similarity index 100%
rename from target/helloword/node_modules/lodash/merge.js
rename to target/cardgame/node_modules/lodash/merge.js
diff --git a/target/helloword/node_modules/lodash/mergeWith.js b/target/cardgame/node_modules/lodash/mergeWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/mergeWith.js
rename to target/cardgame/node_modules/lodash/mergeWith.js
diff --git a/target/helloword/node_modules/lodash/method.js b/target/cardgame/node_modules/lodash/method.js
similarity index 100%
rename from target/helloword/node_modules/lodash/method.js
rename to target/cardgame/node_modules/lodash/method.js
diff --git a/target/helloword/node_modules/lodash/methodOf.js b/target/cardgame/node_modules/lodash/methodOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/methodOf.js
rename to target/cardgame/node_modules/lodash/methodOf.js
diff --git a/target/helloword/node_modules/lodash/min.js b/target/cardgame/node_modules/lodash/min.js
similarity index 100%
rename from target/helloword/node_modules/lodash/min.js
rename to target/cardgame/node_modules/lodash/min.js
diff --git a/target/helloword/node_modules/lodash/minBy.js b/target/cardgame/node_modules/lodash/minBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/minBy.js
rename to target/cardgame/node_modules/lodash/minBy.js
diff --git a/target/helloword/node_modules/lodash/mixin.js b/target/cardgame/node_modules/lodash/mixin.js
similarity index 100%
rename from target/helloword/node_modules/lodash/mixin.js
rename to target/cardgame/node_modules/lodash/mixin.js
diff --git a/target/helloword/node_modules/lodash/multiply.js b/target/cardgame/node_modules/lodash/multiply.js
similarity index 100%
rename from target/helloword/node_modules/lodash/multiply.js
rename to target/cardgame/node_modules/lodash/multiply.js
diff --git a/target/helloword/node_modules/lodash/negate.js b/target/cardgame/node_modules/lodash/negate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/negate.js
rename to target/cardgame/node_modules/lodash/negate.js
diff --git a/target/helloword/node_modules/lodash/next.js b/target/cardgame/node_modules/lodash/next.js
similarity index 100%
rename from target/helloword/node_modules/lodash/next.js
rename to target/cardgame/node_modules/lodash/next.js
diff --git a/target/helloword/node_modules/lodash/noop.js b/target/cardgame/node_modules/lodash/noop.js
similarity index 100%
rename from target/helloword/node_modules/lodash/noop.js
rename to target/cardgame/node_modules/lodash/noop.js
diff --git a/target/helloword/node_modules/lodash/now.js b/target/cardgame/node_modules/lodash/now.js
similarity index 100%
rename from target/helloword/node_modules/lodash/now.js
rename to target/cardgame/node_modules/lodash/now.js
diff --git a/target/helloword/node_modules/lodash/nth.js b/target/cardgame/node_modules/lodash/nth.js
similarity index 100%
rename from target/helloword/node_modules/lodash/nth.js
rename to target/cardgame/node_modules/lodash/nth.js
diff --git a/target/helloword/node_modules/lodash/nthArg.js b/target/cardgame/node_modules/lodash/nthArg.js
similarity index 100%
rename from target/helloword/node_modules/lodash/nthArg.js
rename to target/cardgame/node_modules/lodash/nthArg.js
diff --git a/target/helloword/node_modules/lodash/number.js b/target/cardgame/node_modules/lodash/number.js
similarity index 100%
rename from target/helloword/node_modules/lodash/number.js
rename to target/cardgame/node_modules/lodash/number.js
diff --git a/target/helloword/node_modules/lodash/object.js b/target/cardgame/node_modules/lodash/object.js
similarity index 100%
rename from target/helloword/node_modules/lodash/object.js
rename to target/cardgame/node_modules/lodash/object.js
diff --git a/target/helloword/node_modules/lodash/omit.js b/target/cardgame/node_modules/lodash/omit.js
similarity index 100%
rename from target/helloword/node_modules/lodash/omit.js
rename to target/cardgame/node_modules/lodash/omit.js
diff --git a/target/helloword/node_modules/lodash/omitBy.js b/target/cardgame/node_modules/lodash/omitBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/omitBy.js
rename to target/cardgame/node_modules/lodash/omitBy.js
diff --git a/target/helloword/node_modules/lodash/once.js b/target/cardgame/node_modules/lodash/once.js
similarity index 100%
rename from target/helloword/node_modules/lodash/once.js
rename to target/cardgame/node_modules/lodash/once.js
diff --git a/target/helloword/node_modules/lodash/orderBy.js b/target/cardgame/node_modules/lodash/orderBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/orderBy.js
rename to target/cardgame/node_modules/lodash/orderBy.js
diff --git a/target/helloword/node_modules/lodash/over.js b/target/cardgame/node_modules/lodash/over.js
similarity index 100%
rename from target/helloword/node_modules/lodash/over.js
rename to target/cardgame/node_modules/lodash/over.js
diff --git a/target/helloword/node_modules/lodash/overArgs.js b/target/cardgame/node_modules/lodash/overArgs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/overArgs.js
rename to target/cardgame/node_modules/lodash/overArgs.js
diff --git a/target/helloword/node_modules/lodash/overEvery.js b/target/cardgame/node_modules/lodash/overEvery.js
similarity index 100%
rename from target/helloword/node_modules/lodash/overEvery.js
rename to target/cardgame/node_modules/lodash/overEvery.js
diff --git a/target/helloword/node_modules/lodash/overSome.js b/target/cardgame/node_modules/lodash/overSome.js
similarity index 100%
rename from target/helloword/node_modules/lodash/overSome.js
rename to target/cardgame/node_modules/lodash/overSome.js
diff --git a/target/helloword/node_modules/lodash/package.json b/target/cardgame/node_modules/lodash/package.json
similarity index 100%
rename from target/helloword/node_modules/lodash/package.json
rename to target/cardgame/node_modules/lodash/package.json
diff --git a/target/helloword/node_modules/lodash/pad.js b/target/cardgame/node_modules/lodash/pad.js
similarity index 100%
rename from target/helloword/node_modules/lodash/pad.js
rename to target/cardgame/node_modules/lodash/pad.js
diff --git a/target/helloword/node_modules/lodash/padEnd.js b/target/cardgame/node_modules/lodash/padEnd.js
similarity index 100%
rename from target/helloword/node_modules/lodash/padEnd.js
rename to target/cardgame/node_modules/lodash/padEnd.js
diff --git a/target/helloword/node_modules/lodash/padStart.js b/target/cardgame/node_modules/lodash/padStart.js
similarity index 100%
rename from target/helloword/node_modules/lodash/padStart.js
rename to target/cardgame/node_modules/lodash/padStart.js
diff --git a/target/helloword/node_modules/lodash/parseInt.js b/target/cardgame/node_modules/lodash/parseInt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/parseInt.js
rename to target/cardgame/node_modules/lodash/parseInt.js
diff --git a/target/helloword/node_modules/lodash/partial.js b/target/cardgame/node_modules/lodash/partial.js
similarity index 100%
rename from target/helloword/node_modules/lodash/partial.js
rename to target/cardgame/node_modules/lodash/partial.js
diff --git a/target/helloword/node_modules/lodash/partialRight.js b/target/cardgame/node_modules/lodash/partialRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/partialRight.js
rename to target/cardgame/node_modules/lodash/partialRight.js
diff --git a/target/helloword/node_modules/lodash/partition.js b/target/cardgame/node_modules/lodash/partition.js
similarity index 100%
rename from target/helloword/node_modules/lodash/partition.js
rename to target/cardgame/node_modules/lodash/partition.js
diff --git a/target/helloword/node_modules/lodash/pick.js b/target/cardgame/node_modules/lodash/pick.js
similarity index 100%
rename from target/helloword/node_modules/lodash/pick.js
rename to target/cardgame/node_modules/lodash/pick.js
diff --git a/target/helloword/node_modules/lodash/pickBy.js b/target/cardgame/node_modules/lodash/pickBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/pickBy.js
rename to target/cardgame/node_modules/lodash/pickBy.js
diff --git a/target/helloword/node_modules/lodash/plant.js b/target/cardgame/node_modules/lodash/plant.js
similarity index 100%
rename from target/helloword/node_modules/lodash/plant.js
rename to target/cardgame/node_modules/lodash/plant.js
diff --git a/target/helloword/node_modules/lodash/property.js b/target/cardgame/node_modules/lodash/property.js
similarity index 100%
rename from target/helloword/node_modules/lodash/property.js
rename to target/cardgame/node_modules/lodash/property.js
diff --git a/target/helloword/node_modules/lodash/propertyOf.js b/target/cardgame/node_modules/lodash/propertyOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/propertyOf.js
rename to target/cardgame/node_modules/lodash/propertyOf.js
diff --git a/target/helloword/node_modules/lodash/pull.js b/target/cardgame/node_modules/lodash/pull.js
similarity index 100%
rename from target/helloword/node_modules/lodash/pull.js
rename to target/cardgame/node_modules/lodash/pull.js
diff --git a/target/helloword/node_modules/lodash/pullAll.js b/target/cardgame/node_modules/lodash/pullAll.js
similarity index 100%
rename from target/helloword/node_modules/lodash/pullAll.js
rename to target/cardgame/node_modules/lodash/pullAll.js
diff --git a/target/helloword/node_modules/lodash/pullAllBy.js b/target/cardgame/node_modules/lodash/pullAllBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/pullAllBy.js
rename to target/cardgame/node_modules/lodash/pullAllBy.js
diff --git a/target/helloword/node_modules/lodash/pullAllWith.js b/target/cardgame/node_modules/lodash/pullAllWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/pullAllWith.js
rename to target/cardgame/node_modules/lodash/pullAllWith.js
diff --git a/target/helloword/node_modules/lodash/pullAt.js b/target/cardgame/node_modules/lodash/pullAt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/pullAt.js
rename to target/cardgame/node_modules/lodash/pullAt.js
diff --git a/target/helloword/node_modules/lodash/random.js b/target/cardgame/node_modules/lodash/random.js
similarity index 100%
rename from target/helloword/node_modules/lodash/random.js
rename to target/cardgame/node_modules/lodash/random.js
diff --git a/target/helloword/node_modules/lodash/range.js b/target/cardgame/node_modules/lodash/range.js
similarity index 100%
rename from target/helloword/node_modules/lodash/range.js
rename to target/cardgame/node_modules/lodash/range.js
diff --git a/target/helloword/node_modules/lodash/rangeRight.js b/target/cardgame/node_modules/lodash/rangeRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/rangeRight.js
rename to target/cardgame/node_modules/lodash/rangeRight.js
diff --git a/target/helloword/node_modules/lodash/rearg.js b/target/cardgame/node_modules/lodash/rearg.js
similarity index 100%
rename from target/helloword/node_modules/lodash/rearg.js
rename to target/cardgame/node_modules/lodash/rearg.js
diff --git a/target/helloword/node_modules/lodash/reduce.js b/target/cardgame/node_modules/lodash/reduce.js
similarity index 100%
rename from target/helloword/node_modules/lodash/reduce.js
rename to target/cardgame/node_modules/lodash/reduce.js
diff --git a/target/helloword/node_modules/lodash/reduceRight.js b/target/cardgame/node_modules/lodash/reduceRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/reduceRight.js
rename to target/cardgame/node_modules/lodash/reduceRight.js
diff --git a/target/helloword/node_modules/lodash/reject.js b/target/cardgame/node_modules/lodash/reject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/reject.js
rename to target/cardgame/node_modules/lodash/reject.js
diff --git a/target/helloword/node_modules/lodash/remove.js b/target/cardgame/node_modules/lodash/remove.js
similarity index 100%
rename from target/helloword/node_modules/lodash/remove.js
rename to target/cardgame/node_modules/lodash/remove.js
diff --git a/target/helloword/node_modules/lodash/repeat.js b/target/cardgame/node_modules/lodash/repeat.js
similarity index 100%
rename from target/helloword/node_modules/lodash/repeat.js
rename to target/cardgame/node_modules/lodash/repeat.js
diff --git a/target/helloword/node_modules/lodash/replace.js b/target/cardgame/node_modules/lodash/replace.js
similarity index 100%
rename from target/helloword/node_modules/lodash/replace.js
rename to target/cardgame/node_modules/lodash/replace.js
diff --git a/target/helloword/node_modules/lodash/rest.js b/target/cardgame/node_modules/lodash/rest.js
similarity index 100%
rename from target/helloword/node_modules/lodash/rest.js
rename to target/cardgame/node_modules/lodash/rest.js
diff --git a/target/helloword/node_modules/lodash/result.js b/target/cardgame/node_modules/lodash/result.js
similarity index 100%
rename from target/helloword/node_modules/lodash/result.js
rename to target/cardgame/node_modules/lodash/result.js
diff --git a/target/helloword/node_modules/lodash/reverse.js b/target/cardgame/node_modules/lodash/reverse.js
similarity index 100%
rename from target/helloword/node_modules/lodash/reverse.js
rename to target/cardgame/node_modules/lodash/reverse.js
diff --git a/target/helloword/node_modules/lodash/round.js b/target/cardgame/node_modules/lodash/round.js
similarity index 100%
rename from target/helloword/node_modules/lodash/round.js
rename to target/cardgame/node_modules/lodash/round.js
diff --git a/target/helloword/node_modules/lodash/sample.js b/target/cardgame/node_modules/lodash/sample.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sample.js
rename to target/cardgame/node_modules/lodash/sample.js
diff --git a/target/helloword/node_modules/lodash/sampleSize.js b/target/cardgame/node_modules/lodash/sampleSize.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sampleSize.js
rename to target/cardgame/node_modules/lodash/sampleSize.js
diff --git a/target/helloword/node_modules/lodash/seq.js b/target/cardgame/node_modules/lodash/seq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/seq.js
rename to target/cardgame/node_modules/lodash/seq.js
diff --git a/target/helloword/node_modules/lodash/set.js b/target/cardgame/node_modules/lodash/set.js
similarity index 100%
rename from target/helloword/node_modules/lodash/set.js
rename to target/cardgame/node_modules/lodash/set.js
diff --git a/target/helloword/node_modules/lodash/setWith.js b/target/cardgame/node_modules/lodash/setWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/setWith.js
rename to target/cardgame/node_modules/lodash/setWith.js
diff --git a/target/helloword/node_modules/lodash/shuffle.js b/target/cardgame/node_modules/lodash/shuffle.js
similarity index 100%
rename from target/helloword/node_modules/lodash/shuffle.js
rename to target/cardgame/node_modules/lodash/shuffle.js
diff --git a/target/helloword/node_modules/lodash/size.js b/target/cardgame/node_modules/lodash/size.js
similarity index 100%
rename from target/helloword/node_modules/lodash/size.js
rename to target/cardgame/node_modules/lodash/size.js
diff --git a/target/helloword/node_modules/lodash/slice.js b/target/cardgame/node_modules/lodash/slice.js
similarity index 100%
rename from target/helloword/node_modules/lodash/slice.js
rename to target/cardgame/node_modules/lodash/slice.js
diff --git a/target/helloword/node_modules/lodash/snakeCase.js b/target/cardgame/node_modules/lodash/snakeCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/snakeCase.js
rename to target/cardgame/node_modules/lodash/snakeCase.js
diff --git a/target/helloword/node_modules/lodash/some.js b/target/cardgame/node_modules/lodash/some.js
similarity index 100%
rename from target/helloword/node_modules/lodash/some.js
rename to target/cardgame/node_modules/lodash/some.js
diff --git a/target/helloword/node_modules/lodash/sortBy.js b/target/cardgame/node_modules/lodash/sortBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortBy.js
rename to target/cardgame/node_modules/lodash/sortBy.js
diff --git a/target/helloword/node_modules/lodash/sortedIndex.js b/target/cardgame/node_modules/lodash/sortedIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortedIndex.js
rename to target/cardgame/node_modules/lodash/sortedIndex.js
diff --git a/target/helloword/node_modules/lodash/sortedIndexBy.js b/target/cardgame/node_modules/lodash/sortedIndexBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortedIndexBy.js
rename to target/cardgame/node_modules/lodash/sortedIndexBy.js
diff --git a/target/helloword/node_modules/lodash/sortedIndexOf.js b/target/cardgame/node_modules/lodash/sortedIndexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortedIndexOf.js
rename to target/cardgame/node_modules/lodash/sortedIndexOf.js
diff --git a/target/helloword/node_modules/lodash/sortedLastIndex.js b/target/cardgame/node_modules/lodash/sortedLastIndex.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortedLastIndex.js
rename to target/cardgame/node_modules/lodash/sortedLastIndex.js
diff --git a/target/helloword/node_modules/lodash/sortedLastIndexBy.js b/target/cardgame/node_modules/lodash/sortedLastIndexBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortedLastIndexBy.js
rename to target/cardgame/node_modules/lodash/sortedLastIndexBy.js
diff --git a/target/helloword/node_modules/lodash/sortedLastIndexOf.js b/target/cardgame/node_modules/lodash/sortedLastIndexOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortedLastIndexOf.js
rename to target/cardgame/node_modules/lodash/sortedLastIndexOf.js
diff --git a/target/helloword/node_modules/lodash/sortedUniq.js b/target/cardgame/node_modules/lodash/sortedUniq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortedUniq.js
rename to target/cardgame/node_modules/lodash/sortedUniq.js
diff --git a/target/helloword/node_modules/lodash/sortedUniqBy.js b/target/cardgame/node_modules/lodash/sortedUniqBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sortedUniqBy.js
rename to target/cardgame/node_modules/lodash/sortedUniqBy.js
diff --git a/target/helloword/node_modules/lodash/split.js b/target/cardgame/node_modules/lodash/split.js
similarity index 100%
rename from target/helloword/node_modules/lodash/split.js
rename to target/cardgame/node_modules/lodash/split.js
diff --git a/target/helloword/node_modules/lodash/spread.js b/target/cardgame/node_modules/lodash/spread.js
similarity index 100%
rename from target/helloword/node_modules/lodash/spread.js
rename to target/cardgame/node_modules/lodash/spread.js
diff --git a/target/helloword/node_modules/lodash/startCase.js b/target/cardgame/node_modules/lodash/startCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/startCase.js
rename to target/cardgame/node_modules/lodash/startCase.js
diff --git a/target/helloword/node_modules/lodash/startsWith.js b/target/cardgame/node_modules/lodash/startsWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/startsWith.js
rename to target/cardgame/node_modules/lodash/startsWith.js
diff --git a/target/helloword/node_modules/lodash/string.js b/target/cardgame/node_modules/lodash/string.js
similarity index 100%
rename from target/helloword/node_modules/lodash/string.js
rename to target/cardgame/node_modules/lodash/string.js
diff --git a/target/helloword/node_modules/lodash/stubArray.js b/target/cardgame/node_modules/lodash/stubArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/stubArray.js
rename to target/cardgame/node_modules/lodash/stubArray.js
diff --git a/target/helloword/node_modules/lodash/stubFalse.js b/target/cardgame/node_modules/lodash/stubFalse.js
similarity index 100%
rename from target/helloword/node_modules/lodash/stubFalse.js
rename to target/cardgame/node_modules/lodash/stubFalse.js
diff --git a/target/helloword/node_modules/lodash/stubObject.js b/target/cardgame/node_modules/lodash/stubObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/stubObject.js
rename to target/cardgame/node_modules/lodash/stubObject.js
diff --git a/target/helloword/node_modules/lodash/stubString.js b/target/cardgame/node_modules/lodash/stubString.js
similarity index 100%
rename from target/helloword/node_modules/lodash/stubString.js
rename to target/cardgame/node_modules/lodash/stubString.js
diff --git a/target/helloword/node_modules/lodash/stubTrue.js b/target/cardgame/node_modules/lodash/stubTrue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/stubTrue.js
rename to target/cardgame/node_modules/lodash/stubTrue.js
diff --git a/target/helloword/node_modules/lodash/subtract.js b/target/cardgame/node_modules/lodash/subtract.js
similarity index 100%
rename from target/helloword/node_modules/lodash/subtract.js
rename to target/cardgame/node_modules/lodash/subtract.js
diff --git a/target/helloword/node_modules/lodash/sum.js b/target/cardgame/node_modules/lodash/sum.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sum.js
rename to target/cardgame/node_modules/lodash/sum.js
diff --git a/target/helloword/node_modules/lodash/sumBy.js b/target/cardgame/node_modules/lodash/sumBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/sumBy.js
rename to target/cardgame/node_modules/lodash/sumBy.js
diff --git a/target/helloword/node_modules/lodash/tail.js b/target/cardgame/node_modules/lodash/tail.js
similarity index 100%
rename from target/helloword/node_modules/lodash/tail.js
rename to target/cardgame/node_modules/lodash/tail.js
diff --git a/target/helloword/node_modules/lodash/take.js b/target/cardgame/node_modules/lodash/take.js
similarity index 100%
rename from target/helloword/node_modules/lodash/take.js
rename to target/cardgame/node_modules/lodash/take.js
diff --git a/target/helloword/node_modules/lodash/takeRight.js b/target/cardgame/node_modules/lodash/takeRight.js
similarity index 100%
rename from target/helloword/node_modules/lodash/takeRight.js
rename to target/cardgame/node_modules/lodash/takeRight.js
diff --git a/target/helloword/node_modules/lodash/takeRightWhile.js b/target/cardgame/node_modules/lodash/takeRightWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/takeRightWhile.js
rename to target/cardgame/node_modules/lodash/takeRightWhile.js
diff --git a/target/helloword/node_modules/lodash/takeWhile.js b/target/cardgame/node_modules/lodash/takeWhile.js
similarity index 100%
rename from target/helloword/node_modules/lodash/takeWhile.js
rename to target/cardgame/node_modules/lodash/takeWhile.js
diff --git a/target/helloword/node_modules/lodash/tap.js b/target/cardgame/node_modules/lodash/tap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/tap.js
rename to target/cardgame/node_modules/lodash/tap.js
diff --git a/target/helloword/node_modules/lodash/template.js b/target/cardgame/node_modules/lodash/template.js
similarity index 100%
rename from target/helloword/node_modules/lodash/template.js
rename to target/cardgame/node_modules/lodash/template.js
diff --git a/target/helloword/node_modules/lodash/templateSettings.js b/target/cardgame/node_modules/lodash/templateSettings.js
similarity index 100%
rename from target/helloword/node_modules/lodash/templateSettings.js
rename to target/cardgame/node_modules/lodash/templateSettings.js
diff --git a/target/helloword/node_modules/lodash/throttle.js b/target/cardgame/node_modules/lodash/throttle.js
similarity index 100%
rename from target/helloword/node_modules/lodash/throttle.js
rename to target/cardgame/node_modules/lodash/throttle.js
diff --git a/target/helloword/node_modules/lodash/thru.js b/target/cardgame/node_modules/lodash/thru.js
similarity index 100%
rename from target/helloword/node_modules/lodash/thru.js
rename to target/cardgame/node_modules/lodash/thru.js
diff --git a/target/helloword/node_modules/lodash/times.js b/target/cardgame/node_modules/lodash/times.js
similarity index 100%
rename from target/helloword/node_modules/lodash/times.js
rename to target/cardgame/node_modules/lodash/times.js
diff --git a/target/helloword/node_modules/lodash/toArray.js b/target/cardgame/node_modules/lodash/toArray.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toArray.js
rename to target/cardgame/node_modules/lodash/toArray.js
diff --git a/target/helloword/node_modules/lodash/toFinite.js b/target/cardgame/node_modules/lodash/toFinite.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toFinite.js
rename to target/cardgame/node_modules/lodash/toFinite.js
diff --git a/target/helloword/node_modules/lodash/toInteger.js b/target/cardgame/node_modules/lodash/toInteger.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toInteger.js
rename to target/cardgame/node_modules/lodash/toInteger.js
diff --git a/target/helloword/node_modules/lodash/toIterator.js b/target/cardgame/node_modules/lodash/toIterator.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toIterator.js
rename to target/cardgame/node_modules/lodash/toIterator.js
diff --git a/target/helloword/node_modules/lodash/toJSON.js b/target/cardgame/node_modules/lodash/toJSON.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toJSON.js
rename to target/cardgame/node_modules/lodash/toJSON.js
diff --git a/target/helloword/node_modules/lodash/toLength.js b/target/cardgame/node_modules/lodash/toLength.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toLength.js
rename to target/cardgame/node_modules/lodash/toLength.js
diff --git a/target/helloword/node_modules/lodash/toLower.js b/target/cardgame/node_modules/lodash/toLower.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toLower.js
rename to target/cardgame/node_modules/lodash/toLower.js
diff --git a/target/helloword/node_modules/lodash/toNumber.js b/target/cardgame/node_modules/lodash/toNumber.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toNumber.js
rename to target/cardgame/node_modules/lodash/toNumber.js
diff --git a/target/helloword/node_modules/lodash/toPairs.js b/target/cardgame/node_modules/lodash/toPairs.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toPairs.js
rename to target/cardgame/node_modules/lodash/toPairs.js
diff --git a/target/helloword/node_modules/lodash/toPairsIn.js b/target/cardgame/node_modules/lodash/toPairsIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toPairsIn.js
rename to target/cardgame/node_modules/lodash/toPairsIn.js
diff --git a/target/helloword/node_modules/lodash/toPath.js b/target/cardgame/node_modules/lodash/toPath.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toPath.js
rename to target/cardgame/node_modules/lodash/toPath.js
diff --git a/target/helloword/node_modules/lodash/toPlainObject.js b/target/cardgame/node_modules/lodash/toPlainObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toPlainObject.js
rename to target/cardgame/node_modules/lodash/toPlainObject.js
diff --git a/target/helloword/node_modules/lodash/toSafeInteger.js b/target/cardgame/node_modules/lodash/toSafeInteger.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toSafeInteger.js
rename to target/cardgame/node_modules/lodash/toSafeInteger.js
diff --git a/target/helloword/node_modules/lodash/toString.js b/target/cardgame/node_modules/lodash/toString.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toString.js
rename to target/cardgame/node_modules/lodash/toString.js
diff --git a/target/helloword/node_modules/lodash/toUpper.js b/target/cardgame/node_modules/lodash/toUpper.js
similarity index 100%
rename from target/helloword/node_modules/lodash/toUpper.js
rename to target/cardgame/node_modules/lodash/toUpper.js
diff --git a/target/helloword/node_modules/lodash/transform.js b/target/cardgame/node_modules/lodash/transform.js
similarity index 100%
rename from target/helloword/node_modules/lodash/transform.js
rename to target/cardgame/node_modules/lodash/transform.js
diff --git a/target/helloword/node_modules/lodash/trim.js b/target/cardgame/node_modules/lodash/trim.js
similarity index 100%
rename from target/helloword/node_modules/lodash/trim.js
rename to target/cardgame/node_modules/lodash/trim.js
diff --git a/target/helloword/node_modules/lodash/trimEnd.js b/target/cardgame/node_modules/lodash/trimEnd.js
similarity index 100%
rename from target/helloword/node_modules/lodash/trimEnd.js
rename to target/cardgame/node_modules/lodash/trimEnd.js
diff --git a/target/helloword/node_modules/lodash/trimStart.js b/target/cardgame/node_modules/lodash/trimStart.js
similarity index 100%
rename from target/helloword/node_modules/lodash/trimStart.js
rename to target/cardgame/node_modules/lodash/trimStart.js
diff --git a/target/helloword/node_modules/lodash/truncate.js b/target/cardgame/node_modules/lodash/truncate.js
similarity index 100%
rename from target/helloword/node_modules/lodash/truncate.js
rename to target/cardgame/node_modules/lodash/truncate.js
diff --git a/target/helloword/node_modules/lodash/unary.js b/target/cardgame/node_modules/lodash/unary.js
similarity index 100%
rename from target/helloword/node_modules/lodash/unary.js
rename to target/cardgame/node_modules/lodash/unary.js
diff --git a/target/helloword/node_modules/lodash/unescape.js b/target/cardgame/node_modules/lodash/unescape.js
similarity index 100%
rename from target/helloword/node_modules/lodash/unescape.js
rename to target/cardgame/node_modules/lodash/unescape.js
diff --git a/target/helloword/node_modules/lodash/union.js b/target/cardgame/node_modules/lodash/union.js
similarity index 100%
rename from target/helloword/node_modules/lodash/union.js
rename to target/cardgame/node_modules/lodash/union.js
diff --git a/target/helloword/node_modules/lodash/unionBy.js b/target/cardgame/node_modules/lodash/unionBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/unionBy.js
rename to target/cardgame/node_modules/lodash/unionBy.js
diff --git a/target/helloword/node_modules/lodash/unionWith.js b/target/cardgame/node_modules/lodash/unionWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/unionWith.js
rename to target/cardgame/node_modules/lodash/unionWith.js
diff --git a/target/helloword/node_modules/lodash/uniq.js b/target/cardgame/node_modules/lodash/uniq.js
similarity index 100%
rename from target/helloword/node_modules/lodash/uniq.js
rename to target/cardgame/node_modules/lodash/uniq.js
diff --git a/target/helloword/node_modules/lodash/uniqBy.js b/target/cardgame/node_modules/lodash/uniqBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/uniqBy.js
rename to target/cardgame/node_modules/lodash/uniqBy.js
diff --git a/target/helloword/node_modules/lodash/uniqWith.js b/target/cardgame/node_modules/lodash/uniqWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/uniqWith.js
rename to target/cardgame/node_modules/lodash/uniqWith.js
diff --git a/target/helloword/node_modules/lodash/uniqueId.js b/target/cardgame/node_modules/lodash/uniqueId.js
similarity index 100%
rename from target/helloword/node_modules/lodash/uniqueId.js
rename to target/cardgame/node_modules/lodash/uniqueId.js
diff --git a/target/helloword/node_modules/lodash/unset.js b/target/cardgame/node_modules/lodash/unset.js
similarity index 100%
rename from target/helloword/node_modules/lodash/unset.js
rename to target/cardgame/node_modules/lodash/unset.js
diff --git a/target/helloword/node_modules/lodash/unzip.js b/target/cardgame/node_modules/lodash/unzip.js
similarity index 100%
rename from target/helloword/node_modules/lodash/unzip.js
rename to target/cardgame/node_modules/lodash/unzip.js
diff --git a/target/helloword/node_modules/lodash/unzipWith.js b/target/cardgame/node_modules/lodash/unzipWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/unzipWith.js
rename to target/cardgame/node_modules/lodash/unzipWith.js
diff --git a/target/helloword/node_modules/lodash/update.js b/target/cardgame/node_modules/lodash/update.js
similarity index 100%
rename from target/helloword/node_modules/lodash/update.js
rename to target/cardgame/node_modules/lodash/update.js
diff --git a/target/helloword/node_modules/lodash/updateWith.js b/target/cardgame/node_modules/lodash/updateWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/updateWith.js
rename to target/cardgame/node_modules/lodash/updateWith.js
diff --git a/target/helloword/node_modules/lodash/upperCase.js b/target/cardgame/node_modules/lodash/upperCase.js
similarity index 100%
rename from target/helloword/node_modules/lodash/upperCase.js
rename to target/cardgame/node_modules/lodash/upperCase.js
diff --git a/target/helloword/node_modules/lodash/upperFirst.js b/target/cardgame/node_modules/lodash/upperFirst.js
similarity index 100%
rename from target/helloword/node_modules/lodash/upperFirst.js
rename to target/cardgame/node_modules/lodash/upperFirst.js
diff --git a/target/helloword/node_modules/lodash/util.js b/target/cardgame/node_modules/lodash/util.js
similarity index 100%
rename from target/helloword/node_modules/lodash/util.js
rename to target/cardgame/node_modules/lodash/util.js
diff --git a/target/helloword/node_modules/lodash/value.js b/target/cardgame/node_modules/lodash/value.js
similarity index 100%
rename from target/helloword/node_modules/lodash/value.js
rename to target/cardgame/node_modules/lodash/value.js
diff --git a/target/helloword/node_modules/lodash/valueOf.js b/target/cardgame/node_modules/lodash/valueOf.js
similarity index 100%
rename from target/helloword/node_modules/lodash/valueOf.js
rename to target/cardgame/node_modules/lodash/valueOf.js
diff --git a/target/helloword/node_modules/lodash/values.js b/target/cardgame/node_modules/lodash/values.js
similarity index 100%
rename from target/helloword/node_modules/lodash/values.js
rename to target/cardgame/node_modules/lodash/values.js
diff --git a/target/helloword/node_modules/lodash/valuesIn.js b/target/cardgame/node_modules/lodash/valuesIn.js
similarity index 100%
rename from target/helloword/node_modules/lodash/valuesIn.js
rename to target/cardgame/node_modules/lodash/valuesIn.js
diff --git a/target/helloword/node_modules/lodash/without.js b/target/cardgame/node_modules/lodash/without.js
similarity index 100%
rename from target/helloword/node_modules/lodash/without.js
rename to target/cardgame/node_modules/lodash/without.js
diff --git a/target/helloword/node_modules/lodash/words.js b/target/cardgame/node_modules/lodash/words.js
similarity index 100%
rename from target/helloword/node_modules/lodash/words.js
rename to target/cardgame/node_modules/lodash/words.js
diff --git a/target/helloword/node_modules/lodash/wrap.js b/target/cardgame/node_modules/lodash/wrap.js
similarity index 100%
rename from target/helloword/node_modules/lodash/wrap.js
rename to target/cardgame/node_modules/lodash/wrap.js
diff --git a/target/helloword/node_modules/lodash/wrapperAt.js b/target/cardgame/node_modules/lodash/wrapperAt.js
similarity index 100%
rename from target/helloword/node_modules/lodash/wrapperAt.js
rename to target/cardgame/node_modules/lodash/wrapperAt.js
diff --git a/target/helloword/node_modules/lodash/wrapperChain.js b/target/cardgame/node_modules/lodash/wrapperChain.js
similarity index 100%
rename from target/helloword/node_modules/lodash/wrapperChain.js
rename to target/cardgame/node_modules/lodash/wrapperChain.js
diff --git a/target/helloword/node_modules/lodash/wrapperLodash.js b/target/cardgame/node_modules/lodash/wrapperLodash.js
similarity index 100%
rename from target/helloword/node_modules/lodash/wrapperLodash.js
rename to target/cardgame/node_modules/lodash/wrapperLodash.js
diff --git a/target/helloword/node_modules/lodash/wrapperReverse.js b/target/cardgame/node_modules/lodash/wrapperReverse.js
similarity index 100%
rename from target/helloword/node_modules/lodash/wrapperReverse.js
rename to target/cardgame/node_modules/lodash/wrapperReverse.js
diff --git a/target/helloword/node_modules/lodash/wrapperValue.js b/target/cardgame/node_modules/lodash/wrapperValue.js
similarity index 100%
rename from target/helloword/node_modules/lodash/wrapperValue.js
rename to target/cardgame/node_modules/lodash/wrapperValue.js
diff --git a/target/helloword/node_modules/lodash/xor.js b/target/cardgame/node_modules/lodash/xor.js
similarity index 100%
rename from target/helloword/node_modules/lodash/xor.js
rename to target/cardgame/node_modules/lodash/xor.js
diff --git a/target/helloword/node_modules/lodash/xorBy.js b/target/cardgame/node_modules/lodash/xorBy.js
similarity index 100%
rename from target/helloword/node_modules/lodash/xorBy.js
rename to target/cardgame/node_modules/lodash/xorBy.js
diff --git a/target/helloword/node_modules/lodash/xorWith.js b/target/cardgame/node_modules/lodash/xorWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/xorWith.js
rename to target/cardgame/node_modules/lodash/xorWith.js
diff --git a/target/helloword/node_modules/lodash/zip.js b/target/cardgame/node_modules/lodash/zip.js
similarity index 100%
rename from target/helloword/node_modules/lodash/zip.js
rename to target/cardgame/node_modules/lodash/zip.js
diff --git a/target/helloword/node_modules/lodash/zipObject.js b/target/cardgame/node_modules/lodash/zipObject.js
similarity index 100%
rename from target/helloword/node_modules/lodash/zipObject.js
rename to target/cardgame/node_modules/lodash/zipObject.js
diff --git a/target/helloword/node_modules/lodash/zipObjectDeep.js b/target/cardgame/node_modules/lodash/zipObjectDeep.js
similarity index 100%
rename from target/helloword/node_modules/lodash/zipObjectDeep.js
rename to target/cardgame/node_modules/lodash/zipObjectDeep.js
diff --git a/target/helloword/node_modules/lodash/zipWith.js b/target/cardgame/node_modules/lodash/zipWith.js
similarity index 100%
rename from target/helloword/node_modules/lodash/zipWith.js
rename to target/cardgame/node_modules/lodash/zipWith.js
diff --git a/target/helloword/node_modules/media-typer/HISTORY.md b/target/cardgame/node_modules/media-typer/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/media-typer/HISTORY.md
rename to target/cardgame/node_modules/media-typer/HISTORY.md
diff --git a/target/helloword/node_modules/media-typer/LICENSE b/target/cardgame/node_modules/media-typer/LICENSE
similarity index 100%
rename from target/helloword/node_modules/media-typer/LICENSE
rename to target/cardgame/node_modules/media-typer/LICENSE
diff --git a/target/helloword/node_modules/media-typer/README.md b/target/cardgame/node_modules/media-typer/README.md
similarity index 100%
rename from target/helloword/node_modules/media-typer/README.md
rename to target/cardgame/node_modules/media-typer/README.md
diff --git a/target/helloword/node_modules/media-typer/index.js b/target/cardgame/node_modules/media-typer/index.js
similarity index 100%
rename from target/helloword/node_modules/media-typer/index.js
rename to target/cardgame/node_modules/media-typer/index.js
diff --git a/target/helloword/node_modules/media-typer/package.json b/target/cardgame/node_modules/media-typer/package.json
similarity index 100%
rename from target/helloword/node_modules/media-typer/package.json
rename to target/cardgame/node_modules/media-typer/package.json
diff --git a/target/helloword/node_modules/merge-descriptors/HISTORY.md b/target/cardgame/node_modules/merge-descriptors/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/merge-descriptors/HISTORY.md
rename to target/cardgame/node_modules/merge-descriptors/HISTORY.md
diff --git a/target/helloword/node_modules/merge-descriptors/LICENSE b/target/cardgame/node_modules/merge-descriptors/LICENSE
similarity index 100%
rename from target/helloword/node_modules/merge-descriptors/LICENSE
rename to target/cardgame/node_modules/merge-descriptors/LICENSE
diff --git a/target/helloword/node_modules/merge-descriptors/README.md b/target/cardgame/node_modules/merge-descriptors/README.md
similarity index 100%
rename from target/helloword/node_modules/merge-descriptors/README.md
rename to target/cardgame/node_modules/merge-descriptors/README.md
diff --git a/target/helloword/node_modules/merge-descriptors/index.js b/target/cardgame/node_modules/merge-descriptors/index.js
similarity index 100%
rename from target/helloword/node_modules/merge-descriptors/index.js
rename to target/cardgame/node_modules/merge-descriptors/index.js
diff --git a/target/helloword/node_modules/merge-descriptors/package.json b/target/cardgame/node_modules/merge-descriptors/package.json
similarity index 100%
rename from target/helloword/node_modules/merge-descriptors/package.json
rename to target/cardgame/node_modules/merge-descriptors/package.json
diff --git a/target/helloword/node_modules/methods/HISTORY.md b/target/cardgame/node_modules/methods/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/methods/HISTORY.md
rename to target/cardgame/node_modules/methods/HISTORY.md
diff --git a/target/helloword/node_modules/methods/LICENSE b/target/cardgame/node_modules/methods/LICENSE
similarity index 100%
rename from target/helloword/node_modules/methods/LICENSE
rename to target/cardgame/node_modules/methods/LICENSE
diff --git a/target/helloword/node_modules/methods/README.md b/target/cardgame/node_modules/methods/README.md
similarity index 100%
rename from target/helloword/node_modules/methods/README.md
rename to target/cardgame/node_modules/methods/README.md
diff --git a/target/helloword/node_modules/methods/index.js b/target/cardgame/node_modules/methods/index.js
similarity index 100%
rename from target/helloword/node_modules/methods/index.js
rename to target/cardgame/node_modules/methods/index.js
diff --git a/target/helloword/node_modules/methods/package.json b/target/cardgame/node_modules/methods/package.json
similarity index 100%
rename from target/helloword/node_modules/methods/package.json
rename to target/cardgame/node_modules/methods/package.json
diff --git a/target/helloword/node_modules/mime-db/HISTORY.md b/target/cardgame/node_modules/mime-db/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/mime-db/HISTORY.md
rename to target/cardgame/node_modules/mime-db/HISTORY.md
diff --git a/target/helloword/node_modules/mime-db/LICENSE b/target/cardgame/node_modules/mime-db/LICENSE
similarity index 100%
rename from target/helloword/node_modules/mime-db/LICENSE
rename to target/cardgame/node_modules/mime-db/LICENSE
diff --git a/target/helloword/node_modules/mime-db/README.md b/target/cardgame/node_modules/mime-db/README.md
similarity index 100%
rename from target/helloword/node_modules/mime-db/README.md
rename to target/cardgame/node_modules/mime-db/README.md
diff --git a/target/helloword/node_modules/mime-db/db.json b/target/cardgame/node_modules/mime-db/db.json
similarity index 100%
rename from target/helloword/node_modules/mime-db/db.json
rename to target/cardgame/node_modules/mime-db/db.json
diff --git a/target/helloword/node_modules/mime-db/index.js b/target/cardgame/node_modules/mime-db/index.js
similarity index 100%
rename from target/helloword/node_modules/mime-db/index.js
rename to target/cardgame/node_modules/mime-db/index.js
diff --git a/target/helloword/node_modules/mime-db/package.json b/target/cardgame/node_modules/mime-db/package.json
similarity index 100%
rename from target/helloword/node_modules/mime-db/package.json
rename to target/cardgame/node_modules/mime-db/package.json
diff --git a/target/helloword/node_modules/mime-types/HISTORY.md b/target/cardgame/node_modules/mime-types/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/mime-types/HISTORY.md
rename to target/cardgame/node_modules/mime-types/HISTORY.md
diff --git a/target/helloword/node_modules/mime-types/LICENSE b/target/cardgame/node_modules/mime-types/LICENSE
similarity index 100%
rename from target/helloword/node_modules/mime-types/LICENSE
rename to target/cardgame/node_modules/mime-types/LICENSE
diff --git a/target/helloword/node_modules/mime-types/README.md b/target/cardgame/node_modules/mime-types/README.md
similarity index 100%
rename from target/helloword/node_modules/mime-types/README.md
rename to target/cardgame/node_modules/mime-types/README.md
diff --git a/target/helloword/node_modules/mime-types/index.js b/target/cardgame/node_modules/mime-types/index.js
similarity index 100%
rename from target/helloword/node_modules/mime-types/index.js
rename to target/cardgame/node_modules/mime-types/index.js
diff --git a/target/helloword/node_modules/mime-types/package.json b/target/cardgame/node_modules/mime-types/package.json
similarity index 100%
rename from target/helloword/node_modules/mime-types/package.json
rename to target/cardgame/node_modules/mime-types/package.json
diff --git a/target/helloword/node_modules/mime/.npmignore b/target/cardgame/node_modules/mime/.npmignore
similarity index 100%
rename from target/helloword/node_modules/mime/.npmignore
rename to target/cardgame/node_modules/mime/.npmignore
diff --git a/target/helloword/node_modules/mime/LICENSE b/target/cardgame/node_modules/mime/LICENSE
similarity index 100%
rename from target/helloword/node_modules/mime/LICENSE
rename to target/cardgame/node_modules/mime/LICENSE
diff --git a/target/helloword/node_modules/mime/README.md b/target/cardgame/node_modules/mime/README.md
similarity index 100%
rename from target/helloword/node_modules/mime/README.md
rename to target/cardgame/node_modules/mime/README.md
diff --git a/target/helloword/node_modules/mime/build/build.js b/target/cardgame/node_modules/mime/build/build.js
similarity index 100%
rename from target/helloword/node_modules/mime/build/build.js
rename to target/cardgame/node_modules/mime/build/build.js
diff --git a/target/helloword/node_modules/mime/build/test.js b/target/cardgame/node_modules/mime/build/test.js
similarity index 100%
rename from target/helloword/node_modules/mime/build/test.js
rename to target/cardgame/node_modules/mime/build/test.js
diff --git a/target/helloword/node_modules/mime/cli.js b/target/cardgame/node_modules/mime/cli.js
similarity index 100%
rename from target/helloword/node_modules/mime/cli.js
rename to target/cardgame/node_modules/mime/cli.js
diff --git a/target/helloword/node_modules/mime/mime.js b/target/cardgame/node_modules/mime/mime.js
similarity index 100%
rename from target/helloword/node_modules/mime/mime.js
rename to target/cardgame/node_modules/mime/mime.js
diff --git a/target/helloword/node_modules/mime/package.json b/target/cardgame/node_modules/mime/package.json
similarity index 100%
rename from target/helloword/node_modules/mime/package.json
rename to target/cardgame/node_modules/mime/package.json
diff --git a/target/helloword/node_modules/mime/types.json b/target/cardgame/node_modules/mime/types.json
similarity index 100%
rename from target/helloword/node_modules/mime/types.json
rename to target/cardgame/node_modules/mime/types.json
diff --git a/target/helloword/node_modules/ms/.npmignore b/target/cardgame/node_modules/ms/.npmignore
similarity index 100%
rename from target/helloword/node_modules/ms/.npmignore
rename to target/cardgame/node_modules/ms/.npmignore
diff --git a/target/helloword/node_modules/ms/History.md b/target/cardgame/node_modules/ms/History.md
similarity index 100%
rename from target/helloword/node_modules/ms/History.md
rename to target/cardgame/node_modules/ms/History.md
diff --git a/target/helloword/node_modules/ms/LICENSE b/target/cardgame/node_modules/ms/LICENSE
similarity index 100%
rename from target/helloword/node_modules/ms/LICENSE
rename to target/cardgame/node_modules/ms/LICENSE
diff --git a/target/helloword/node_modules/ms/README.md b/target/cardgame/node_modules/ms/README.md
similarity index 100%
rename from target/helloword/node_modules/ms/README.md
rename to target/cardgame/node_modules/ms/README.md
diff --git a/target/helloword/node_modules/ms/index.js b/target/cardgame/node_modules/ms/index.js
similarity index 100%
rename from target/helloword/node_modules/ms/index.js
rename to target/cardgame/node_modules/ms/index.js
diff --git a/target/helloword/node_modules/ms/package.json b/target/cardgame/node_modules/ms/package.json
similarity index 100%
rename from target/helloword/node_modules/ms/package.json
rename to target/cardgame/node_modules/ms/package.json
diff --git a/target/helloword/node_modules/negotiator/HISTORY.md b/target/cardgame/node_modules/negotiator/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/negotiator/HISTORY.md
rename to target/cardgame/node_modules/negotiator/HISTORY.md
diff --git a/target/helloword/node_modules/negotiator/LICENSE b/target/cardgame/node_modules/negotiator/LICENSE
similarity index 100%
rename from target/helloword/node_modules/negotiator/LICENSE
rename to target/cardgame/node_modules/negotiator/LICENSE
diff --git a/target/helloword/node_modules/negotiator/README.md b/target/cardgame/node_modules/negotiator/README.md
similarity index 100%
rename from target/helloword/node_modules/negotiator/README.md
rename to target/cardgame/node_modules/negotiator/README.md
diff --git a/target/helloword/node_modules/negotiator/index.js b/target/cardgame/node_modules/negotiator/index.js
similarity index 100%
rename from target/helloword/node_modules/negotiator/index.js
rename to target/cardgame/node_modules/negotiator/index.js
diff --git a/target/helloword/node_modules/negotiator/lib/charset.js b/target/cardgame/node_modules/negotiator/lib/charset.js
similarity index 100%
rename from target/helloword/node_modules/negotiator/lib/charset.js
rename to target/cardgame/node_modules/negotiator/lib/charset.js
diff --git a/target/helloword/node_modules/negotiator/lib/encoding.js b/target/cardgame/node_modules/negotiator/lib/encoding.js
similarity index 100%
rename from target/helloword/node_modules/negotiator/lib/encoding.js
rename to target/cardgame/node_modules/negotiator/lib/encoding.js
diff --git a/target/helloword/node_modules/negotiator/lib/language.js b/target/cardgame/node_modules/negotiator/lib/language.js
similarity index 100%
rename from target/helloword/node_modules/negotiator/lib/language.js
rename to target/cardgame/node_modules/negotiator/lib/language.js
diff --git a/target/helloword/node_modules/negotiator/lib/mediaType.js b/target/cardgame/node_modules/negotiator/lib/mediaType.js
similarity index 100%
rename from target/helloword/node_modules/negotiator/lib/mediaType.js
rename to target/cardgame/node_modules/negotiator/lib/mediaType.js
diff --git a/target/helloword/node_modules/negotiator/package.json b/target/cardgame/node_modules/negotiator/package.json
similarity index 100%
rename from target/helloword/node_modules/negotiator/package.json
rename to target/cardgame/node_modules/negotiator/package.json
diff --git a/target/helloword/node_modules/ngstorage/CHANGELOG.md b/target/cardgame/node_modules/ngstorage/CHANGELOG.md
similarity index 100%
rename from target/helloword/node_modules/ngstorage/CHANGELOG.md
rename to target/cardgame/node_modules/ngstorage/CHANGELOG.md
diff --git a/target/helloword/node_modules/ngstorage/LICENSE b/target/cardgame/node_modules/ngstorage/LICENSE
similarity index 100%
rename from target/helloword/node_modules/ngstorage/LICENSE
rename to target/cardgame/node_modules/ngstorage/LICENSE
diff --git a/target/helloword/node_modules/ngstorage/README.md b/target/cardgame/node_modules/ngstorage/README.md
similarity index 100%
rename from target/helloword/node_modules/ngstorage/README.md
rename to target/cardgame/node_modules/ngstorage/README.md
diff --git a/target/helloword/node_modules/ngstorage/ngStorage.js b/target/cardgame/node_modules/ngstorage/ngStorage.js
similarity index 100%
rename from target/helloword/node_modules/ngstorage/ngStorage.js
rename to target/cardgame/node_modules/ngstorage/ngStorage.js
diff --git a/target/helloword/node_modules/ngstorage/ngStorage.min.js b/target/cardgame/node_modules/ngstorage/ngStorage.min.js
similarity index 100%
rename from target/helloword/node_modules/ngstorage/ngStorage.min.js
rename to target/cardgame/node_modules/ngstorage/ngStorage.min.js
diff --git a/target/helloword/node_modules/ngstorage/package.json b/target/cardgame/node_modules/ngstorage/package.json
similarity index 100%
rename from target/helloword/node_modules/ngstorage/package.json
rename to target/cardgame/node_modules/ngstorage/package.json
diff --git a/target/helloword/node_modules/on-finished/HISTORY.md b/target/cardgame/node_modules/on-finished/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/on-finished/HISTORY.md
rename to target/cardgame/node_modules/on-finished/HISTORY.md
diff --git a/target/helloword/node_modules/on-finished/LICENSE b/target/cardgame/node_modules/on-finished/LICENSE
similarity index 100%
rename from target/helloword/node_modules/on-finished/LICENSE
rename to target/cardgame/node_modules/on-finished/LICENSE
diff --git a/target/helloword/node_modules/on-finished/README.md b/target/cardgame/node_modules/on-finished/README.md
similarity index 100%
rename from target/helloword/node_modules/on-finished/README.md
rename to target/cardgame/node_modules/on-finished/README.md
diff --git a/target/helloword/node_modules/on-finished/index.js b/target/cardgame/node_modules/on-finished/index.js
similarity index 100%
rename from target/helloword/node_modules/on-finished/index.js
rename to target/cardgame/node_modules/on-finished/index.js
diff --git a/target/helloword/node_modules/on-finished/package.json b/target/cardgame/node_modules/on-finished/package.json
similarity index 100%
rename from target/helloword/node_modules/on-finished/package.json
rename to target/cardgame/node_modules/on-finished/package.json
diff --git a/target/helloword/node_modules/parseurl/HISTORY.md b/target/cardgame/node_modules/parseurl/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/parseurl/HISTORY.md
rename to target/cardgame/node_modules/parseurl/HISTORY.md
diff --git a/target/helloword/node_modules/parseurl/LICENSE b/target/cardgame/node_modules/parseurl/LICENSE
similarity index 100%
rename from target/helloword/node_modules/parseurl/LICENSE
rename to target/cardgame/node_modules/parseurl/LICENSE
diff --git a/target/helloword/node_modules/parseurl/README.md b/target/cardgame/node_modules/parseurl/README.md
similarity index 100%
rename from target/helloword/node_modules/parseurl/README.md
rename to target/cardgame/node_modules/parseurl/README.md
diff --git a/target/helloword/node_modules/parseurl/index.js b/target/cardgame/node_modules/parseurl/index.js
similarity index 100%
rename from target/helloword/node_modules/parseurl/index.js
rename to target/cardgame/node_modules/parseurl/index.js
diff --git a/target/helloword/node_modules/parseurl/package.json b/target/cardgame/node_modules/parseurl/package.json
similarity index 100%
rename from target/helloword/node_modules/parseurl/package.json
rename to target/cardgame/node_modules/parseurl/package.json
diff --git a/target/helloword/node_modules/path-to-regexp/History.md b/target/cardgame/node_modules/path-to-regexp/History.md
similarity index 100%
rename from target/helloword/node_modules/path-to-regexp/History.md
rename to target/cardgame/node_modules/path-to-regexp/History.md
diff --git a/target/helloword/node_modules/path-to-regexp/LICENSE b/target/cardgame/node_modules/path-to-regexp/LICENSE
similarity index 100%
rename from target/helloword/node_modules/path-to-regexp/LICENSE
rename to target/cardgame/node_modules/path-to-regexp/LICENSE
diff --git a/target/helloword/node_modules/path-to-regexp/Readme.md b/target/cardgame/node_modules/path-to-regexp/Readme.md
similarity index 100%
rename from target/helloword/node_modules/path-to-regexp/Readme.md
rename to target/cardgame/node_modules/path-to-regexp/Readme.md
diff --git a/target/helloword/node_modules/path-to-regexp/index.js b/target/cardgame/node_modules/path-to-regexp/index.js
similarity index 100%
rename from target/helloword/node_modules/path-to-regexp/index.js
rename to target/cardgame/node_modules/path-to-regexp/index.js
diff --git a/target/helloword/node_modules/path-to-regexp/package.json b/target/cardgame/node_modules/path-to-regexp/package.json
similarity index 100%
rename from target/helloword/node_modules/path-to-regexp/package.json
rename to target/cardgame/node_modules/path-to-regexp/package.json
diff --git a/target/helloword/node_modules/proxy-addr/HISTORY.md b/target/cardgame/node_modules/proxy-addr/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/proxy-addr/HISTORY.md
rename to target/cardgame/node_modules/proxy-addr/HISTORY.md
diff --git a/target/helloword/node_modules/proxy-addr/LICENSE b/target/cardgame/node_modules/proxy-addr/LICENSE
similarity index 100%
rename from target/helloword/node_modules/proxy-addr/LICENSE
rename to target/cardgame/node_modules/proxy-addr/LICENSE
diff --git a/target/helloword/node_modules/proxy-addr/README.md b/target/cardgame/node_modules/proxy-addr/README.md
similarity index 100%
rename from target/helloword/node_modules/proxy-addr/README.md
rename to target/cardgame/node_modules/proxy-addr/README.md
diff --git a/target/helloword/node_modules/proxy-addr/index.js b/target/cardgame/node_modules/proxy-addr/index.js
similarity index 100%
rename from target/helloword/node_modules/proxy-addr/index.js
rename to target/cardgame/node_modules/proxy-addr/index.js
diff --git a/target/helloword/node_modules/proxy-addr/package.json b/target/cardgame/node_modules/proxy-addr/package.json
similarity index 100%
rename from target/helloword/node_modules/proxy-addr/package.json
rename to target/cardgame/node_modules/proxy-addr/package.json
diff --git a/target/helloword/node_modules/qs/.eslintignore b/target/cardgame/node_modules/qs/.eslintignore
similarity index 100%
rename from target/helloword/node_modules/qs/.eslintignore
rename to target/cardgame/node_modules/qs/.eslintignore
diff --git a/target/helloword/node_modules/qs/.eslintrc b/target/cardgame/node_modules/qs/.eslintrc
similarity index 100%
rename from target/helloword/node_modules/qs/.eslintrc
rename to target/cardgame/node_modules/qs/.eslintrc
diff --git a/target/helloword/node_modules/qs/.npmignore b/target/cardgame/node_modules/qs/.npmignore
similarity index 100%
rename from target/helloword/node_modules/qs/.npmignore
rename to target/cardgame/node_modules/qs/.npmignore
diff --git a/target/helloword/node_modules/qs/.travis.yml b/target/cardgame/node_modules/qs/.travis.yml
similarity index 100%
rename from target/helloword/node_modules/qs/.travis.yml
rename to target/cardgame/node_modules/qs/.travis.yml
diff --git a/target/helloword/node_modules/qs/CHANGELOG.md b/target/cardgame/node_modules/qs/CHANGELOG.md
similarity index 100%
rename from target/helloword/node_modules/qs/CHANGELOG.md
rename to target/cardgame/node_modules/qs/CHANGELOG.md
diff --git a/target/helloword/node_modules/qs/CONTRIBUTING.md b/target/cardgame/node_modules/qs/CONTRIBUTING.md
similarity index 100%
rename from target/helloword/node_modules/qs/CONTRIBUTING.md
rename to target/cardgame/node_modules/qs/CONTRIBUTING.md
diff --git a/target/helloword/node_modules/qs/LICENSE b/target/cardgame/node_modules/qs/LICENSE
similarity index 100%
rename from target/helloword/node_modules/qs/LICENSE
rename to target/cardgame/node_modules/qs/LICENSE
diff --git a/target/helloword/node_modules/qs/README.md b/target/cardgame/node_modules/qs/README.md
similarity index 100%
rename from target/helloword/node_modules/qs/README.md
rename to target/cardgame/node_modules/qs/README.md
diff --git a/target/helloword/node_modules/qs/bower.json b/target/cardgame/node_modules/qs/bower.json
similarity index 100%
rename from target/helloword/node_modules/qs/bower.json
rename to target/cardgame/node_modules/qs/bower.json
diff --git a/target/helloword/node_modules/qs/component.json b/target/cardgame/node_modules/qs/component.json
similarity index 100%
rename from target/helloword/node_modules/qs/component.json
rename to target/cardgame/node_modules/qs/component.json
diff --git a/target/helloword/node_modules/qs/dist/qs.js b/target/cardgame/node_modules/qs/dist/qs.js
similarity index 100%
rename from target/helloword/node_modules/qs/dist/qs.js
rename to target/cardgame/node_modules/qs/dist/qs.js
diff --git a/target/helloword/node_modules/qs/lib/index.js b/target/cardgame/node_modules/qs/lib/index.js
similarity index 100%
rename from target/helloword/node_modules/qs/lib/index.js
rename to target/cardgame/node_modules/qs/lib/index.js
diff --git a/target/helloword/node_modules/qs/lib/parse.js b/target/cardgame/node_modules/qs/lib/parse.js
similarity index 100%
rename from target/helloword/node_modules/qs/lib/parse.js
rename to target/cardgame/node_modules/qs/lib/parse.js
diff --git a/target/helloword/node_modules/qs/lib/stringify.js b/target/cardgame/node_modules/qs/lib/stringify.js
similarity index 100%
rename from target/helloword/node_modules/qs/lib/stringify.js
rename to target/cardgame/node_modules/qs/lib/stringify.js
diff --git a/target/helloword/node_modules/qs/lib/utils.js b/target/cardgame/node_modules/qs/lib/utils.js
similarity index 100%
rename from target/helloword/node_modules/qs/lib/utils.js
rename to target/cardgame/node_modules/qs/lib/utils.js
diff --git a/target/helloword/node_modules/qs/package.json b/target/cardgame/node_modules/qs/package.json
similarity index 100%
rename from target/helloword/node_modules/qs/package.json
rename to target/cardgame/node_modules/qs/package.json
diff --git a/target/helloword/node_modules/qs/test/index.js b/target/cardgame/node_modules/qs/test/index.js
similarity index 100%
rename from target/helloword/node_modules/qs/test/index.js
rename to target/cardgame/node_modules/qs/test/index.js
diff --git a/target/helloword/node_modules/qs/test/parse.js b/target/cardgame/node_modules/qs/test/parse.js
similarity index 100%
rename from target/helloword/node_modules/qs/test/parse.js
rename to target/cardgame/node_modules/qs/test/parse.js
diff --git a/target/helloword/node_modules/qs/test/stringify.js b/target/cardgame/node_modules/qs/test/stringify.js
similarity index 100%
rename from target/helloword/node_modules/qs/test/stringify.js
rename to target/cardgame/node_modules/qs/test/stringify.js
diff --git a/target/helloword/node_modules/qs/test/utils.js b/target/cardgame/node_modules/qs/test/utils.js
similarity index 100%
rename from target/helloword/node_modules/qs/test/utils.js
rename to target/cardgame/node_modules/qs/test/utils.js
diff --git a/target/helloword/node_modules/range-parser/HISTORY.md b/target/cardgame/node_modules/range-parser/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/range-parser/HISTORY.md
rename to target/cardgame/node_modules/range-parser/HISTORY.md
diff --git a/target/helloword/node_modules/range-parser/LICENSE b/target/cardgame/node_modules/range-parser/LICENSE
similarity index 100%
rename from target/helloword/node_modules/range-parser/LICENSE
rename to target/cardgame/node_modules/range-parser/LICENSE
diff --git a/target/helloword/node_modules/range-parser/README.md b/target/cardgame/node_modules/range-parser/README.md
similarity index 100%
rename from target/helloword/node_modules/range-parser/README.md
rename to target/cardgame/node_modules/range-parser/README.md
diff --git a/target/helloword/node_modules/range-parser/index.js b/target/cardgame/node_modules/range-parser/index.js
similarity index 100%
rename from target/helloword/node_modules/range-parser/index.js
rename to target/cardgame/node_modules/range-parser/index.js
diff --git a/target/helloword/node_modules/range-parser/package.json b/target/cardgame/node_modules/range-parser/package.json
similarity index 100%
rename from target/helloword/node_modules/range-parser/package.json
rename to target/cardgame/node_modules/range-parser/package.json
diff --git a/target/helloword/node_modules/raw-body/HISTORY.md b/target/cardgame/node_modules/raw-body/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/raw-body/HISTORY.md
rename to target/cardgame/node_modules/raw-body/HISTORY.md
diff --git a/target/helloword/node_modules/raw-body/LICENSE b/target/cardgame/node_modules/raw-body/LICENSE
similarity index 100%
rename from target/helloword/node_modules/raw-body/LICENSE
rename to target/cardgame/node_modules/raw-body/LICENSE
diff --git a/target/helloword/node_modules/raw-body/README.md b/target/cardgame/node_modules/raw-body/README.md
similarity index 100%
rename from target/helloword/node_modules/raw-body/README.md
rename to target/cardgame/node_modules/raw-body/README.md
diff --git a/target/helloword/node_modules/raw-body/index.js b/target/cardgame/node_modules/raw-body/index.js
similarity index 100%
rename from target/helloword/node_modules/raw-body/index.js
rename to target/cardgame/node_modules/raw-body/index.js
diff --git a/target/helloword/node_modules/raw-body/node_modules/bytes/History.md b/target/cardgame/node_modules/raw-body/node_modules/bytes/History.md
similarity index 100%
rename from target/helloword/node_modules/raw-body/node_modules/bytes/History.md
rename to target/cardgame/node_modules/raw-body/node_modules/bytes/History.md
diff --git a/target/helloword/node_modules/raw-body/node_modules/bytes/LICENSE b/target/cardgame/node_modules/raw-body/node_modules/bytes/LICENSE
similarity index 100%
rename from target/helloword/node_modules/raw-body/node_modules/bytes/LICENSE
rename to target/cardgame/node_modules/raw-body/node_modules/bytes/LICENSE
diff --git a/target/helloword/node_modules/raw-body/node_modules/bytes/Readme.md b/target/cardgame/node_modules/raw-body/node_modules/bytes/Readme.md
similarity index 100%
rename from target/helloword/node_modules/raw-body/node_modules/bytes/Readme.md
rename to target/cardgame/node_modules/raw-body/node_modules/bytes/Readme.md
diff --git a/target/helloword/node_modules/raw-body/node_modules/bytes/index.js b/target/cardgame/node_modules/raw-body/node_modules/bytes/index.js
similarity index 100%
rename from target/helloword/node_modules/raw-body/node_modules/bytes/index.js
rename to target/cardgame/node_modules/raw-body/node_modules/bytes/index.js
diff --git a/target/helloword/node_modules/raw-body/node_modules/bytes/package.json b/target/cardgame/node_modules/raw-body/node_modules/bytes/package.json
similarity index 100%
rename from target/helloword/node_modules/raw-body/node_modules/bytes/package.json
rename to target/cardgame/node_modules/raw-body/node_modules/bytes/package.json
diff --git a/target/helloword/node_modules/raw-body/package.json b/target/cardgame/node_modules/raw-body/package.json
similarity index 100%
rename from target/helloword/node_modules/raw-body/package.json
rename to target/cardgame/node_modules/raw-body/package.json
diff --git a/target/helloword/node_modules/send/HISTORY.md b/target/cardgame/node_modules/send/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/send/HISTORY.md
rename to target/cardgame/node_modules/send/HISTORY.md
diff --git a/target/helloword/node_modules/send/LICENSE b/target/cardgame/node_modules/send/LICENSE
similarity index 100%
rename from target/helloword/node_modules/send/LICENSE
rename to target/cardgame/node_modules/send/LICENSE
diff --git a/target/helloword/node_modules/send/README.md b/target/cardgame/node_modules/send/README.md
similarity index 100%
rename from target/helloword/node_modules/send/README.md
rename to target/cardgame/node_modules/send/README.md
diff --git a/target/helloword/node_modules/send/index.js b/target/cardgame/node_modules/send/index.js
similarity index 100%
rename from target/helloword/node_modules/send/index.js
rename to target/cardgame/node_modules/send/index.js
diff --git a/target/helloword/node_modules/send/node_modules/http-errors/HISTORY.md b/target/cardgame/node_modules/send/node_modules/http-errors/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/send/node_modules/http-errors/HISTORY.md
rename to target/cardgame/node_modules/send/node_modules/http-errors/HISTORY.md
diff --git a/target/helloword/node_modules/send/node_modules/http-errors/LICENSE b/target/cardgame/node_modules/send/node_modules/http-errors/LICENSE
similarity index 100%
rename from target/helloword/node_modules/send/node_modules/http-errors/LICENSE
rename to target/cardgame/node_modules/send/node_modules/http-errors/LICENSE
diff --git a/target/helloword/node_modules/send/node_modules/http-errors/README.md b/target/cardgame/node_modules/send/node_modules/http-errors/README.md
similarity index 100%
rename from target/helloword/node_modules/send/node_modules/http-errors/README.md
rename to target/cardgame/node_modules/send/node_modules/http-errors/README.md
diff --git a/target/helloword/node_modules/send/node_modules/http-errors/index.js b/target/cardgame/node_modules/send/node_modules/http-errors/index.js
similarity index 100%
rename from target/helloword/node_modules/send/node_modules/http-errors/index.js
rename to target/cardgame/node_modules/send/node_modules/http-errors/index.js
diff --git a/target/helloword/node_modules/send/node_modules/http-errors/package.json b/target/cardgame/node_modules/send/node_modules/http-errors/package.json
similarity index 100%
rename from target/helloword/node_modules/send/node_modules/http-errors/package.json
rename to target/cardgame/node_modules/send/node_modules/http-errors/package.json
diff --git a/target/helloword/node_modules/send/package.json b/target/cardgame/node_modules/send/package.json
similarity index 100%
rename from target/helloword/node_modules/send/package.json
rename to target/cardgame/node_modules/send/package.json
diff --git a/target/helloword/node_modules/serve-static/HISTORY.md b/target/cardgame/node_modules/serve-static/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/serve-static/HISTORY.md
rename to target/cardgame/node_modules/serve-static/HISTORY.md
diff --git a/target/helloword/node_modules/serve-static/LICENSE b/target/cardgame/node_modules/serve-static/LICENSE
similarity index 100%
rename from target/helloword/node_modules/serve-static/LICENSE
rename to target/cardgame/node_modules/serve-static/LICENSE
diff --git a/target/helloword/node_modules/serve-static/README.md b/target/cardgame/node_modules/serve-static/README.md
similarity index 100%
rename from target/helloword/node_modules/serve-static/README.md
rename to target/cardgame/node_modules/serve-static/README.md
diff --git a/target/helloword/node_modules/serve-static/index.js b/target/cardgame/node_modules/serve-static/index.js
similarity index 100%
rename from target/helloword/node_modules/serve-static/index.js
rename to target/cardgame/node_modules/serve-static/index.js
diff --git a/target/helloword/node_modules/serve-static/package.json b/target/cardgame/node_modules/serve-static/package.json
similarity index 100%
rename from target/helloword/node_modules/serve-static/package.json
rename to target/cardgame/node_modules/serve-static/package.json
diff --git a/target/helloword/node_modules/statuses/LICENSE b/target/cardgame/node_modules/statuses/LICENSE
similarity index 100%
rename from target/helloword/node_modules/statuses/LICENSE
rename to target/cardgame/node_modules/statuses/LICENSE
diff --git a/target/helloword/node_modules/statuses/README.md b/target/cardgame/node_modules/statuses/README.md
similarity index 100%
rename from target/helloword/node_modules/statuses/README.md
rename to target/cardgame/node_modules/statuses/README.md
diff --git a/target/helloword/node_modules/statuses/codes.json b/target/cardgame/node_modules/statuses/codes.json
similarity index 100%
rename from target/helloword/node_modules/statuses/codes.json
rename to target/cardgame/node_modules/statuses/codes.json
diff --git a/target/helloword/node_modules/statuses/index.js b/target/cardgame/node_modules/statuses/index.js
similarity index 100%
rename from target/helloword/node_modules/statuses/index.js
rename to target/cardgame/node_modules/statuses/index.js
diff --git a/target/helloword/node_modules/statuses/package.json b/target/cardgame/node_modules/statuses/package.json
similarity index 100%
rename from target/helloword/node_modules/statuses/package.json
rename to target/cardgame/node_modules/statuses/package.json
diff --git a/target/helloword/node_modules/type-is/HISTORY.md b/target/cardgame/node_modules/type-is/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/type-is/HISTORY.md
rename to target/cardgame/node_modules/type-is/HISTORY.md
diff --git a/target/helloword/node_modules/type-is/LICENSE b/target/cardgame/node_modules/type-is/LICENSE
similarity index 100%
rename from target/helloword/node_modules/type-is/LICENSE
rename to target/cardgame/node_modules/type-is/LICENSE
diff --git a/target/helloword/node_modules/type-is/README.md b/target/cardgame/node_modules/type-is/README.md
similarity index 100%
rename from target/helloword/node_modules/type-is/README.md
rename to target/cardgame/node_modules/type-is/README.md
diff --git a/target/helloword/node_modules/type-is/index.js b/target/cardgame/node_modules/type-is/index.js
similarity index 100%
rename from target/helloword/node_modules/type-is/index.js
rename to target/cardgame/node_modules/type-is/index.js
diff --git a/target/helloword/node_modules/type-is/package.json b/target/cardgame/node_modules/type-is/package.json
similarity index 100%
rename from target/helloword/node_modules/type-is/package.json
rename to target/cardgame/node_modules/type-is/package.json
diff --git a/target/helloword/node_modules/unpipe/HISTORY.md b/target/cardgame/node_modules/unpipe/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/unpipe/HISTORY.md
rename to target/cardgame/node_modules/unpipe/HISTORY.md
diff --git a/target/helloword/node_modules/unpipe/LICENSE b/target/cardgame/node_modules/unpipe/LICENSE
similarity index 100%
rename from target/helloword/node_modules/unpipe/LICENSE
rename to target/cardgame/node_modules/unpipe/LICENSE
diff --git a/target/helloword/node_modules/unpipe/README.md b/target/cardgame/node_modules/unpipe/README.md
similarity index 100%
rename from target/helloword/node_modules/unpipe/README.md
rename to target/cardgame/node_modules/unpipe/README.md
diff --git a/target/helloword/node_modules/unpipe/index.js b/target/cardgame/node_modules/unpipe/index.js
similarity index 100%
rename from target/helloword/node_modules/unpipe/index.js
rename to target/cardgame/node_modules/unpipe/index.js
diff --git a/target/helloword/node_modules/unpipe/package.json b/target/cardgame/node_modules/unpipe/package.json
similarity index 100%
rename from target/helloword/node_modules/unpipe/package.json
rename to target/cardgame/node_modules/unpipe/package.json
diff --git a/target/helloword/node_modules/utils-merge/.travis.yml b/target/cardgame/node_modules/utils-merge/.travis.yml
similarity index 100%
rename from target/helloword/node_modules/utils-merge/.travis.yml
rename to target/cardgame/node_modules/utils-merge/.travis.yml
diff --git a/target/helloword/node_modules/utils-merge/LICENSE b/target/cardgame/node_modules/utils-merge/LICENSE
similarity index 100%
rename from target/helloword/node_modules/utils-merge/LICENSE
rename to target/cardgame/node_modules/utils-merge/LICENSE
diff --git a/target/helloword/node_modules/utils-merge/README.md b/target/cardgame/node_modules/utils-merge/README.md
similarity index 100%
rename from target/helloword/node_modules/utils-merge/README.md
rename to target/cardgame/node_modules/utils-merge/README.md
diff --git a/target/helloword/node_modules/utils-merge/index.js b/target/cardgame/node_modules/utils-merge/index.js
similarity index 100%
rename from target/helloword/node_modules/utils-merge/index.js
rename to target/cardgame/node_modules/utils-merge/index.js
diff --git a/target/helloword/node_modules/utils-merge/package.json b/target/cardgame/node_modules/utils-merge/package.json
similarity index 100%
rename from target/helloword/node_modules/utils-merge/package.json
rename to target/cardgame/node_modules/utils-merge/package.json
diff --git a/target/helloword/node_modules/vary/HISTORY.md b/target/cardgame/node_modules/vary/HISTORY.md
similarity index 100%
rename from target/helloword/node_modules/vary/HISTORY.md
rename to target/cardgame/node_modules/vary/HISTORY.md
diff --git a/target/helloword/node_modules/vary/LICENSE b/target/cardgame/node_modules/vary/LICENSE
similarity index 100%
rename from target/helloword/node_modules/vary/LICENSE
rename to target/cardgame/node_modules/vary/LICENSE
diff --git a/target/helloword/node_modules/vary/README.md b/target/cardgame/node_modules/vary/README.md
similarity index 100%
rename from target/helloword/node_modules/vary/README.md
rename to target/cardgame/node_modules/vary/README.md
diff --git a/target/helloword/node_modules/vary/index.js b/target/cardgame/node_modules/vary/index.js
similarity index 100%
rename from target/helloword/node_modules/vary/index.js
rename to target/cardgame/node_modules/vary/index.js
diff --git a/target/helloword/node_modules/vary/package.json b/target/cardgame/node_modules/vary/package.json
similarity index 100%
rename from target/helloword/node_modules/vary/package.json
rename to target/cardgame/node_modules/vary/package.json
diff --git a/target/helloword/package.json b/target/cardgame/package.json
similarity index 100%
rename from target/helloword/package.json
rename to target/cardgame/package.json
diff --git a/target/helloword/templates/cardQuestion.html b/target/cardgame/templates/cardQuestion.html
similarity index 100%
rename from target/helloword/templates/cardQuestion.html
rename to target/cardgame/templates/cardQuestion.html
diff --git a/target/helloword/templates/dashboard.html b/target/cardgame/templates/dashboard.html
similarity index 100%
rename from target/helloword/templates/dashboard.html
rename to target/cardgame/templates/dashboard.html
diff --git a/target/helloword/templates/join.html b/target/cardgame/templates/join.html
similarity index 100%
rename from target/helloword/templates/join.html
rename to target/cardgame/templates/join.html
diff --git a/target/helloword/templates/messageAlert.html b/target/cardgame/templates/messageAlert.html
similarity index 100%
rename from target/helloword/templates/messageAlert.html
rename to target/cardgame/templates/messageAlert.html
diff --git a/target/classes/br/unicap/cardgame/app/AuthenticationFilter.class b/target/classes/br/unicap/cardgame/app/AuthenticationFilter.class
index 337e7dd..43584f1 100644
Binary files a/target/classes/br/unicap/cardgame/app/AuthenticationFilter.class and b/target/classes/br/unicap/cardgame/app/AuthenticationFilter.class differ
diff --git a/target/classes/br/unicap/cardgame/app/ResponseAllowCORS.class b/target/classes/br/unicap/cardgame/app/ResponseAllowCORS.class
index 273de97..d138838 100644
Binary files a/target/classes/br/unicap/cardgame/app/ResponseAllowCORS.class and b/target/classes/br/unicap/cardgame/app/ResponseAllowCORS.class differ
diff --git a/target/classes/br/unicap/cardgame/controller/CardController.class b/target/classes/br/unicap/cardgame/controller/CardController.class
deleted file mode 100644
index 00c0d33..0000000
Binary files a/target/classes/br/unicap/cardgame/controller/CardController.class and /dev/null differ
diff --git a/target/classes/br/unicap/cardgame/controller/CardsController.class b/target/classes/br/unicap/cardgame/controller/CardsController.class
new file mode 100644
index 0000000..b4a0ae1
Binary files /dev/null and b/target/classes/br/unicap/cardgame/controller/CardsController.class differ
diff --git a/target/classes/br/unicap/cardgame/controller/CharController.class b/target/classes/br/unicap/cardgame/controller/CharController.class
deleted file mode 100644
index 48a282e..0000000
Binary files a/target/classes/br/unicap/cardgame/controller/CharController.class and /dev/null differ
diff --git a/target/classes/br/unicap/cardgame/controller/CharsController.class b/target/classes/br/unicap/cardgame/controller/CharsController.class
new file mode 100644
index 0000000..52715f2
Binary files /dev/null and b/target/classes/br/unicap/cardgame/controller/CharsController.class differ
diff --git a/target/classes/br/unicap/cardgame/controller/DeckController.class b/target/classes/br/unicap/cardgame/controller/DeckController.class
deleted file mode 100644
index 7330f92..0000000
Binary files a/target/classes/br/unicap/cardgame/controller/DeckController.class and /dev/null differ
diff --git a/target/classes/br/unicap/cardgame/controller/DecksController.class b/target/classes/br/unicap/cardgame/controller/DecksController.class
new file mode 100644
index 0000000..3b30a66
Binary files /dev/null and b/target/classes/br/unicap/cardgame/controller/DecksController.class differ
diff --git a/target/classes/br/unicap/cardgame/controller/UserController.class b/target/classes/br/unicap/cardgame/controller/UserController.class
deleted file mode 100644
index 78c5405..0000000
Binary files a/target/classes/br/unicap/cardgame/controller/UserController.class and /dev/null differ
diff --git a/target/classes/br/unicap/cardgame/controller/UsersController.class b/target/classes/br/unicap/cardgame/controller/UsersController.class
new file mode 100644
index 0000000..b3a8f6e
Binary files /dev/null and b/target/classes/br/unicap/cardgame/controller/UsersController.class differ
diff --git a/target/classes/br/unicap/cardgame/dao/CharsDAO.class b/target/classes/br/unicap/cardgame/dao/CharsDAO.class
new file mode 100644
index 0000000..44de61b
Binary files /dev/null and b/target/classes/br/unicap/cardgame/dao/CharsDAO.class differ
diff --git a/target/classes/br/unicap/cardgame/dao/DecksDAO.class b/target/classes/br/unicap/cardgame/dao/DecksDAO.class
new file mode 100644
index 0000000..a5b2e19
Binary files /dev/null and b/target/classes/br/unicap/cardgame/dao/DecksDAO.class differ
diff --git a/target/classes/br/unicap/cardgame/dao/UsersDAO.class b/target/classes/br/unicap/cardgame/dao/UsersDAO.class
new file mode 100644
index 0000000..56372f4
Binary files /dev/null and b/target/classes/br/unicap/cardgame/dao/UsersDAO.class differ
diff --git a/target/classes/br/unicap/cardgame/engine/BattleField.class b/target/classes/br/unicap/cardgame/engine/BattleField.class
index f6b024e..99fdd7e 100644
Binary files a/target/classes/br/unicap/cardgame/engine/BattleField.class and b/target/classes/br/unicap/cardgame/engine/BattleField.class differ
diff --git a/target/classes/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.class b/target/classes/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.class
new file mode 100644
index 0000000..0d4b302
Binary files /dev/null and b/target/classes/br/unicap/cardgame/jax/bean/ChangeCharJAXBean.class differ
diff --git a/target/classes/br/unicap/cardgame/model/Answers.class b/target/classes/br/unicap/cardgame/model/Answers.class
index af7266d..07d0822 100644
Binary files a/target/classes/br/unicap/cardgame/model/Answers.class and b/target/classes/br/unicap/cardgame/model/Answers.class differ
diff --git a/target/classes/br/unicap/cardgame/model/BattleFieldStatus.class b/target/classes/br/unicap/cardgame/model/BattleFieldStatus.class
index 98530ab..d537d0a 100644
Binary files a/target/classes/br/unicap/cardgame/model/BattleFieldStatus.class and b/target/classes/br/unicap/cardgame/model/BattleFieldStatus.class differ
diff --git a/target/classes/br/unicap/cardgame/model/Cards.class b/target/classes/br/unicap/cardgame/model/Cards.class
index c1d03e4..11a6fd4 100644
Binary files a/target/classes/br/unicap/cardgame/model/Cards.class and b/target/classes/br/unicap/cardgame/model/Cards.class differ
diff --git a/target/classes/br/unicap/cardgame/model/Chars.class b/target/classes/br/unicap/cardgame/model/Chars.class
index dedc550..88c24d6 100644
Binary files a/target/classes/br/unicap/cardgame/model/Chars.class and b/target/classes/br/unicap/cardgame/model/Chars.class differ
diff --git a/target/classes/br/unicap/cardgame/model/Decks.class b/target/classes/br/unicap/cardgame/model/Decks.class
index 91e52e3..a97fa57 100644
Binary files a/target/classes/br/unicap/cardgame/model/Decks.class and b/target/classes/br/unicap/cardgame/model/Decks.class differ
diff --git a/target/classes/br/unicap/cardgame/model/DecksCards.class b/target/classes/br/unicap/cardgame/model/DecksCards.class
index 98797de..e97875d 100644
Binary files a/target/classes/br/unicap/cardgame/model/DecksCards.class and b/target/classes/br/unicap/cardgame/model/DecksCards.class differ
diff --git a/target/classes/br/unicap/cardgame/model/Player.class b/target/classes/br/unicap/cardgame/model/Player.class
index b5fc19a..4413221 100644
Binary files a/target/classes/br/unicap/cardgame/model/Player.class and b/target/classes/br/unicap/cardgame/model/Player.class differ
diff --git a/target/classes/br/unicap/cardgame/model/Questions.class b/target/classes/br/unicap/cardgame/model/Questions.class
index 67cd037..9e9a2b1 100644
Binary files a/target/classes/br/unicap/cardgame/model/Questions.class and b/target/classes/br/unicap/cardgame/model/Questions.class differ
diff --git a/target/classes/br/unicap/cardgame/model/Subjects.class b/target/classes/br/unicap/cardgame/model/Subjects.class
index a6c8a9f..1f627d3 100644
Binary files a/target/classes/br/unicap/cardgame/model/Subjects.class and b/target/classes/br/unicap/cardgame/model/Subjects.class differ
diff --git a/target/classes/br/unicap/cardgame/model/Users.class b/target/classes/br/unicap/cardgame/model/Users.class
index 7e240c7..3283d86 100644
Binary files a/target/classes/br/unicap/cardgame/model/Users.class and b/target/classes/br/unicap/cardgame/model/Users.class differ
diff --git a/target/classes/br/unicap/cardgame/util/Utils.class b/target/classes/br/unicap/cardgame/util/Utils.class
index 05b96fe..8c30531 100644
Binary files a/target/classes/br/unicap/cardgame/util/Utils.class and b/target/classes/br/unicap/cardgame/util/Utils.class differ
diff --git a/target/classes/br/unicap/cardgame/ws/ChangeCharGameWS.class b/target/classes/br/unicap/cardgame/ws/ChangeCharGameWS.class
new file mode 100644
index 0000000..f9d2507
Binary files /dev/null and b/target/classes/br/unicap/cardgame/ws/ChangeCharGameWS.class differ
diff --git a/target/classes/br/unicap/cardgame/ws/LoginGameWS.class b/target/classes/br/unicap/cardgame/ws/LoginGameWS.class
index 79ebbe3..418ea45 100644
Binary files a/target/classes/br/unicap/cardgame/ws/LoginGameWS.class and b/target/classes/br/unicap/cardgame/ws/LoginGameWS.class differ
diff --git a/target/classes/br/unicap/cardgame/ws/OnlinePlayersGameWS.class b/target/classes/br/unicap/cardgame/ws/OnlinePlayersGameWS.class
new file mode 100644
index 0000000..5932b2d
Binary files /dev/null and b/target/classes/br/unicap/cardgame/ws/OnlinePlayersGameWS.class differ
diff --git a/target/classes/br/unicap/cardgame/ws/OnlinePlayersWS.class b/target/classes/br/unicap/cardgame/ws/OnlinePlayersWS.class
deleted file mode 100644
index e2cf42d..0000000
Binary files a/target/classes/br/unicap/cardgame/ws/OnlinePlayersWS.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/CardController.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/CardController.class
deleted file mode 100644
index 00c0d33..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/CardController.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/CharController.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/CharController.class
deleted file mode 100644
index 48a282e..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/CharController.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/DeckController.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/DeckController.class
deleted file mode 100644
index 7330f92..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/DeckController.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/UserController.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/UserController.class
deleted file mode 100644
index 78c5405..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/controller/UserController.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/engine/BattleField.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/engine/BattleField.class
deleted file mode 100644
index f6b024e..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/engine/BattleField.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Player.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Player.class
deleted file mode 100644
index b5fc19a..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/model/Player.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/util/Utils.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/util/Utils.class
deleted file mode 100644
index 05b96fe..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/util/Utils.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/LoginGameWS.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/LoginGameWS.class
deleted file mode 100644
index 79ebbe3..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/LoginGameWS.class and /dev/null differ
diff --git a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/OnlinePlayersWS.class b/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/OnlinePlayersWS.class
deleted file mode 100644
index e2cf42d..0000000
Binary files a/target/helloword/WEB-INF/classes/br/unicap/cardgame/ws/OnlinePlayersWS.class and /dev/null differ
diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties
index b4db079..9796cad 100644
--- a/target/maven-archiver/pom.properties
+++ b/target/maven-archiver/pom.properties
@@ -1,5 +1,5 @@
#Generated by Maven
-#Tue May 31 23:28:02 BRT 2016
+#Wed Jun 01 04:57:46 BRT 2016
version=1.0
groupId=cardgame
artifactId=cardgame