language: "node_js"
node_js:
  - "6"
env:
  - CXX=g++-4.8
addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
    packages:
      - "g++-4.8"
install:
  - "npm install"
script:
  - "npm test"
after_success: "npm run coveralls"