sudo: false
language: node_js
node_js:
  - "0.10"
  - "0.11"
  - "0.12"
  - "4"
script:
  - "npm test"
  # test with npm@3
  - "rm -rf node_modules && npm install npm@3"
  - "node_modules/.bin/npm install"
  - "node_modules/.bin/npm test"
