libyang CHANGE review header includes

The plugins_types.h was supposed only for implementing data type plugins
code, so I've removed it from libyang.h (now it is supposed to be
included explicitly).
diff --git a/src/parser_json.c b/src/parser_json.c
index 9fa5334..f0cde12 100644
--- a/src/parser_json.c
+++ b/src/parser_json.c
@@ -15,18 +15,24 @@
 #define _GNU_SOURCE
 
 #include <assert.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
 
 #include "common.h"
-#include "compat.h"
 #include "context.h"
+#include "dict.h"
 #include "in_internal.h"
 #include "json.h"
+#include "log.h"
+#include "parser_data.h"
 #include "parser_internal.h"
+#include "set.h"
+#include "tree.h"
 #include "tree_data.h"
 #include "tree_data_internal.h"
 #include "tree_schema.h"
+#include "tree_schema_internal.h"
 #include "validation.h"
 
 /**