summaryrefslogtreecommitdiff
path: root/support/sync-es-package.js
diff options
context:
space:
mode:
Diffstat (limited to 'support/sync-es-package.js')
-rwxr-xr-xsupport/sync-es-package.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/support/sync-es-package.js b/support/sync-es-package.js
new file mode 100755
index 0000000..12aee8c
--- /dev/null
+++ b/support/sync-es-package.js
@@ -0,0 +1,14 @@
+#!/usr/bin/env node
+
+var fs = require('fs');
+var json = JSON.parse(fs.readFileSync(__dirname + "/../package.json"), "utf8");
+
+json.name = "async-es";
+delete json.dependencies["lodash"];
+delete json.volo;
+delete json.spm;
+delete json.jam;
+
+process.stdout.write(JSON.stringify(json, null, 2));
+
+