language: node_js
node_js:
  - "0.12"
  - "4"
  - "5"
install:
  - npm install
script:
  - npm run check
  - npm run build
  - npm run validate<% if (coveralls) { %>
after_success:
  - npm run coveralls<% } %><% if (githubRelease) { %>
  - npm run github-release<% } %>
