diff --git a/.github/testing.yml b/.github/testing.yml new file mode 100644 index 0000000..36fcf8a --- /dev/null +++ b/.github/testing.yml @@ -0,0 +1,28 @@ +name: WakaReadme + +on: + push: + branches: [master] + pull_request: + branches: [master] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.10 + uses: actions/setup-python@v2 + with: + python-version: "3.10" + - name: Install dependencies + run: | + curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - --version 1.1.13 + echo "##vso[task.setvariable variable=PATH]${PATH}:$HOME/.poetry/bin" + source $HOME/.poetry/env + poetry install + - name: Run unit tests + run: | + poetry run python -m unittest discover diff --git a/.gitignore b/.gitignore index d31e7aa..5cd97c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,155 @@ -#generated when running the tests +# Byte-compiled / optimized / DLL files __pycache__/ +*.py[cod] +*$py.class -# Local VS code configurations +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +# VSCode .vscode/ - -# Python virtual env -venv - -# asdf local tool version -.tool-versions \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9243af2..0000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: python -python: - - "3.7" -install: - - pip install -r requirements.txt -script: - - python -m unittest discover diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..2a371d8 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,16 @@ +# Contributing + +First off, thanks! You can contribute to the repo via the following steps. + +1. Fork this repository and clone your fork into a local machine. +2. Install poetry with: `curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - --version 1.1.13` +3. Open a terminal in the cloned folder and create a virtual environment using: `poetry shell` and install dependencies with `poetry install` +4. You can put the environment variable in a local `.env` file +5. Test the program `python -m unittest discover`. Read [main.py:L289](main.py#L289) before step 6. +6. Finally run it in development mode with `python -m main --dev`. + +## Resources + +- [All about git](https://stackoverflow.com/q/315911) +- [Poetry](https://python-poetry.org/) +- [Unit testing](https://docs.python.org/3/library/unittest.html) diff --git a/Dockerfile b/Dockerfile index 564232d..e270939 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,29 @@ -FROM python:latest +FROM python:3.10.2-slim-bullseye -# Install dependencies. -ADD requirements.txt /requirements.txt -RUN pip install -r requirements.txt +ENV PYTHONFAULTHANDLER=1 \ + PYTHONUNBUFFERED=1 \ + PYTHONHASHSEED=random \ + PYTHONDONTWRITEBYTECODE=1 \ + # pip: + PIP_NO_CACHE_DIR=off \ + PIP_DISABLE_PIP_VERSION_CHECK=on \ + PIP_DEFAULT_TIMEOUT=100 \ + # poetry: + POETRY_VERSION=1.1.13 \ + POETRY_NO_INTERACTION=1 \ + POETRY_CACHE_DIR='/var/cache/pypoetry' \ + PATH="$PATH:/root/.local/bin" -# Copy code. +# install poetry +# RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - +RUN pip install pipx +RUN pipx install "poetry==$POETRY_VERSION" +RUN pipx ensurepath + +# install dependencies +COPY pyproject.toml poetry.lock / +RUN poetry install --no-dev --no-root --no-interaction --no-ansi + +# copy and run program ADD main.py /main.py - -CMD ["python", "/main.py"] +CMD [ "poetry", "run", "python", "/main.py" ] diff --git a/LICENSE b/LICENSE index 25a0263..9b4a826 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -The MIT License (MIT) +# The MIT License (MIT) Copyright (c) 2020 ATHUL CYRIAC AJAY @@ -17,4 +17,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Pipfile b/Pipfile deleted file mode 100644 index 2a0f4a4..0000000 --- a/Pipfile +++ /dev/null @@ -1,22 +0,0 @@ -[[source]] -url = "https://pypi.org/simple" -verify_ssl = true -name = "pypi" - -[packages] -certifi = "*" -chardet = "*" -deprecated = "*" -idna = "*" -requests = "*" -urllib3 = "*" -wrapt = "*" -PyGithub = "*" -PyJWT = "*" - -[dev-packages] -autopep8 = "*" -pylint = "*" - -[requires] -python_version = "3.9" diff --git a/Pipfile.lock b/Pipfile.lock deleted file mode 100644 index 23b4333..0000000 --- a/Pipfile.lock +++ /dev/null @@ -1,409 +0,0 @@ -{ - "_meta": { - "hash": { - "sha256": "d8e96785587270fe3f182e63153a0910224a7f2c338003396835d514fe3a5fa2" - }, - "pipfile-spec": 6, - "requires": { - "python_version": "3.9" - }, - "sources": [ - { - "name": "pypi", - "url": "https://pypi.org/simple", - "verify_ssl": true - } - ] - }, - "default": { - "certifi": { - "hashes": [ - "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872", - "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569" - ], - "index": "pypi", - "version": "==2021.10.8" - }, - "cffi": { - "hashes": [ - "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3", - "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2", - "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636", - "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20", - "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728", - "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27", - "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66", - "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443", - "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0", - "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7", - "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39", - "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605", - "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a", - "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37", - "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029", - "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139", - "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc", - "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df", - "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14", - "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880", - "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2", - "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a", - "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e", - "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474", - "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024", - "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8", - "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0", - "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e", - "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a", - "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e", - "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032", - "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6", - "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e", - "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b", - "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e", - "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954", - "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962", - "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c", - "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4", - "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55", - "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962", - "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023", - "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c", - "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6", - "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8", - "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382", - "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7", - "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc", - "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997", - "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796" - ], - "version": "==1.15.0" - }, - "chardet": { - "hashes": [ - "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa", - "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5" - ], - "index": "pypi", - "version": "==4.0.0" - }, - "charset-normalizer": { - "hashes": [ - "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597", - "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df" - ], - "markers": "python_version >= '3'", - "version": "==2.0.12" - }, - "deprecated": { - "hashes": [ - "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d", - "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d" - ], - "index": "pypi", - "version": "==1.2.13" - }, - "idna": { - "hashes": [ - "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff", - "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d" - ], - "index": "pypi", - "version": "==3.3" - }, - "pycparser": { - "hashes": [ - "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9", - "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" - ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==2.21" - }, - "pygithub": { - "hashes": [ - "sha256:1bbfff9372047ff3f21d5cd8e07720f3dbfdaf6462fcaed9d815f528f1ba7283", - "sha256:2caf0054ea079b71e539741ae56c5a95e073b81fa472ce222e81667381b9601b" - ], - "index": "pypi", - "version": "==1.55" - }, - "pyjwt": { - "hashes": [ - "sha256:b888b4d56f06f6dcd777210c334e69c737be74755d3e5e9ee3fe67dc18a0ee41", - "sha256:e0c4bb8d9f0af0c7f5b1ec4c5036309617d03d56932877f2f7a0beeb5318322f" - ], - "index": "pypi", - "version": "==2.3.0" - }, - "pynacl": { - "hashes": [ - "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858", - "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d", - "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93", - "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1", - "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92", - "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff", - "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba", - "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394", - "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b", - "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543" - ], - "markers": "python_version >= '3.6'", - "version": "==1.5.0" - }, - "requests": { - "hashes": [ - "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61", - "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d" - ], - "index": "pypi", - "version": "==2.27.1" - }, - "urllib3": { - "hashes": [ - "sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed", - "sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c" - ], - "index": "pypi", - "version": "==1.26.8" - }, - "wrapt": { - "hashes": [ - "sha256:086218a72ec7d986a3eddb7707c8c4526d677c7b35e355875a0fe2918b059179", - "sha256:0877fe981fd76b183711d767500e6b3111378ed2043c145e21816ee589d91096", - "sha256:0a017a667d1f7411816e4bf214646d0ad5b1da2c1ea13dec6c162736ff25a374", - "sha256:0cb23d36ed03bf46b894cfec777eec754146d68429c30431c99ef28482b5c1df", - "sha256:1fea9cd438686e6682271d36f3481a9f3636195578bab9ca3382e2f5f01fc185", - "sha256:220a869982ea9023e163ba915077816ca439489de6d2c09089b219f4e11b6785", - "sha256:25b1b1d5df495d82be1c9d2fad408f7ce5ca8a38085e2da41bb63c914baadff7", - "sha256:2dded5496e8f1592ec27079b28b6ad2a1ef0b9296d270f77b8e4a3a796cf6909", - "sha256:2ebdde19cd3c8cdf8df3fc165bc7827334bc4e353465048b36f7deeae8ee0918", - "sha256:43e69ffe47e3609a6aec0fe723001c60c65305784d964f5007d5b4fb1bc6bf33", - "sha256:46f7f3af321a573fc0c3586612db4decb7eb37172af1bc6173d81f5b66c2e068", - "sha256:47f0a183743e7f71f29e4e21574ad3fa95676136f45b91afcf83f6a050914829", - "sha256:498e6217523111d07cd67e87a791f5e9ee769f9241fcf8a379696e25806965af", - "sha256:4b9c458732450ec42578b5642ac53e312092acf8c0bfce140ada5ca1ac556f79", - "sha256:51799ca950cfee9396a87f4a1240622ac38973b6df5ef7a41e7f0b98797099ce", - "sha256:5601f44a0f38fed36cc07db004f0eedeaadbdcec90e4e90509480e7e6060a5bc", - "sha256:5f223101f21cfd41deec8ce3889dc59f88a59b409db028c469c9b20cfeefbe36", - "sha256:610f5f83dd1e0ad40254c306f4764fcdc846641f120c3cf424ff57a19d5f7ade", - "sha256:6a03d9917aee887690aa3f1747ce634e610f6db6f6b332b35c2dd89412912bca", - "sha256:705e2af1f7be4707e49ced9153f8d72131090e52be9278b5dbb1498c749a1e32", - "sha256:766b32c762e07e26f50d8a3468e3b4228b3736c805018e4b0ec8cc01ecd88125", - "sha256:77416e6b17926d953b5c666a3cb718d5945df63ecf922af0ee576206d7033b5e", - "sha256:778fd096ee96890c10ce96187c76b3e99b2da44e08c9e24d5652f356873f6709", - "sha256:78dea98c81915bbf510eb6a3c9c24915e4660302937b9ae05a0947164248020f", - "sha256:7dd215e4e8514004c8d810a73e342c536547038fb130205ec4bba9f5de35d45b", - "sha256:7dde79d007cd6dfa65afe404766057c2409316135cb892be4b1c768e3f3a11cb", - "sha256:81bd7c90d28a4b2e1df135bfbd7c23aee3050078ca6441bead44c42483f9ebfb", - "sha256:85148f4225287b6a0665eef08a178c15097366d46b210574a658c1ff5b377489", - "sha256:865c0b50003616f05858b22174c40ffc27a38e67359fa1495605f96125f76640", - "sha256:87883690cae293541e08ba2da22cacaae0a092e0ed56bbba8d018cc486fbafbb", - "sha256:8aab36778fa9bba1a8f06a4919556f9f8c7b33102bd71b3ab307bb3fecb21851", - "sha256:8c73c1a2ec7c98d7eaded149f6d225a692caa1bd7b2401a14125446e9e90410d", - "sha256:936503cb0a6ed28dbfa87e8fcd0a56458822144e9d11a49ccee6d9a8adb2ac44", - "sha256:944b180f61f5e36c0634d3202ba8509b986b5fbaf57db3e94df11abee244ba13", - "sha256:96b81ae75591a795d8c90edc0bfaab44d3d41ffc1aae4d994c5aa21d9b8e19a2", - "sha256:981da26722bebb9247a0601e2922cedf8bb7a600e89c852d063313102de6f2cb", - "sha256:ae9de71eb60940e58207f8e71fe113c639da42adb02fb2bcbcaccc1ccecd092b", - "sha256:b73d4b78807bd299b38e4598b8e7bd34ed55d480160d2e7fdaabd9931afa65f9", - "sha256:d4a5f6146cfa5c7ba0134249665acd322a70d1ea61732723c7d3e8cc0fa80755", - "sha256:dd91006848eb55af2159375134d724032a2d1d13bcc6f81cd8d3ed9f2b8e846c", - "sha256:e05e60ff3b2b0342153be4d1b597bbcfd8330890056b9619f4ad6b8d5c96a81a", - "sha256:e6906d6f48437dfd80464f7d7af1740eadc572b9f7a4301e7dd3d65db285cacf", - "sha256:e92d0d4fa68ea0c02d39f1e2f9cb5bc4b4a71e8c442207433d8db47ee79d7aa3", - "sha256:e94b7d9deaa4cc7bac9198a58a7240aaf87fe56c6277ee25fa5b3aa1edebd229", - "sha256:ea3e746e29d4000cd98d572f3ee2a6050a4f784bb536f4ac1f035987fc1ed83e", - "sha256:ec7e20258ecc5174029a0f391e1b948bf2906cd64c198a9b8b281b811cbc04de", - "sha256:ec9465dd69d5657b5d2fa6133b3e1e989ae27d29471a672416fd729b429eb554", - "sha256:f122ccd12fdc69628786d0c947bdd9cb2733be8f800d88b5a37c57f1f1d73c10", - "sha256:f99c0489258086308aad4ae57da9e8ecf9e1f3f30fa35d5e170b4d4896554d80", - "sha256:f9c51d9af9abb899bd34ace878fbec8bf357b3194a10c4e8e0a25512826ef056", - "sha256:fd76c47f20984b43d93de9a82011bb6e5f8325df6c9ed4d8310029a55fa361ea" - ], - "index": "pypi", - "version": "==1.13.3" - } - }, - "develop": { - "astroid": { - "hashes": [ - "sha256:1efdf4e867d4d8ba4a9f6cf9ce07cd182c4c41de77f23814feb27ca93ca9d877", - "sha256:506daabe5edffb7e696ad82483ad0228245a9742ed7d2d8c9cdb31537decf9f6" - ], - "markers": "python_full_version >= '3.6.2'", - "version": "==2.9.3" - }, - "autopep8": { - "hashes": [ - "sha256:44f0932855039d2c15c4510d6df665e4730f2b8582704fa48f9c55bd3e17d979", - "sha256:ed77137193bbac52d029a52c59bec1b0629b5a186c495f1eb21b126ac466083f" - ], - "index": "pypi", - "version": "==1.6.0" - }, - "isort": { - "hashes": [ - "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7", - "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951" - ], - "markers": "python_version < '4.0' and python_full_version >= '3.6.1'", - "version": "==5.10.1" - }, - "lazy-object-proxy": { - "hashes": [ - "sha256:043651b6cb706eee4f91854da4a089816a6606c1428fd391573ef8cb642ae4f7", - "sha256:07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a", - "sha256:12f3bb77efe1367b2515f8cb4790a11cffae889148ad33adad07b9b55e0ab22c", - "sha256:2052837718516a94940867e16b1bb10edb069ab475c3ad84fd1e1a6dd2c0fcfc", - "sha256:2130db8ed69a48a3440103d4a520b89d8a9405f1b06e2cc81640509e8bf6548f", - "sha256:39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09", - "sha256:46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442", - "sha256:4dca6244e4121c74cc20542c2ca39e5c4a5027c81d112bfb893cf0790f96f57e", - "sha256:553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029", - "sha256:677ea950bef409b47e51e733283544ac3d660b709cfce7b187f5ace137960d61", - "sha256:6a24357267aa976abab660b1d47a34aaf07259a0c3859a34e536f1ee6e76b5bb", - "sha256:6a6e94c7b02641d1311228a102607ecd576f70734dc3d5e22610111aeacba8a0", - "sha256:6aff3fe5de0831867092e017cf67e2750c6a1c7d88d84d2481bd84a2e019ec35", - "sha256:6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42", - "sha256:7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1", - "sha256:70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad", - "sha256:8561da8b3dd22d696244d6d0d5330618c993a215070f473b699e00cf1f3f6443", - "sha256:85b232e791f2229a4f55840ed54706110c80c0a210d076eee093f2b2e33e1bfd", - "sha256:898322f8d078f2654d275124a8dd19b079080ae977033b713f677afcfc88e2b9", - "sha256:8f3953eb575b45480db6568306893f0bd9d8dfeeebd46812aa09ca9579595148", - "sha256:91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38", - "sha256:9d166602b525bf54ac994cf833c385bfcc341b364e3ee71e3bf5a1336e677b55", - "sha256:a57d51ed2997e97f3b8e3500c984db50a554bb5db56c50b5dab1b41339b37e36", - "sha256:b9e89b87c707dd769c4ea91f7a31538888aad05c116a59820f28d59b3ebfe25a", - "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b", - "sha256:c19814163728941bb871240d45c4c30d33b8a2e85972c44d4e63dd7107faba44", - "sha256:c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6", - "sha256:c7a683c37a8a24f6428c28c561c80d5f4fd316ddcf0c7cab999b15ab3f5c5c69", - "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4", - "sha256:d66906d5785da8e0be7360912e99c9188b70f52c422f9fc18223347235691a84", - "sha256:dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de", - "sha256:df2631f9d67259dc9620d831384ed7732a198eb434eadf69aea95ad18c587a28", - "sha256:e368b7f7eac182a59ff1f81d5f3802161932a41dc1b1cc45c1f757dc876b5d2c", - "sha256:e40f2013d96d30217a51eeb1db28c9ac41e9d0ee915ef9d00da639c5b63f01a1", - "sha256:f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8", - "sha256:fccdf7c2c5821a8cbd0a9440a456f5050492f2270bd54e94360cac663398739b", - "sha256:fd45683c3caddf83abbb1249b653a266e7069a09f486daa8863fb0e7496a9fdb" - ], - "markers": "python_version >= '3.6'", - "version": "==1.7.1" - }, - "mccabe": { - "hashes": [ - "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42", - "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f" - ], - "version": "==0.6.1" - }, - "platformdirs": { - "hashes": [ - "sha256:30671902352e97b1eafd74ade8e4a694782bd3471685e78c32d0fdfd3aa7e7bb", - "sha256:8ec11dfba28ecc0715eb5fb0147a87b1bf325f349f3da9aab2cd6b50b96b692b" - ], - "markers": "python_version >= '3.7'", - "version": "==2.5.0" - }, - "pycodestyle": { - "hashes": [ - "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20", - "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f" - ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", - "version": "==2.8.0" - }, - "pylint": { - "hashes": [ - "sha256:9d945a73640e1fec07ee34b42f5669b770c759acd536ec7b16d7e4b87a9c9ff9", - "sha256:daabda3f7ed9d1c60f52d563b1b854632fd90035bcf01443e234d3dc794e3b74" - ], - "index": "pypi", - "version": "==2.12.2" - }, - "setuptools": { - "hashes": [ - "sha256:1bc2725f0b4d6eb054ee29a0e05fda9c7c0921a6bdc0cf6dd2204da746872b49", - "sha256:71b2b3a334d6fcd2e472fb18d0ff530dc585d62da1494e75d001058f33153257" - ], - "markers": "python_version >= '3.7'", - "version": "==60.9.1" - }, - "toml": { - "hashes": [ - "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", - "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" - ], - "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==0.10.2" - }, - "typing-extensions": { - "hashes": [ - "sha256:1a9462dcc3347a79b1f1c0271fbe79e844580bb598bafa1ed208b94da3cdcd42", - "sha256:21c85e0fe4b9a155d0799430b0ad741cdce7e359660ccbd8b530613e8df88ce2" - ], - "markers": "python_version < '3.10'", - "version": "==4.1.1" - }, - "wrapt": { - "hashes": [ - "sha256:086218a72ec7d986a3eddb7707c8c4526d677c7b35e355875a0fe2918b059179", - "sha256:0877fe981fd76b183711d767500e6b3111378ed2043c145e21816ee589d91096", - "sha256:0a017a667d1f7411816e4bf214646d0ad5b1da2c1ea13dec6c162736ff25a374", - "sha256:0cb23d36ed03bf46b894cfec777eec754146d68429c30431c99ef28482b5c1df", - "sha256:1fea9cd438686e6682271d36f3481a9f3636195578bab9ca3382e2f5f01fc185", - "sha256:220a869982ea9023e163ba915077816ca439489de6d2c09089b219f4e11b6785", - "sha256:25b1b1d5df495d82be1c9d2fad408f7ce5ca8a38085e2da41bb63c914baadff7", - "sha256:2dded5496e8f1592ec27079b28b6ad2a1ef0b9296d270f77b8e4a3a796cf6909", - "sha256:2ebdde19cd3c8cdf8df3fc165bc7827334bc4e353465048b36f7deeae8ee0918", - "sha256:43e69ffe47e3609a6aec0fe723001c60c65305784d964f5007d5b4fb1bc6bf33", - "sha256:46f7f3af321a573fc0c3586612db4decb7eb37172af1bc6173d81f5b66c2e068", - "sha256:47f0a183743e7f71f29e4e21574ad3fa95676136f45b91afcf83f6a050914829", - "sha256:498e6217523111d07cd67e87a791f5e9ee769f9241fcf8a379696e25806965af", - "sha256:4b9c458732450ec42578b5642ac53e312092acf8c0bfce140ada5ca1ac556f79", - "sha256:51799ca950cfee9396a87f4a1240622ac38973b6df5ef7a41e7f0b98797099ce", - "sha256:5601f44a0f38fed36cc07db004f0eedeaadbdcec90e4e90509480e7e6060a5bc", - "sha256:5f223101f21cfd41deec8ce3889dc59f88a59b409db028c469c9b20cfeefbe36", - "sha256:610f5f83dd1e0ad40254c306f4764fcdc846641f120c3cf424ff57a19d5f7ade", - "sha256:6a03d9917aee887690aa3f1747ce634e610f6db6f6b332b35c2dd89412912bca", - "sha256:705e2af1f7be4707e49ced9153f8d72131090e52be9278b5dbb1498c749a1e32", - "sha256:766b32c762e07e26f50d8a3468e3b4228b3736c805018e4b0ec8cc01ecd88125", - "sha256:77416e6b17926d953b5c666a3cb718d5945df63ecf922af0ee576206d7033b5e", - "sha256:778fd096ee96890c10ce96187c76b3e99b2da44e08c9e24d5652f356873f6709", - "sha256:78dea98c81915bbf510eb6a3c9c24915e4660302937b9ae05a0947164248020f", - "sha256:7dd215e4e8514004c8d810a73e342c536547038fb130205ec4bba9f5de35d45b", - "sha256:7dde79d007cd6dfa65afe404766057c2409316135cb892be4b1c768e3f3a11cb", - "sha256:81bd7c90d28a4b2e1df135bfbd7c23aee3050078ca6441bead44c42483f9ebfb", - "sha256:85148f4225287b6a0665eef08a178c15097366d46b210574a658c1ff5b377489", - "sha256:865c0b50003616f05858b22174c40ffc27a38e67359fa1495605f96125f76640", - "sha256:87883690cae293541e08ba2da22cacaae0a092e0ed56bbba8d018cc486fbafbb", - "sha256:8aab36778fa9bba1a8f06a4919556f9f8c7b33102bd71b3ab307bb3fecb21851", - "sha256:8c73c1a2ec7c98d7eaded149f6d225a692caa1bd7b2401a14125446e9e90410d", - "sha256:936503cb0a6ed28dbfa87e8fcd0a56458822144e9d11a49ccee6d9a8adb2ac44", - "sha256:944b180f61f5e36c0634d3202ba8509b986b5fbaf57db3e94df11abee244ba13", - "sha256:96b81ae75591a795d8c90edc0bfaab44d3d41ffc1aae4d994c5aa21d9b8e19a2", - "sha256:981da26722bebb9247a0601e2922cedf8bb7a600e89c852d063313102de6f2cb", - "sha256:ae9de71eb60940e58207f8e71fe113c639da42adb02fb2bcbcaccc1ccecd092b", - "sha256:b73d4b78807bd299b38e4598b8e7bd34ed55d480160d2e7fdaabd9931afa65f9", - "sha256:d4a5f6146cfa5c7ba0134249665acd322a70d1ea61732723c7d3e8cc0fa80755", - "sha256:dd91006848eb55af2159375134d724032a2d1d13bcc6f81cd8d3ed9f2b8e846c", - "sha256:e05e60ff3b2b0342153be4d1b597bbcfd8330890056b9619f4ad6b8d5c96a81a", - "sha256:e6906d6f48437dfd80464f7d7af1740eadc572b9f7a4301e7dd3d65db285cacf", - "sha256:e92d0d4fa68ea0c02d39f1e2f9cb5bc4b4a71e8c442207433d8db47ee79d7aa3", - "sha256:e94b7d9deaa4cc7bac9198a58a7240aaf87fe56c6277ee25fa5b3aa1edebd229", - "sha256:ea3e746e29d4000cd98d572f3ee2a6050a4f784bb536f4ac1f035987fc1ed83e", - "sha256:ec7e20258ecc5174029a0f391e1b948bf2906cd64c198a9b8b281b811cbc04de", - "sha256:ec9465dd69d5657b5d2fa6133b3e1e989ae27d29471a672416fd729b429eb554", - "sha256:f122ccd12fdc69628786d0c947bdd9cb2733be8f800d88b5a37c57f1f1d73c10", - "sha256:f99c0489258086308aad4ae57da9e8ecf9e1f3f30fa35d5e170b4d4896554d80", - "sha256:f9c51d9af9abb899bd34ace878fbec8bf357b3194a10c4e8e0a25512826ef056", - "sha256:fd76c47f20984b43d93de9a82011bb6e5f8325df6c9ed4d8310029a55fa361ea" - ], - "index": "pypi", - "version": "==1.13.3" - } - } -} diff --git a/README.md b/README.md index 620fe65..da8a6a8 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ These lines will be the entry-points for dev metrics. ## New to WakaTime? -WakaTime gives you an idea of the time you really spent on coding. This helps you boost your productivity and competitive edge. +WakaTime gives you an idea of the time you spent on coding. This helps you boost your productivity and competitive edge. - Head over to and create an account. - Get your WakaTime API Key from your [Account Settings in WakaTime](https://wakatime.com/settings/account). @@ -117,35 +117,18 @@ jobs: REPOSITORY: # optional, By default, it will automatically use the repository which is executing the workflow. ``` -## Tests - -### Running Tests - -To run tests simply execute the following in the directory containing `main.py`: - -```python -python -m unittest discover -``` - -### Contributing Tests - -These tests uses the [python's unit testing framework](https://docs.python.org/3/library/unittest.html). - -Since this project is contained all within one file, `main.py`. You can simply add a function to the `TestMain` class in `tests/test_main.py`, similar to the `test_graph` function. - ## Extras -1. You can specify the time range in the parameter (default `last_7_days`): +1. As an alternative to official WakaTime, _waka-readme_ also integrates with WakaTime-compatible services like [Wakapi](https://wakapi.dev) and [Hakatime](https://github.com/mujx/hakatime). To use one of these, **adapt the API URL accordingly and use the respective service's API key** instead: - ```yml - - uses: athul/waka-readme@master - with: - WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} - TIME_RANGE: last_30_days - ``` - See [Wakatime API docs](https://wakatime.com/developers#stats) for more possible values. + ```yml + - uses: athul/waka-readme@master + with: + WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} + API_BASE_URL: https://wakapi.dev/api + ``` -2. If you want to add the week in the Header of your stats, you can add `SHOW_TITLE: true` (by default it will be `false`) in your workflow file like this +2. If you want to add a title for your stats, by setting `SHOW_TITLE: true` (which by default is `false`) in your workflow file like this ```yml - uses: athul/waka-readme@master @@ -167,7 +150,18 @@ Since this project is contained all within one file, `main.py`. You can simply a YAML 7 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.07 % ``` -3. You can specify a commit message to override the default _"Updated the Graph with new Metrics"_. Here is how you do it +3. You can specify the time range in the parameter (default `last_7_days`): + + ```yml + - uses: athul/waka-readme@master + with: + WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} + TIME_RANGE: last_30_days + ``` + + See [Wakatime API docs](https://wakatime.com/developers#stats) for more possible values. + +4. You can specify a commit message to override the default _"Updated the Graph with new Metrics"_. Here is how you do it ```yml - uses: athul/waka-readme@master @@ -179,7 +173,7 @@ Since this project is contained all within one file, `main.py`. You can simply a If no commit message is specified in the `yml` file, it defaults to _"Updated the Graph with new Metrics"_ -4. You can change the block characters to match with the style of your readme. By default the one show in the graphs before is used. Here is how you do it +5. You can change the block characters to match with the style of your readme. By default the one show in the graphs before is used. Here is how you do it. ```yml - uses: athul/waka-readme@master @@ -188,7 +182,7 @@ Since this project is contained all within one file, `main.py`. You can simply a BLOCKS: ⣀⣄⣤⣦⣶⣷⣿ ``` - It will change the graph to something like this: + Requires `BLOCKS` to be of at least 2 characters in length. It will change the graph to something like this: ```text Python 8 hrs 52 mins ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀ 75.87 % @@ -198,16 +192,29 @@ Since this project is contained all within one file, `main.py`. You can simply a YAML 7 mins ⣄⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 01.07 % ``` -5. As an alternative to official WakaTime, _waka-readme_ also integrates with WakaTime-compatible services like [Wakapi](https://wakapi.dev) and [Hakatime](https://github.com/mujx/hakatime). To use one of these, **adapt the API URL accordingly and use the respective service's API key** instead: +6. If you want to add total time in stats, by setting `SHOW_TOTAL: true` (which by default is `false`) in your workflow file like this: ```yml - uses: athul/waka-readme@master with: WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} - API_BASE_URL: https://wakapi.dev/api + GH_TOKEN: ${{ secrets.GH_TOKEN }} + SHOW_TOTAL: true ``` -6. If you do not like to share how much time you spent on each language, you can add `SHOW_TIME: false` (by default it will be `true`) in your workflow file like so: + It will change the graph to something like this: + + ```text + Total Time: 44 hrs 27 mins + + Python 36 hrs 28 mins ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣀⣀⣀⣀⣀ 80.09 % + YAML 2 hrs 30 mins ⣿⣤⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 05.52 % + TOML 1 hr 36 mins ⣷⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 03.54 % + Docker 1 hr 11 mins ⣶⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 02.61 % + Other 1 hr 4 mins ⣶⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 02.37 % + ``` + +7. If you do not like to share how much time you spent on each language, you can add `SHOW_TIME: false` (by default it will be `true`) in your workflow file like so: ```yml - uses: athul/waka-readme@master @@ -228,6 +235,10 @@ Since this project is contained all within one file, `main.py`. You can simply a Other ██▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 05.87 % ``` +> You can find all the options in [action.yml](action.yml) and a sample workflow [here](https://github.com/athul/athul/blob/master/.github/workflows/update-readme.yml). +> +> Tip 💡: Add `on: workflow_dispatch:` to enable manual runs. [See](https://github.com/joe733/joe733/blob/master/.github/workflows/waka.yml#L4). + ## Why only the language stats and not other data from the API? I am a fan of minimal designs and the profile readme is a great way to show off your skills and interests. The WakaTime API, gets us a **lot of data** about a person's **coding activity including the editors and Operating Systems you used and the projects you worked on**. Some of these projects maybe secretive and should not be shown out to the public. Using up more data via the Wakatime API will clutter the profile readme and hinder your chances on displaying what you provide **value to the community** like the pinned Repositories. I believe that **Coding Stats is nerdiest of all** since you can tell the community that you are _**exercising these languages or learning a new language**_, this will also show that you spend some amount of time to learn and exercise your development skills. That's what matters in the end :heart: diff --git a/action.yml b/action.yml index d25ae8f..21cd343 100644 --- a/action.yml +++ b/action.yml @@ -1,19 +1,19 @@ name: "Waka - Readme" -author: Athil Cyriac Ajay +author: Athul Cyriac Ajay description: "Add a Wakatime Coding Activity graph in your Readme" inputs: GH_TOKEN: description: "GitHub access token with Repo scope" - required: true default: ${{ github.token }} + required: true WAKATIME_API_KEY: description: "Your Wakatime/Wakapi/Hakatime API Key" required: true API_BASE_URL: - description: "Aternative API base URL when using a third-party WakaTime backend" + description: "Alternative API base URL when using a third-party WakaTime-ish backend" default: "https://wakatime.com/api" required: false @@ -22,35 +22,36 @@ inputs: default: ${{ github.repository }} required: false - SHOW_TITLE: - description: "Displays the week number and days in Readme as title" - default: false - required: false - COMMIT_MESSAGE: description: "Add a commit message of your choice" default: "Updated the Graph with new Metrics" required: false + # content tweaks + + SHOW_TITLE: + description: "Displays the week number and days in Readme as title" + default: "false" + required: false + BLOCKS: description: "Add the progress blocks of your choice" default: "░▒▓█" required: false - SHOW_TIME: - description: "Displays the amount of time spent in each language" - default: true - required: false - TIME_RANGE: description: "Time range of the queried statistics" default: "last_7_days" - + required: false + + SHOW_TIME: + description: "Displays the amount of time spent for each language" + default: "true" + required: false + SHOW_TOTAL: - description: "Displays weekly [total] coding time" - default: false - # default is set to false since users can choose whether to show the total time - # on their readme + description: "Displays total coding time" + default: "false" required: false runs: diff --git a/main.py b/main.py index d73de4a..745e1e5 100644 --- a/main.py +++ b/main.py @@ -1,148 +1,378 @@ -''' -WakaTime progress visualizer -''' +""" +WakaReadme : WakaTime progress visualizer +========================================= +Wakatime Metrics on your Profile Readme. + +Title: +------ + +```txt +From: 15 February, 2022 - To: 22 February, 2022 +```` + +Byline: +------- + +```txt +Total: 34 hrs 43 mins +``` + +Body: +----- + +```txt +Python 27 hrs 29 mins ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⣀⣀⣀⣀⣀ 77.83 % +YAML 2 hrs 14 mins ⣿⣦⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 06.33 % +Markdown 1 hr 54 mins ⣿⣤⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 05.39 % +TOML 1 hr 48 mins ⣿⣤⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 05.11 % +Other 35 mins ⣦⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 01.68 % +``` + +#### Contents = Title + Byline + Body +""" + +# standard +from dataclasses import dataclass +from datetime import datetime +from base64 import b64encode +import logging as logger +from time import sleep +from typing import Any +import sys import re import os -import base64 -import sys -import datetime + +# external +from github import GithubException, Github import requests -from github import Github, GithubException - -START_COMMENT = '' -END_COMMENT = '' -GRAPH_LENGTH = 25 -TEXT_LENGTH = 16 -listReg = f"{START_COMMENT}[\\s\\S]+{END_COMMENT}" - -repository = os.getenv('INPUT_REPOSITORY') -waka_key = os.getenv('INPUT_WAKATIME_API_KEY') -api_base_url = os.getenv('INPUT_API_BASE_URL') -ghtoken = os.getenv('INPUT_GH_TOKEN') -show_title = os.getenv("INPUT_SHOW_TITLE") -show_total = os.getenv("INPUT_SHOW_TOTAL") -commit_message = os.getenv("INPUT_COMMIT_MESSAGE") -blocks = os.getenv("INPUT_BLOCKS") -show_time = os.getenv("INPUT_SHOW_TIME") -time_range = os.getenv("INPUT_TIME_RANGE") -def title(start: str, end: str) -> str: - '''Returns a title of time range''' - start_date = datetime.datetime.strptime(start, '%Y-%m-%dT%H:%M:%SZ') - end_date = datetime.datetime.strptime(end, '%Y-%m-%dT%H:%M:%SZ') - print("Title created") - return f"From: {start_date.strftime('%d %B, %Y')} - To: {end_date.strftime('%d %B, %Y')}\n\n" +# pylint: disable=logging-fstring-interpolation + +################### data ################### + +@dataclass +class WakaConstants: + """ + WakaConstants + ------------- + """ + prefix_length: int = 16 + graph_length: int = 25 + start_comment: str = '' + end_comment: str = '' + waka_block_pattern: str = f'{start_comment}[\\s\\S]+{end_comment}' -def make_graph(percent: float, ip_blocks: str, length: int = GRAPH_LENGTH) -> str: - '''Make progress graph from API graph''' - # already addressed in main - # if len(ip_blocks) < 2: - # raise "The ip_blocks need to have at least two characters." - divs = len(ip_blocks) - 1 - graph = ip_blocks[-1] * int(percent / 100 * length + 0.5 / divs) - remainder_block = int((percent / 100 * length - len(graph)) * divs + 0.5) - if remainder_block > 0: - graph += ip_blocks[remainder_block] - graph += ip_blocks[0] * (length - len(graph)) - return graph +class WakaInput: + """ + WakaInput Env Vars + ------------------ + """ + + def __init__(self) -> None: + """ + WakaInput Initialize + -------------------- + """ + # mapped environment variables + # # required + self.gh_token: str = os.getenv('INPUT_GH_TOKEN') + self.waka_key: str = os.getenv('INPUT_WAKATIME_API_KEY') + self.api_base_url: str = os.getenv('INPUT_API_BASE_URL') + self.repository: str = os.getenv('INPUT_REPOSITORY') + # # depends + self.commit_message: str = os.getenv("INPUT_COMMIT_MESSAGE") + # # optional + self.show_title: str | bool = os.getenv("INPUT_SHOW_TITLE") + self.block_style: str = os.getenv("INPUT_BLOCKS") + self.time_range: str = os.getenv("INPUT_TIME_RANGE") + self.show_time: str | bool = os.getenv("INPUT_SHOW_TIME") + self.show_total_time: str | bool = os.getenv("INPUT_SHOW_TOTAL") + + def validate_input(self) -> bool: + """ + WakaInput Validate + ------------------ + """ + + if not (self.gh_token or self.waka_key or self.api_base_url or self.repository): + logger.error('Invalid required input(s)') + return False + + if len(self.commit_message) < 1: + logger.error('Invalid commit message') + return False + + try: + self.show_title: bool = strtobool(self.show_title) + self.show_time: bool = strtobool(self.show_time) + self.show_total_time: bool = strtobool(self.show_total_time) + except (ValueError, AttributeError) as err: + logger.error(err) + return False + + if len(self.block_style) < 2: + logger.warning('Invalid block length') + logger.debug('Using default blocks: ░▒▓█') + + # 'all_time' is un-documented, should it be used? + if self.time_range not in { + 'last_7_days', 'last_30_days', 'last_6_months', 'last_year', 'all_time' + }: + logger.warning('Invalid time range') + logger.debug('Using default time range: last_7_days') + self.time_range: str = 'last_7_days' + + return True -def get_stats(range: str = 'last_7_days') -> str: - '''Gets API data and returns markdown progress''' - encoded_key: str = str(base64.b64encode(waka_key.encode('utf-8')), 'utf-8') - data = requests.get( - f"{api_base_url.rstrip('/')}/v1/users/current/stats/{range}", - headers={ - "Authorization": f"Basic {encoded_key}" - }).json() +def strtobool(val: str) -> bool: + """ + strtobool + --------- - if 'errors' in data and 'Unauthorized.' in data['errors']: - print("Please Add your correct WakaTime API Key to the Repository Secrets") + PEP 632 https://www.python.org/dev/peps/pep-0632/ is depreciating distutils + + Following code is somewhat shamelessly copied from the original source. + + Convert a string representation of truth to True or False. + + - True values are `'y', 'yes', 't', 'true', 'on', and '1'` + - False values are `'n', 'no', 'f', 'false', 'off', and '0'` + - Raises `ValueError` if `val` is anything else. + """ + val = val.lower() + + if val in {'y', 'yes', 't', 'true', 'on', '1'}: + return True + + if val in {'n', 'no', 'f', 'false', 'off', '0'}: + return False + + raise ValueError(f'invalid truth value for {val}') + + +################### logic ################### + +def make_title(dawn: str, dusk: str, /) -> str: + """ + WakaReadme Title + ---------------- + + Makes title for WakaReadme. + """ + logger.debug('Making title') + if not (dawn or dusk): + logger.error('Cannot find start/end date') sys.exit(1) - elif 'error' in data and data['error'] == 'Invalid time range': - print("Please Input the correct time range (e.g. last_7_days, last_30_days)") - sys.exit(1) - + api_dfm, msg_dfm = '%Y-%m-%dT%H:%M:%SZ', '%d %B %Y' try: - start = data['data']['start'] - end = data['data']['end'] - lang_data = data['data']['languages'] - total_data = data['data']['human_readable_total'] - except KeyError: - print("Unknown KeyError") + start_date = datetime.strptime(dawn, api_dfm).strftime(msg_dfm) + end_date = datetime.strptime(dusk, api_dfm).strftime(msg_dfm) + except ValueError as err: + logger.error(err) + sys.exit(1) + logger.debug('Title was made') + return f'From: {start_date} - To: {end_date}' + + +def make_graph( + block_style: str, percent: float, gr_len: str, /, + *, lg_nm: str = '' +) -> str: + """ + WakaReadme Graph + ---------------- + + Makes time graph from the API's data. + """ + logger.debug(f'Generating graph for {lg_nm or "..."}') + markers: int = len(block_style) - 1 + proportion: float = percent / 100 * gr_len + graph_bar: str = block_style[-1] * int(proportion + 0.5 / markers) + remainder_block: int = int( + (proportion - len(graph_bar)) * markers + 0.5 + ) + graph_bar += block_style[remainder_block] if remainder_block > 0 else '' + graph_bar += block_style[0] * (gr_len - len(graph_bar)) + logger.debug(f'{lg_nm or "..."} graph generated') + return graph_bar + + +def prep_content(stats: dict | None, /) -> str: + """ + WakaReadme Prepare Markdown + --------------------------- + + Prepared markdown content from the fetched statistics + ``` + """ + contents: str = '' + + # Check if any data exists + if not (lang_info := stats.get('languages')): + logger.debug('The data seems to be empty, please wait for a day') + contents += 'No activity tracked' + return contents + + # make title + if wk_i.show_title: + contents += make_title(stats.get('start'), stats.get('end')) + '\n\n' + + # make byline + if wk_i.show_total_time and ( + total_time := stats.get('human_readable_total') + ): + contents += f'Total Time: {total_time}\n\n' + + # make content + logger.debug('Making contents') + pad_len = len( + max((str(l.get('name')) for l in lang_info), key=len) + # comment if it feels way computationally expensive + # and then don't for get to set pad_len to say 13 :) + ) + for idx, lang in enumerate(lang_info): + lang_name: str = lang.get('name') + # >>> add languages to filter here <<< + # if lang_name in {...}: continue + lang_time: str = lang.get('text') if wk_i.show_time else '' + lang_ratio: float = lang.get('percent') + lang_bar: str = make_graph( + wk_i.block_style, lang_ratio, wk_c.graph_length, + lg_nm=lang_name + ) + contents += ( + f'{lang_name.ljust(pad_len)} ' + + f'{lang_time: <16}{lang_bar} ' + + f'{lang_ratio:.2f}'.zfill(5) + ' %\n' + ) + if idx >= 5 or lang_name == 'Other': + break + + logger.debug('Contents were made') + return contents.rstrip('\n') + + +def fetch_stats() -> Any: + """ + WakaReadme Fetch Stats + ---------------------- + + Retruns statistics as JSON string + """ + tries, statistic = 3, {} + logger.debug('Fetching WakaTime statistics') + encoded_key: str = str(b64encode(bytes(wk_i.waka_key, 'utf-8')), 'utf-8') + + with requests.Session() as rqs: + # why session? read @ + # https://docs.python-requests.org/en/latest/user/advanced/#session-objects + while tries > 0: + resp = rqs.get( + url=f'{wk_i.api_base_url.rstrip("/")}/v1/users/current/stats/{wk_i.time_range}', + headers={'Authorization': f'Basic {encoded_key}'} + ) + logger.debug( + f'API response @ trial #{4 - tries}: {resp.status_code} {resp.reason}' + ) + if resp.status_code == 200 and (statistic := resp.json()): + logger.debug('Fetched WakaTime statistics') + break + logger.debug('Retrying in 3s ...') + sleep(3) + tries -= 1 + + if err := (statistic.get('error') or statistic.get('errors')): + logger.error(err) sys.exit(1) - if show_time == 'true': - print("Will show time on graph") - ln_graph = GRAPH_LENGTH - else: - print("Hide time on graph") - ln_graph = GRAPH_LENGTH + TEXT_LENGTH + return statistic.get('data') - data_list = [] + +def churn(old_readme: str, /) -> str | None: + """ + WakaReadme Churn + ---------------- + + Composes WakaTime stats within markdown code snippet + """ try: - pad = len(max([l['name'] for l in lang_data[:5]], key=len)) - except ValueError: - print("The Data seems to be empty. Please wait for a day for the data to be filled in.") - return '```text\nNo Activity tracked this Week\n```' - for lang in lang_data[:5]: - if lang['hours'] == 0 and lang['minutes'] == 0: - continue - - lth = len(lang['name']) - text = "" - if show_time == 'true': - ln_text = len(lang['text']) - text = f"{lang['text']}{' '*(TEXT_LENGTH - ln_text)}" - - # following line provides a neat finish - fmt_percent = format(lang['percent'], '0.2f').zfill(5) - data_list.append( - f"{lang['name']}{' '*(pad + 3 - lth)}{text}{make_graph(lang['percent'], blocks, ln_graph)} {fmt_percent} % ") - print("Graph Generated") - data = '\n'.join(data_list) - - return_text = '```text\n' - if show_title == 'true': - print("Stats with Time Range in Title Generated") - range_title = title(start, end) - return_text += range_title - if show_total == 'true': - print("add Total time") - return_text += 'Total: ' + total_data+'\n\n' - return return_text + data+'\n```' + if not (waka_stats := fetch_stats()): + logger.error('Unable to fetch data, please rerun workflow') + sys.exit(1) + except requests.RequestException as rq_exp: + logger.critical(rq_exp) + sys.exit(1) + generated_content = prep_content(waka_stats) + print('\n', generated_content, '\n', sep='') + new_readme = re.sub( + pattern=wk_c.waka_block_pattern, + repl=f'{wk_c.start_comment}\n\n```text\n{generated_content}\n```\n\n{wk_c.end_comment}', + string=old_readme + ) + # return None # un-comment when testing with --dev + # to avoid accidentally writing back to Github + return None if new_readme == old_readme else new_readme -def decode_readme(data: str) -> str: - '''Decode the contents of old readme''' - decoded_bytes = base64.b64decode(data) - return str(decoded_bytes, 'utf-8') +def genesis() -> None: + """Run Program""" + logger.debug('Conneting to GitHub') + gh_connect = Github(wk_i.gh_token) + gh_repo = gh_connect.get_repo(wk_i.repository) + readme_file = gh_repo.get_readme() + logger.debug('Decoding readme contents') + readme_contents = str(readme_file.decoded_content, encoding='utf-8') + if new_content := churn(readme_contents): + logger.debug('Updating readme') + gh_repo.update_file( + path=readme_file.path, + message=wk_i.commit_message, + content=new_content, + sha=readme_file.sha + ) + logger.info('Updated waka stats successfully') + return + logger.info('No changes were made') -def generate_new_readme(stats: str, readme: str) -> str: - '''Generate a new Readme.md''' - stats_in_readme = f"{START_COMMENT}\n{stats}\n{END_COMMENT}" - return re.sub(listReg, stats_in_readme, readme) +################### driver ################### + +# configure logger +logger.getLogger('urllib3').setLevel(logger.WARNING) +logger.getLogger('github.Requester').setLevel(logger.WARNING) +logger.basicConfig( + datefmt='%Y-%m-%d %H:%M:%S', + format='[%(asctime)s] ln. %(lineno)-3d %(levelname)-8s %(message)s', + level=logger.DEBUG +) +try: + if len(sys.argv) == 2 and sys.argv[1] == '--dev': + # get env-vars from .env file for development + from dotenv import load_dotenv + # comment this out to disable colored logging + from loguru import logger + load_dotenv() +except ImportError as im_err: + logger.warning(im_err) if __name__ == '__main__': - g = Github(ghtoken) + # initial setup + wk_c = WakaConstants() + wk_i = WakaInput() + logger.debug('Initialize WakaReadme') + if not wk_i.validate_input(): + logger.error('Environment variables are misconfigured') + sys.exit(1) + logger.debug('Input validation complete') + # run try: - repo = g.get_repo(repository) - except GithubException: - print("Authentication Error. Try saving a GitHub Token in your Repo Secrets" + - " or Use the GitHub Actions Token, which is automatically used by the action.") + genesis() + except GithubException as gh_exp: + logger.critical(gh_exp) sys.exit(1) - if len(blocks) < 1: - print("Invalid string blocks. Please provide string with 2 or more characters. Eg. '░▒▓█'") - sys.exit(1) - contents = repo.get_readme() - waka_stats = get_stats(time_range) - rdmd = decode_readme(contents.content) - new_readme = generate_new_readme(stats=waka_stats, readme=rdmd) - if new_readme != rdmd: - repo.update_file(path=contents.path, message=commit_message, - content=new_readme, sha=contents.sha) + print('Thanks for using WakaReadme!') diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..dd8820e --- /dev/null +++ b/poetry.lock @@ -0,0 +1,534 @@ +[[package]] +name = "astroid" +version = "2.9.3" +description = "An abstract syntax tree for Python with inference support." +category = "dev" +optional = false +python-versions = ">=3.6.2" + +[package.dependencies] +lazy-object-proxy = ">=1.4.0" +wrapt = ">=1.11,<1.14" + +[[package]] +name = "autopep8" +version = "1.6.0" +description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +pycodestyle = ">=2.8.0" +toml = "*" + +[[package]] +name = "certifi" +version = "2021.10.8" +description = "Python package for providing Mozilla's CA Bundle." +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "cffi" +version = "1.15.0" +description = "Foreign Function Interface for Python calling C code." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "2.0.12" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +category = "main" +optional = false +python-versions = ">=3.5.0" + +[package.extras] +unicode_backport = ["unicodedata2"] + +[[package]] +name = "colorama" +version = "0.4.4" +description = "Cross-platform colored terminal text." +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "deprecated" +version = "1.2.13" +description = "Python @deprecated decorator to deprecate old python classes, functions or methods." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.dependencies] +wrapt = ">=1.10,<2" + +[package.extras] +dev = ["tox", "bump2version (<1)", "sphinx (<2)", "importlib-metadata (<3)", "importlib-resources (<4)", "configparser (<5)", "sphinxcontrib-websupport (<2)", "zipp (<2)", "PyTest (<5)", "PyTest-Cov (<2.6)", "pytest", "pytest-cov"] + +[[package]] +name = "idna" +version = "3.3" +description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "isort" +version = "5.10.1" +description = "A Python utility / library to sort Python imports." +category = "dev" +optional = false +python-versions = ">=3.6.1,<4.0" + +[package.extras] +pipfile_deprecated_finder = ["pipreqs", "requirementslib"] +requirements_deprecated_finder = ["pipreqs", "pip-api"] +colors = ["colorama (>=0.4.3,<0.5.0)"] +plugins = ["setuptools"] + +[[package]] +name = "lazy-object-proxy" +version = "1.7.1" +description = "A fast and thorough lazy object proxy." +category = "dev" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "loguru" +version = "0.6.0" +description = "Python logging made (stupidly) simple" +category = "dev" +optional = false +python-versions = ">=3.5" + +[package.dependencies] +colorama = {version = ">=0.3.4", markers = "sys_platform == \"win32\""} +win32-setctime = {version = ">=1.0.0", markers = "sys_platform == \"win32\""} + +[package.extras] +dev = ["colorama (>=0.3.4)", "docutils (==0.16)", "flake8 (>=3.7.7)", "tox (>=3.9.0)", "pytest (>=4.6.2)", "pytest-cov (>=2.7.1)", "black (>=19.10b0)", "isort (>=5.1.1)", "Sphinx (>=4.1.1)", "sphinx-autobuild (>=0.7.1)", "sphinx-rtd-theme (>=0.4.3)"] + +[[package]] +name = "mccabe" +version = "0.6.1" +description = "McCabe checker, plugin for flake8" +category = "dev" +optional = false +python-versions = "*" + +[[package]] +name = "platformdirs" +version = "2.5.1" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.extras] +docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"] +test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] + +[[package]] +name = "pycodestyle" +version = "2.8.0" +description = "Python style guide checker" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[[package]] +name = "pygithub" +version = "1.55" +description = "Use the full Github API v3" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +deprecated = "*" +pyjwt = ">=2.0" +pynacl = ">=1.4.0" +requests = ">=2.14.0" + +[package.extras] +integrations = ["cryptography"] + +[[package]] +name = "pyjwt" +version = "2.3.0" +description = "JSON Web Token implementation in Python" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +crypto = ["cryptography (>=3.3.1)"] +dev = ["sphinx", "sphinx-rtd-theme", "zope.interface", "cryptography (>=3.3.1)", "pytest (>=6.0.0,<7.0.0)", "coverage[toml] (==5.0.4)", "mypy", "pre-commit"] +docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] +tests = ["pytest (>=6.0.0,<7.0.0)", "coverage[toml] (==5.0.4)"] + +[[package]] +name = "pylint" +version = "2.12.2" +description = "python code static checker" +category = "dev" +optional = false +python-versions = ">=3.6.2" + +[package.dependencies] +astroid = ">=2.9.0,<2.10" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +isort = ">=4.2.5,<6" +mccabe = ">=0.6,<0.7" +platformdirs = ">=2.2.0" +toml = ">=0.9.2" + +[[package]] +name = "pynacl" +version = "1.5.0" +description = "Python binding to the Networking and Cryptography (NaCl) library" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +cffi = ">=1.4.1" + +[package.extras] +docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"] +tests = ["pytest (>=3.2.1,!=3.3.0)", "hypothesis (>=3.27.0)"] + +[[package]] +name = "python-dotenv" +version = "0.19.2" +description = "Read key-value pairs from a .env file and set them as environment variables" +category = "dev" +optional = false +python-versions = ">=3.5" + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "requests" +version = "2.27.1" +description = "Python HTTP for Humans." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""} +idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""} +urllib3 = ">=1.21.1,<1.27" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] +use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] + +[[package]] +name = "toml" +version = "0.10.2" +description = "Python Library for Tom's Obvious, Minimal Language" +category = "dev" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" + +[[package]] +name = "urllib3" +version = "1.26.8" +description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" + +[package.extras] +brotli = ["brotlipy (>=0.6.0)"] +secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "win32-setctime" +version = "1.1.0" +description = "A small Python utility to set file creation time on Windows" +category = "dev" +optional = false +python-versions = ">=3.5" + +[package.extras] +dev = ["pytest (>=4.6.2)", "black (>=19.3b0)"] + +[[package]] +name = "wrapt" +version = "1.13.3" +description = "Module for decorators, wrappers and monkey patching." +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" + +[metadata] +lock-version = "1.1" +python-versions = "^3.10" +content-hash = "84a43778dcc31a2447179fe6e40b05dfc4afc30c30802939fa135d52084b2c1e" + +[metadata.files] +astroid = [ + {file = "astroid-2.9.3-py3-none-any.whl", hash = "sha256:506daabe5edffb7e696ad82483ad0228245a9742ed7d2d8c9cdb31537decf9f6"}, + {file = "astroid-2.9.3.tar.gz", hash = "sha256:1efdf4e867d4d8ba4a9f6cf9ce07cd182c4c41de77f23814feb27ca93ca9d877"}, +] +autopep8 = [ + {file = "autopep8-1.6.0-py2.py3-none-any.whl", hash = "sha256:ed77137193bbac52d029a52c59bec1b0629b5a186c495f1eb21b126ac466083f"}, + {file = "autopep8-1.6.0.tar.gz", hash = "sha256:44f0932855039d2c15c4510d6df665e4730f2b8582704fa48f9c55bd3e17d979"}, +] +certifi = [ + {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, + {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, +] +cffi = [ + {file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"}, + {file = "cffi-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0"}, + {file = "cffi-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14"}, + {file = "cffi-1.15.0-cp27-cp27m-win32.whl", hash = "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474"}, + {file = "cffi-1.15.0-cp27-cp27m-win_amd64.whl", hash = "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6"}, + {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27"}, + {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023"}, + {file = "cffi-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2"}, + {file = "cffi-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382"}, + {file = "cffi-1.15.0-cp310-cp310-win32.whl", hash = "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55"}, + {file = "cffi-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0"}, + {file = "cffi-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605"}, + {file = "cffi-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e"}, + {file = "cffi-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc"}, + {file = "cffi-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7"}, + {file = "cffi-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66"}, + {file = "cffi-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029"}, + {file = "cffi-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6"}, + {file = "cffi-1.15.0-cp38-cp38-win32.whl", hash = "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c"}, + {file = "cffi-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443"}, + {file = "cffi-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a"}, + {file = "cffi-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8"}, + {file = "cffi-1.15.0-cp39-cp39-win32.whl", hash = "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a"}, + {file = "cffi-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139"}, + {file = "cffi-1.15.0.tar.gz", hash = "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954"}, +] +charset-normalizer = [ + {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, + {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, +] +colorama = [ + {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, + {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, +] +deprecated = [ + {file = "Deprecated-1.2.13-py2.py3-none-any.whl", hash = "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d"}, + {file = "Deprecated-1.2.13.tar.gz", hash = "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d"}, +] +idna = [ + {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, + {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, +] +isort = [ + {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"}, + {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"}, +] +lazy-object-proxy = [ + {file = "lazy-object-proxy-1.7.1.tar.gz", hash = "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a57d51ed2997e97f3b8e3500c984db50a554bb5db56c50b5dab1b41339b37e36"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd45683c3caddf83abbb1249b653a266e7069a09f486daa8863fb0e7496a9fdb"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8561da8b3dd22d696244d6d0d5330618c993a215070f473b699e00cf1f3f6443"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fccdf7c2c5821a8cbd0a9440a456f5050492f2270bd54e94360cac663398739b"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-win32.whl", hash = "sha256:898322f8d078f2654d275124a8dd19b079080ae977033b713f677afcfc88e2b9"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:85b232e791f2229a4f55840ed54706110c80c0a210d076eee093f2b2e33e1bfd"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12f3bb77efe1367b2515f8cb4790a11cffae889148ad33adad07b9b55e0ab22c"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c19814163728941bb871240d45c4c30d33b8a2e85972c44d4e63dd7107faba44"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e40f2013d96d30217a51eeb1db28c9ac41e9d0ee915ef9d00da639c5b63f01a1"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:2052837718516a94940867e16b1bb10edb069ab475c3ad84fd1e1a6dd2c0fcfc"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win32.whl", hash = "sha256:6a24357267aa976abab660b1d47a34aaf07259a0c3859a34e536f1ee6e76b5bb"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win_amd64.whl", hash = "sha256:6aff3fe5de0831867092e017cf67e2750c6a1c7d88d84d2481bd84a2e019ec35"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6a6e94c7b02641d1311228a102607ecd576f70734dc3d5e22610111aeacba8a0"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e368b7f7eac182a59ff1f81d5f3802161932a41dc1b1cc45c1f757dc876b5d2c"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win32.whl", hash = "sha256:c7a683c37a8a24f6428c28c561c80d5f4fd316ddcf0c7cab999b15ab3f5c5c69"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win_amd64.whl", hash = "sha256:df2631f9d67259dc9620d831384ed7732a198eb434eadf69aea95ad18c587a28"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dca6244e4121c74cc20542c2ca39e5c4a5027c81d112bfb893cf0790f96f57e"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:043651b6cb706eee4f91854da4a089816a6606c1428fd391573ef8cb642ae4f7"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b9e89b87c707dd769c4ea91f7a31538888aad05c116a59820f28d59b3ebfe25a"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-win32.whl", hash = "sha256:9d166602b525bf54ac994cf833c385bfcc341b364e3ee71e3bf5a1336e677b55"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-win_amd64.whl", hash = "sha256:8f3953eb575b45480db6568306893f0bd9d8dfeeebd46812aa09ca9579595148"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-win32.whl", hash = "sha256:2130db8ed69a48a3440103d4a520b89d8a9405f1b06e2cc81640509e8bf6548f"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:677ea950bef409b47e51e733283544ac3d660b709cfce7b187f5ace137960d61"}, + {file = "lazy_object_proxy-1.7.1-pp37.pp38-none-any.whl", hash = "sha256:d66906d5785da8e0be7360912e99c9188b70f52c422f9fc18223347235691a84"}, +] +loguru = [ + {file = "loguru-0.6.0-py3-none-any.whl", hash = "sha256:4e2414d534a2ab57573365b3e6d0234dfb1d84b68b7f3b948e6fb743860a77c3"}, + {file = "loguru-0.6.0.tar.gz", hash = "sha256:066bd06758d0a513e9836fd9c6b5a75bfb3fd36841f4b996bc60b547a309d41c"}, +] +mccabe = [ + {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, + {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, +] +platformdirs = [ + {file = "platformdirs-2.5.1-py3-none-any.whl", hash = "sha256:bcae7cab893c2d310a711b70b24efb93334febe65f8de776ee320b517471e227"}, + {file = "platformdirs-2.5.1.tar.gz", hash = "sha256:7535e70dfa32e84d4b34996ea99c5e432fa29a708d0f4e394bbcb2a8faa4f16d"}, +] +pycodestyle = [ + {file = "pycodestyle-2.8.0-py2.py3-none-any.whl", hash = "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20"}, + {file = "pycodestyle-2.8.0.tar.gz", hash = "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f"}, +] +pycparser = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] +pygithub = [ + {file = "PyGithub-1.55-py3-none-any.whl", hash = "sha256:2caf0054ea079b71e539741ae56c5a95e073b81fa472ce222e81667381b9601b"}, + {file = "PyGithub-1.55.tar.gz", hash = "sha256:1bbfff9372047ff3f21d5cd8e07720f3dbfdaf6462fcaed9d815f528f1ba7283"}, +] +pyjwt = [ + {file = "PyJWT-2.3.0-py3-none-any.whl", hash = "sha256:e0c4bb8d9f0af0c7f5b1ec4c5036309617d03d56932877f2f7a0beeb5318322f"}, + {file = "PyJWT-2.3.0.tar.gz", hash = "sha256:b888b4d56f06f6dcd777210c334e69c737be74755d3e5e9ee3fe67dc18a0ee41"}, +] +pylint = [ + {file = "pylint-2.12.2-py3-none-any.whl", hash = "sha256:daabda3f7ed9d1c60f52d563b1b854632fd90035bcf01443e234d3dc794e3b74"}, + {file = "pylint-2.12.2.tar.gz", hash = "sha256:9d945a73640e1fec07ee34b42f5669b770c759acd536ec7b16d7e4b87a9c9ff9"}, +] +pynacl = [ + {file = "PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858"}, + {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b"}, + {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff"}, + {file = "PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543"}, + {file = "PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93"}, + {file = "PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"}, +] +python-dotenv = [ + {file = "python-dotenv-0.19.2.tar.gz", hash = "sha256:a5de49a31e953b45ff2d2fd434bbc2670e8db5273606c1e737cc6b93eff3655f"}, + {file = "python_dotenv-0.19.2-py2.py3-none-any.whl", hash = "sha256:32b2bdc1873fd3a3c346da1c6db83d0053c3c62f28f1f38516070c4c8971b1d3"}, +] +requests = [ + {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"}, + {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"}, +] +toml = [ + {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, + {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, +] +urllib3 = [ + {file = "urllib3-1.26.8-py2.py3-none-any.whl", hash = "sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed"}, + {file = "urllib3-1.26.8.tar.gz", hash = "sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c"}, +] +win32-setctime = [ + {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, + {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, +] +wrapt = [ + {file = "wrapt-1.13.3-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:e05e60ff3b2b0342153be4d1b597bbcfd8330890056b9619f4ad6b8d5c96a81a"}, + {file = "wrapt-1.13.3-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:85148f4225287b6a0665eef08a178c15097366d46b210574a658c1ff5b377489"}, + {file = "wrapt-1.13.3-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:2dded5496e8f1592ec27079b28b6ad2a1ef0b9296d270f77b8e4a3a796cf6909"}, + {file = "wrapt-1.13.3-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:e94b7d9deaa4cc7bac9198a58a7240aaf87fe56c6277ee25fa5b3aa1edebd229"}, + {file = "wrapt-1.13.3-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:498e6217523111d07cd67e87a791f5e9ee769f9241fcf8a379696e25806965af"}, + {file = "wrapt-1.13.3-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:ec7e20258ecc5174029a0f391e1b948bf2906cd64c198a9b8b281b811cbc04de"}, + {file = "wrapt-1.13.3-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:87883690cae293541e08ba2da22cacaae0a092e0ed56bbba8d018cc486fbafbb"}, + {file = "wrapt-1.13.3-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:f99c0489258086308aad4ae57da9e8ecf9e1f3f30fa35d5e170b4d4896554d80"}, + {file = "wrapt-1.13.3-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:6a03d9917aee887690aa3f1747ce634e610f6db6f6b332b35c2dd89412912bca"}, + {file = "wrapt-1.13.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:936503cb0a6ed28dbfa87e8fcd0a56458822144e9d11a49ccee6d9a8adb2ac44"}, + {file = "wrapt-1.13.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f9c51d9af9abb899bd34ace878fbec8bf357b3194a10c4e8e0a25512826ef056"}, + {file = "wrapt-1.13.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:220a869982ea9023e163ba915077816ca439489de6d2c09089b219f4e11b6785"}, + {file = "wrapt-1.13.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0877fe981fd76b183711d767500e6b3111378ed2043c145e21816ee589d91096"}, + {file = "wrapt-1.13.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:43e69ffe47e3609a6aec0fe723001c60c65305784d964f5007d5b4fb1bc6bf33"}, + {file = "wrapt-1.13.3-cp310-cp310-win32.whl", hash = "sha256:78dea98c81915bbf510eb6a3c9c24915e4660302937b9ae05a0947164248020f"}, + {file = "wrapt-1.13.3-cp310-cp310-win_amd64.whl", hash = "sha256:ea3e746e29d4000cd98d572f3ee2a6050a4f784bb536f4ac1f035987fc1ed83e"}, + {file = "wrapt-1.13.3-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:8c73c1a2ec7c98d7eaded149f6d225a692caa1bd7b2401a14125446e9e90410d"}, + {file = "wrapt-1.13.3-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:086218a72ec7d986a3eddb7707c8c4526d677c7b35e355875a0fe2918b059179"}, + {file = "wrapt-1.13.3-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:e92d0d4fa68ea0c02d39f1e2f9cb5bc4b4a71e8c442207433d8db47ee79d7aa3"}, + {file = "wrapt-1.13.3-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:d4a5f6146cfa5c7ba0134249665acd322a70d1ea61732723c7d3e8cc0fa80755"}, + {file = "wrapt-1.13.3-cp35-cp35m-win32.whl", hash = "sha256:8aab36778fa9bba1a8f06a4919556f9f8c7b33102bd71b3ab307bb3fecb21851"}, + {file = "wrapt-1.13.3-cp35-cp35m-win_amd64.whl", hash = "sha256:944b180f61f5e36c0634d3202ba8509b986b5fbaf57db3e94df11abee244ba13"}, + {file = "wrapt-1.13.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:2ebdde19cd3c8cdf8df3fc165bc7827334bc4e353465048b36f7deeae8ee0918"}, + {file = "wrapt-1.13.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:610f5f83dd1e0ad40254c306f4764fcdc846641f120c3cf424ff57a19d5f7ade"}, + {file = "wrapt-1.13.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5601f44a0f38fed36cc07db004f0eedeaadbdcec90e4e90509480e7e6060a5bc"}, + {file = "wrapt-1.13.3-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:e6906d6f48437dfd80464f7d7af1740eadc572b9f7a4301e7dd3d65db285cacf"}, + {file = "wrapt-1.13.3-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:766b32c762e07e26f50d8a3468e3b4228b3736c805018e4b0ec8cc01ecd88125"}, + {file = "wrapt-1.13.3-cp36-cp36m-win32.whl", hash = "sha256:5f223101f21cfd41deec8ce3889dc59f88a59b409db028c469c9b20cfeefbe36"}, + {file = "wrapt-1.13.3-cp36-cp36m-win_amd64.whl", hash = "sha256:f122ccd12fdc69628786d0c947bdd9cb2733be8f800d88b5a37c57f1f1d73c10"}, + {file = "wrapt-1.13.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:46f7f3af321a573fc0c3586612db4decb7eb37172af1bc6173d81f5b66c2e068"}, + {file = "wrapt-1.13.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:778fd096ee96890c10ce96187c76b3e99b2da44e08c9e24d5652f356873f6709"}, + {file = "wrapt-1.13.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0cb23d36ed03bf46b894cfec777eec754146d68429c30431c99ef28482b5c1df"}, + {file = "wrapt-1.13.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:96b81ae75591a795d8c90edc0bfaab44d3d41ffc1aae4d994c5aa21d9b8e19a2"}, + {file = "wrapt-1.13.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:7dd215e4e8514004c8d810a73e342c536547038fb130205ec4bba9f5de35d45b"}, + {file = "wrapt-1.13.3-cp37-cp37m-win32.whl", hash = "sha256:47f0a183743e7f71f29e4e21574ad3fa95676136f45b91afcf83f6a050914829"}, + {file = "wrapt-1.13.3-cp37-cp37m-win_amd64.whl", hash = "sha256:fd76c47f20984b43d93de9a82011bb6e5f8325df6c9ed4d8310029a55fa361ea"}, + {file = "wrapt-1.13.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b73d4b78807bd299b38e4598b8e7bd34ed55d480160d2e7fdaabd9931afa65f9"}, + {file = "wrapt-1.13.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ec9465dd69d5657b5d2fa6133b3e1e989ae27d29471a672416fd729b429eb554"}, + {file = "wrapt-1.13.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dd91006848eb55af2159375134d724032a2d1d13bcc6f81cd8d3ed9f2b8e846c"}, + {file = "wrapt-1.13.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ae9de71eb60940e58207f8e71fe113c639da42adb02fb2bcbcaccc1ccecd092b"}, + {file = "wrapt-1.13.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:51799ca950cfee9396a87f4a1240622ac38973b6df5ef7a41e7f0b98797099ce"}, + {file = "wrapt-1.13.3-cp38-cp38-win32.whl", hash = "sha256:4b9c458732450ec42578b5642ac53e312092acf8c0bfce140ada5ca1ac556f79"}, + {file = "wrapt-1.13.3-cp38-cp38-win_amd64.whl", hash = "sha256:7dde79d007cd6dfa65afe404766057c2409316135cb892be4b1c768e3f3a11cb"}, + {file = "wrapt-1.13.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:981da26722bebb9247a0601e2922cedf8bb7a600e89c852d063313102de6f2cb"}, + {file = "wrapt-1.13.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:705e2af1f7be4707e49ced9153f8d72131090e52be9278b5dbb1498c749a1e32"}, + {file = "wrapt-1.13.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:25b1b1d5df495d82be1c9d2fad408f7ce5ca8a38085e2da41bb63c914baadff7"}, + {file = "wrapt-1.13.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:77416e6b17926d953b5c666a3cb718d5945df63ecf922af0ee576206d7033b5e"}, + {file = "wrapt-1.13.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:865c0b50003616f05858b22174c40ffc27a38e67359fa1495605f96125f76640"}, + {file = "wrapt-1.13.3-cp39-cp39-win32.whl", hash = "sha256:0a017a667d1f7411816e4bf214646d0ad5b1da2c1ea13dec6c162736ff25a374"}, + {file = "wrapt-1.13.3-cp39-cp39-win_amd64.whl", hash = "sha256:81bd7c90d28a4b2e1df135bfbd7c23aee3050078ca6441bead44c42483f9ebfb"}, + {file = "wrapt-1.13.3.tar.gz", hash = "sha256:1fea9cd438686e6682271d36f3481a9f3636195578bab9ca3382e2f5f01fc185"}, +] diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..509ef81 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "waka-readme" +version = "0.1.5" +description = "Wakatime Weekly Metrics on your Profile Readme." +authors = ["Athul Cyriac Ajay "] +license = "MIT" + +[tool.poetry.dependencies] +python = "^3.10" +requests = "^2.27.1" +PyGithub = "^1.55" + +[tool.poetry.dev-dependencies] +autopep8 = "^1.6.0" +pylint = "^2.12.2" +python-dotenv = "^0.19.2" +loguru = "^0.6.0" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 50413dd..0000000 --- a/requirements.txt +++ /dev/null @@ -1,9 +0,0 @@ -certifi==2020.6.20 -chardet==3.0.4 -Deprecated==1.2.10 -idna==2.10 -PyGithub==1.51 -PyJWT==1.7.1 -requests==2.24.0 -urllib3==1.25.9 -wrapt==1.12.1 diff --git a/tests/__init__.py b/tests/__init__.py index e69de29..6463798 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,9 @@ +""" +Initialize test module +""" + +# standard +import logging + +# comment to enable logging w/ tests +logging.disable(logging.CRITICAL) diff --git a/tests/sample_data.json b/tests/sample_data.json new file mode 100644 index 0000000..245c969 --- /dev/null +++ b/tests/sample_data.json @@ -0,0 +1,11346 @@ +{ + "data": { + "best_day": { + "created_at": "2022-01-11T23:18:22Z", + "date": "2022-02-15", + "id": "234234-t4roi5f-q2t4-2342-oij3d23425", + "modified_at": "2022-02-21T00:40:31Z", + "text": "10 hrs 14 mins", + "total_seconds": 36880.297681 + }, + "categories": [ + { + "decimal": "39.85", + "digital": "39:51", + "hours": 39, + "minutes": 51, + "name": "Coding", + "percent": 100.0, + "text": "39 hrs 51 mins", + "total_seconds": 143499.912522 + } + ], + "created_at": "2022-01-11T23:18:19Z", + "daily_average": 23642, + "daily_average_including_other_language": 23917, + "days_including_holidays": 7, + "days_minus_holidays": 6, + "dependencies": [ + { + "decimal": "13.80", + "digital": "13:48", + "hours": 13, + "minutes": 48, + "name": "typing", + "percent": 13.44, + "text": "13 hrs 48 mins", + "total_seconds": 49714.997916 + }, + { + "decimal": "10.85", + "digital": "10:51", + "hours": 10, + "minutes": 51, + "name": "requests", + "percent": 10.58, + "text": "10 hrs 51 mins", + "total_seconds": 39115.256453 + }, + { + "decimal": "9.47", + "digital": "9:28", + "hours": 9, + "minutes": 28, + "name": "typer", + "percent": 9.22, + "text": "9 hrs 28 mins", + "total_seconds": 34106.432852 + }, + { + "decimal": "8.98", + "digital": "8:59", + "hours": 8, + "minutes": 59, + "name": "inspect", + "percent": 8.76, + "text": "8 hrs 59 mins", + "total_seconds": 32390.138648 + }, + { + "decimal": "7.18", + "digital": "7:11", + "hours": 7, + "minutes": 11, + "name": "time", + "percent": 7.0, + "text": "7 hrs 11 mins", + "total_seconds": 25883.984285 + }, + { + "decimal": "7.08", + "digital": "7:05", + "hours": 7, + "minutes": 5, + "name": "rich", + "percent": 6.9, + "text": "7 hrs 5 mins", + "total_seconds": 25521.058192 + }, + { + "decimal": "5.62", + "digital": "5:37", + "hours": 5, + "minutes": 37, + "name": "urllib", + "percent": 5.48, + "text": "5 hrs 37 mins", + "total_seconds": 20269.118106 + }, + { + "decimal": "5.17", + "digital": "5:10", + "hours": 5, + "minutes": 10, + "name": "pathlib", + "percent": 5.04, + "text": "5 hrs 10 mins", + "total_seconds": 18635.108713 + }, + { + "decimal": "3.33", + "digital": "3:20", + "hours": 3, + "minutes": 20, + "name": "enum", + "percent": 3.25, + "text": "3 hrs 20 mins", + "total_seconds": 12002.359768 + }, + { + "decimal": "3.25", + "digital": "3:15", + "hours": 3, + "minutes": 15, + "name": "asyncwhois", + "percent": 3.17, + "text": "3 hrs 15 mins", + "total_seconds": 11739.498839 + }, + { + "decimal": "3.25", + "digital": "3:15", + "hours": 3, + "minutes": 15, + "name": "asyncio", + "percent": 3.17, + "text": "3 hrs 15 mins", + "total_seconds": 11739.498839 + }, + { + "decimal": "2.90", + "digital": "2:54", + "hours": 2, + "minutes": 54, + "name": "http", + "percent": 2.84, + "text": "2 hrs 54 mins", + "total_seconds": 10496.64624 + }, + { + "decimal": "2.90", + "digital": "2:54", + "hours": 2, + "minutes": 54, + "name": "re", + "percent": 2.82, + "text": "2 hrs 54 mins", + "total_seconds": 10446.460018 + }, + { + "decimal": "2.58", + "digital": "2:35", + "hours": 2, + "minutes": 35, + "name": "datetime", + "percent": 2.53, + "text": "2 hrs 35 mins", + "total_seconds": 9350.902634 + }, + { + "decimal": "2.05", + "digital": "2:03", + "hours": 2, + "minutes": 3, + "name": "tomli", + "percent": 2.01, + "text": "2 hrs 3 mins", + "total_seconds": 7432.084493 + }, + { + "decimal": "1.53", + "digital": "1:32", + "hours": 1, + "minutes": 32, + "name": "logging", + "percent": 1.49, + "text": "1 hr 32 mins", + "total_seconds": 5521.623654 + }, + { + "decimal": "1.37", + "digital": "1:22", + "hours": 1, + "minutes": 22, + "name": "ada", + "percent": 1.35, + "text": "1 hr 22 mins", + "total_seconds": 4978.130936 + }, + { + "decimal": "0.97", + "digital": "0:58", + "hours": 0, + "minutes": 58, + "name": "base64", + "percent": 0.95, + "text": "58 mins", + "total_seconds": 3514.940697 + }, + { + "decimal": "0.92", + "digital": "0:55", + "hours": 0, + "minutes": 55, + "name": "github", + "percent": 0.9, + "text": "55 mins", + "total_seconds": 3321.245983 + }, + { + "decimal": "0.80", + "digital": "0:48", + "hours": 0, + "minutes": 48, + "name": "concurrent", + "percent": 0.79, + "text": "48 mins", + "total_seconds": 2920.901616 + }, + { + "decimal": "0.80", + "digital": "0:48", + "hours": 0, + "minutes": 48, + "name": "argparse", + "percent": 0.78, + "text": "48 mins", + "total_seconds": 2899.952089 + }, + { + "decimal": "0.47", + "digital": "0:28", + "hours": 0, + "minutes": 28, + "name": "\"../plugin/markdown/markdown.js\"", + "percent": 0.46, + "text": "28 mins", + "total_seconds": 1688.158252 + }, + { + "decimal": "0.47", + "digital": "0:28", + "hours": 0, + "minutes": 28, + "name": "\"../plugin/highlight/highlight.js\"", + "percent": 0.46, + "text": "28 mins", + "total_seconds": 1688.158252 + }, + { + "decimal": "0.47", + "digital": "0:28", + "hours": 0, + "minutes": 28, + "name": "\"../plugin/notes/notes.js\"", + "percent": 0.46, + "text": "28 mins", + "total_seconds": 1688.158252 + }, + { + "decimal": "0.47", + "digital": "0:28", + "hours": 0, + "minutes": 28, + "name": "\"../dist/reveal.js\"", + "percent": 0.46, + "text": "28 mins", + "total_seconds": 1688.158252 + }, + { + "decimal": "0.47", + "digital": "0:28", + "hours": 0, + "minutes": 28, + "name": "click", + "percent": 0.46, + "text": "28 mins", + "total_seconds": 1686.338667 + }, + { + "decimal": "0.35", + "digital": "0:21", + "hours": 0, + "minutes": 21, + "name": "json", + "percent": 0.35, + "text": "21 mins", + "total_seconds": 1277.330451 + }, + { + "decimal": "0.28", + "digital": "0:17", + "hours": 0, + "minutes": 17, + "name": "types", + "percent": 0.29, + "text": "17 mins", + "total_seconds": 1064.953771 + }, + { + "decimal": "0.28", + "digital": "0:17", + "hours": 0, + "minutes": 17, + "name": "bs4", + "percent": 0.29, + "text": "17 mins", + "total_seconds": 1056.738503 + }, + { + "decimal": "0.25", + "digital": "0:15", + "hours": 0, + "minutes": 15, + "name": "lib", + "percent": 0.25, + "text": "15 mins", + "total_seconds": 934.441037 + }, + { + "decimal": "0.13", + "digital": "0:08", + "hours": 0, + "minutes": 8, + "name": "whois", + "percent": 0.13, + "text": "8 mins", + "total_seconds": 480.399088 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "@rollup/plugin-babel", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.825654 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "@babel/core", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.825654 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "@rollup/plugin-commonjs", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.825654 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "babel-plugin-transform-html-import-to-string", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.825654 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "@rollup/plugin-node-resolve", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.825654 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "@babel/eslint-parser", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.825654 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "@babel/preset-env", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.825654 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "gulp", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "rollup-plugin-terser", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "highlight.js", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "rollup", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "node-qunit-puppeteer", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "marked", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "yargs", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "gulp-tap", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "glob", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "fitty", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "gulp-header", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "sass", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "gulp-eslint", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "colors", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "core-js", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "gulp-clean-css", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "gulp-zip", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "gulp-connect", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "gulp-autoprefixer", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "npm", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.10", + "digital": "0:06", + "hours": 0, + "minutes": 6, + "name": "qunit", + "percent": 0.1, + "text": "6 mins", + "total_seconds": 362.324035 + }, + { + "decimal": "0.08", + "digital": "0:05", + "hours": 0, + "minutes": 5, + "name": "validators", + "percent": 0.1, + "text": "5 mins", + "total_seconds": 357.026578 + }, + { + "decimal": "0.07", + "digital": "0:04", + "hours": 0, + "minutes": 4, + "name": "urllib3", + "percent": 0.08, + "text": "4 mins", + "total_seconds": 294.952865 + }, + { + "decimal": "0.07", + "digital": "0:04", + "hours": 0, + "minutes": 4, + "name": "io", + "percent": 0.07, + "text": "4 mins", + "total_seconds": 277.103882 + }, + { + "decimal": "0.07", + "digital": "0:04", + "hours": 0, + "minutes": 4, + "name": "colorama", + "percent": 0.07, + "text": "4 mins", + "total_seconds": 265.839161 + }, + { + "decimal": "0.05", + "digital": "0:03", + "hours": 0, + "minutes": 3, + "name": "turtle", + "percent": 0.05, + "text": "3 mins", + "total_seconds": 184.984584 + }, + { + "decimal": "0.05", + "digital": "0:03", + "hours": 0, + "minutes": 3, + "name": "collections", + "percent": 0.05, + "text": "3 mins", + "total_seconds": 183.548048 + }, + { + "decimal": "0.03", + "digital": "0:02", + "hours": 0, + "minutes": 2, + "name": "threading", + "percent": 0.04, + "text": "2 mins", + "total_seconds": 157.68527 + }, + { + "decimal": "0.03", + "digital": "0:02", + "hours": 0, + "minutes": 2, + "name": "string", + "percent": 0.04, + "text": "2 mins", + "total_seconds": 135.846247 + }, + { + "decimal": "0.03", + "digital": "0:02", + "hours": 0, + "minutes": 2, + "name": "random", + "percent": 0.04, + "text": "2 mins", + "total_seconds": 135.846247 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "warnings", + "percent": 0.03, + "text": "1 min", + "total_seconds": 100.081632 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "builtins", + "percent": 0.03, + "text": "1 min", + "total_seconds": 95.135907 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "errno", + "percent": 0.03, + "text": "1 min", + "total_seconds": 94.72993 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "grp", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "fcntl", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "_winapi", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "select", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "selectors", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "msvcrt", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "_posixsubprocess", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "pwd", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "contextlib", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "signal", + "percent": 0.02, + "text": "1 min", + "total_seconds": 87.835156 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "importlib", + "percent": 0.02, + "text": "1 min", + "total_seconds": 79.570815 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "dataclasses", + "percent": 0.02, + "text": "1 min", + "total_seconds": 70.363609 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "main", + "percent": 0.02, + "text": "1 min", + "total_seconds": 69.997545 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "unittest", + "percent": 0.02, + "text": "1 min", + "total_seconds": 69.997545 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "functools", + "percent": 0.02, + "text": "1 min", + "total_seconds": 66.724214 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "_yield_finished_futures", + "percent": 0.02, + "text": "1 min", + "total_seconds": 66.672551 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "uuid", + "percent": 0.02, + "text": "1 min", + "total_seconds": 63.546651 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "encodings", + "percent": 0.02, + "text": "0 secs", + "total_seconds": 57.988881 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "idna", + "percent": 0.02, + "text": "0 secs", + "total_seconds": 57.988881 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "itertools", + "percent": 0.01, + "text": "0 secs", + "total_seconds": 54.175189 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "shellingham", + "percent": 0.01, + "text": "0 secs", + "total_seconds": 34.025268 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "core", + "percent": 0.01, + "text": "0 secs", + "total_seconds": 25.420153 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "exceptions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 14.476203 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "subprocess", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 10.982517 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "plugins", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 8.001574 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "line", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 7.8175 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "socket", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 6.894774 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ssl", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 6.894774 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "email", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 6.894774 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "gettext", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 5.351702 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "console", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 4.639937 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "getpass", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 3.177563 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "platform", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 3.177563 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "html", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 3.177563 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "self", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 3.177563 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "abc", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 3.177563 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "typing_extensions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 3.177563 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "printer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 2.042013 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "exporter", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 2.042013 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/path-parse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "array-slice", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/randombytes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/set-value", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fitty", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/encodeurl", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/autoprefixer/node_modules/browserslist", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets/node_modules/is-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/chokidar/node_modules/glob-parent", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/duplexify", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-private-property-in-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-optional-chaining", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/binary-extensions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/type-fest", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/astral-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-tilde", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/types", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/preset-modules", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "array-last", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/babel-plugin-transform-html-import-to-string", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-define-polyfill-provider", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/deep-is", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-number", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-nullish-coalescing-operator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-wrap-function", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regex-not/node_modules/extend-shallow", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/tiny-lr/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-modules-amd", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-validator-option", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/array-last", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/minimist", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "array-initial", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-reserved-words", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-classes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/p-try", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "arr-flatten", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/define-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/is-number", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/array-each", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lodash", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-utf8", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/iconv-lite", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/external-editor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/deepmerge", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-valid-glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/progress", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-block-scoped-functions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/postcss/node_modules/source-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/type-check", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-builder-binary-assignment-operator-visitor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-replace-supers", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/template", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-export-namespace-from", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/static-extend/node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ajv", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-typeof-symbol", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@rollup/pluginutils", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/copy-props", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/interpret", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-through", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@eslint/eslintrc", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/wrap-ansi", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fined", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/type", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/plugin-error/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/set-blocking", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/word-wrap", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/arr-diff", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-optional-chaining", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-new-target", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/color-convert", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-static", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-dotall-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "arr-filter", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-escapes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/jest-worker/node_modules/has-flag", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-nullish-coalescing-operator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/parse-json", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/table", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/micromatch/node_modules/is-extendable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/yauzl", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/shebang-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/postcss-value-parser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/concat-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/os-locale", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regenerator-runtime", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/clone", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-parameters", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/buffer-equal", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/node-releases", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/babel-plugin-polyfill-regenerator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/pretty-hrtime", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/readable-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/file-uri-to-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fancy-log", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-object-path/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/escape-string-regexp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/source-map-url", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-exponentiation-operator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/require-directory", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/finalhandler/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-numeric-separator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/array-initial/node_modules/is-number", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-member-expression-literals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/plugin-error", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/string-width", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon-node", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/postcss", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/end-of-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/path-key", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/array-initial", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/matchdep/node_modules/findup-sync", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-computed-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "autoprefixer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/tiny-glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/acorn-jsx", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/es6-iterator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/just-debounce", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/nanomatch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/colors", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/cliui", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/clone-stats", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/tslib", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/functional-red-black-tree", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/error-ex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/parse-node-version", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/string-width", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-numeric-separator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/remove-bom-buffer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/globalyzer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-private-property-in-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/hosted-git-info", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/isobject", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/ansi-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regex-not/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-numeric-separator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/nan", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/strip-ansi", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/estree-walker", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/connect", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/braces", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lodash.clonedeep", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ignore", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@types/node", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/source-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-object-rest-spread", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-logical-assignment-operators", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/extglob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/nanomatch/node_modules/is-extendable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/semver-greatest-satisfied-range", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-compilation-targets", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/binary-extensions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-new-target", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/traverse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fined/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/through", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/require-main-filename", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/livereload-js", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-skip-transparent-expression-wrappers", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/resolve", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sver-compat", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-top-level-await", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/require-main-filename", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gensync", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-optional-chaining", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/jest-worker/node_modules/supports-color", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "async-each", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-json-strings", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/template", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/for-in", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-escapes/node_modules/type-fest", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/globals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-modules-systemjs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/traverse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/array-slice", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-red", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-split-export-declaration", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-modules-commonjs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/string-width", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-unicode-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/arr-union", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/semver", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-property-literals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/core", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/xtend", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/make-iterator/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/stream-exhaust", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/split-string/node_modules/extend-shallow", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/concat-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-module-imports", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ordered-read-streams", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serialize-javascript", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/through2-filter", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/text-table", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/pify", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-plugin-utils", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/marked", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/glob-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@rollup/pluginutils", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-unicode-escapes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/glob-watcher", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/ansi-colors", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/glob-stream/node_modules/is-glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-core-module", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-property-literals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-optimise-call-expression", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon/node_modules/is-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/escape-html", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object.pick", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/flagged-respawn", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/global-prefix/node_modules/which", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/micromatch/node_modules/extend-shallow", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-logical-assignment-operators", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/typedarray", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-optional-catch-binding", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/body", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/glogg", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/readdirp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-create-regexp-features-plugin", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-destructuring", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/path-exists", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/collection-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "acorn-jsx", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/puppeteer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-assign", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-zip", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/readdirp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/remove-trailing-separator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-clean-css/node_modules/through2", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/qunit", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mute-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/time-stamp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/send/node_modules/statuses", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/for-own", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/load-json-file", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "async-limiter", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/js-yaml", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-skip-transparent-expression-wrappers", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ansi-styles", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/jsesc", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/component-emitter", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/append-buffer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unset-value/node_modules/has-values", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object.assign", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/has-values", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/compat-data", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/rechoir", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/faye-websocket", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-colors", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inquirer/node_modules/chalk", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/urix", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/read-pkg-up/node_modules/find-up", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/which", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-cyan", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-validator-identifier", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/color-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "assign-symbols", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-class-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/code-frame", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/extglob/node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-for-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/preset-modules", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/compat-data", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/tiny-lr", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/p-locate", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-gray", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-copy/node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-exponentiation-operator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/websocket-driver", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-object-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/finalhandler/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/function-bind", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "balanced-match", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/file-entry-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-explode-assignable-expression", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "arr-diff", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/http-parser-js", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/eslint-utils", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/is-fullwidth-code-point", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-regex-range", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ansi-cyan", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/which-module", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/pinkie", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/yargs-parser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/undertaker-registry", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-dynamic-import", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/map-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/chokidar", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-module-transforms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/bytes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-template-literals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/d", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-buffer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/runtime", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/shebang-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/chalk", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lodash.template", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/send/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/browserslist", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/require-from-string", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/levn", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/strip-json-comments", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-connect", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-static/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/parse-passwd", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/repeat-element", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/extract-zip", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/default-compare", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@types/resolve", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/signal-exit", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-duplicate-keys", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-object-rest-spread", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/safe-json-parse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-index/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint-visitor-keys", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/make-iterator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/anymatch/node_modules/normalize-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-nullish-coalescing-operator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/has-flag", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/emoji-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/spdx-exceptions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-zip/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/has-values/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/liftoff", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/each-props", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fast-levenshtein", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "archy", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lcid", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/range-parser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/connect/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/balanced-match", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/esquery/node_modules/estraverse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/caniuse-lite", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-modules-umd", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/path-type", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/locate-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-accessor-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/yallist", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/espree", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/estraverse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mkdirp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/type-check", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-number/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/which-module", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-async-generator-functions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/map-visit", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-optional-catch-binding", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-duplicate-keys", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ansi-gray", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/generator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/json-stable-stringify-without-jsonify", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/strip-ansi", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-arrow-functions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-top-level-await", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/split-string", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lodash.debounce", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-static/node_modules/debug/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inquirer/node_modules/supports-color", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-data-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lazystream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@eslint/eslintrc", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/file-entry-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-sticky-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/slice-ansi", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-regenerator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/micromatch/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mixin-deep/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/globrex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-modules-umd", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/globals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mimic-fn", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/buffer-crc32", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fd-slicer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/supports-color", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/slice-ansi/node_modules/ansi-styles", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/core-js-compat", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-parameters", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "base", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/path-key", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/safe-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/clean-css/node_modules/source-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/ansi-styles", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/cache-base", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/error", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/color-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lodash.templatesettings", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/pump", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/core-js-compat/node_modules/semver", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/semver", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/micromatch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/finalhandler", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-module", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/homedir-polyfill", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/split-string/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/espree/node_modules/eslint-visitor-keys", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/source-map-support", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-json-strings", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unicode-canonical-property-names-ecmascript", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/espree", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regenerator-transform", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/resolve-options", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unicode-match-property-ecmascript", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/repeat-string", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mime-types", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-static/node_modules/setprototypeof", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/base/node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mime-db", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@rollup/plugin-node-resolve", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-hoist-variables", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fs-mkdirp-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/arr-filter", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/node-watch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/esquery", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/js-tokens", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fast-json-stable-stringify", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/clean-css", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/terser/node_modules/commander", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/import-fresh", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-dotall-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/copy-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/collection-visit", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/puppeteer/node_modules/rimraf", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/http-errors/node_modules/inherits", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fresh", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/optionator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/flat-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "brace-expansion", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/atob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-computed-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-modules-systemjs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "anymatch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/through2", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ajv", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-function-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/side-channel", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/highlight", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-zip/node_modules/arr-diff", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon/node_modules/is-accessor-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/global-modules", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ext/node_modules/type", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sourcemap-codec", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/destroy", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/table", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/stack-trace", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/supports-color", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-typeof-symbol", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/v8-compile-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unicode-match-property-value-ecmascript", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-spread", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-optional-catch-binding", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/class-utils/node_modules/is-data-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "acorn", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-wrap", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-arrow-functions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-copy/node_modules/is-data-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unicode-property-aliases-ecmascript", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/rollup-plugin-terser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint-scope", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/parser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/websocket-extensions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-builder-binary-assignment-operator-visitor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/ansi-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-split-export-declaration", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-plugin-utils", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/get-caller-file", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-absolute-glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/static-extend/node_modules/is-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-static/node_modules/http-errors", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-async-to-generator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-annotate-as-pure", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/matchdep/node_modules/is-glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/pend", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/normalize-package-data/node_modules/semver", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regexpp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/flush-write-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/camelcase", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fragment-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets/node_modules/is-data-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-tap/node_modules/through2", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/astral-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/class-utils/node_modules/is-accessor-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/eslint", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/glob-stream/node_modules/glob-parent", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/convert-source-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regexpu-core", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/jest-worker", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-static/node_modules/mime", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/spdx-expression-parse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/stream-shift", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/pinkie-promise", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/code-point-at", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/setprototypeof", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-regex/node_modules/extend-shallow", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/string_decoder", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-data-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-literals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lodash.truncate", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/undertaker/node_modules/fast-levenshtein", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object.reduce", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-compilation-targets", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-absolute", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/rimraf", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/core-util-is", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon/node_modules/is-data-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helpers", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/default-resolution", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/@babel/code-frame", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/yargs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/number-is-nan", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ansi-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/cli-width", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/qs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-modules-amd", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-extglob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulplog", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helpers", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-json-strings", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-named-capturing-groups-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object.defaults", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inquirer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/matchdep", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-shorthand-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mute-stdout", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/wrap-ansi/node_modules/color-convert", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-reference", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-copy/node_modules/is-accessor-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/class-utils", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/proxy-from-env", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/fsevents", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/anymatch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regjsparser/node_modules/jsesc", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/value-or-function", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/connect/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/merge-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/read-pkg", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-class-static-block", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "babel-plugin-dynamic-import-node", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/use", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/resolve-from", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-reserved-words", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/commondir", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/read-pkg-up/node_modules/path-exists", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/types", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-module-imports", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/esrecurse/node_modules/estraverse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/rollup", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/wrap-ansi", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/remove-bom-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/has-flag", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/batch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-simple-access", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/code-frame", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/findup-sync", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/resolve-url", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-dynamic-import", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-accessor-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-export-namespace-from", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@types/estree", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/natural-compare", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/pascalcase", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inquirer/node_modules/has-flag", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/rollup/node_modules/fsevents", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/eslint-visitor-keys", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-binary-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/spdx-license-ids", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-module-transforms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/detect-file", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/esutils", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "binary-extensions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/wrap-ansi/node_modules/ansi-styles", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/es6-symbol", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-copy", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/acorn", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/graceful-fs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint/node_modules/chalk", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "babel-plugin-polyfill-corejs3", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/array-unique", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-autoprefixer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/cross-spawn/node_modules/semver", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "arr-union", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/source-map-resolve", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/connect-livereload", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/cross-spawn", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/chokidar", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "append-buffer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ansi-styles", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-hoist-variables", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/json-schema-traverse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/minimatch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-async-to-generator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-function-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/write", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/imurmurhash", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@types/mime-types", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/vinyl-sourcemaps-apply", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/generator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-static/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/undertaker", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-windows", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/invert-kv", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "browserslist", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/nanomatch/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-class-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-get-function-arity", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/toidentifier", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-class-static-block", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-class-static-block", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/bach", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/has", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/yargs-parser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/get-value", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/onetime", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/eslint-parser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/cross-spawn", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-class-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/esrecurse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object.map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/babel-plugin-dynamic-import-node", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/extract-zip/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/normalize-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/call-bind", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ansi-red", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/cloneable-readable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unset-value/node_modules/has-value", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/slice-ansi/node_modules/color-convert", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-object-super", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/emoji-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/raw-body", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/cliui", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ansi-colors", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/restore-cursor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-async-generator-functions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/async-done", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-shorthand-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fsevents", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/argparse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint-utils/node_modules/eslint-visitor-keys", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-private-methods", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/statuses", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ret", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/read-pkg-up", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-copy/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-keys", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ini", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-connect/node_modules/ansi-colors", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/y18n", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "batch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ansi-wrap", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-zip/node_modules/extend-shallow", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-fullwidth-code-point", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lru-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon/node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/run-async", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/path-root", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/type-fest", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/fill-range", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-unicode-property-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/upath", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/p-limit", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-simple-access", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/static-extend", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-logical-assignment-operators", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/flatted", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/rxjs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-private-property-in-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/slice-ansi/node_modules/color-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@types/node", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/wrappy", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regex-not", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-block-scoping", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-sticky-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inquirer/node_modules/ansi-styles", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/process-nextick-args", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/path-dirname", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/etag", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "arr-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regenerate-unicode-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/table/node_modules/json-schema-traverse", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sparkles", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "braces", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/extract-zip/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/color-convert", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/util-deprecate", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/arr-flatten", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "buffer-crc32", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-numeric-separator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-validator-option", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/electron-to-chromium", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/pumpify", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint-utils", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/picomatch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-negated-glob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regjsparser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/optionator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/parent-module", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-export-namespace-from", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/regexpp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-arrayish", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/https-proxy-agent", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inherits", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-remap-async-to-generator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@eslint/eslintrc/node_modules/globals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/get-caller-file", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-validator-identifier", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/async-limiter", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-clean-css", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/get-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/last-run", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/tmp", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/globals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/posix-character-classes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "agent-base", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/static-extend/node_modules/is-accessor-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/resolve-dir", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ws", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/negotiator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "array-sort", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/clone-buffer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/safe-buffer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/v8flags", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "accepts", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-unicode-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-regex/node_modules/is-extendable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/runtime", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/safer-buffer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@types/estree", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-dynamic-import", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-copy/node_modules/is-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/set-value/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/utils-merge", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lodash._reinterpolate", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-header", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-object-rest-spread", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-create-class-features-plugin", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-dynamic-import", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-spread", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/colorette", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "array-each", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "bach", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/yargs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-private-methods", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-private-property-in-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "async-done", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-export-namespace-from", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/once", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-nullish-coalescing-operator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-unicode-property-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/brace-expansion", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon-util/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-named-capturing-groups-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/array-last/node_modules/is-number", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-member-expression-literals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/normalize-package-data", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/doctrine", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-member-expression-to-functions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-zip/node_modules/arr-union", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/is-binary-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/preset-env", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/vinyl-fs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/is-fullwidth-code-point", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/nice-try", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sprintf-js", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/get-intrinsic", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/punycode", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "babel-plugin-polyfill-regenerator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "body", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unpipe", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/next-tick", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/highlight", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/split-string/node_modules/is-extendable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/now-and-later", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-create-regexp-features-plugin", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-visit", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-relative", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "array-unique", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/archy", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-define-polyfill-provider", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/anymatch", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/cli-cursor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/json5", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/core-js", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/uri-js", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/eslint", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-replace-supers", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/replace-ext", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-logical-assignment-operators", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/table/node_modules/ajv", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/path-root-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "babel-plugin-polyfill-corejs2", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/send", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/strip-ansi", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-proposal-json-strings", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-classes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/flatted", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/callsites", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/class-utils/node_modules/is-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/babel-plugin-polyfill-corejs2", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-regenerator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/source-map-support/node_modules/source-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/raw-body/node_modules/string_decoder", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-member-expression-to-functions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/plugin-error/node_modules/ansi-colors", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/class-utils/node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon-node/node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/has-value", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/decamelize", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/parser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/buffer-from", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets/node_modules/is-accessor-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/shebang-command", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unc-path-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-literals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-optimise-call-expression", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unset-value", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/assign-symbols", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@rollup/pluginutils/node_modules/estree-walker", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mime", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/flat-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-block-scoping", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-optional-catch-binding", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fill-range", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/send/node_modules/mime", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/normalize-range", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/braces", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/esprima", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/which", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/send/node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/on-finished", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/es5-ext", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/slice-ansi", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-function-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/autoprefixer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/spdx-correct", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/continuable-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/nanomatch/node_modules/extend-shallow", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/vinyl-sourcemap/node_modules/normalize-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/static-extend/node_modules/is-data-descriptor", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-object-super", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/prelude-ls", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "bindings", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "async-settle", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@rollup/plugin-babel", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/extend-shallow", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/micromatch/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-annotate-as-pure", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/es6-weak-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/each-props/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-index", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-optional-chaining", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/babel-plugin-polyfill-corejs3", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mixin-deep", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/depd", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-async-generators", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@types/mime-types", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-explode-assignable-expression", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-object-rest-spread", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/decode-uri-component", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-zip/node_modules/plugin-error", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/node-qunit-puppeteer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/shebang-command", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unset-value/node_modules/has-value/node_modules/isobject", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/vinyl", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/unique-stream", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/base", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/prelude-ls", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-modules-commonjs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/path-is-absolute", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/union-value", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "astral-regex", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/strip-bom", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-create-class-features-plugin", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-template-literals", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-unicode-escapes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/nanomatch/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/concat-with-sourcemaps", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/magic-string", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/replace-homedir", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/chardet", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ext", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/isarray", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regenerate", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/debug", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/async-each", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/terser/node_modules/source-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/concat-with-sourcemaps/node_modules/source-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-regex/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/mixin-deep/node_modules/is-extendable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/highlight.js", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/accepts", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-cli/node_modules/camelcase", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/ee-first", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fs.realpath", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/builtin-modules", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/levn", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "buffer-equal", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-remap-async-to-generator", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@types/resolve", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inquirer/node_modules/color-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/isexe", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/arr-map", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/bindings", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-zip/node_modules/array-slice", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/num2fraction", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/glob-parent", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/http-errors", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/plugin-error/node_modules/is-extendable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-tap", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/object-inspect", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/array-sort", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-index/node_modules/ms", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/escalade", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/extend", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/find-up", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/agent-base", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inquirer/node_modules/color-convert", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/wrap-ansi/node_modules/color-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/serve-static/node_modules/send", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/figures", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-function-name", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-proposal-class-static-block", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-syntax-async-generators", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/helper-wrap-function", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regjsgen", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/map-cache", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/expand-brackets/node_modules/define-property", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-extendable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/to-fast-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/global-prefix", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-destructuring", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "@babel/plugin-transform-for-of", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "ansi-escapes", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/plugin-error/node_modules/extend-shallow", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/lead", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/async-settle", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/is-unc-path", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/string-template", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "atob", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/parse-filepath", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@rollup/plugin-commonjs", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/os-tmpdir", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/enquirer", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/yazl", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/sass/node_modules/to-regex-range", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/inflight", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/y18n", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-syntax-class-properties", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/validate-npm-package-license", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/has-symbols", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/helper-get-function-arity", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/liftoff/node_modules/is-plain-object", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/snapdragon-util", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/gulp-eslint/node_modules/rimraf", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/terser", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/fast-deep-equal", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/@babel/plugin-transform-block-scoped-functions", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/parseurl", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/commander", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/vinyl-sourcemap", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/color-support", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "node_modules/regex-not/node_modules/is-extendable", + "percent": 0.0, + "text": "0 secs", + "total_seconds": 0.501619 + } + ], + "editors": [ + { + "decimal": "39.85", + "digital": "39:51", + "hours": 39, + "minutes": 51, + "name": "VS Code", + "percent": 100.0, + "text": "39 hrs 51 mins", + "total_seconds": 143499.912522 + } + ], + "end": "2022-02-20T18:29:59Z", + "holidays": 1, + "human_readable_daily_average": "6 hrs 34 mins", + "human_readable_daily_average_including_other_language": "6 hrs 38 mins", + "human_readable_range": "last week", + "human_readable_total": "39 hrs 24 mins", + "human_readable_total_including_other_language": "39 hrs 51 mins", + "id": "oiwef84n-we0kwm-oiud2--2342jd-o23iud8923", + "is_already_updating": false, + "is_coding_activity_visible": true, + "is_including_today": false, + "is_other_usage_visible": true, + "is_stuck": false, + "is_up_to_date": true, + "languages": [ + { + "decimal": "32.70", + "digital": "32:42", + "hours": 32, + "minutes": 42, + "name": "Python", + "percent": 82.05, + "text": "32 hrs 42 mins", + "total_seconds": 117742.732685 + }, + { + "decimal": "2.55", + "digital": "2:33", + "hours": 2, + "minutes": 33, + "name": "Markdown", + "percent": 6.43, + "text": "2 hrs 33 mins", + "total_seconds": 9226.765981 + }, + { + "decimal": "2.48", + "digital": "2:29", + "hours": 2, + "minutes": 29, + "name": "TOML", + "percent": 6.26, + "text": "2 hrs 29 mins", + "total_seconds": 8980.449116 + }, + { + "decimal": "0.47", + "digital": "0:28", + "hours": 0, + "minutes": 28, + "name": "HTML", + "percent": 1.19, + "text": "28 mins", + "total_seconds": 1703.77493 + }, + { + "decimal": "0.45", + "digital": "0:27", + "hours": 0, + "minutes": 27, + "name": "Other", + "percent": 1.15, + "text": "27 mins", + "total_seconds": 1649.46528 + }, + { + "decimal": "0.35", + "digital": "0:21", + "hours": 0, + "minutes": 21, + "name": "YAML", + "percent": 0.9, + "text": "21 mins", + "total_seconds": 1284.736669 + }, + { + "decimal": "0.25", + "digital": "0:15", + "hours": 0, + "minutes": 15, + "name": "JSON", + "percent": 0.64, + "text": "15 mins", + "total_seconds": 919.02165 + }, + { + "decimal": "0.20", + "digital": "0:12", + "hours": 0, + "minutes": 12, + "name": "PowerShell", + "percent": 0.54, + "text": "12 mins", + "total_seconds": 767.970796 + }, + { + "decimal": "0.12", + "digital": "0:07", + "hours": 0, + "minutes": 7, + "name": "INI", + "percent": 0.32, + "text": "7 mins", + "total_seconds": 453.800761 + }, + { + "decimal": "0.08", + "digital": "0:05", + "hours": 0, + "minutes": 5, + "name": "Git Config", + "percent": 0.22, + "text": "5 mins", + "total_seconds": 315.254872 + }, + { + "decimal": "0.05", + "digital": "0:03", + "hours": 0, + "minutes": 3, + "name": "Text", + "percent": 0.15, + "text": "3 mins", + "total_seconds": 222.278062 + }, + { + "decimal": "0.03", + "digital": "0:02", + "hours": 0, + "minutes": 2, + "name": "XML", + "percent": 0.1, + "text": "2 mins", + "total_seconds": 143.47155 + }, + { + "decimal": "0.02", + "digital": "0:01", + "hours": 0, + "minutes": 1, + "name": "Bash", + "percent": 0.06, + "text": "1 min", + "total_seconds": 79.371864 + }, + { + "decimal": "0.00", + "digital": "0:00", + "hours": 0, + "minutes": 0, + "name": "Docker", + "percent": 0.01, + "text": "0 secs", + "total_seconds": 10.818306 + } + ], + "machines": [ + { + "decimal": "37.45", + "digital": "37:27", + "hours": 37, + "machine": { + "created_at": "2021-12-09T10:22:06Z", + "id": "khd2rr2-2983-2349-oidj2-bbdce2342340", + "ip": "185.221.69.47", + "last_seen_at": "2022-02-21T11:35:07Z", + "name": "WinHost", + "timezone": null, + "value": "WinHost" + }, + "minutes": 27, + "name": "WinHost", + "percent": 93.99, + "text": "37 hrs 27 mins", + "total_seconds": 134874.211465 + }, + { + "decimal": "2.38", + "digital": "2:23", + "hours": 2, + "machine": { + "created_at": "2022-01-09T02:44:07Z", + "id": "e1b2b1234-a8ien-4232-82jda-oiwjqfw98234", + "ip": "111.92.75.144", + "last_seen_at": "2022-01-09T03:27:53Z", + "name": "MyHost", + "timezone": "Asia/Jerusalem", + "value": "MyHost" + }, + "minutes": 23, + "name": "MyHost", + "percent": 6.01, + "text": "2 hrs 23 mins", + "total_seconds": 8625.701057 + } + ], + "modified_at": "2022-02-21T00:40:31Z", + "operating_systems": [ + { + "decimal": "37.45", + "digital": "37:27", + "hours": 37, + "minutes": 27, + "name": "Windows", + "percent": 93.99, + "text": "37 hrs 27 mins", + "total_seconds": 134874.211465 + }, + { + "decimal": "2.38", + "digital": "2:23", + "hours": 2, + "minutes": 23, + "name": "Linux", + "percent": 6.01, + "text": "2 hrs 23 mins", + "total_seconds": 8625.701057 + } + ], + "percent_calculated": 100, + "project": null, + "projects": [ + { + "decimal": "36.07", + "digital": "36:04", + "hours": 36, + "minutes": 4, + "name": "Raft", + "percent": 90.52, + "text": "36 hrs 4 mins", + "total_seconds": 129889.273712 + }, + { + "decimal": "1.82", + "digital": "1:49", + "hours": 1, + "minutes": 49, + "name": "waka-readme", + "percent": 4.57, + "text": "1 hr 49 mins", + "total_seconds": 6559.100473 + }, + { + "decimal": "0.77", + "digital": "0:46", + "hours": 0, + "minutes": 46, + "name": "Unknown Project", + "percent": 1.96, + "text": "46 mins", + "total_seconds": 2818.741571 + }, + { + "decimal": "0.60", + "digital": "0:36", + "hours": 0, + "minutes": 36, + "name": "Abcdef", + "percent": 1.51, + "text": "36 mins", + "total_seconds": 2166.196182 + }, + { + "decimal": "0.57", + "digital": "0:34", + "hours": 0, + "minutes": 34, + "name": "Horror", + "percent": 1.44, + "text": "34 mins", + "total_seconds": 2066.600584 + } + ], + "range": "last_7_days", + "start": "2022-02-13T18:30:00Z", + "status": "ok", + "timeout": 15, + "timezone": "Asia/Jerusalem", + "total_seconds": 141850.447242, + "total_seconds_including_other_language": 143499.912522, + "user_id": "234234d2-e2jfe-324jn-soc23-2kjnd01jlqw358", + "username": "abcdefgh", + "writes_only": false + } +} diff --git a/tests/test_main.py b/tests/test_main.py index 2fe1e0d..8adae81 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -1,105 +1,134 @@ ''' Tests for the main.py ''' +from importlib import import_module +from dataclasses import dataclass +# from inspect import cleandoc +# from json import loads import unittest -import datetime -import base64 +import sys import os try: - # For travis build which uses + prime = import_module('main') + # works when running as # python -m unittest discover - from main import make_graph, generate_new_readme, decode_readme -except Exception as e: - print("Error: missing 'main.py'\nTrying absolute import...") +except ImportError as err: + print(err) + # sys.exit(1) + + +@dataclass +class TestData: + """Test Data""" + # for future tests + # waka_json: dict | None = None + bar_percent: tuple[float] | None = None + graph_blocks: tuple[str] | None = None + waka_graphs: tuple[list[str]] | None = None + dummy_readme: str = '' + + def populate(self) -> None: + """Populate Test Data""" + # for future tests + # with open(file='tests/sample_data.json', mode='rt', encoding='utf-8') as wkf: + # self.waka_json = loads(wkf.read()) + + self.bar_percent = ( + 0, 100, 49.999, 50, 25, 75, 3.14, 9.901, 87.334, 87.333, 4.666, 4.667 + ) + + self.graph_blocks = ("░▒▓█", "⚪⚫", "⓪①②③④⑤⑥⑦⑧⑨⑩") + + self.waka_graphs = ([ + "░░░░░░░░░░░░░░░░░░░░░░░░░", + "█████████████████████████", + "████████████▒░░░░░░░░░░░░", + "████████████▓░░░░░░░░░░░░", + "██████▒░░░░░░░░░░░░░░░░░░", + "██████████████████▓░░░░░░", + "▓░░░░░░░░░░░░░░░░░░░░░░░░", + "██▒░░░░░░░░░░░░░░░░░░░░░░", + "██████████████████████░░░", + "█████████████████████▓░░░", + "█░░░░░░░░░░░░░░░░░░░░░░░░", + "█▒░░░░░░░░░░░░░░░░░░░░░░░" + ], + [ + "⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", + "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫", + "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", + "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", + "⚫⚫⚫⚫⚫⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", + "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪⚪⚪⚪", + "⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", + "⚫⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", + "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪", + "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪", + "⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", + "⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪" + ], + [ + "⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", + "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩", + "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑤⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", + "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑤⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", + "⑩⑩⑩⑩⑩⑩③⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", + "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑧⓪⓪⓪⓪⓪⓪", + "⑧⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", + "⑩⑩⑤⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", + "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑧⓪⓪⓪", + "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑧⓪⓪⓪", + "⑩②⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", + "⑩②⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪" + ]) + + # self.dummy_readme = cleandoc(""" + # My Test Readme Start + # + # + # My Test Readme End + # """) + class TestMain(unittest.TestCase): + """Testing Main Module""" - def test_make_graph(self): - '''Tests the make_graph function''' - def test(percent: float, block: str, result: str): - self.assertEqual(make_graph(percent, block), result, - f"{percent}% should return {result}") - blocks = ["░▒▓█", "⚪⚫", "⓪①②③④⑤⑥⑦⑧⑨⑩"] - percents = [0, 100, 49.999, 50, 25, 75, 3.14, - 9.901, 87.334, 87.333, 4.666, 4.667] - graphGroup = [["░░░░░░░░░░░░░░░░░░░░░░░░░", - "█████████████████████████", - "████████████▒░░░░░░░░░░░░", - "████████████▓░░░░░░░░░░░░", - "██████▒░░░░░░░░░░░░░░░░░░", - "██████████████████▓░░░░░░", - "▓░░░░░░░░░░░░░░░░░░░░░░░░", - "██▒░░░░░░░░░░░░░░░░░░░░░░", - "██████████████████████░░░", - "█████████████████████▓░░░", - "█░░░░░░░░░░░░░░░░░░░░░░░░", - "█▒░░░░░░░░░░░░░░░░░░░░░░░"], - ["⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", - "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫", - "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", - "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", - "⚫⚫⚫⚫⚫⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", - "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪⚪⚪⚪", - "⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", - "⚫⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", - "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪", - "⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚫⚪⚪⚪", - "⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪", - "⚫⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪"], - ["⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", - "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩", - "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑤⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", - "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑤⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", - "⑩⑩⑩⑩⑩⑩③⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", - "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑧⓪⓪⓪⓪⓪⓪", - "⑧⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", - "⑩⑩⑤⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", - "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑧⓪⓪⓪", - "⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑩⑧⓪⓪⓪", - "⑩②⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪", - "⑩②⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪⓪"]] - for i, graphs in enumerate(graphGroup): - os.environ["INPUT_BLOCKS"] = blocks[i] - for j, graph in enumerate(graphs): - test(percents[j], blocks[i], graph) + def test_make_graph(self) -> None: + """Test graph maker""" + for idx, grb in enumerate(tds.graph_blocks): + for jdy, bpc in enumerate(tds.bar_percent): + self.assertEqual( + prime.make_graph(grb, bpc, 25), + tds.waka_graphs[idx][jdy] + ) - def test_generate_new_readme(self): - '''Tests generate_new_readme method from main.py''' - dummy_readme = '''My Readme Start - - - My Readme End''' - dummy_stats = '''```text - Python 24 hrs 15 mins █████████████████████████ 100.00 % - ```''' - expected_generated_readme = '''My Readme Start - \n```text - Python 24 hrs 15 mins █████████████████████████ 100.00 % - ```\n - My Readme End - ''' - expected_generated_readme = expected_generated_readme.strip() - actual_generated_readme = generate_new_readme(dummy_stats, dummy_readme) - self.assertEqual(actual_generated_readme, expected_generated_readme) + def test_make_title(self) -> None: + """Test title maker""" + self.assertRegex( + prime.make_title('2022-01-11T23:18:19Z', '2021-12-09T10:22:06Z'), + r'From: \d{2} \w{3,9} \d{4} - To: \d{2} \w{3,9} \d{4}' + ) - def test_decode_readme(self): - '''Tests decode_readme method from main.py''' - dummy_data = base64.b64encode(bytes('Some Data From GitHub', 'utf-8')) - expected_result = 'Some Data From GitHub' - actual_result = decode_readme(dummy_data) - self.assertEqual(actual_result, expected_result) + # Known test limits + # # prep_content() and churn(): + # requires additional modifications such as changing + # globally passed values to parametrically passing them + # # fetch_stats(): would required HTTP Authentication + + +tds = TestData() +tds.populate() if __name__ == '__main__': - if __package__ is None: - import sys - # because test_main.py is one level below main.py - # python test/test_main.py - sys.path.append(os.path.dirname( - os.path.dirname(os.path.abspath(__file__)))) - from main import make_graph, generate_new_readme, decode_readme - else: - # Later on if WakaReadme is implemetaion as package - # python -m tests/test_main - from ..main import make_graph, generate_new_readme, decode_readme + try: + sys.path.insert(0, os.path.abspath( + os.path.join(os.path.dirname(__file__), '..') + )) + import main as prime + # works when running as + # python tests/test_main.py + except ImportError as im_er: + print(im_er) + sys.exit(1) unittest.main()