sudo: false
language: node_js
node_js:
    - 0.12
    - 4.2
    - 5
    - 6
before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
script: npm run lint && npm test
notifications:
    email:
        recipients:
            - sathyam.peram@gmail.com
        on_success: change
        on_failure: always
