summaryrefslogtreecommitdiff
path: root/support/sync-es-package.js
blob: 3d021dfc56db89f024b6de5c7a5a603145bf0a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env node

var fs = require('fs');
var json = JSON.parse(fs.readFileSync(__dirname + "/../package.json"), "utf8");

json.name = "async-es";
json.main = "index.js";
json.module = "index.js";
json.sideEffects = false;

process.stdout.write(JSON.stringify(json, null, 2));