blob: 7db78b093f2008180a17751c508afeb8b641ceb4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env node
var fs = require('fs');
var json = JSON.parse(fs.readFileSync(__dirname + "/../package.json"), "utf8");
delete json.dependencies["lodash-es"];
process.stdout.write(JSON.stringify(json, null, 2));
|