mine.js=======The mine script accepts js source and returns all the require call locations as well as the target string. This is a submodule of [js-linker](https://github.com/creationix/js-linker) and [my-filters](https://github.com/creationix/my-filters).``` jsvarmine=require('js-linker/mine.js');varfs=require('fs');varcode=fs.readFileSync("test.js");vardeps=mine(code);```