TypeError: Firebase não é uma função

Estou tentando seguir o tutorial do Nó da base de firmas:https://www.firebase.com/docs/web/quickstart.html

Meu aplicativo node.js está travando com o erro "TypeError: Firebase is not a function". Meu arquivo index.js:

var Firebase = require("firebase");
var firebaseRef = new Firebase("https://word-word-number.firebaseio.com/");

A linha dois é onde o acidente acontece.

No meu package.json eu tenho:

"firebase": "^3.0.2",

e

"node": "5.11.0"

questionAnswers(2)

yourAnswerToTheQuestion