Node.js script doesn't quit, how to find out what functions/callbacks keep it running?

I wrote script in node.js that downloads some data and saves them to mongodb. However, after all download and save callbacks finish, the process doesn't quit.

Is there a way to see which async operations or scheduled callbacks are keeping node engine running?