Struggling installing libraries in angular-meteor 1.3

Hello there community.

I’m struggling when it comes to install npm libraries to my angular-meteor 1.3 app.

Right now I’m trying to get this package working GitHub - souly1/ng-walkthrough: A walkthrough/on-boarding/tour guide/learning page directive which is responsive, dynamic, easy to use

Steps I took:

meteor npm install ng-walkthrough

import walkthrough from 'ng-walkthrough';

export default angular.module(name, [
  angularMeteor,
  uiRouter,
  walkthrough
])

Tried reloading the app to get a bunch of errors.

I took out from angular.module the walkthrough and then I didn’t had any errors but when I tried to add the code (from example):

<walkthrough
            is-round=true
            walkthrough-type="transparency"
            focus-element-selector="#focusItem"
            icon="single_tap"
            main-caption="This is some text"
            is-active="true"
            use-button=true>
</walkthrough>

It doesn’t do anything.

I would appreciate a good guide on how to understand these imports since each time I try to install one I have to struggle to get it working as it should.

Thanks!