diff --git a/.travis.yml b/.travis.yml
index 594594132b852a23591e4cc3f7881ed975a3e17f..cf77beb2cf30a9865960b8f1ec402ea72a22b147 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -43,8 +43,8 @@ jobs:
         - gem install rubocop
         - rubocop -d
         # Install and run `commitlint`
-        - npm install @commitlint/config-conventional -D
-        - npm install @commitlint/travis-cli -D
+        - npm i -D @commitlint/config-conventional
+                   @commitlint/travis-cli
         - commitlint-travis
 
     ## Define the rest of the matrix based on Kitchen testing
@@ -95,9 +95,9 @@ jobs:
         - maintainer contributor
 
         # Install all dependencies required for `semantic-release`
-        - npm install @semantic-release/changelog@3 -D
-        - npm install @semantic-release/exec@3 -D
-        - npm install @semantic-release/git@7 -D
+        - npm i -D @semantic-release/changelog@3
+                   @semantic-release/exec@3
+                   @semantic-release/git@7
       deploy:
         provider: script
         skip_cleanup: true
diff --git a/release.config.js b/release.config.js
index afa0cb11ef4d50cff0ce7b1d6725e3b405dc570c..6af7aa8f046665bd6128abae3afa7c030a7c1301 100644
--- a/release.config.js
+++ b/release.config.js
@@ -63,7 +63,7 @@ module.exports = {
           }
 
           if (typeof commit.hash === `string`) {
-              commit.hash = commit.hash.substring(0, 7)
+              commit.shortHash = commit.hash.substring(0, 7)
           }
 
           if (typeof commit.subject === `string`) {