chore!: remove main export mungeUtil (#126)

Removes `mungeUtil` from the list of modules that are exported by
`cordova-common`. It was documented as _internal_ and we did not use it in any
of our repos.
diff --git a/README.md b/README.md
index 422c98b..583ec9d 100644
--- a/README.md
+++ b/README.md
@@ -143,7 +143,6 @@
 ConfigChanges
 ConfigKeeper
 ConfigFile
-mungeUtil
 ```
 
 ## Setup
diff --git a/cordova-common.js b/cordova-common.js
index 549827c..1e091cc 100644
--- a/cordova-common.js
+++ b/cordova-common.js
@@ -37,7 +37,6 @@
     get ConfigChanges () { return require('./src/ConfigChanges/ConfigChanges'); },
     get ConfigKeeper () { return require('./src/ConfigChanges/ConfigKeeper'); },
     get ConfigFile () { return require('./src/ConfigChanges/ConfigFile'); },
-    get mungeUtil () { return require('./src/ConfigChanges/munge-util'); },
 
     get xmlHelpers () { return require('./src/util/xml-helpers'); }
 };