diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /third_party/python/jsmin/jsmin.egg-info | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/python/jsmin/jsmin.egg-info')
4 files changed, 132 insertions, 0 deletions
diff --git a/third_party/python/jsmin/jsmin.egg-info/PKG-INFO b/third_party/python/jsmin/jsmin.egg-info/PKG-INFO new file mode 100644 index 0000000000..27f88212e5 --- /dev/null +++ b/third_party/python/jsmin/jsmin.egg-info/PKG-INFO @@ -0,0 +1,117 @@ +Metadata-Version: 1.1 +Name: jsmin +Version: 2.1.0 +Summary: JavaScript minifier. +PLEASE UPDATE TO VERSION >= 2.0.6. Older versions have a serious bug related to comments. +Home-page: https://bitbucket.org/dcs/jsmin/ +Author: Tikitu de Jager +Author-email: tikitu+jsmin@logophile.org +License: MIT License +Description: ===== + jsmin + ===== + + JavaScript minifier. + + Usage + ===== + + .. code:: python + + from jsmin import jsmin + with open('myfile.js') as js_file: + minified = jsmin(js_file.read()) + + You can run it as a commandline tool also:: + + python -m jsmin myfile.js + + As yet, ``jsmin`` makes no attempt to be compatible with + `ECMAScript 6 / ES.next / Harmony <http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts>`_. + If you're using it on Harmony code, though, you might find the ``quote_chars`` + parameter useful: + + .. code:: python + + from jsmin import jsmin + with open('myfile.js') as js_file: + minified = jsmin(js_file.read(), quote_chars="'\"`") + + + Where to get it + =============== + + * install the package `from pypi <https://pypi.python.org/pypi/jsmin/>`_ + * get the latest release `from the stable branch on bitbucket <https://bitbucket.org/dcs/jsmin/branch/stable>`_ + * get the development version `from the default branch on bitbucket <https://bitbucket.org/dcs/jsmin/branch/default>`_ + + Contributing + ============ + + `Issues <https://bitbucket.org/dcs/jsmin/issues>`_ and `Pull requests <https://bitbucket.org/dcs/jsmin/pull-requests>`_ + will be gratefully received on Bitbucket. Pull requests on github are great too, but the issue tracker lives on + bitbucket. + + If possible, please make separate pull requests for tests and for code: tests will be committed on the stable branch + (which tracks the latest released version) while code will go to default by, erm, default. + + Unless you request otherwise, your Bitbucket identity will be added to the contributor's list below; if you prefer a + different name feel free to add it in your pull request instead. (If you prefer not to be mentioned you'll have to let + the maintainer know somehow.) + + Build/test status + ================= + + Both default and stable branches are tested with Travis: https://travis-ci.org/tikitu/jsmin + + Stable (latest released version plus any new tests) is tested against CPython 2.6, 2.7, 3.2, and 3.3. + Currently: + + .. image:: https://travis-ci.org/tikitu/jsmin.png?branch=ghstable + + If stable is failing that means there's a new test that fails on *the latest released version on pypi*, with no fix yet + released. + + Default (development version, might be ahead of latest released version) is tested against CPython 2.6, 2.7, 3.2, and + 3.3. Currently: + + .. image:: https://travis-ci.org/tikitu/jsmin.png?branch=master + + If default is failing don't use it, but as long as stable is passing the pypi release should be ok. + + Contributors (chronological commit order) + ========================================= + + * `Dave St.Germain <https://bitbucket.org/dcs>`_ (original author) + * `Hans weltar <https://bitbucket.org/hansweltar>`_ + * `Tikitu de Jager <mailto:tikitu+jsmin@logophile.org>`_ (current maintainer) + * https://bitbucket.org/rennat + * `Nick Alexander <https://bitbucket.org/ncalexan>`_ + + Changelog + ========= + + v2.1.0 (2014-12-24) Tikitu de Jager + ----------------------------------- + + * First changelog entries; see README.rst for prior contributors. + + * Expose quote_chars parameter to provide just enough unofficial Harmony + support to be useful. + + +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.6 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.2 +Classifier: Programming Language :: Python :: 3.3 +Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content +Classifier: Topic :: Software Development :: Pre-processors +Classifier: Topic :: Text Processing :: Filters diff --git a/third_party/python/jsmin/jsmin.egg-info/SOURCES.txt b/third_party/python/jsmin/jsmin.egg-info/SOURCES.txt new file mode 100644 index 0000000000..ae208f4b60 --- /dev/null +++ b/third_party/python/jsmin/jsmin.egg-info/SOURCES.txt @@ -0,0 +1,13 @@ +CHANGELOG.txt +LICENSE.txt +MANIFEST.in +README.rst +setup.cfg +setup.py +jsmin/__init__.py +jsmin/__main__.py +jsmin/test.py +jsmin.egg-info/PKG-INFO +jsmin.egg-info/SOURCES.txt +jsmin.egg-info/dependency_links.txt +jsmin.egg-info/top_level.txt
\ No newline at end of file diff --git a/third_party/python/jsmin/jsmin.egg-info/dependency_links.txt b/third_party/python/jsmin/jsmin.egg-info/dependency_links.txt new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/third_party/python/jsmin/jsmin.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/third_party/python/jsmin/jsmin.egg-info/top_level.txt b/third_party/python/jsmin/jsmin.egg-info/top_level.txt new file mode 100644 index 0000000000..79abaa99ee --- /dev/null +++ b/third_party/python/jsmin/jsmin.egg-info/top_level.txt @@ -0,0 +1 @@ +jsmin |