language: node_js

branches:
  only:
    - master
    - develop

node_js:
  - stable

install:
  - npm install

script: 
  - npm run cover


# Send coverage data to Coveralls
after_script: "cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js"