digraph "Cordova Dependencies" {
node [fontname=handlee];
edge [arrowhead=empty];
cli -> {lib, create, common};
plugman -> lib;
lib -> {fetch, serve, common};
lib -> platforms [style=dotted];
create -> {fetch, "app-hello-world", common};
fetch -> common;
platforms [shape=record label="{Platforms|{<all>*|<apple>ios, osx|<www>browser}}"];
platforms:apple -> "node-xcode";
platforms:www -> serve;
platforms:all -> common;
platforms:all -> js [style=dotted];
}