From b9efdcc2af801031f405180609bcbdf8baab4e26 Mon Sep 17 00:00:00 2001
From: Vytor Calixto <vytorcalixto@gmail.com>
Date: Mon, 3 Oct 2016 11:20:58 -0300
Subject: [PATCH] Add more dependencies to npm install --global

---
 .gitlab-ci.yml | 5 ++++-
 README.md      | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f76c7b37..7f7f2cca 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ stages:
   - test
 
 before_script:
-  - npm install --global gulp gulp-cli babel babel-cli babel-core babel-register mocha
+  - npm install --global gulp gulp-cli babel babel-cli babel-core babel-register mocha gulp-mocha gulp-eslint
   - npm install
 
 run_tests:
@@ -12,3 +12,6 @@ run_tests:
     - gulp test
   tags:
     - node
+  cache:
+    paths:
+      - node_modules/
diff --git a/README.md b/README.md
index 12530fa1..38e66ae5 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Previous versions of Node.js do not support ECMAScript6, it is recommended to us
 
 4) Install babel and gulp globally
 
-> npm install -g gulp gulp-cli babel babel-cli babel-core babel-register mocha
+> npm install --global gulp gulp-cli babel babel-cli babel-core babel-register mocha gulp-mocha gulp-eslint
 
 5) Install project dependencies
 
-- 
GitLab