language: node_js
sudo: false
node_js:
  - "4"
  - "6"
install:
  - npm install
script:
  - node --version
  - npm --version
  - npm test

