Skip to content

Instantly share code, notes, and snippets.

@laterbreh
Created August 9, 2016 17:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save laterbreh/13fd609e6724505bd14a8435287e9f94 to your computer and use it in GitHub Desktop.
Collect all dependencies for a project for easy copy paste into package.json. Thanks SO - http://stackoverflow.com/a/13381344
var fs = require("fs");
function main() {
fs.readdir("./node_modules", function (err, dirs) {
if (err) {
console.log(err);
return;
}
dirs.forEach(function(dir){
if (dir.indexOf(".") !== 0) {
var packageJsonFile = "./node_modules/" + dir + "/package.json";
if (fs.existsSync(packageJsonFile)) {
fs.readFile(packageJsonFile, function (err, data) {
if (err) {
console.log(err);
}
else {
var json = JSON.parse(data);
console.log('"'+json.name+'": "' + json.version + '",');
}
});
}
}
});
});
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment