Can we submit minified JavaScript Code?

Hello,

I create libraries like the Jquery which include detecting browser, animation, scrolling effects, declaration of HTML elements, etc. and I use them in all the produced plugins and websites. The plugin initialization code is NOT minified and it has full clear script that shows how to set it up and add the preference parameters.

For example, if I submit a slideshow plugin, then the plugin initialization code (build/customization code) will be like that:

var slideshow = {
number_slides: 5,
color: red,
.
.
.
.
}

And I add the required functions for the buyer to customize it like:

slideshow.changeColor(‘green’);
slideshow.changeSpeed(1.5);
etc.

But, in the library, the code is huge but minified via the Google Closure.

In other words, my libraries can be like the Jquery, hard to understand.

So, is that allowed?

Thanks.