diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 20b2ba8d..488cd3e8 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -7,10 +7,9 @@
"features": {
"ghcr.io/devcontainers/features/java:1": {
- "version": "17",
- "installMaven": "false",
- "installGradle": "true",
- "postCreateCommand": "java -version && chmod +x gradlew"
+ "version": "21",
+ "installMaven": "true",
+ "installGradle": "false"
}
}
diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md
index f897c595..426093ed 100644
--- a/.github/CODE_OF_CONDUCT.md
+++ b/.github/CODE_OF_CONDUCT.md
@@ -54,11 +54,7 @@ further defined and clarified by project maintainers.
## Enforcement
-Instances of abusive, harassing, or otherwise unacceptable behavior may be
-reported by contacting the project team at [kontakt@buzcraft.de](https://crazycloudcraft.de). All
-complaints will be reviewed and investigated and will result in a response that
-is deemed necessary and appropriate to the circumstances. The project team is
-obligated to maintain confidentiality with regard to the reporter of an incident.
+The project team is obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
deleted file mode 100644
index 29dfaab2..00000000
--- a/.github/CONTRIBUTING.md
+++ /dev/null
@@ -1,168 +0,0 @@
-# Contributing Guidelines
-
-First off, thank you for considering contributing to this project. It's people like you that make this such a great plugin.
-
-Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests.
-
-This is an open source project and we love to receive contributions from our community — you! There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests or writing code which can be incorporated into the plugin itself.
-
-Please, don't use the issue tracker for [requesting new plugins](https://www.spigotmc.org/threads/open-small-to-medium-plugin-development-pay-what-you-want-8-years-experience-high-quality.435578/). Read the post on the Spigot board or send me a [email](mailto://me@silthus.net).
-
-# Ground Rules
-
-By contributing to this project you submit to following our [code of conduct](.github/CODE_OF_CONDUCT.md).
-Please read this next section carefully and check if your contribution meets all requirements in this checklist. This will save you and us a lot of time.
-
-## Issues: Feature Requests & Bug Reports
-
-Please make sure you checked all of the following before submitting a new issue.
-
-* Before submitting a new issue, search the existing (including closed) issues for any duplicates.
-* If you found an existing issue - use the react feature to show you have the same problem or need the same feature. Don't post comments like +1.
-* Use the Bug & Feature Issue templates and provide all the required information.
-* Be as detailed as possible and include screenshots wherever possible. This will help reproducing your bug or understanding your feature request.
-* Use the WorldGuard `/wg report -p` command to provide detailed debug information and post the pastebin link in the issue.
-
-## Contributing Code
-
-Pull requests are the best way to propose changes to the codebase (we use [Github Flow](https://guides.github.com/introduction/flow/index.html)). We actively welcome your pull requests:
-
-* **Commit using the [conventional-commit](https://www.conventionalcommits.org/en/v1.0.0/) format!**
-* Create issues for any major changes and enhancements that you wish to make. Discuss things transparently and get community feedback.
-* Keep feature versions as small as possible, preferably one new feature per version.
-* Be welcoming to newcomers and encourage diverse new contributors from all backgrounds.
-
-# Your First Contribution
-
-Unsure where to begin contributing to this project? You can start by looking through these beginner and help-wanted issues:
-Good first issues - issues which should only require a few lines of code, and a test or two.
-Help wanted issues - issues which should be a bit more involved than beginner issues.
-
-Working on your first Pull Request? You can learn how from this *free* series, [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github).
-
-At this point, you're ready to make your changes! Feel free to ask for help; everyone is a beginner at first :smile_cat:
-
-If a maintainer asks you to "rebase" your PR, they're saying that a lot of code has changed, and that you need to update your branch so it's easier to merge.
-
-# Getting started
-
-1. Fork the repo and create your branch from `master`.
-2. If you've added code that should be tested, add tests.
-3. If you've changed APIs or added new features, update the documentation.
-4. Ensure the test suite passes.
-5. Test your changes on a server running the latest supported Minecraft version.
-6. Issue that pull request!
-
-> You can use the `Setup Server` gradle task to quickly get your test server setup. Then use the `deploy` task to compile and copy your plugin.jar to the server.
-
-# Code review process
-
-The core team will look at your change as soon as possible and review it. However since this a project that is done in free time, reviewing might sometimes take some time.
-
-# Code, commit message and labeling conventions
-
-We have very precise rules over how our git commit messages can be formatted. This leads to **more
-readable messages** that are easy to follow when looking through the **project history**.
-
-It is important to note that we use the git commit messages to **generate** the [CHANGELOG](CHANGELOG.md) document. Improperly formatted commit messages may result in your
-change not appearing in the CHANGELOG of the next release.
-
-### Commit Message Format
-Each commit message consists of a **header**, a **body** and a **footer**. The header has a special
-format that includes a **type**, a **scope** and a **subject**:
-
-```html
-():
-
-
-
-
-```
-
-> Any line of the commit message cannot be longer 100 characters!
-> This allows the message to be easier to read on GitHub as well as in various Git tools.
-
-##### Type
-Must be one of the following:
-
-* **feat**: A new feature
-* **fix**: A bug fix
-* **docs**: Documentation only changes
-* **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing
- semi-colons, etc)
-* **refactor**: A code change that neither fixes a bug nor adds a feature
-* **perf**: A code change that improves performance
-* **test**: Adding missing tests
-* **chore**: Changes to the build process or auxiliary tools and libraries such as documentation
- generation
-
-##### Scope
-The scope could be anything that helps specifying the scope (or feature) that is changing.
-
-Examples
-- command
-- event
-- permission
-- featureX
-
-##### Subject
-The subject contains a succinct description of the change:
-
-* use the imperative, present tense: "change" not "changed" nor "changes"
-* don't capitalize first letter
-* no dot (.) at the end
-
-##### Body
-Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes"
-The body should include the motivation for the change and contrast this with previous behavior.
-
-##### Footer
-The footer should contain any information about **Breaking Changes** and is also the place to
-reference GitHub issues that this commit **Closes**, **Fixes**, or **Relates to**.
-
-> Breaking Changes are intended to be highlighted in the ChangeLog as changes that will require
-> community users to modify their code after updating to a version that contains this commit.
-
-##### Sample Commit messages:
-```text
-fix(command): allow execution of /help X from the console
-
-when using the console /help x could not be executed
-
-Fixes #11231
-```
-```text
-feat(respawn): respawn player in bed after death
-
-* add test of player respawning in bed
-* add docs regarding how to set the bed respawn point
-* add command to reset bed spawnpoint
-
-Fixes #11161 Fixes #3857
-```
-
-```text
-refactor(respawn): bed respawn event renamed
-
- BREAKING CHANGE: PlayerBedRespawn renamed to PlayerRespawnInBed
-
- Change your code from this:
-
- ```java
- @EventHandler
- public void onRepsawn(PlayerBedRespawn event) {
- ...
- }
- ```
-
- To this:
-
- ```java
- @EventHandler
- public void onRepsawn(PlayerRespawnInBed event) {
- ...
- }
- ```
-```
-
-
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index 8b5e4328..d7123c3a 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -1,19 +1,19 @@
name: Bug report
-description: Create a report to help us improve the Plugin
+description: Help us improve the plugin
labels: 'bug'
body:
- type: markdown
attributes:
value: |
- Thanks for taking the time to fill out this bug report for WorldSystem! Fill out the following form to your best ability to help us fix the problem.
- Only use this if you're absolutely sure that you found a bug and can reproduce it. For anything else, use our Discord server or the wiki.
- Do NOT use the public issue tracker to report security vulnerabilities! They are disclosed using the [github vulnerabilitie](https://github.com/Argantiu/WorldSystem-Updated/security/advisories/new) form!
+ ### Thank you for reporting a WorldSystem bug!
+ Fill out the following form to your best ability to help us fix the problem.
+ **Only use this if you're absolutely sure that you found a bug and can reproduce it.**
- type: dropdown
attributes:
- label: Server Implementation
- description: Which server Implementation are you using? If your server implementation is not listed, it is not supported. Switch to a supported version first.
+ label: Which server Sortware (Implementation) are you using?
+ description: If not listed, it is not supported. Switch to a supported version first.
multiple: false
options:
- PurPur
@@ -24,18 +24,15 @@ body:
- type: dropdown
attributes:
- label: Server Version
- description: Which server version version you using? If your server version is not listed, it is not supported. Update to a supported version first.
+ label: Which server version version you using?
+ description: If not listed, it is not supported. Update to a supported version first.
multiple: false
options:
- - '1.20.4'
- - '1.20.2'
- - '1.19.3'
- - '1.19.2'
- - '1.19.1'
- - '1.19'
+ - 'above 1.21.3'
+ - '1.21.3'
+ - '1.20.6'
+ - '1.19.4'
- '1.18.2'
- - '1.18.1'
- '1.17.1'
- '1.16.5'
validations:
@@ -46,7 +43,14 @@ body:
label: Describe the bug
description: A clear and concise description of what the bug is.
validations:
- required: true
+ required: false
+
+ - type: textarea
+ attributes:
+ label: Expected behaviour
+ description: A clear and concise description of what you expected to happen.
+ validations:
+ required: false
- type: textarea
attributes:
@@ -58,45 +62,20 @@ body:
3. Scroll down to '...'
4. See error
validations:
- required: true
-
- - type: textarea
- attributes:
- label: Expected behaviour
- description: A clear and concise description of what you expected to happen.
- validations:
- required: true
-
- - type: textarea
- attributes:
- label: Screenshots / Videos
- description: If applicable, add screenshots to help explain your problem.
+ required: false
- type: input
attributes:
label: Error log (if applicable)
- description: If you are reporting a console error, upload any relevant log excerpts to either https://paste.gg/ or https://gist.github.com, save and the paste the link in this box.
-
- - type: dropdown
- attributes:
- label: WorldSystem Version
- description: What version of WorldSystem are you running? (`/ws help`)
- multiple: false
- options:
- - '2.4.37 (dev)'
- - '2.4.36'
+ description: If you are reporting a console error, upload any relevant log excerpts to https://gist.github.com, save and paste the link in this box.
validations:
- required: true
+ required: false
- type: checkboxes
attributes:
label: Checklist
- description: Make sure you have followed each of the steps outlined here.
+ description: Are you using the newest build?
options:
- - label: I am using the newest build from https://github.com/Argantiu/WorldSystem-Updated and the issue still persists.
- required: false
-
- - type: textarea
- attributes:
- label: Anything else?
- description: You can provide additional context below.
+ - label: I use the latest version from [danielbyomujuni/WorldSystem](https://github.com/danielbyomujuni/WorldSystem)
+ - label: I use the latest version from [Argantiu/WorldSystem-Updated](https://github.com/Argantiu/WorldSystem-Updated) and the issue still persists.
+ required: false
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 0272900e..e357f7f2 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,8 +1,8 @@
-blank_issues_enabled: true
+blank_issues_enabled: false
contact_links:
- name: WorldSystem Discord
- url: https://discord.gg/WYz7Qck
- about: Our support Discord, please ask questions and search support here.
+ url: https://discord.gg/cmdPMJ8
+ about: Our Discord, you can try to ask questions here
- name: WorldSystem Wiki
- url: https://github.com/Argantiu/WorldSystem-Updated/wiki
- about: Take a look at the wiki page for instructions how to setup WorldSystem and use its commands.
+ url: https://github.com/danielbyomujuni/WorldSystem/wiki
+ about: Take a look at the wiki page for instructions how to setup and use WorldSystem
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
index 2059af08..6f1ec297 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.yml
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -1,13 +1,13 @@
name: Feature request
-description: Suggest an idea for this project
+description: Suggest an idea for this plugin
labels: 'Enhancement'
body:
- type: markdown
attributes:
value: |
- Thanks for taking the time to fill out this feature request for WorldSystem! Fill out the following form to your best ability to help us understand your feature request and greately improve the change of it getting added.
- For anything else than a feature request, use our Discord server or the wiki.
+ ### Thank you for submitting a WorldSystem feature request!
+ Fill out the form to help us understand your request and improve its chances of being added.
- type: textarea
attributes:
@@ -19,11 +19,6 @@ body:
- type: textarea
attributes:
label: Are there any alternatives?
- description: List any alternatives you might have tried
+ description: List any alternatives you might have tried.
validations:
- required: true
-
- - type: textarea
- attributes:
- label: Anything else?
- description: You can provide additional context below.
+ required: false
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/version_request.yml b/.github/ISSUE_TEMPLATE/version_request.yml
new file mode 100644
index 00000000..3bd9bb03
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/version_request.yml
@@ -0,0 +1,63 @@
+name: Version request
+description: Ask for a new version of our plugin because of Minecraft or plugin updates
+labels: 'bug'
+
+body:
+ - type: markdown
+ attributes:
+ value: |
+ ### Fill out the following form to get a new release. (Hopefully)
+ Thanks to inform us about updates and dependencies.
+ _Sometimes Plugins, Softwares and Minecraft itself updates to a new version._
+ _Because that happens very often we can't keep track of everything._
+
+ - type: dropdown
+ attributes:
+ label: Server Implementation
+ description: Which server Implementation are you using? If your server implementation is not listed, it is not supported. Switch to a supported version first.
+ multiple: false
+ options:
+ - PurPur
+ - Paper
+ - Spigot
+ validations:
+ required: true
+
+ - type: dropdown
+ attributes:
+ label: What has been updated?
+ description: What is the Name of the Plugin or Software (you can check multiple)
+ multiple: true
+ options:
+ - Minecraft
+ - PlaceholderAPI
+ - VaultAPI
+ - WorldEdit
+ - FastAsyncWorldEdit
+ - other
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Name the version
+ description: Name the software too, if you selected multiple!
+ validations:
+ required: true
+
+ - type: checkboxes
+ attributes:
+ label: Checklist
+ description: Make sure you have followed each of the steps outlined here.
+ options:
+ - label: If I use the newest Plugin version, I can not run it.
+ - label: I get an error message that because of the new version.
+ validations:
+ required: false
+
+ - type: input
+ attributes:
+ label: Error log (if applicable)
+ description: If you are reporting a console error, upload any relevant log excerpts to https://gist.github.com, save and paste the link in this box.
+ validations:
+ required: false
diff --git a/.github/README.md b/.github/README.md
index b6d4a461..c233a9a0 100644
--- a/.github/README.md
+++ b/.github/README.md
@@ -1,20 +1,29 @@
+About
+ WorldSystem is a plugin where every player can get a world.
+ There they can do anything they want without creating stress in a single world.
+ The world owner can also add other players and manage their permissions on his world.
+ When a player creates a new world you can also set a template which will then be cloned.
+Features
+
+ Every player can create a world
+ Players can manage their world
+ Worlds can be preconfigured
+ Worlds unload if the player disconnects
+
+
+How to help making this resource better
+
+ Contributing code
+ Creating useful issues
+ Helping other users
+ Leaving a good review
+
+Discord support (Optional)
\ No newline at end of file
diff --git a/.github/SECURITY.md b/.github/SECURITY.md
index 47b815c0..75be66c2 100644
--- a/.github/SECURITY.md
+++ b/.github/SECURITY.md
@@ -1,22 +1,13 @@
# Security Policy
-
## Supported Versions
+Only the latest version at Argantiu/WorldSystem-Updated or in Releases is Supported.
+
+## Reporting a Vulnerability
-Use this section to tell people about which versions of your project are
-currently being supported with security updates.
-
-| Version | Supported |
-| ------- | ------------------ |
-| >2.4.35 | :white_check_mark: |
-| 2.4.34 | :x: |
-| < 2.4.33 | :x: |
+We do not support forks or other (malware) downloads exapt for [danielbyomujuni/WorldSystem](https://github.com/danielbyomujuni/WorldSystem) or [Argantiu/WorldSystem-Updated](https://github.com/Argantiu/WorldSystem-Updated)
+For secruity bugs go to our issue tracker.
-## Reporting a Vulnerability
+## Support
-This software was edited by CrazyCloudCraft.
-The offical Creator @trainerlord seems to be online again, so we will end the support here.
-We do not support forks or other (malware) downloads exapt for our [github site](https://github.com/CrazyCloudCraft/worldsystem-depecated/) or [trainerlords site](https://github.com/trainerlord/WorldSystem)
-Please write any security bugs directly to our issues.
-For direct support contact N1klasse#1486 or Trainerlord#3534 on discord.
-
-[Here are more informations about privacy policy](https://crazycloudcraft.de/en/privacypolicy/)
+We do not support other ways of communication for support exept the issue tracker.
+ Support requests via other channels can be rejected!
\ No newline at end of file
diff --git a/.github/SUGGESTIONS_LIST.md b/.github/SUGGESTIONS_LIST.md
deleted file mode 100644
index 8cdb17aa..00000000
--- a/.github/SUGGESTIONS_LIST.md
+++ /dev/null
@@ -1,80 +0,0 @@
-Hello, this is the suggestion site where you can view the things that I fix or add to the plugin.
-This is not offical, you can only see here IDEAS how i strukture the issues.
-
-
-# Issues sorted after importence:
----
-#41
-#44
-#38
-
-# Feature Requests sorted after importance:
----
-
-## Little feature requests:
-#54
-#51
-#49
-#46
-#42
-#37
-#34
-#33
-#31
-#28
-#27
-#25
-
-## Big feature requests:
-#53
-#52
-#50
-#47
-#43
-#35
-#32
-#30
-#29
-#26
-
-
-## Huge feature requests:
-#40
-#48
-
-```
-How it would could look like in the end:
-
-
-### cmds & perms:
-/ws togglepvp - toggele's pvp on/off in a world also supported
-ws.worldrules.togglepvp
-
-/ws toggledamage - toggle's playerdamage.
-ws.worldrules.toggledamage
-
-/ws chatmode [on/chatslow/off] <# for chatslow> - manage Chat per world
-ws.worldrules.chatmode
-
-/ws setonline [world] - sets a world online
-ws.worldsettings.setonline
-/ws list - list all online worlds
-ws.gui.list.default
-/ws setunlist [world] - unlist that world
-ws.worldsettings.setunlist
-/ws otp [worldname] - teleüort to a online world
-ws.tp.onlineworld
-s- /ws setoffline -
-s- /ws setprivate
-s= same 'ws.worldsettings.setprivate'
-
-/ws feature [worldname]
-ws.admin.worldsettings.feature
-
-
-### old cmd updated:
-/ws togglebuilding
-ws.worldrules.togglebuilding
-
-Make a better version. (With help from protect plugins)
-```
diff --git a/.github/auto-merge.yml b/.github/auto-merge.yml
deleted file mode 100644
index c55fb197..00000000
--- a/.github/auto-merge.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-- match:
- dependency_type: all
- update_type: "semver:minor" # includes patch updates!
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 14fc3a40..76e22beb 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -5,7 +5,7 @@
version: 2
updates:
- - package-ecosystem: "gradle" # See documentation for possible values
+ - package-ecosystem: "maven" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
diff --git a/.github/gradlewcommand.txt b/.github/gradlewcommand.txt
deleted file mode 100644
index 25fc0baa..00000000
--- a/.github/gradlewcommand.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-git clone https://github.com/CrazyCloudCraft/worldsystem-updated-old.git && cd worldsystem-updated-old && chmod +x gradlew && ./gradlew build && cd ./build/libs
-Version: 2.4.32
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
deleted file mode 100644
index f554d5e3..00000000
--- a/.github/workflows/gradle.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Build
-on: [push]
-jobs:
- build:
-
- runs-on: ubuntu-22.04
- # We want to run on external PRs, but not on our own internal PRs as they'll be run
- # by the push to the branch.
- if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
-
-
- steps:
- - name: Set up JDK 17
- uses: actions/setup-java@v1
- with:
- java-version: 17
-
- - name: Cache Gradle
- id: cache-gradle
- uses: actions/cache@v2.1.8
- with:
- path: ~/.gradle
- key: ${{ runner.os }}-gradle
-
- - uses: actions/checkout@v1
-
- - name: Grant execute permission to gradlew
- run: chmod +x gradlew
-
- - name: Build
- run: ./gradlew build -x test --warning-mode all
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 00000000..5d37f954
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,26 @@
+# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
+
+name: Java CI with Maven
+
+on: [push]
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up JDK 21
+ uses: actions/setup-java@v3
+ with:
+ java-version: '21'
+ distribution: 'temurin'
+ cache: maven
+ - name: Grant execute permission to pom.xml
+ run: |
+ wget -q https://dlcdn.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.tar.gz
+ tar xzvf apache-maven-3.9.9-bin.tar.gz >/dev/null 2>&1
+ export PATH=./apache-maven-3.9.9/bin:$PATH
+ - name: Build with Maven
+ run: mvn package -T 1C --file pom.xml
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 7b9952fb..fd801a00 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,7 +18,9 @@ working/*
!working/server.properties
/.idea/
-src/**/plugin.yml
+# Maven
+target/
+bin/
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
diff --git a/bin/main/LICENSE b/LICENSE
similarity index 100%
rename from bin/main/LICENSE
rename to LICENSE
diff --git a/bin/main/1_13_gui.yml b/bin/main/1_13_gui.yml
deleted file mode 100644
index da2c0dd4..00000000
--- a/bin/main/1_13_gui.yml
+++ /dev/null
@@ -1,300 +0,0 @@
-#
-# Config for the GUI "/gui"
-# Counting for rows and columns starts always at 1
-#
-
-options:
- # How the enabled item should look like
- enabled:
- # Material name in the Material enum
- material: LIME_DYE
- # Displayname
- display: '&aEnabled'
-
- # How the disabled item should look like
- disabled:
- material: ROSE_RED
- display: '&cDisabled'
-
- # How the comming-soon item should look like
- coming_soon:
- material: ORANGE_DYE
- display: '&6Coming soon...'
-
- # How the back item should look like
- back:
- material: BARRIER
- display: '&cBack'
-
- # When filling of an inventory is true, how the item should look like
- fill:
- material: GRAY_STAINED_GLASS_PANE
- display: ''
-
- # WorldoptionsGUI
- world:
- fill: false
- # What the title of the Inv should be
- title: 'World Options'
-
- # Rows
- rows: 3
-
- # Where the back item should be
- back:
- enabled: true
- slot:
- row: 3
- col: 5
-
- # Reset button
- reset:
- # If feature should be enabled or not
- enabled: true
- slot:
- row: 1
- col: 8
- material: DIAMOND_HOE
- data: 0
- display: '&eReset World'
-
- # Fire button
- fire:
- enabled: true
- slot:
- row: 1
- col: 2
- # Where the state item should be
- state:
- row: 2
- col: 2
- material: FLINT_AND_STEEL
- display: '&eToggle Fire'
-
- # TNT button
- tnt:
- enabled: true
- slot:
- row: 1
- col: 5
- state:
- row: 2
- col: 5
- material: TNT
- display: '&eToggle TNT-Explosion'
-
- players:
- title: 'Players added to this world'
-
- back:
- enabled: true
- slot:
- row: 6
- col: 6
-
- rows: 6
-
- nextpage:
- enabled: true
- slot:
- row: 6
- col: 8
- material: PAPER
- display: '&eNext Page'
- pagebefore:
- enabled: true
- slot:
- row: 6
- col: 2
- material: PAPER
- display: '&ePage before'
- currentpage:
- enabled: true
- slot:
- row: 6
- col: 4
- material: SUNFLOWER
- display: '&eCurrent page: &a%page'
-
- playerhead:
- material: PLAYER_HEAD
- display: '&e%player'
-
- # PlayerGUI for managing one player on a world
- player:
- fill: false
- title: 'Player options for %player'
-
- back:
- slot:
- enabled: true
- row: 3
- col: 5
-
- rows: 3
-
- build:
- enabled: true
- slot:
- row: 1
- col: 1
- state:
- row: 2
- col: 1
- material: GOLDEN_AXE
- display: '&eToggle Build-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To build on this world'
- gamemode:
- enabled: true
- slot:
- row: 1
- col: 2
- state:
- row: 2
- col: 2
- material: END_CRYSTAL
- display: '&eToggle GameMode-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To change the GameMode on this world'
- teleport:
- enabled: true
- slot:
- row: 1
- col: 3
- state:
- row: 2
- col: 3
- material: COMPASS
- display: '&eToggle Teleport-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To teleport on this world'
- worldedit:
- enabled: true
- slot:
- row: 1
- col: 4
- state:
- row: 2
- col: 4
- material: WOODEN_AXE
- display: '&eToggle WorldEdit-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To use WorldEdit on this world'
- addmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 399
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To add a member to this world'
- delmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 286
- display: '&eToggle Delmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To remove a member from this world'
- setpermissions:
- enabled: false
- slot:
- row: 1
- col: 8
- state:
- row: 2
- col: 8
- material: 331
- display: '&eToggle Setpermissions-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To set permissions for a member of this world'
- administrateworld:
- enabled: false
- slot:
- row: 1
- col: 9
- state:
- row: 2
- col: 9
- material: 421
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To adminstrate this world'
-
-# WorldsystemGUI
-worldsystem:
- fill: false
- title: 'WorldSystem'
-
- rows: 1
-
- back:
- slot:
- enabled: true
- row: 1
- col: 5
-
- playeroptions:
- enabled: true
- slot:
- row: 1
- col: 1
- material: LEATHER_HELMET
- display: '&ePlayer Options'
- worldoptions:
- enabled: true
- slot:
- row: 1
- col: 9
- material: GRASS_BLOCK
- display: '&eWorld Options'
-
-# GUI for choosing world template
-worldchoose:
- fill: false
- title: 'Choose world template'
-
- back:
- enabled: true
- slot:
- row: 4
- col: 5
-
- rows: 4
-
- # The key must be named exactly as in the config.yml
- template_default:
- enabled: true
- slot:
- row: 2
- col: 3
- material: GRASS_BLOCK
- display: '&aDefault template'
-
- another_template:
- enabled: true
- slot:
- row: 2
- col: 7
- material: STONE
- display: '&aAnother template'
-
-
-
\ No newline at end of file
diff --git a/bin/main/1_14_gui.yml b/bin/main/1_14_gui.yml
deleted file mode 100644
index 699b5d7c..00000000
--- a/bin/main/1_14_gui.yml
+++ /dev/null
@@ -1,299 +0,0 @@
-#
-# Config for the GUI "/gui"
-# Counting for rows and columns starts always at 1
-#
-
-options:
- # How the enabled item should look like
- enabled:
- # Material name in the Material enum
- material: LIME_DYE
- # Displayname
- display: '&aEnabled'
-
- # How the disabled item should look like
- disabled:
- material: RED_DYE
- display: '&cDisabled'
-
- # How the comming-soon item should look like
- coming_soon:
- material: ORANGE_DYE
- display: '&6Coming soon...'
-
- # How the back item should look like
- back:
- material: BARRIER
- display: '&cBack'
-
- # When filling of an inventory is true, how the item should look like
- fill:
- material: GRAY_STAINED_GLASS_PANE
- display: ''
-
- # WorldoptionsGUI
- world:
- fill: false
- # What the title of the Inv should be
- title: 'World Options'
-
- # Rows
- rows: 3
-
- # Where the back item should be
- back:
- enabled: true
- slot:
- row: 3
- col: 5
-
- # Reset button
- reset:
- # If feature should be enabled or not
- enabled: true
- slot:
- row: 1
- col: 8
- material: DIAMOND_HOE
- data: 0
- display: '&eReset World'
-
- # Fire button
- fire:
- enabled: true
- slot:
- row: 1
- col: 2
- # Where the state item should be
- state:
- row: 2
- col: 2
- material: FLINT_AND_STEEL
- display: '&eToggle Fire'
-
- # TNT button
- tnt:
- enabled: true
- slot:
- row: 1
- col: 5
- state:
- row: 2
- col: 5
- material: TNT
- display: '&eToggle TNT-Explosion'
-
- players:
- title: 'Players added to this world'
-
- back:
- enabled: true
- slot:
- row: 6
- col: 6
-
- rows: 6
-
- nextpage:
- enabled: true
- slot:
- row: 6
- col: 8
- material: PAPER
- display: '&eNext Page'
- pagebefore:
- enabled: true
- slot:
- row: 6
- col: 2
- material: PAPER
- display: '&ePage before'
- currentpage:
- enabled: true
- slot:
- row: 6
- col: 4
- material: SUNFLOWER
- display: '&eCurrent page: &a%page'
-
- playerhead:
- material: PLAYER_HEAD
- display: '&e%player'
-
- # PlayerGUI for managing one player on a world
- player:
- fill: false
- title: 'Player options for %player'
-
- back:
- slot:
- enabled: true
- row: 3
- col: 5
-
- rows: 3
-
- build:
- enabled: true
- slot:
- row: 1
- col: 1
- state:
- row: 2
- col: 1
- material: GOLDEN_AXE
- display: '&eToggle Build-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To build on this world'
- gamemode:
- enabled: true
- slot:
- row: 1
- col: 2
- state:
- row: 2
- col: 2
- material: END_CRYSTAL
- display: '&eToggle GameMode-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To change the GameMode on this world'
- teleport:
- enabled: true
- slot:
- row: 1
- col: 3
- state:
- row: 2
- col: 3
- material: COMPASS
- display: '&eToggle Teleport-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To teleport on this world'
- worldedit:
- enabled: true
- slot:
- row: 1
- col: 4
- state:
- row: 2
- col: 4
- material: WOODEN_AXE
- display: '&eToggle WorldEdit-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To use WorldEdit on this world'
- addmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 399
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To add a member to this world'
- delmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 286
- display: '&eToggle Delmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To remove a member from this world'
- setpermissions:
- enabled: false
- slot:
- row: 1
- col: 8
- state:
- row: 2
- col: 8
- material: 331
- display: '&eToggle Setpermissions-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To set permissions for a member of this world'
- administrateworld:
- enabled: false
- slot:
- row: 1
- col: 9
- state:
- row: 2
- col: 9
- material: 421
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To adminstrate this world'
-
-# WorldsystemGUI
-worldsystem:
- fill: false
- title: 'WorldSystem'
-
- rows: 1
-
- back:
- slot:
- enabled: true
- row: 1
- col: 5
-
- playeroptions:
- enabled: true
- slot:
- row: 1
- col: 1
- material: LEATHER_HELMET
- display: '&ePlayer Options'
- worldoptions:
- enabled: true
- slot:
- row: 1
- col: 9
- material: GRASS_BLOCK
- display: '&eWorld Options'
-
-# GUI for choosing world template
-worldchoose:
- fill: false
- title: 'Choose world template'
-
- back:
- enabled: true
- slot:
- row: 4
- col: 5
-
- rows: 4
-
- # The key must be named exactly as in the config.yml
- template_default:
- enabled: true
- slot:
- row: 2
- col: 3
- material: GRASS_BLOCK
- display: '&aDefault template'
-
- another_template:
- enabled: true
- slot:
- row: 2
- col: 7
- material: STONE
- display: '&aAnother template'
-
-
diff --git a/bin/main/config.yml b/bin/main/config.yml
deleted file mode 100644
index 17611131..00000000
--- a/bin/main/config.yml
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-# Path where the worlds will be saved
-worldfolder: 'plugins/WorldSystem/Worlds'
-
-worldtemplates:
- # Whether players can decide on different templates
- multi_choose: false
- # If multi_choose is disabled, which template should be choosen
- default: 'template_default'
- templates:
- # The "1" can be any key
- 1:
- # Name of directory in plugins/WorldSystem/worldsources
- # e.g. this would be plugins/WorldSystem/worldsources/template_default
- name: 'template_default'
- # Just remove the permission field if everybody should be able to use this template
- 2:
- name: 'another_template'
- # Only players with this exact permission can use and see this template
- # ws.* will not work with this
- permission: ws.template.another_template
- # If this config option is given, 100 is needed to create a world
- # This amount will then with withdrawn from the player
- cost: 100
-
- # Options for random world generation
- # Here you can configure the world generator of a template
- generator:
- # A seed for worldgeneration
- # Set it to 0 for no seed-useage
- seed: 0
- # Environment for the world
- # Valid inputs are 'NORMAL', 'NETHER' and 'THE_END'
- environment: NORMAL
- # Type of the world eg. flat, amplified, ...
- # Valid types are 'NORMAL', 'VERSION_1_1', 'FLAT', 'AMPLIFIED', 'CUSTOMIZED' or 'LARGE_BIOMES'
- type: NORMAL
- # Put in here the name of a generator
- # If you have one from one plugin
- generator: ''
-
-# If a confirm is needed before auto-update
-need_confirm: true
-
-# When nobody is on a world time until it get unloaded
-unloadingtime: 20
-
-# If true nobody can teleport or change their gamemode a WorldSystem world
-# Except for players with the permissions: ws.gamemode | ws.tp.*
-survival: false
-
-# If WorldSystem should load the worlds async if possible (FAWE installed)
-load_worlds_async: true
-
-# Options for the database saving player positions
-database:
- # Which type should be choosen:
- # 'mysql' or 'sqlite'
- # You need a working mysql database in order to use this option
- type: sqlite
- # How the table with the saved player positions on the playerworlds should be named
- worlds_table_name: worlds_positions
- # How the table with the saved player positions on the normal worlds should be named
- players_table_name: player_positions
- # how should the uuid cache be stored
- players_uuids: players_uuids
-
- # Configure here your mysql connection
- mysql_settings:
- host: 127.0.0.1
- port: 3306
- username: root
- password: YOUR_PASSWORD_HERE
- database: database
- sqlite_settings:
- # Where the database file should be located
- file: 'plugins/WorldSystem/repository.db'
-
-# If true players will teleported to the spawn on join
-spawn_teleportation: true
-
-# Time in seconds until a request expires
-request_expires: 20
-
-# Name of the languagefile in plugins/WorldSystem/languages/
-language: en
-
-# Prefix which will be shown before each message
-prefix: '&8[&3WorldSystem&8] &6'
-
-# Time in days after a not used world will be deleted
-# Set to -1 to disable
-delete_after: -1
-
-# Whether WorldSystem should contact the Mojang authserver
-# If not, some unknown playernames will not be displayed
-# eg. in the gui or in /ws info
-contact_authserver: true
-
-# Options for the LagSystem:
-# period_in_seconds - how often will be checked for entities in seconds
-# entities_per_world - maximal allowed entities per world
-# garbagecollector - how often will be unused ram be cleared
-lagsystem:
- period_in_seconds: 10
- entities_per_world: 350
- garbagecollector:
- use: false
- period_in_minutes: 5
-
-# Location where you will be teleported when you leave you world
-spawn:
- gamemode: 2
- spawnpoint:
- use_last_location: true
- world: world
- x: 0
- y: 20
- z: 0
- yaw: 0
- pitch: 0
-
-# Location where you spawn when you join a world
-worldspawn:
- use_last_location: true
- use: false
- spawnpoint:
- x: 0
- y: 20
- z: 0
- yaw: 0
- pitch: 0
\ No newline at end of file
diff --git a/bin/main/custom.yml b/bin/main/custom.yml
deleted file mode 100644
index 05a078c5..00000000
--- a/bin/main/custom.yml
+++ /dev/null
@@ -1,84 +0,0 @@
-nopermission: ""
-unknown_error: ""
-lagdetection: "%world"
-wrong_usage: ""
-not_registered: ""
-
-world:
- reseted: ""
- still_loaded: ""
- not_on: ""
- created: ""
- already_exists: ""
- delete:
- own: ""
- other: "%player"
- does_not_exists:
- own: ""
- other: ""
- setting_up: ""
- playerlist: "%players"
- still_creating: ""
- set_home: ""
- not_enough_money: ""
-
-
-member:
- removed: "%player"
- added: "%player"
- already_added: ""
- not_added:
- own: ""
- other: ""
- no_one_added
-
-request:
- expired: ""
- confirm: "%command"
- until_expire: "%time"
- already_sent: ""
- not_sent: ""
- invalid_input: "%input"
-
-toggle:
- gamemode:
- enabled: ""
- disabled: ""
- teleport:
- enabled: ""
- disabled: ""
- build:
- enabled: ""
- disabled: ""
- fire:
- enabled: ""
- disabled: ""
- tnt:
- enabled: ""
- disabled: ""
-
-info:
- owner: "%data"
- id: "%data"
- member: "%data"
- tnt: "%data"
- fire: "%data"
- enabled: ""
- disabled: ""
-
-command_help:
- list:
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- delete_command: ""
diff --git a/bin/main/de/butzlabben/inventory/CostumInv.class b/bin/main/de/butzlabben/inventory/CostumInv.class
deleted file mode 100644
index 1b71c151..00000000
Binary files a/bin/main/de/butzlabben/inventory/CostumInv.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/inventory/DependListener.class b/bin/main/de/butzlabben/inventory/DependListener.class
deleted file mode 100644
index 81f5dd34..00000000
Binary files a/bin/main/de/butzlabben/inventory/DependListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/inventory/OrcClickListener.class b/bin/main/de/butzlabben/inventory/OrcClickListener.class
deleted file mode 100644
index b89dce0c..00000000
Binary files a/bin/main/de/butzlabben/inventory/OrcClickListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/inventory/OrcInventory.class b/bin/main/de/butzlabben/inventory/OrcInventory.class
deleted file mode 100644
index 912a7365..00000000
Binary files a/bin/main/de/butzlabben/inventory/OrcInventory.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/inventory/OrcItem.class b/bin/main/de/butzlabben/inventory/OrcItem.class
deleted file mode 100644
index a2fceb3c..00000000
Binary files a/bin/main/de/butzlabben/inventory/OrcItem.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/inventory/OrcListener.class b/bin/main/de/butzlabben/inventory/OrcListener.class
deleted file mode 100644
index 88d212f3..00000000
Binary files a/bin/main/de/butzlabben/inventory/OrcListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/inventory/pages/InventoryPage.class b/bin/main/de/butzlabben/inventory/pages/InventoryPage.class
deleted file mode 100644
index 135e6a15..00000000
Binary files a/bin/main/de/butzlabben/inventory/pages/InventoryPage.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/inventory/pages/ItemConverter.class b/bin/main/de/butzlabben/inventory/pages/ItemConverter.class
deleted file mode 100644
index afa3f3e7..00000000
Binary files a/bin/main/de/butzlabben/inventory/pages/ItemConverter.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/inventory/pages/PageGUICreator.class b/bin/main/de/butzlabben/inventory/pages/PageGUICreator.class
deleted file mode 100644
index e6bbce2f..00000000
Binary files a/bin/main/de/butzlabben/inventory/pages/PageGUICreator.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/GCRunnable.class b/bin/main/de/butzlabben/world/GCRunnable.class
deleted file mode 100644
index 9cb5e534..00000000
Binary files a/bin/main/de/butzlabben/world/GCRunnable.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/GameProfileBuilder$CachedProfile.class b/bin/main/de/butzlabben/world/GameProfileBuilder$CachedProfile.class
deleted file mode 100644
index b636acdf..00000000
Binary files a/bin/main/de/butzlabben/world/GameProfileBuilder$CachedProfile.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/GameProfileBuilder$GameProfileSerializer.class b/bin/main/de/butzlabben/world/GameProfileBuilder$GameProfileSerializer.class
deleted file mode 100644
index fdca9ad2..00000000
Binary files a/bin/main/de/butzlabben/world/GameProfileBuilder$GameProfileSerializer.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/GameProfileBuilder.class b/bin/main/de/butzlabben/world/GameProfileBuilder.class
deleted file mode 100644
index 493777c8..00000000
Binary files a/bin/main/de/butzlabben/world/GameProfileBuilder.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/WorldCheckerRunnable.class b/bin/main/de/butzlabben/world/WorldCheckerRunnable.class
deleted file mode 100644
index 88f3c406..00000000
Binary files a/bin/main/de/butzlabben/world/WorldCheckerRunnable.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/WorldSystem.class b/bin/main/de/butzlabben/world/WorldSystem.class
deleted file mode 100644
index 9c6a05fc..00000000
Binary files a/bin/main/de/butzlabben/world/WorldSystem.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/command/CommandRegistry.class b/bin/main/de/butzlabben/world/command/CommandRegistry.class
deleted file mode 100644
index c2a3adcf..00000000
Binary files a/bin/main/de/butzlabben/world/command/CommandRegistry.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/command/commands/WSCommands.class b/bin/main/de/butzlabben/world/command/commands/WSCommands.class
deleted file mode 100644
index e2cae3eb..00000000
Binary files a/bin/main/de/butzlabben/world/command/commands/WSCommands.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/command/commands/WorldAdministrateCommand.class b/bin/main/de/butzlabben/world/command/commands/WorldAdministrateCommand.class
deleted file mode 100644
index 090c5c34..00000000
Binary files a/bin/main/de/butzlabben/world/command/commands/WorldAdministrateCommand.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/command/commands/WorldSettingsCommands.class b/bin/main/de/butzlabben/world/command/commands/WorldSettingsCommands.class
deleted file mode 100644
index 1dd9cdf7..00000000
Binary files a/bin/main/de/butzlabben/world/command/commands/WorldSettingsCommands.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/config/DependenceConfig.class b/bin/main/de/butzlabben/world/config/DependenceConfig.class
deleted file mode 100644
index f58e1ca5..00000000
Binary files a/bin/main/de/butzlabben/world/config/DependenceConfig.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/config/Entry.class b/bin/main/de/butzlabben/world/config/Entry.class
deleted file mode 100644
index 42c2139b..00000000
Binary files a/bin/main/de/butzlabben/world/config/Entry.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/config/GuiConfig.class b/bin/main/de/butzlabben/world/config/GuiConfig.class
deleted file mode 100644
index 1d9c560e..00000000
Binary files a/bin/main/de/butzlabben/world/config/GuiConfig.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/config/MessageConfig.class b/bin/main/de/butzlabben/world/config/MessageConfig.class
deleted file mode 100644
index 7a67b6ed..00000000
Binary files a/bin/main/de/butzlabben/world/config/MessageConfig.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/config/PluginConfig.class b/bin/main/de/butzlabben/world/config/PluginConfig.class
deleted file mode 100644
index 753572f1..00000000
Binary files a/bin/main/de/butzlabben/world/config/PluginConfig.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/config/SettingsConfig.class b/bin/main/de/butzlabben/world/config/SettingsConfig.class
deleted file mode 100644
index b3c76335..00000000
Binary files a/bin/main/de/butzlabben/world/config/SettingsConfig.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/config/WorldConfig.class b/bin/main/de/butzlabben/world/config/WorldConfig.class
deleted file mode 100644
index 9a4a9c38..00000000
Binary files a/bin/main/de/butzlabben/world/config/WorldConfig.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/config/WorldPerm.class b/bin/main/de/butzlabben/world/config/WorldPerm.class
deleted file mode 100644
index 835c7553..00000000
Binary files a/bin/main/de/butzlabben/world/config/WorldPerm.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldAddmemberEvent.class b/bin/main/de/butzlabben/world/event/WorldAddmemberEvent.class
deleted file mode 100644
index fc97c816..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldAddmemberEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldCreateEvent.class b/bin/main/de/butzlabben/world/event/WorldCreateEvent.class
deleted file mode 100644
index 31506ffe..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldCreateEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldDeleteEvent.class b/bin/main/de/butzlabben/world/event/WorldDeleteEvent.class
deleted file mode 100644
index a15e8e79..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldDeleteEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldEvent.class b/bin/main/de/butzlabben/world/event/WorldEvent.class
deleted file mode 100644
index 3f4bc41d..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldLoadEvent.class b/bin/main/de/butzlabben/world/event/WorldLoadEvent.class
deleted file mode 100644
index a5b11734..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldLoadEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldRemovememberEvent.class b/bin/main/de/butzlabben/world/event/WorldRemovememberEvent.class
deleted file mode 100644
index fadd4f02..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldRemovememberEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldResetEvent.class b/bin/main/de/butzlabben/world/event/WorldResetEvent.class
deleted file mode 100644
index c2367544..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldResetEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldToggleFireEvent.class b/bin/main/de/butzlabben/world/event/WorldToggleFireEvent.class
deleted file mode 100644
index 7342978d..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldToggleFireEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldToggleTntEvent.class b/bin/main/de/butzlabben/world/event/WorldToggleTntEvent.class
deleted file mode 100644
index 98e73a92..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldToggleTntEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/event/WorldUnloadEvent.class b/bin/main/de/butzlabben/world/event/WorldUnloadEvent.class
deleted file mode 100644
index f0b617af..00000000
Binary files a/bin/main/de/butzlabben/world/event/WorldUnloadEvent.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/GuiCommand.class b/bin/main/de/butzlabben/world/gui/GuiCommand.class
deleted file mode 100644
index 89ac22f3..00000000
Binary files a/bin/main/de/butzlabben/world/gui/GuiCommand.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/PlayerOptionsGUI.class b/bin/main/de/butzlabben/world/gui/PlayerOptionsGUI.class
deleted file mode 100644
index 1eab7776..00000000
Binary files a/bin/main/de/butzlabben/world/gui/PlayerOptionsGUI.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/PlayersPageGUI.class b/bin/main/de/butzlabben/world/gui/PlayersPageGUI.class
deleted file mode 100644
index c4abdb73..00000000
Binary files a/bin/main/de/butzlabben/world/gui/PlayersPageGUI.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/WorldChooseGUI.class b/bin/main/de/butzlabben/world/gui/WorldChooseGUI.class
deleted file mode 100644
index f05f827d..00000000
Binary files a/bin/main/de/butzlabben/world/gui/WorldChooseGUI.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/WorldOptionsGUI.class b/bin/main/de/butzlabben/world/gui/WorldOptionsGUI.class
deleted file mode 100644
index efb27308..00000000
Binary files a/bin/main/de/butzlabben/world/gui/WorldOptionsGUI.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/WorldSystemGUI.class b/bin/main/de/butzlabben/world/gui/WorldSystemGUI.class
deleted file mode 100644
index 27a793d3..00000000
Binary files a/bin/main/de/butzlabben/world/gui/WorldSystemGUI.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/clicklistener/ComingSoonClickListener.class b/bin/main/de/butzlabben/world/gui/clicklistener/ComingSoonClickListener.class
deleted file mode 100644
index 862e2cd7..00000000
Binary files a/bin/main/de/butzlabben/world/gui/clicklistener/ComingSoonClickListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/clicklistener/CommandExecutorClickListener.class b/bin/main/de/butzlabben/world/gui/clicklistener/CommandExecutorClickListener.class
deleted file mode 100644
index 33ba3043..00000000
Binary files a/bin/main/de/butzlabben/world/gui/clicklistener/CommandExecutorClickListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/clicklistener/InventoryOpenClickListener.class b/bin/main/de/butzlabben/world/gui/clicklistener/InventoryOpenClickListener.class
deleted file mode 100644
index 043babaa..00000000
Binary files a/bin/main/de/butzlabben/world/gui/clicklistener/InventoryOpenClickListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/playeroption/BuildStatus.class b/bin/main/de/butzlabben/world/gui/playeroption/BuildStatus.class
deleted file mode 100644
index d2fffe0b..00000000
Binary files a/bin/main/de/butzlabben/world/gui/playeroption/BuildStatus.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/playeroption/GamemodeStatus.class b/bin/main/de/butzlabben/world/gui/playeroption/GamemodeStatus.class
deleted file mode 100644
index d0916ab6..00000000
Binary files a/bin/main/de/butzlabben/world/gui/playeroption/GamemodeStatus.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/playeroption/TeleportStatus.class b/bin/main/de/butzlabben/world/gui/playeroption/TeleportStatus.class
deleted file mode 100644
index f7ded48e..00000000
Binary files a/bin/main/de/butzlabben/world/gui/playeroption/TeleportStatus.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/playeroption/WorldEditStatus.class b/bin/main/de/butzlabben/world/gui/playeroption/WorldEditStatus.class
deleted file mode 100644
index 396321c7..00000000
Binary files a/bin/main/de/butzlabben/world/gui/playeroption/WorldEditStatus.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/worldoption/FireStatus.class b/bin/main/de/butzlabben/world/gui/worldoption/FireStatus.class
deleted file mode 100644
index ecc0da5a..00000000
Binary files a/bin/main/de/butzlabben/world/gui/worldoption/FireStatus.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/gui/worldoption/TntStatus.class b/bin/main/de/butzlabben/world/gui/worldoption/TntStatus.class
deleted file mode 100644
index 1ea85699..00000000
Binary files a/bin/main/de/butzlabben/world/gui/worldoption/TntStatus.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/listener/BlockListener.class b/bin/main/de/butzlabben/world/listener/BlockListener.class
deleted file mode 100644
index 61183402..00000000
Binary files a/bin/main/de/butzlabben/world/listener/BlockListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/listener/CommandListener.class b/bin/main/de/butzlabben/world/listener/CommandListener.class
deleted file mode 100644
index 63019d60..00000000
Binary files a/bin/main/de/butzlabben/world/listener/CommandListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/listener/PlayerListener.class b/bin/main/de/butzlabben/world/listener/PlayerListener.class
deleted file mode 100644
index f61cdf45..00000000
Binary files a/bin/main/de/butzlabben/world/listener/PlayerListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/listener/WorldEditListener.class b/bin/main/de/butzlabben/world/listener/WorldEditListener.class
deleted file mode 100644
index f66dace6..00000000
Binary files a/bin/main/de/butzlabben/world/listener/WorldEditListener.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/listener/WorldInitSkipSpawn.class b/bin/main/de/butzlabben/world/listener/WorldInitSkipSpawn.class
deleted file mode 100644
index 9a947f77..00000000
Binary files a/bin/main/de/butzlabben/world/listener/WorldInitSkipSpawn.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/MoneyUtil.class b/bin/main/de/butzlabben/world/util/MoneyUtil.class
deleted file mode 100644
index f41daae2..00000000
Binary files a/bin/main/de/butzlabben/world/util/MoneyUtil.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/PapiExtension.class b/bin/main/de/butzlabben/world/util/PapiExtension.class
deleted file mode 100644
index 5ca73190..00000000
Binary files a/bin/main/de/butzlabben/world/util/PapiExtension.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/PlayerPositions.class b/bin/main/de/butzlabben/world/util/PlayerPositions.class
deleted file mode 100644
index 0d95b4a8..00000000
Binary files a/bin/main/de/butzlabben/world/util/PlayerPositions.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/PlayerWrapper.class b/bin/main/de/butzlabben/world/util/PlayerWrapper.class
deleted file mode 100644
index 52e70911..00000000
Binary files a/bin/main/de/butzlabben/world/util/PlayerWrapper.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/TeleportUtil.class b/bin/main/de/butzlabben/world/util/TeleportUtil.class
deleted file mode 100644
index 29240346..00000000
Binary files a/bin/main/de/butzlabben/world/util/TeleportUtil.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/VersionUtil.class b/bin/main/de/butzlabben/world/util/VersionUtil.class
deleted file mode 100644
index 9a4ade92..00000000
Binary files a/bin/main/de/butzlabben/world/util/VersionUtil.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/Worldutils.class b/bin/main/de/butzlabben/world/util/Worldutils.class
deleted file mode 100644
index bb5ad102..00000000
Binary files a/bin/main/de/butzlabben/world/util/Worldutils.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/database/DatabaseConnection.class b/bin/main/de/butzlabben/world/util/database/DatabaseConnection.class
deleted file mode 100644
index 4f583628..00000000
Binary files a/bin/main/de/butzlabben/world/util/database/DatabaseConnection.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/database/DatabaseProvider.class b/bin/main/de/butzlabben/world/util/database/DatabaseProvider.class
deleted file mode 100644
index bec5fbb6..00000000
Binary files a/bin/main/de/butzlabben/world/util/database/DatabaseProvider.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/database/DatabaseUtil.class b/bin/main/de/butzlabben/world/util/database/DatabaseUtil.class
deleted file mode 100644
index d646659b..00000000
Binary files a/bin/main/de/butzlabben/world/util/database/DatabaseUtil.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/database/MysqlConnection.class b/bin/main/de/butzlabben/world/util/database/MysqlConnection.class
deleted file mode 100644
index 1ba5ed92..00000000
Binary files a/bin/main/de/butzlabben/world/util/database/MysqlConnection.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/util/database/SqliteConnection.class b/bin/main/de/butzlabben/world/util/database/SqliteConnection.class
deleted file mode 100644
index 92761607..00000000
Binary files a/bin/main/de/butzlabben/world/util/database/SqliteConnection.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/CreatorAdapter.class b/bin/main/de/butzlabben/world/wrapper/CreatorAdapter.class
deleted file mode 100644
index 9c348c16..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/CreatorAdapter.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/GeneratorSettings.class b/bin/main/de/butzlabben/world/wrapper/GeneratorSettings.class
deleted file mode 100644
index ba6a6210..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/GeneratorSettings.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/SystemWorld$1$1.class b/bin/main/de/butzlabben/world/wrapper/SystemWorld$1$1.class
deleted file mode 100644
index 61290fc9..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/SystemWorld$1$1.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/SystemWorld$1.class b/bin/main/de/butzlabben/world/wrapper/SystemWorld$1.class
deleted file mode 100644
index 6583c34e..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/SystemWorld$1.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/SystemWorld$2.class b/bin/main/de/butzlabben/world/wrapper/SystemWorld$2.class
deleted file mode 100644
index 0dd45553..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/SystemWorld$2.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/SystemWorld.class b/bin/main/de/butzlabben/world/wrapper/SystemWorld.class
deleted file mode 100644
index 9f694dae..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/SystemWorld.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/WorldPlayer.class b/bin/main/de/butzlabben/world/wrapper/WorldPlayer.class
deleted file mode 100644
index 07e3c54a..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/WorldPlayer.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/WorldTemplate.class b/bin/main/de/butzlabben/world/wrapper/WorldTemplate.class
deleted file mode 100644
index c5b67c6e..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/WorldTemplate.class and /dev/null differ
diff --git a/bin/main/de/butzlabben/world/wrapper/WorldTemplateProvider.class b/bin/main/de/butzlabben/world/wrapper/WorldTemplateProvider.class
deleted file mode 100644
index ad25c7b2..00000000
Binary files a/bin/main/de/butzlabben/world/wrapper/WorldTemplateProvider.class and /dev/null differ
diff --git a/bin/main/languages/de.yml b/bin/main/languages/de.yml
deleted file mode 100644
index ee0c5c93..00000000
--- a/bin/main/languages/de.yml
+++ /dev/null
@@ -1,88 +0,0 @@
-nopermission: "&cDu besitzt keine Berechtigungen!"
-unknown_error: "&cEtwas lief schief..."
-lagdetection: "Lags in Welt: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cDieser Spieler war noch nie auf dem Server"
-
-world:
- reseted: "Deine Welt wurde zur\u00fcckgesetzt!"
- still_loaded: "&cDeine Welt ist noch geladen!"
- not_on: "&cDu bist auf keiner Welt!"
- created: "Deine Welt ist nun bereit. Nutze &a/ws home"
- already_exists: "&cDu besitzt bereits eine Welt!"
- delete:
- own: "&cDeine Welt wurde entfernt!"
- other: "Die Welt von &c%player&6 wurde entfernt!"
- does_not_exists:
- own: "&cDu besitzt keine Welt!"
- other: "&cDieser Spieler besitzt keine Welt!"
- setting_up: "&aBereite Welt vor..."
- playerlist: "Spieler in der Welt: %players"
- still_creating: "&cWelt wird noch erstellt..."
- set_home: "Du hast das Home gesetzt"
- not_enough_money: "Du hast nicht genug Geld"
-
-member:
- removed: "Du hast &c%player&6 von deiner Welt entfernt!"
- added: "Du hast &c%player&6 zu deiner Welt hinzugef\u00fcgt!"
- already_added: "&cDer Spieler ist bereits Mitglied deiner Welt!"
- not_added:
- own: "&cDer Spieler ist kein Mitglied deiner Welt!"
- other: "&cDu bist nicht zu der Welt hinzugef\u00fcgt!"
- no_one_added: "&cEs sind keine Mitglieder hinzugefügt"
-
-request:
- expired: "&cDeine Anfrage ist ausgelaufen!"
- confirm: "&cBitte bestätige das Zur\u00fccksetzen: %command"
- until_expire: "&cDeine Anfrage l\u00e4uft in %time Sekunden aus!"
- already_sent: "&cDu hast bereits eine Anfrage gesendet!"
- not_sent: "&cDu hast keine Anfrage gesendet!"
- invalid_input: "&c%input ist eine ung\u00fcltige Eingabe!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 kann nun seinen Spielmodus \u00e4ndern!"
- disabled: "&c%player&6 kann seinen Spielmodus nicht mehr \u00e4ndern!"
- teleport:
- enabled: "&a%player&6 kann sich nun teleportieren!"
- disabled: "&c%player&6 kann sich nicht l\u00e4nger teleportieren!"
- build:
- enabled: "&a%player&6 kann nun bauen!"
- disabled: "&c%player&6 kann nicht mehr bauen!"
- worldedit:
- enabled: "&a%player&6 can now use WorldEdit!"
- disabled: "&c%player&6 can no longer use WorldEdit!"
- fire:
- enabled: "&aFeuer aktiviert!"
- disabled: "&cFeuer deaktiviert!"
- tnt:
- enabled: "&aTNT-Schaden aktiviert!"
- disabled: "&cTNT-Schaden deaktiviert!"
-
-info:
- owner: "Eigent\u00fcmer: %data"
- id: "ID: %data"
- member: "Mitglieder: %data"
- tnt: "TNT: %data"
- fire: "Feuer: %data"
- enabled: "&aAn"
- disabled: "&cAus"
-
-command_help:
- list:
- - "/ws get &8- &7Gibt dir eine Welt"
- - "/ws home &8- &7Teleportiert dich auf deine Welt"
- - "/ws sethome &8- &7Setzt ein bestimmtes Home"
- - "/ws gui &8- &7\u00f6ffnets das GUI-Menu wenn du der Weltenbesitzer bist"
- - "/ws tp &8- &7Teleportiert dich auf eine bestimmte Welt"
- - "/ws addmember &8- &7F\u00fcgt jemanden zu deiner Welt hinzu"
- - "/ws delmember&8 - &7Entfernt jemanden von deiner Welt"
- - "/ws tnt &8- &7Erlaubt/Verbietet TNT auf deiner Welt"
- - "/ws fire &8- &7Erlaubt/Verbietet Feuer auf deiner Welt"
- - "/ws togglegm &8- &7Erlaubt/Verbietet einem Spieler den Spielmodus zu wechseln"
- - "/ws togglebuild &8- &7Erlaubt/Verbietet einem Spieler zu bauen"
- - "/ws toggletp &8- &7Erlaubt/Verbietet einem Spieler sich zu teleportieren"
- - "/ws togglewe &8- &7Erlaubt/Verbietet einem Spieler WorldEdit zu nutzen"
- - "/ws info &8- &7Zeigt Informationen \u00fcber die Welt"
- - "/ws reset &8- &7Setzt deine Welt zur\u00fcck"
- delete_command: "/ws delete &8- &7L\u00f6scht eine Welt"
\ No newline at end of file
diff --git a/bin/main/languages/en.yml b/bin/main/languages/en.yml
deleted file mode 100644
index 3877b7c6..00000000
--- a/bin/main/languages/en.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-nopermission: "&cYou do not have permission for that command!"
-unknown_error: "&cSomething went wrong..."
-lagdetection: "Lagdetection in world: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cThis player hasn't joined yet!"
-
-world:
- reseted: "Your world was reset successfully!"
- still_loaded: "&cYour world is still loaded!"
- not_on: "&cYou are not in a world!"
- created: "Your world is now ready. Get there with &a/ws home"
- already_exists: "&cYou already have a world!"
- delete:
- own: "&cYour world was deleted!"
- other: "You deleted the world of &c%player&6!"
- does_not_exists:
- own: "&cYou don't have a world!"
- other: "&cThis player doesn't has a world!"
- setting_up: "&aLoading world..."
- playerlist: "Players in this world: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "You removed &c%player&6 from your world!"
- added: "You have added &c%player&6 to your world!"
- already_added: "&cThis player is already a member!"
- not_added:
- own: "&cThis player isn't a member!"
- other: "&cYou have not been added to this world!"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cYour request has expired!"
- confirm: "WARNING - Please confirm reset of your world: %command"
- until_expire: "&cYour request expires in %time seconds!"
- already_sent: "&cYou already sent a request!"
- not_sent: "&cYou have not sent a request!"
- invalid_input: "&c%input is not a valid request!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 can now change their gamemode!"
- disabled: "&c%player&6 can no longer change their gamemode!"
- teleport:
- enabled: "&a%player&6 can now teleport!"
- disabled: "&c%player&6 can no longer teleport!"
- build:
- enabled: "&a%player&6 can now build!"
- disabled: "&c%player&6 can no longer build!"
- worldedit:
- enabled: "&a%player&6 can now use WorldEdit!"
- disabled: "&c%player&6 can no longer use WorldEdit!"
- fire:
- enabled: "&aYou activated fire!"
- disabled: "&cYou deactivated fire!"
- tnt:
- enabled: "&aYou activated TNT-Damage!"
- disabled: "&cYou deactivated TNT-Damage!"
-
-info:
- owner: "Owner: %data"
- id: "ID: %data"
- member: "Member: %data"
- tnt: "TNT: %data"
- fire: "Fire: %data"
- enabled: "&aOn"
- disabled: "&cOff"
-
-command_help:
- list:
- - "&6/ws get &8- &7Create a world"
- - "&6/ws home &8- &7Teleport to your world's home"
- - "&6/ws sethome &8- &7Set a new home on your world"
- - "&6/ws gui &8- &7Open settings GUI (must be world owner)"
- - "&6/ws tp &8- &7Teleport to another player's world"
- - "&6/ws addmember &8- &7Add a player to your world"
- - "&6/ws delmember &8- &7Remove a player from your world"
- - "&6/ws leave &8- &7Leave a world"
- - "&6/ws tnt &8- &7Enable or disable TNT on your world"
- - "&6/ws fire &8- &7Enable or disable fire on your world"
- - "&6/ws togglegm &8- &7Allow/deny a player to change gamemodes on your world"
- - "&6/ws togglebuild &8- &7Allow/deny a player to build on your world"
- - "&6/ws toggletp &8- &7Allow/deny a player to teleport on your world"
- - "&6/ws togglewe &8- &7Allow/deny a player using WorldEdit on your world"
- - "&6/ws info &8- &7Show information about the world you are in"
- - "&6/ws reset &8- &7Reset your world"
- delete_command: "/ws delete &8- &7Delete a world"
diff --git a/bin/main/languages/es.yml b/bin/main/languages/es.yml
deleted file mode 100644
index b281e0f3..00000000
--- a/bin/main/languages/es.yml
+++ /dev/null
@@ -1,88 +0,0 @@
-nopermission: "&cNo tienes permiso."
-unknown_error: "&cAlgo salio mal..."
-lagdetection: "Deteccion de lag en el mundo: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cEse jugador no existe."
-
-world:
- reseted: "Tu mundo ha sido reiniciado."
- still_loaded: "&cTu mundo aun esta cargando."
- not_on: "&cNo estas en un mundo."
- created: "Tu mundo esta listo. Ve a el con &a/ws home&6."
- already_exists: "&cYa tienes un mundo."
- delete:
- own: "&cTu mundo ha sido eliminado"
- other: "Has eliminado el mundo de &c%player&6."
- does_not_exists:
- own: "&cNo tienes un mundo."
- other: "&cEse jugador no tiene un mundo."
- setting_up: "&aConfigurando el mundo..."
- playerlist: "Jugadores en este mundo: %players"
- still_creating: "&cEl mundo aun no esta listo."
- set_home: "Has establecido el hogar."
- not_enough_money: "No tienes suficiente dinero."
-
-member:
- removed: "Has eliminado a &c%player&6 de tu mundo."
- added: "Has agregado a &c%player&6 a tu mundo."
- already_added: "&cEse jugador ya es miembro de tu mundo."
- not_added:
- own: "&cEse jugador no es miembro de tu mundo."
- other: "&cNo estas agregado a este mundo."
- no_one_added: "&cNo hay jugadores agregados."
-
-request:
- expired: "&cTu solicitud ha expirado."
- confirm: "&cPor favor confirma el reinicio de tu mundo con: %command"
- until_expire: "&cTu solicitud expira en %time segundos."
- already_sent: "&cYa has enviado una solicitud."
- not_sent: "&cNo has enviado una solicitud."
- invalid_input: "&c%input no es una solicitud valida."
-
-toggle:
- gamemode:
- enabled: "&a%player&6 ahora puede cambiar su modo de juego."
- disabled: "&c%player&6 ya no puede cambiar su modo de juego."
- teleport:
- enabled: "&a%player&6 ahora puede teletransportarse."
- disabled: "&c%player&6 ya no puede teletransportarse."
- build:
- enabled: "&a%player&6 ahora puede construir."
- disabled: "&c%player&6 ya no puede construir"
- worldedit:
- enabled: "&a%player&6 ahora puede usar WorldEdit."
- disabled: "&c%player&6 ya no puede usar WorldEdit."
- fire:
- enabled: "&aHas activado el fuego."
- disabled: "&cHas desactivado el fuego."
- tnt:
- enabled: "&aHas activado la TNT."
- disabled: "&cHas desactivado la TNT."
-
-info:
- owner: "Propietario: %data"
- id: "ID: %data"
- member: "Miembros: %data"
- tnt: "TNT: %data"
- fire: "Fuego: %data"
- enabled: "&aActivado"
- disabled: "&cDesactivado"
-command_help:
- list:
- - "/ws get &8- &7Obten tu mundo"
- - "/ws home &8- &7Ve a tu mundo"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Abre el menu de tu mundo"
- - "/ws tp &8- &7Ve a un mundo especifico"
- - "/ws addmember &8- &7Agrega jugadores a tu mundo"
- - "/ws delmember &8- &7Elimina jugadores de tu mundo"
- - "/ws leave &8- &7Salir de un mundo"
- - "/ws tnt &8- &7Activa/Desactiva la TNT en tu mundo"
- - "/ws fire &8- &7Activa/Desactiva el FUEGO en tu mundo"
- - "/ws togglegm &8- &7Activa/Desactiva el cambio de modo"
- - "/ws togglebuild &8- &7Activa/Desactiva la construccion"
- - "/ws toggletp &8- &7Activa/Desactiva la teletransportacion"
- - "/ws togglewe &8- &7Activa/Desactiva el uso de WorldEdit."
- - "/ws info &8- &7Muestra informacion del mundo"
- - "/ws reset &8- &7Reinicia tu mundo"
- delete_command: "/ws delete &8- &7Elimina tu mundo"
\ No newline at end of file
diff --git a/bin/main/languages/fi.yml b/bin/main/languages/fi.yml
deleted file mode 100644
index 7ea79a83..00000000
--- a/bin/main/languages/fi.yml
+++ /dev/null
@@ -1,85 +0,0 @@
-nopermission: "&cSinulla ei ole lupaa tuohon komentoon!"
-unknown_error: "&cJotain meni pieleen..."
-lagdetection: "Lagia havaittu maailmassa: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cTämä pelaaja ei ole liittynyt vielä!"
-
-world:
- reseted: "Maailmasi nollautui!"
- still_loaded: "&cMailmasi on vieläkin ladattu!"
- not_on: "&cEt ole maailmassa!"
- created: "Maailmasi on nyt valmis. Pääset sinne komennolla &a/ws home"
- already_exists: "&cSinulla on jo maailma!"
- delete:
- own: "&cMaailmasi poistettiin!"
- other: "Poistit pelaajan &c%player&6 maailman&6!"
- does_not_exists:
- own: "&cSinulla ei ole maailmaa!"
- other: "&cKyseisellä pelaajalla ei ole maailmaa!"
- setting_up: "&aAlustetaan maailmaa..."
- playerlist: "Pelaajat tässä maailmassa: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Poistit pelaajan &c%player&6 maailmastasi!"
- added: "Lisäsit pelaajan &c%player&6 maailmaasi!"
- already_added: "&cKyseinen pelaaja on jo jäsen!"
- not_added:
- own: "&cKyseinen pelaaja ei ole jäsen!"
- other: "&cSinua ei ole lisätty tähän maailmaan"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cPyyntösi on vanhentunut!"
- confirm: "&cVahvista maailmasi nollaaminen: %command"
- until_expire: "&cPyyntösi vanhentuu %time seconds sekunnin kuluttua!"
- already_sent: "&cLähetit jo pyynnön!"
- not_sent: "&cEt lähettänyt pyyntöä!"
- invalid_input: "&cSyöte ei ole kelvollinen!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 voi nyt vaihtaa pelimuotonsa!"
- disabled: "&c%player&6 ei voi enää vaihtaa pelimuotoansa!"
- teleport:
- enabled: "&a%player&6 voi nyt teleportata!"
- disabled: "&c%player&6 ei voi enään teleportata!"
- build:
- enabled: "&a%player&6 voi nyt rakentaa!"
- disabled: "&c%player&6 ei voi enään rakentaa!"
- fire:
- enabled: "&aSinä aktivoit tulen!"
- disabled: "&cSinä deaktivoit tulen!"
- tnt:
- enabled: "&aSinä aktivoit TNT-Damagen!"
- disabled: "&cSinä deaktivoit TNT-Damagen!"
-
-info:
- owner: "Omistaja: %data"
- id: "ID: %data"
- member: "Jäsen: %data"
- tnt: "TNT: %data"
- fire: "Tuli: %data"
- enabled: "&aOn"
- disabled: "&cOff"
-
-command_help:
- list:
- - "/ws get &8- &7Luo sinulle maailman"
- - "/ws home &8- &7Teleporttaa sinut maailmaasi"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Avaa sinulle valikon jos omistat tämän maailman"
- - "/ws tp &8- &7Teleporttaa sinut tiettyyn maailmaan"
- - "/ws addmember &8- &7Lisää pelaajan sinun maailmaasi"
- - "/ws delmember &8- &7Poistaa pelaajan sinun maailmastasi"
- - "/ws leave &8- &7Lähtee maailmasta"
- - "/ws tnt &8- &7Sallii/Kieltää TNT sinun maailmastasi"
- - "/ws fire &8- &7Sallii/Kieltää Tulen sinun maailmastasi"
- - "/ws togglegm &8- &7Sallii/Kieltää pelaajan vaihtamasta pelimuotoansa"
- - "/ws togglebuild &8- &7Sallii/Kieltää pelaajan rakentamasta"
- - "/ws toggletp &8- &7Sallii/Kieltää pelaajan treleporttaamasta"
- - "/ws info &8- &7Näyttää tietoa aktiivisesta maailmasta"
- - "/ws reset &8- &7Nollaa sinun maailmasi"
- delete_command: "/ws delete &8- &7Poistaa maailman"
\ No newline at end of file
diff --git a/bin/main/languages/fr.yml b/bin/main/languages/fr.yml
deleted file mode 100644
index f355f046..00000000
--- a/bin/main/languages/fr.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-nopermission: "&cVous n'avez pas la permission!"
-unknown_error: "&cQuelque chose s'est mal passé ..."
-lagdetection: "Lag détecté sur le monde: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cCe joueur n'a pas encore rejoint!!"
-
-world:
- reseted: "Votre monde a été réinitialisé!"
- still_loaded: "&cVotre monde est toujours chargé!"
- not_on: "&cVous n'êtes pas sur un monde!"
- created: "Votre monde est maintenant prêt. Allez-y avec &a/ws home"
- already_exists: "&cVous avez déjà un monde!"
- delete:
- own: "&cVotre monde a été supprimé!"
- other: "Vous avez supprimé le monde de &c%player&6!"
- does_not_exists:
- own: "&cVous n'avez pas de monde!"
- other: "&cCe joueur n'a pas de monde!"
- setting_up: "&aChargement du monde..."
- playerlist: "Joueurs dans ce monde: %players"
- still_creating: "&cLe monde est encore en train de se créer"
- set_home: "Vous avez placé le home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Vous avez retiré &c%player&6 de votre monde!"
- added: "Vous avez ajouté &c%player&6 à votre monde!"
- already_added: "&cCe joueur est déjà membre!"
- not_added:
- own: "&cCe joueur n'est pas membre!"
- other: "&cVous n'avez pas été ajouté à ce monde!"
- no_one_added: "&cIl n'y a aucun membre d'ajouté"
-
-request:
- expired: "&cVotre demande a expiré!"
- confirm: "AVERTISSEMENT - Veuillez confirmer la réinitialisation de votre monde: %command"
- until_expire: "&cVotre demande expire dans %time secondes!"
- already_sent: "&cVous avez déjà envoyé une demande!"
- not_sent: "&cVous n'avez pas envoyé de demande!"
- invalid_input: "&c%input n'est pas une demande valide!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 peut désormais changer son mode de jeu!"
- disabled: "&c%player&6 ne peut désormais plus changer son mode de jeu!"
- teleport:
- enabled: "&a%player&6 peut désormais se téléporter!"
- disabled: "&c%player&6 ne peut désormais plus se téléporter!"
- build:
- enabled: "&a%player&6 peut désormais construire!"
- disabled: "&c%player&6 ne peut désormais plus construire!"
- worldedit:
- enabled: "&a%player&6 peut désormais utiliser WorldEdit!"
- disabled: "&c%player&6 ne peut désormais plus utiliser WorldEdit!"
- fire:
- enabled: "&aVous avez activé le feu!"
- disabled: "&cVous avez désactivé le feu!"
- tnt:
- enabled: "&aVous avez activé la TNT!"
- disabled: "&cVous avez désactivé la TNT!"
-
-info:
- owner: "Propriétaire: %data"
- id: "ID: %data"
- member: "Membre: %data"
- tnt: "TNT: %data"
- fire: "Feu: %data"
- enabled: "&aActivé"
- disabled: "&cDésactivé"
-
-command_help:
- list:
- - "/ws get &8- &7Vous donne un monde"
- - "/ws home &8- &7Vous téléporte sur votre monde"
- - "/ws sethome &8- &7Définit un home spécifique"
- - "/ws gui &8- &7Ouvre le menu de votre monde"
- - "/ws tp &8- &7Vous téléporte sur un monde spécifique"
- - "/ws addmember &8- &7Ajoute un joueur à votre monde"
- - "/ws delmember &8- &7Retire un joueur de votre monde"
- - "/ws leave &8- &7Quitter un monde"
- - "/ws tnt &8- &7Active / Désactive la TNT sur votre monde"
- - "/ws fire &8- &7Active / Désactive le feu sur votre monde"
- - "/ws togglegm &8- &7Autorise / Interdit à un joueur de changer de mode de jeu"
- - "/ws togglebuild &8- &7Autorise / Interdit à un joueur de construire sur votre monde"
- - "/ws toggletp &8- &7Autorise / Interdit à un joueur de se téléporter sur votre monde"
- - "/ws togglewe &8- &7Autorise / Interdit à un joueur d'utiliser WorldEdit"
- - "/ws info &8- &7Affiche les informations relatives à un monde"
- - "/ws reset &8- &7Réinitialiser votre monde"
- delete_command: "/ws delete &8- &7Supprimer votre monde"
\ No newline at end of file
diff --git a/bin/main/languages/hu.yml b/bin/main/languages/hu.yml
deleted file mode 100644
index ae626795..00000000
--- a/bin/main/languages/hu.yml
+++ /dev/null
@@ -1,86 +0,0 @@
-nopermission: "&cNincs jogod ehhez!"
-unknown_error: "&cValami elromlott..."
-lagdetection: "Lag észlelés a világban: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cEz a játékos még nem csatlakozott!"
-
-world:
- reseted: "A világod vissza lett állítva!"
- still_loaded: "&cA világod még mindig be van töltve!"
- not_on: "&cNem vagy a világon!"
- created: "A világod készen áll. Szállj fel a &a/ws home"
- already_exists: "&cMár van világod!"
- delete:
- own: "&cA világod törölve!"
- other: "Törölte a világot &c%player&6 játékostól!"
- does_not_exists:
- own: "&cNincs világod!"
- other: "&cEz a játékos nem rendelkezik világgal!"
- setting_up: "&aA világ létrehozása..."
- playerlist: "Játékos ebben a világban: %player"
- still_creating: "&cA világ még mindig létrehozás alatt"
- set_home: "Beállítottad az otthonodat"
- not_enough_money: "Nincs elég pénzed"
-
-member:
- removed: "Törölted &c%player&6 játékost a világodból!"
- added: "Hozzáadtad &c%player&6 játékost a világodhoz!"
- already_added: "&cEz a játékos már tagja!"
- not_added:
- own: "&cEz a játékos nem tagja!"
- other: "&cNem vagy hozzáadva ehhez a világhoz"
- still_creating: "&cA világ még mindig létrehozás alatt"
- no_one_added: "&cNincs tagok hozzáadva"
-
-request:
- expired: "&cA kérelem lejárt!"
- confirm: "&cKérlek, erősítsd meg a világ újraindítását: %command"
- until_expire: "&cA kérés lejárati ideje %time másodperc!"
- already_sent: "&cMár elküldtél egy kérelmet!"
- not_sent: "&cNem küldtél kérést!"
- invalid_input: "&c%input nem érvényes bemenet!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 most megváltoztathatja játékmódját!"
- disabled: "&c%player&6 már nem tudja megváltoztatni játékmódját!"
- teleport:
- enabled: "&a%player&6 most teleportálhat!"
- disabled: "&c%player&6 már nem teleportálhat!"
- build:
- enabled: "&a%player&6 most építhet!"
- disabled: "&c%player&6 már nem építhet!"
- fire:
- enabled: "&aAktiváltad a tüzet!"
- disabled: "&cDeaktiváltad a tüzet!"
- tnt:
- enabled: "&aAktiváltad a TNT-sebzést!"
- disabled: "&cDeaktiváltad TNT-sebzést!"
-
-info:
- owner: "Tulajdonos: %data"
- id: "ID: %data"
- member: "Tag: %data"
- tnt: "TNT: %data"
- fire: "Tűz: %data"
- enabled: "&aBe"
- disabled: "&cKi"
-
-command_help:
- list:
- - "/ws get &8- &7Add neked egy világot"
- - "/ws home &8- &7Teleportálás a világodba"
- - "/ws sethome &8- &7Beállítja a megadott otthont"
- - "/ws gui &8- &7Megnyitja a GUI menüt ha a világ tulajdonosa vagy"
- - "/ws tp &8- &7Teleportál egy kiválasztott világba"
- - "/ws addmember &8- &7Hozzáad egy játékost a világodhoz"
- - "/ws delmember &8- &7Eltávolít egy játékost a világodból"
- - "/ws leave &8- &7Elhagyja a világot"
- - "/ws tnt &8- &7Engedi/Tagadja a TNT-t a világodban"
- - "/ws fire &8- &7Engedi/Tagadja a Tüzet a világodban"
- - "/ws togglegm &8- &7Engedi/Tagadja játékos változtatt játék módot"
- - "/ws togglebuild &8- &7Engedi/Tagadja a játékos építést"
- - "/ws toggletp &8- &7Engedi/Tagadja a játékos teleportálást"
- - "/ws info &8- &7Információt mutat a világról"
- - "/ws reset &8- &7Visszaállítja a világodat"
- delete_command: "/ws delete &8- &7Törli a világot"
\ No newline at end of file
diff --git a/bin/main/languages/ja.yml b/bin/main/languages/ja.yml
deleted file mode 100644
index 2ef9c3bb..00000000
--- a/bin/main/languages/ja.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-nopermission: "&cこのコマンドを実行する権限を持っていません!"
-unknown_error: "&c何かがうまくいきませんでした..."
-lagdetection: "ワールドのラグを検出: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cこのプレイヤーはまだ参加していません!"
-
-world:
- reseted: "リセットされました!"
- still_loaded: "&cワールドはまだロード中です!"
- not_on: "&cワールドにいません!"
- created: "ワールドの準備が整いました。&a/ws home &rで移動する"
- already_exists: "&c既にワールドがあります!"
- delete:
- own: "&cワールドを削除しました!"
- other: "&c%player&6のワールドを削除しました!"
- does_not_exists:
- own: "&cワールドがありません!"
- other: "&cこのプレイヤーはワールドがありません!"
- setting_up: "&aワールド読み込み中..."
- playerlist: "このワールドのプレイヤー: %players"
- still_creating: "&cワールドはまだ作成中です"
- set_home: "ホームを設定しました"
- not_enough_money: "十分なお金を持っていません"
-
-member:
- removed: "ワールドから &c%player &6を削除しました!"
- added: "ワールドに &c%player &6を追加しました!"
- already_added: "&cこのプレイヤーは既にメンバーです!"
- not_added:
- own: "&cこのプレイヤーはメンバーではありません!"
- other: "&cあなたはこのワールドに追加されていません!"
- no_one_added: "&cメンバーが追加されていません"
-
-request:
- expired: "&cリクエストの期限が切れました!"
- confirm: "警告 - ワールドのリセットを確認してください: %command"
- until_expire: "&cリクエストは %time 秒で期限切れになります!"
- already_sent: "&c既にリクエストを送信しました!"
- not_sent: "&cリクエストを送信していません!"
- invalid_input: "&c%input は有効なリクエストではありません!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 はゲームモードを変更できるようになりました!"
- disabled: "&c%player&6 はゲームモードの変更ができなくなりました!"
- teleport:
- enabled: "&a%player&6 はテレポートでるようになりました!"
- disabled: "&c%player&6 はテレポートできなくなりました!"
- build:
- enabled: "&a%player&6 は建築できるようになりました!"
- disabled: "&c%player&6 は建築できないようになりました!"
- worldedit:
- enabled: "&a%player&6 はWorldEditが使えるようになりました!"
- disabled: "&c%player&6 はWorldEditが使えないようになりました!"
- fire:
- enabled: "&a炎が有効になりました!"
- disabled: "&c炎が無効になりました!"
- tnt:
- enabled: "&aTNTダメージが有効になりました!"
- disabled: "&cTNTダメージが無効になりました!"
-
-info:
- owner: "所有者: %data"
- id: "ID: %data"
- member: "メンバー: %data"
- tnt: "TNT: %data"
- fire: "炎: %data"
- enabled: "&aオン"
- disabled: "&cオフ"
-
-command_help:
- list:
- - "/ws get &8- &7ワールドを与える"
- - "/ws home &8- &7ワールドにテレポートする"
- - "/ws sethome &8- &7特定のホームを設定する"
- - "/ws gui &8- &7ワールドの所有者である場合、GUIメニューを開く"
- - "/ws tp &8- &7特定のワールドにテレポートする"
- - "/ws addmember &8- &7プレイヤーをワールドに追加する"
- - "/ws delmember &8- &7プレイヤーをワールドから削除する"
- - "/ws leave &8- &7ワールドから抜ける"
- - "/ws tnt &8- &7ワールドでのTNTを許可/拒否する"
- - "/ws fire &8- &7ワールドでの炎を許可/拒否する"
- - "/ws togglegm &8- &7ワールドでのゲームモード変更を許可/拒否する"
- - "/ws togglebuild &8- &7ワールドでの建築を許可/拒否する"
- - "/ws toggletp &8- &7ワールドでのテレポートを許可/拒否する"
- - "/ws togglewe &8- &7ワールドでのWorldEditを許可/拒否する"
- - "/ws info &8- &7ワールドに関する情報を表示する"
- - "/ws reset &8- &7ワールドをリセットする"
- delete_command: "/ws delete &8- &7ワールドを削除する"
\ No newline at end of file
diff --git a/bin/main/languages/nl.yml b/bin/main/languages/nl.yml
deleted file mode 100644
index fd25ddd8..00000000
--- a/bin/main/languages/nl.yml
+++ /dev/null
@@ -1,85 +0,0 @@
-nopermission: "&cJij hebt geen rechten om dit te doen!"
-unknown_error: "&cEr is iets verkeerd gegaan.."
-lagdetection: "Lag gededecteerd in wereld: &c%world"
-wrong_usage: "&c%gebruik"
-not_registered: "&cDeze speler heeft nog nooit gejoined!"
-
-world:
- reseted: "Jouw wereld is gereset!"
- still_loaded: "&cJouw wereld is nog steeds geladen!"
- not_on: "&cJij bent niet in een wereld!"
- created: "Jouw wereld is gemaakt gebruik: &a/ws home"
- already_exists: "&cJij hebt al een wereld!"
- delete:
- own: "&cJouw wereld is verwijderd!"
- other: "Jij hebt de wereld verwijderd van: &c%player&6!"
- does_not_exists:
- own: "&cJij hebt nog geen wereld!"
- other: "&cDeze speler heeft nog geen wereld!"
- setting_up: "&aWereld word aangemaakt"
- playerlist: "speler is in wereld: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Jij hebt &c%player&6 verwijderd van jouw wereld!"
- added: "Jij hebt &c%player&6 toegevoegd aan jouw wereld!"
- already_added: "&cDeze speler is al toegevoegd!"
- not_added:
- own: "&cDeze speler is nog niet toegevoegd!"
- other: "&cJij bent niet aan deze wereld toegevoegd"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cJouw uitnodiging is verlopen!"
- confirm: "&cBevestig het verwijderen van jouw wereld: %command"
- until_expire: "&cJouw uitnodiging verloopt over %time seconden!"
- already_sent: "&cJij hebt al een uitnodiging verstuurd!"
- not_sent: "&cJij hebt geen uitnodiging gestuurd!"
- invalid_input: "&c%input is niet een command!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 kan nu zijn spelermodus veranderen!"
- disabled: "&c%player&6 kan niet meer zijn spelermodus veranderen!"
- teleport:
- enabled: "&a%player&6 kan nu teleporteren!"
- disabled: "&c%player&6 kan nu niet meer teleporteren!"
- build:
- enabled: "&a%player&6 kan nu bouwen!"
- disabled: "&c%player&6 kan nu niet meer bouwen!"
- fire:
- enabled: "&aJij hebt vuur geactiveert!"
- disabled: "&cJij hebt vuur gedeactiveerd!"
- tnt:
- enabled: "&aJij hebt TNT-schade geactiveerd!"
- disabled: "&cJij hebt TNT-schade gedeactiveerd!"
-
-info:
- owner: "Owner: %data"
- id: "ID: %data"
- member: "Toegevoegd: %data"
- tnt: "TNT: %data"
- fire: "Vuur: %data"
- enabled: "&Aan"
- disabled: "&cUit"
-
-command_help:
- list:
- - "/ws get &8- &7Will give you a world"
- - "/ws home &8- &7Teleports you on your world"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Opens the GUI menu if you are the worldowner"
- - "/ws tp &8- &7Teleports you on a specific world"
- - "/ws addmember &8- &7Adds a player to your world"
- - "/ws delmember &8- &7Removes a player from your world"
- - "/ws leave &8- &7Leave a world"
- - "/ws tnt &8- &7Allows/Denys TNT on your world"
- - "/ws fire &8- &7Allows/Denys Fire on your world"
- - "/ws togglegm &8- &7Allows/Denys a player changing gamemode"
- - "/ws togglebuild &8- &7Allows/Denys a player building"
- - "/ws toggletp &8- &7Allows/Denys a player teleporting"
- - "/ws info &8- &7Shows information about the world"
- - "/ws reset &8- &7Will reset your world"
- delete_command: "/ws delete &8- &7Will delete a world"
\ No newline at end of file
diff --git a/bin/main/languages/pl.yml b/bin/main/languages/pl.yml
deleted file mode 100644
index 263b4a13..00000000
--- a/bin/main/languages/pl.yml
+++ /dev/null
@@ -1,85 +0,0 @@
-nopermission: "&cNie posiadasz uprawnień do tego!"
-unknown_error: "&cCoś poszło nie tak..."
-lagdetection: "Wykryto laga na świecie: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cTen gracz nie dołączył jeszcze na serwer!"
-
-world:
- reseted: "Twój świat został zresetowany!"
- still_loaded: "&cTwój serwer wciąż się ładuje!"
- not_on: "&cNie jesteś na swoim świecie!"
- created: "Twój świat jest gotowy. Dostań się na niego za pomocą &a/ws home"
- already_exists: "&cJuż posiadasz swój świat!"
- delete:
- own: "&cTwój świat został skasowany!"
- other: "Usunąłeś świat gracza: &c%player&6!"
- does_not_exists:
- own: "&cNie masz swojego świata!"
- other: "&cTen gracz nie ma swojego świata!"
- setting_up: "&aUstawianie świata..."
- playerlist: "Gracze na tym świecie: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Usunąłeś &c%player&6 ze swojego świata!"
- added: "Dodałeś &c%player&6 na swój świat!"
- already_added: "&cTen gracz jest już dodany na Twoim świecie!"
- not_added:
- own: "&cTen gracz nie jest dodany do Twojego świata!"
- other: "&cNie jesteś dodany na ten świat!"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cTwoja prośba wygasła!"
- confirm: "&cPotwierdź zresetowanie swojego świata komendą: %command"
- until_expire: "&cTwója prośba wygaśnie za %time sek.!"
- already_sent: "&cJuż wysłałeś prośbę!"
- not_sent: "&cNie wysłałeś prośby!"
- invalid_input: "&c%input nie jest poprawnym argumentem komendy!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 może teraz zmienić swój gamemode!"
- disabled: "&c%player&6 nie może już zmienić swojego gamemode!"
- teleport:
- enabled: "&a%player&6 może teleportować się!"
- disabled: "&c%player&6 nie może teleportować się!"
- build:
- enabled: "&a%player&6 może budować!"
- disabled: "&c%player&6 nie może już budować!"
- fire:
- enabled: "&aWłączyłeś ogień!"
- disabled: "&cWyłączyłeś ogień!"
- tnt:
- enabled: "&aWłączyłeś obrażenia od TNT!"
- disabled: "&cWyłączyłeś obrażenia od TNT!"
-
-info:
- owner: "Właściciel: %data"
- id: "ID: %data"
- member: "Członek: %data"
- tnt: "TNT: %data"
- fire: "Ogień: %data"
- enabled: "&aWłączone"
- disabled: "&cWyłączone"
-
-command_help:
- list:
- - "/ws get &8- &7Tworzy Twój świat"
- - "/ws home &8- &7Teleportuje Cie na Twój świat"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Otwiera GUI świata jeżeli jesteś jego właścicielem"
- - "/ws tp &8- &7Teleportuje Cie na określony świat"
- - "/ws addmember &8- &7Dodaj gracza na swój świat"
- - "/ws delmember &8- &7Usuń gracza ze swojego świata"
- - "/ws leave &8- &7Opuść świat"
- - "/ws tnt &8- &7Zezwól/Odmów TNT na swoim świecie"
- - "/ws fire &8- &7Zezwól/Odmów Ogień na swoim świecie"
- - "/ws togglegm &8- &7Zezwól/Odmów graczowi zmieniać swój gamemode"
- - "/ws togglebuild &8- &7Zezwól/Odmów graczowi budowanie"
- - "/ws toggletp &8- &7Zezwól/Odmów graczowi teleportowanie się"
- - "/ws info &8- &7Pokazuje informacje o świecie"
- - "/ws reset &8- &7Zresetuje Twój świat"
- delete_command: "/ws delete &8- &7Usunie Twój świat"
\ No newline at end of file
diff --git a/bin/main/languages/ru.yml b/bin/main/languages/ru.yml
deleted file mode 100644
index 923922f3..00000000
--- a/bin/main/languages/ru.yml
+++ /dev/null
@@ -1,84 +0,0 @@
-nopermission: "&cУ тебя нет прав!"
-unknown_error: "&cЧего-то не удалось..."
-lagdetection: "Лагов в мире: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cЭтот игрок играет первый раз га этом сервере"
-
-world:
- reseted: "Твой мир был возвращен!"
- still_loaded: "&cТвой мир ещё загружен!"
- not_on: "&cТебя нету в не каком мире!"
- created: "Твой мир готов. Используй &a/ws home"
- already_exists: "&cТакой мир уже существует!"
- delete:
- own: "&cТвой мир был удален!"
- other: "Мир от &c%player&6 был удален!"
- does_not_exists:
- own: "&cУ тебя нету мира!"
- other: "&cУ этого игрока нету мира!"
- setting_up: "&aПриготовлеваю мир..."
- playerlist: "Игроков в мире: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Ты удалил &c%player&6 из твоего мира!"
- added: "Ты добавил &c%player&6 к твоему миру!"
- already_added: "&cЭтот игрок уже член твоего мира!"
- not_added:
- own: "&cЭтот игрок не член твоего мира!"
- other: "&cТебя не добавили к этому миру"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cТвой запрос вытек!"
- confirm: "&Подтверди сброс: %command"
- until_expire: "&cТвой запрос вытечет через %time секунды!"
- already_sent: "&cТы уже послал запрос!"
- not_sent: "&cТы не послал запрос!"
- invalid_input: "&c%input не действительный запрос!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 теперь может изменить свой режим игры!"
- disabled: "&c%player&6 не может больше изменить свой режим игры!"
- teleport:
- enabled: "&a%player&6 теперь может телепортироваться!"
- disabled: "&c%player&6 не может больше телепортироваться!"
- build:
- enabled: "&a%player&6 может теперь строить!"
- disabled: "&c%player&6 не может больше строить!"
- fire:
- enabled: "&aОгонь включен!"
- disabled: "&cОгонь отключен"
- tnt:
- enabled: "&aПовреждение через ТНТ включено!"
- disabled: "&cПовреждение через ТНТ отключено!"
-
-info:
- owner: "Владелец: %data"
- id: "ID: %data"
- member: "Члены: %data"
- tnt: "ТНТ: %data"
- fire: "Огонь: %data"
- enabled: "&aВключен"
- disabled: "&cОтключен"
-
-command_help:
- list:
- - "/ws get &8- &7Даст тебе мир"
- - "/ws home &8- &7Телепортирует тебя в твой мир"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Открывает ГИП если ты владелец этого мира"
- - "/ws tp &8- &7Телепортирует тебя в определенный мир"
- - "/ws addmember &8- &7Добавляет кого-то к твоему миру"
- - "/ws delmember&8 - &7Удаляет кого-то из твоего мира"
- - "/ws tnt &8- &7Разрешает/Запрещает TНT на твоем мире"
- - "/ws fire &8- &7Разрешает/Запрещает огонь в твоем мире"
- - "/ws togglegm &8- &7Разрешает/Запрещает игроку менять режим игры"
- - "/ws togglebuild &8- &7Разрешает/Запрещает игроку строить"
- - "/ws toggletp &8- &7Разрешает/Запрещает игроку телепортироваться"
- - "/ws info &8- &7Показывает информацию про мир"
- - "/ws reset &8- &7Сбрасывает твой мир"
- delete_command: "/ws delete &8- &7Удалает твой мир"
\ No newline at end of file
diff --git a/bin/main/languages/zh.yml b/bin/main/languages/zh.yml
deleted file mode 100644
index 30f852e2..00000000
--- a/bin/main/languages/zh.yml
+++ /dev/null
@@ -1,84 +0,0 @@
-nopermission: "&c你没有权限!"
-unknown_error: "&c出错..."
-lagdetection: "滞后: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&c该玩家未在线!"
-
-world:
- reseted: "你的世界已重置!"
- still_loaded: "&c你的世界正在加载!"
- not_on: "&c你未在世界里!"
- created: "你的世界已准备就绪,输入 &a/ws home &6前往"
- already_exists: "&c你已拥有一个世界!"
- delete:
- own: "&c你的世界已删除!"
- other: "你删除了 &c%player &6的世界"
- does_not_exists:
- own: "&c你没有世界!"
- other: "&c这个玩家没有世界!"
- setting_up: "&a正在建立世界..."
- playerlist: "玩家: %players 在这个世界上"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "玩家 &c%player&6 从你的世界移除!"
- added: "你添加 &c%player&6 到你的世界!"
- already_added: "&c这个玩家已经在你的世界里了!"
- not_added:
- own: "&c该玩家未在你的世界里!"
- other: "&c你未加入这个世界"
-
-request:
- expired: "&c确认超时!"
- confirm: "&c请确认,重置你的世界: %command"
- until_expire: "&c请在 %time 秒,内确认!"
- already_sent: "&c你已发送请求!"
- not_sent: "&c你未发送请求!"
- invalid_input: "&c%input 错误!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 可以改变游戏模式!"
- disabled: "&c%player&6 不能游戏模式!"
- teleport:
- enabled: "&a%player&6 可以传送!"
- disabled: "&c%player&6 不能传送!"
- build:
- enabled: "&a%player&6 可以建筑!"
- disabled: "&c%player&6 不能建筑!"
- fire:
- enabled: "&a你开启了 火!"
- disabled: "&c你禁用了 火!"
- tnt:
- enabled: "&a你开启了 TNT-爆炸!"
- disabled: "&c你禁用了 TNT-爆炸!"
-
-info:
- owner: "管理者: %data"
- id: "ID: %data"
- member: "成员: %data"
- tnt: "TNT: %data"
- fire: "火: %data"
- enabled: "&a开启"
- disabled: "&c关闭"
-
-command_help:
- list:
- - "/ws get &8- &7创建一个世界"
- - "/ws home &8- &7返回你的世界"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7如果你是世界管理者,使用该指令打开菜单"
- - "/ws tp &8- &7传送到指定世界"
- - "/ws addmember &8- &7添加一个玩家到你的世界"
- - "/ws delmember &8- &7将一个玩家从你的世界删除"
- - "/ws leave &8- &7离开一个世界"
- - "/ws tnt &8- &7开启/禁用 TNT爆炸"
- - "/ws fire &8- &7开启/禁用,火"
- - "/ws togglegm &8- &7开启/禁用,玩家切换模式"
- - "/ws togglebuild &8- &7开启/禁用,玩家建筑"
- - "/ws toggletp &8- &7开启/禁用,玩家传送"
- - "/ws info &8- &7查看世界信息"
- - "/ws reset &8- &7重置你的世界"
- delete_command: "/ws delete &8- &7删除一个世界"
\ No newline at end of file
diff --git a/bin/main/old_gui.yml b/bin/main/old_gui.yml
deleted file mode 100644
index d3784c98..00000000
--- a/bin/main/old_gui.yml
+++ /dev/null
@@ -1,302 +0,0 @@
-#
-# Config for the GUI "/gui"
-# Counting for rows and columns starts always at 1
-#
-
-options:
- # How the enabled item should look like
- enabled:
- # Material name in the Material enum
- material: INK_SACK
- # Data, how it should look like eg. blue, red, green
- data: 10
- # Displayname
- display: '&aEnabled'
-
- # How the disabled item should look like
- disabled:
- material: INK_SACK
- data: 1
- display: '&cDisabled'
-
- # How the comming-soon item should look like
- coming_soon:
- material: INK_SACK
- data: 14
- display: '&6Coming soon...'
-
- # How the back item should look like
- back:
- material: BARRIER
- display: '&cBack'
-
- # When filling of an inventory is true, how the item should look like
- fill:
- material: STAINED_GLASS_PANE
- data: 7
- display: ''
-
- # WorldoptionsGUI
- world:
- fill: false
- # What the title of the Inv should be
- title: 'World Options'
-
- # Rows
- rows: 3
-
- # Where the back item should be
- back:
- enabled: true
- slot:
- row: 3
- col: 5
-
- # Reset button
- reset:
- # If feature should be enabled or not
- enabled: true
- slot:
- row: 1
- col: 8
- material: DIAMOND_HOE
- data: 0
- display: '&eReset World'
-
- # Fire button
- fire:
- enabled: true
- slot:
- row: 1
- col: 2
- # Where the state item should be
- state:
- row: 2
- col: 2
- material: FLINT_AND_STEEL
- display: '&eToggle Fire'
-
- # TNT button
- tnt:
- enabled: true
- slot:
- row: 1
- col: 5
- state:
- row: 2
- col: 5
- material: TNT
- display: '&eToggle TNT-Explosion'
-
- players:
- title: 'Players added to this world'
-
- back:
- enabled: true
- slot:
- row: 6
- col: 6
-
- rows: 6
-
- nextpage:
- enabled: true
- slot:
- row: 6
- col: 8
- material: PAPER
- display: '&eNext Page'
- pagebefore:
- enabled: true
- slot:
- row: 6
- col: 2
- material: PAPER
- display: '&ePage before'
- currentpage:
- enabled: true
- slot:
- row: 6
- col: 4
- material: DOUBLE_PLANT
- display: '&eCurrent page: &a%page'
- player_list_to_row: 4
- playerhead:
- material: SKULL_ITEM
- display: '&e%player'
-
- # PlayerGUI for managing one player on a world
- player:
- fill: false
- title: 'Player options for %player'
-
- back:
- enabled: true
- slot:
- row: 3
- col: 5
-
- rows: 3
-
- build:
- enabled: true
- slot:
- row: 1
- col: 1
- state:
- row: 2
- col: 1
- material: GOLD_AXE
- display: '&eToggle Build-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To build on this world'
- gamemode:
- enabled: true
- slot:
- row: 1
- col: 2
- state:
- row: 2
- col: 2
- material: END_CRYSTAL
- display: '&eToggle GameMode-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To change the GameMode on this world'
- teleport:
- enabled: true
- slot:
- row: 1
- col: 3
- state:
- row: 2
- col: 3
- material: COMPASS
- display: '&eToggle Teleport-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To teleport on this world'
- worldedit:
- enabled: true
- slot:
- row: 1
- col: 4
- state:
- row: 2
- col: 4
- material: WOOD_AXE
- display: '&eToggle WorldEdit-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To use WorldEdit on this world'
- addmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 399
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To add a member to this world'
- delmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 286
- display: '&eToggle Delmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To remove a member from this world'
- setpermissions:
- enabled: false
- slot:
- row: 1
- col: 8
- state:
- row: 2
- col: 8
- material: 331
- display: '&eToggle Setpermissions-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To set permissions for a member of this world'
- administrateworld:
- enabled: false
- slot:
- row: 1
- col: 9
- state:
- row: 2
- col: 9
- material: 421
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To adminstrate this world'
-
-# WorldsystemGUI
-worldsystem:
- fill: false
- title: 'WorldSystem'
-
- rows: 1
-
- back:
- enabled: true
- slot:
- row: 1
- col: 5
-
- playeroptions:
- enabled: true
- slot:
- row: 1
- col: 1
- material: LEATHER_HELMET
- display: '&ePlayer Options'
- worldoptions:
- enabled: true
- slot:
- row: 1
- col: 9
- material: GRASS
- display: '&eWorld Options'
-
-# GUI for choosing world template
-worldchoose:
- fill: false
- title: 'Choose world template'
-
- back:
- enabled: true
- slot:
- row: 4
- col: 5
-
- rows: 4
-
- # The key must be named exactly as in the config.yml
- template_default:
- enabled: true
- slot:
- row: 2
- col: 3
- material: GRASS
- display: '&aDefault template'
-
- another_template:
- enabled: true
- slot:
- row: 2
- col: 7
- material: STONE
- display: '&aAnother template'
\ No newline at end of file
diff --git a/bin/main/plugin.yml.old b/bin/main/plugin.yml.old
deleted file mode 100644
index 61246826..00000000
--- a/bin/main/plugin.yml.old
+++ /dev/null
@@ -1,34 +0,0 @@
-name: WorldSystem
-main: de.butzlabben.world.WorldSystem
-authors: [ CrazyCloudCraft ]
-version: ${version}
-description: ${description}
-api-version: 1.13
-load: STARTUP
-folia-supported: false
-depend: [ FAWE, WorldEdit, Vault ]
-softdepend: [ PlaceholderAPI ]
-commands:
- ws:
- description: WorldSystem command
-permissions:
- ws.*:
- default: op
- description: Grants all /worldsystem subcommands
- children:
- ws.tp.*: true
- ws.get: true
- ws.sethome: true
- ws.build: true
- ws.gamemode: true
- ws.delete: true
- ws.lag: true
- ws.big: true
- ws.large: true
- ws.tp.*:
- default: op
- description: Grants all /worldsystem tp subcommands
- children:
- ws.tp.world: true
- ws.tp.toother: true
- ws.tp.other: true
diff --git a/bin/main/settings.yml b/bin/main/settings.yml
deleted file mode 100644
index f97c8426..00000000
--- a/bin/main/settings.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-# Center will be at the spawn or the worldspawn
-worldborder:
- # If WorldSystem should change the worldborder
- should_change: true
- # Default size
- normal: 500
- # Here you can define your own ranks, as many as you want
- # The permission node will be the key and the value the size
- ranks:
- # For example, with the permission ws.big you will get a worldborder with the size 1000
- ws.big: 1000
- ws.bigger: 1500
-
- # Set a specialized center which is not the spawn
- center:
- as_spawn: true
- # Should the worldborder move with the home set by the owner
- as_home: false
- x: 0
- y: 20
- z: 0
-
-difficulty: EASY
-
-
-# Commands that should be executed on /ws get when it is ready
-# Placeholders: %player: Name of player, %world: Name of world, %uuid: UUID of player
-commands_on_get:
-#- tell %player You have got a world
-#- tell %player You are now on %world
-
-
-# All Gamerules in 1.12
-# Not supported gamerules will be ignored
-#
-# If you need help, look at
-# https://minecraft.gamepedia.com/Commands/gamerule
-
-announceAdvancements: true
-commandBlockOutput: false
-disableElytraMovementCheck: false
-doDaylightCycle: true
-doEntityDrops: true
-doFireTick: true
-doLimitedCrafting: false
-doMobLoot: true
-doMobSpawning: true
-doTileDrops: true
-doWeatherCycle: false
-gameLoopFunction: false
-keepInventory: true
-logAdminCommands: true
-maxCommandChainLength: 65536
-maxEntityCramming: 24
-mobGriefing: true
-naturalRegeneration: true
-randomTickSpeed: 3
-reducedDebugInfo: false
-sendCommandFeedback: true
-showDeathMessages: true
-spawnRadius: 10
-spectatorsGenerateChunks: true
\ No newline at end of file
diff --git a/commitlint.config.js b/commitlint.config.js
deleted file mode 100644
index e51d5e97..00000000
--- a/commitlint.config.js
+++ /dev/null
@@ -1,36 +0,0 @@
-module.exports = {
- parserPreset: 'conventional-changelog-conventionalcommits',
- rules: {
- 'body-leading-blank': [1, 'always'],
- 'footer-leading-blank': [1, 'always'],
- 'header-max-length': [2, 'always', 72],
- 'scope-case': [2, 'always', 'lower-case'],
- 'subject-case': [
- 2,
- 'never',
- ['sentence-case', 'start-case', 'pascal-case', 'upper-case']
- ],
- 'subject-empty': [2, 'never'],
- 'subject-full-stop': [2, 'never', '.'],
- 'type-case': [2, 'always', 'lower-case'],
- 'type-empty': [2, 'never'],
- 'type-enum': [
- 2,
- 'always',
- [
- 'build',
- 'chore',
- 'ci',
- 'docs',
- 'feat',
- 'fix',
- 'improvement',
- 'perf',
- 'refactor',
- 'revert',
- 'style',
- 'test'
- ]
- ]
- }
-};
\ No newline at end of file
diff --git a/gradle/jacoco.gradle b/gradle/jacoco.gradle
deleted file mode 100644
index 1aa1afa9..00000000
--- a/gradle/jacoco.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-jacoco { toolVersion = "0.8.8" }
-
-jacocoTestReport {
- reports {
- xml.required = true
- html.required = true
- }
-}
-
-tasks.check.dependsOn 'jacocoTestReport'
diff --git a/gradle/publish.gradle b/gradle/publish.gradle
deleted file mode 100644
index 3f162e3c..00000000
--- a/gradle/publish.gradle
+++ /dev/null
@@ -1,56 +0,0 @@
-apply plugin: 'maven-publish'
-
-def getBranch() {
- def process = 'git branch --show-current'.execute()
- process.waitFor()
- return process.text.trim()
-}
-
-def getHash() {
- def process = 'git rev-parse HEAD'.execute()
- process.waitFor()
- return process.text.trim()
-}
-
-java {
- withJavadocJar()
- withSourcesJar()
-}
-
-jar {
- manifest {
- attributes (
- 'Build-Jdk': "${System.properties['java.vendor']} ${System.properties['java.vm.version']}",
- 'Created-By': "Gradle ${gradle.gradleVersion}",
- 'Git-Branch': getBranch(),
- 'Git-Hash': getHash()
- )
- }
-}
-
-publishing {
- publications {
- shadow(MavenPublication) { publication ->
- project.shadow.component(publication)
- artifactId = project.getName().toLowerCase()
- groupId = ((String)project.getGroup()).toLowerCase()
- }
- }
- repositories {
- maven {
- name = "GitHubPackages"
- url = uri("https://maven.pkg.github.com/${project.findProperty("GITHUB_REPOSITORY")?: System.getenv("GITHUB_REPOSITORY")}")
- credentials {
- username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
- password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
- }
- }
- }
-}
-
-javadoc {
- if(JavaVersion.current().isJava9Compatible()) {
- options.addBooleanOption('html5', true)
- options.addStringOption('Xdoclint:none', '-quiet')
- }
-}
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 033e24c4..00000000
Binary files a/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 27313fbc..00000000
--- a/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
diff --git a/lib/commons-io-2.11.0.jar b/lib/commons-io-2.11.0.jar
deleted file mode 100644
index be507d94..00000000
Binary files a/lib/commons-io-2.11.0.jar and /dev/null differ
diff --git a/lib/commons-io-2.7.jar b/lib/commons-io-2.7.jar
deleted file mode 100644
index 58894589..00000000
Binary files a/lib/commons-io-2.7.jar and /dev/null differ
diff --git a/pom.xml b/pom.xml
index f39a002d..2fc47957 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,12 +1,31 @@
+ xsi:schemaLocation="http://maven.apache.org/Pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
+
de.butzlabben
WorldSystem
- 2.5.0-build-sqlite-dev
+ 2.5.0-dev
+
+
+
+ 21
+ 21
+ 21
+ UTF-8
+
+
+ ${project.groupId}.world.WorldSystem
+ ${project.artifactId}
+ [Butzlabben, Trainerlord, Cycodly]
+ WorldSystem plugin to create per player worlds
+ 1.21
+ 1.21.3
+ [WorldEdit]
+ [PlaceholderAPI, Vault]
+
+
spigot-repo
@@ -20,10 +39,6 @@
placeholderapi
https://repo.extendedclip.com/content/repositories/placeholderapi/
-
- FAWE
- https://ci.athion.net/job/FastAsyncWorldEdit/ws
-
jitpack
https://jitpack.io
@@ -32,79 +47,59 @@
minecraft
https://libraries.minecraft.net
-
- onarandombox
- https://repo.onarandombox.com/content/groups/public/
-
enginehub
https://maven.enginehub.org/repo/
-
- commons-io
- https://mvnrepository.com/artifact/commons-io/commons-io/
-
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
-
- 16
- 16
-
-
-
-
org.spigotmc
spigot-api
- 1.19.2-R0.1-SNAPSHOT
+ 1.21.3-R0.1-SNAPSHOT
provided
org.yaml
snakeyaml
- 2.2
+ 2.3
provided
net.kyori
adventure-text-minimessage
- 4.16.0
+ 4.17.0
provided
org.xerial
sqlite-jdbc
- 3.30.1
+ 3.47.0.0
provided
org.junit.jupiter
junit-jupiter
- 5.11.0-M2
+ 5.11.3
test
org.mockito
mockito-core
- 5.12.0
+ 5.14.2
test
org.assertj
assertj-core
- 3.25.3
+ 3.26.3
test
commons-io
commons-io
- 2.15.1
+ 2.17.0
provided
@@ -128,7 +123,13 @@
org.projectlombok
lombok
- 1.18.30
+ 1.18.34
+ provided
+
+
+ co.aikar
+ acf-bukkit
+ 0.5.1-SNAPSHOT
provided
@@ -146,20 +147,24 @@
com.fastasyncworldedit
FastAsyncWorldEdit-Bukkit
- 2.9.0
+ 2.12.0
provided
com.fastasyncworldedit
FastAsyncWorldEdit-Core
- 2.9.0
- provided
-
-
- co.aikar
- acf-bukkit
- 0.5.1-SNAPSHOT
+ 2.12.0
provided
-
\ No newline at end of file
+
+
+
+
+ src/main/resources
+ true
+
+
+
+
+
diff --git a/src/main/java/de/butzlabben/world/WorldSystem.java b/src/main/java/de/butzlabben/world/WorldSystem.java
index 5857d2f4..761a7e27 100644
--- a/src/main/java/de/butzlabben/world/WorldSystem.java
+++ b/src/main/java/de/butzlabben/world/WorldSystem.java
@@ -165,7 +165,7 @@ public void onEnable() {
&& PluginConfig.loadWorldsASync()
&& !is1_13Plus) {
- // creator = new AsyncCreatorAdapter(); // Since FAWE 2.0 this do nothing
+ //creator = new AsyncCreatorAdapter(); // Since FAWE 2.0 this do nothing
Bukkit.getConsoleSender()
.sendMessage(PluginConfig.getPrefix() + "Found FAWE! Worlds now will be created asynchronously");
} else {
diff --git a/src/main/java/de/butzlabben/world/util/VersionUtil.java b/src/main/java/de/butzlabben/world/util/VersionUtil.java
index 1b728abd..2c3bb668 100644
--- a/src/main/java/de/butzlabben/world/util/VersionUtil.java
+++ b/src/main/java/de/butzlabben/world/util/VersionUtil.java
@@ -1,6 +1,5 @@
package de.butzlabben.world.util;
-//import de.butzlabben.world.WorldSystem;
import de.butzlabben.world.WorldSystem;
import org.bukkit.Bukkit;
import org.bukkit.scheduler.BukkitTask;
@@ -20,7 +19,8 @@ public static int getVersion() {
if (version == 0) {
// Detect version
String v = Bukkit.getVersion();
- if (v.contains("1.20")) version = 20;
+ if (v.contains("1.21")) version = 21;
+ else if (v.contains("1.19")) version = 20;
else if (v.contains("1.19")) version = 19;
else if (v.contains("1.18")) version = 18;
else if (v.contains("1.17")) version = 17;
diff --git a/src/main/java/de/butzlabben/world/wrapper/AsyncCreatorAdapter.java b/src/main/java/de/butzlabben/world/wrapper/AsyncCreatorAdapter.java
index c163facb..f4290065 100644
--- a/src/main/java/de/butzlabben/world/wrapper/AsyncCreatorAdapter.java
+++ b/src/main/java/de/butzlabben/world/wrapper/AsyncCreatorAdapter.java
@@ -1,7 +1,7 @@
/* package de.butzlabben.world.wrapper;
import com.boydti.fawe.bukkit.wrapper.AsyncWorld;
-//import com.boydti.fawe.util.TaskManager;
+import com.boydti.fawe.util.TaskManager;
import com.fastasyncworldedit.core.util.TaskManager;
import org.bukkit.Bukkit;
import org.bukkit.Material;
@@ -10,11 +10,11 @@
import java.util.Objects;
-/*
+
* @author Butzlabben
* @since 08.06.2018
- */
-/* public class AsyncCreatorAdapter implements CreatorAdapter {
+
+ public class AsyncCreatorAdapter implements CreatorAdapter {
// Create worlds async to close #16
@Override
diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml
new file mode 100644
index 00000000..ea950af2
--- /dev/null
+++ b/src/main/resources/plugin.yml
@@ -0,0 +1,80 @@
+name: ${name}
+main: ${main}
+version: ${version}
+authors: ${authors}
+description: ${description}
+api-version: ${apiversion}
+load: STARTUP
+folia-supported: false
+depend: ${depend}
+softdepend: ${softdepend}
+
+commands:
+ ws:
+ description: WorldSystem command
+ usage: /ws
+
+permissions:
+ ws.*:
+ default: op
+ description: Grants all WorldSystem subcommands
+ children:
+ ws.tp.*: true
+ ws.get: true
+ ws.sethome: true
+ ws.build: true
+ ws.gamemode: true
+ ws.delete: true
+ ws.lag: true
+ ws.big: true
+ ws.large: true
+
+ ws.tp:
+ default: op
+ description: You can teleport everything
+ children:
+ ws.tp.world: true
+ ws.tp.toother: true
+ ws.tp.other: true
+
+ ws.build:
+ default: op
+ description: You can build on other Worlds without WorldPermissions
+
+ ws.get:
+ default: true
+ description: You can create a world via /ws get
+
+ ws.delete:
+ default: op
+ description: You can delete a world
+
+ ws.gamemode:
+ default: op
+ description: You can change GameMode on other worlds
+
+ ws.tp.other:
+ default: op
+ description: You can teleport other players
+
+ ws.tp.toother:
+ default: op
+ description: You can teleport across worlds
+
+ ws.tp.world:
+ default: op
+ description: You can teleport to worlds without permission
+
+ ws.lag:
+ default: op
+ description: You can see lag messages
+
+ ws.big:
+ default: op
+ description: Gives you a bigger world (if set)
+
+ ws.large:
+ default: op
+ description: Grants access to larger world features
+ children:
+ ws.big: true
\ No newline at end of file
diff --git a/target/WorldSystem-2.5.0-build-sqlite-dev.jar b/target/WorldSystem-2.5.0-build-sqlite-dev.jar
deleted file mode 100644
index 3ae57c11..00000000
Binary files a/target/WorldSystem-2.5.0-build-sqlite-dev.jar and /dev/null differ
diff --git a/target/classes/1_13_gui.yml b/target/classes/1_13_gui.yml
deleted file mode 100644
index da2c0dd4..00000000
--- a/target/classes/1_13_gui.yml
+++ /dev/null
@@ -1,300 +0,0 @@
-#
-# Config for the GUI "/gui"
-# Counting for rows and columns starts always at 1
-#
-
-options:
- # How the enabled item should look like
- enabled:
- # Material name in the Material enum
- material: LIME_DYE
- # Displayname
- display: '&aEnabled'
-
- # How the disabled item should look like
- disabled:
- material: ROSE_RED
- display: '&cDisabled'
-
- # How the comming-soon item should look like
- coming_soon:
- material: ORANGE_DYE
- display: '&6Coming soon...'
-
- # How the back item should look like
- back:
- material: BARRIER
- display: '&cBack'
-
- # When filling of an inventory is true, how the item should look like
- fill:
- material: GRAY_STAINED_GLASS_PANE
- display: ''
-
- # WorldoptionsGUI
- world:
- fill: false
- # What the title of the Inv should be
- title: 'World Options'
-
- # Rows
- rows: 3
-
- # Where the back item should be
- back:
- enabled: true
- slot:
- row: 3
- col: 5
-
- # Reset button
- reset:
- # If feature should be enabled or not
- enabled: true
- slot:
- row: 1
- col: 8
- material: DIAMOND_HOE
- data: 0
- display: '&eReset World'
-
- # Fire button
- fire:
- enabled: true
- slot:
- row: 1
- col: 2
- # Where the state item should be
- state:
- row: 2
- col: 2
- material: FLINT_AND_STEEL
- display: '&eToggle Fire'
-
- # TNT button
- tnt:
- enabled: true
- slot:
- row: 1
- col: 5
- state:
- row: 2
- col: 5
- material: TNT
- display: '&eToggle TNT-Explosion'
-
- players:
- title: 'Players added to this world'
-
- back:
- enabled: true
- slot:
- row: 6
- col: 6
-
- rows: 6
-
- nextpage:
- enabled: true
- slot:
- row: 6
- col: 8
- material: PAPER
- display: '&eNext Page'
- pagebefore:
- enabled: true
- slot:
- row: 6
- col: 2
- material: PAPER
- display: '&ePage before'
- currentpage:
- enabled: true
- slot:
- row: 6
- col: 4
- material: SUNFLOWER
- display: '&eCurrent page: &a%page'
-
- playerhead:
- material: PLAYER_HEAD
- display: '&e%player'
-
- # PlayerGUI for managing one player on a world
- player:
- fill: false
- title: 'Player options for %player'
-
- back:
- slot:
- enabled: true
- row: 3
- col: 5
-
- rows: 3
-
- build:
- enabled: true
- slot:
- row: 1
- col: 1
- state:
- row: 2
- col: 1
- material: GOLDEN_AXE
- display: '&eToggle Build-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To build on this world'
- gamemode:
- enabled: true
- slot:
- row: 1
- col: 2
- state:
- row: 2
- col: 2
- material: END_CRYSTAL
- display: '&eToggle GameMode-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To change the GameMode on this world'
- teleport:
- enabled: true
- slot:
- row: 1
- col: 3
- state:
- row: 2
- col: 3
- material: COMPASS
- display: '&eToggle Teleport-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To teleport on this world'
- worldedit:
- enabled: true
- slot:
- row: 1
- col: 4
- state:
- row: 2
- col: 4
- material: WOODEN_AXE
- display: '&eToggle WorldEdit-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To use WorldEdit on this world'
- addmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 399
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To add a member to this world'
- delmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 286
- display: '&eToggle Delmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To remove a member from this world'
- setpermissions:
- enabled: false
- slot:
- row: 1
- col: 8
- state:
- row: 2
- col: 8
- material: 331
- display: '&eToggle Setpermissions-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To set permissions for a member of this world'
- administrateworld:
- enabled: false
- slot:
- row: 1
- col: 9
- state:
- row: 2
- col: 9
- material: 421
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To adminstrate this world'
-
-# WorldsystemGUI
-worldsystem:
- fill: false
- title: 'WorldSystem'
-
- rows: 1
-
- back:
- slot:
- enabled: true
- row: 1
- col: 5
-
- playeroptions:
- enabled: true
- slot:
- row: 1
- col: 1
- material: LEATHER_HELMET
- display: '&ePlayer Options'
- worldoptions:
- enabled: true
- slot:
- row: 1
- col: 9
- material: GRASS_BLOCK
- display: '&eWorld Options'
-
-# GUI for choosing world template
-worldchoose:
- fill: false
- title: 'Choose world template'
-
- back:
- enabled: true
- slot:
- row: 4
- col: 5
-
- rows: 4
-
- # The key must be named exactly as in the config.yml
- template_default:
- enabled: true
- slot:
- row: 2
- col: 3
- material: GRASS_BLOCK
- display: '&aDefault template'
-
- another_template:
- enabled: true
- slot:
- row: 2
- col: 7
- material: STONE
- display: '&aAnother template'
-
-
-
\ No newline at end of file
diff --git a/target/classes/1_14_gui.yml b/target/classes/1_14_gui.yml
deleted file mode 100644
index 699b5d7c..00000000
--- a/target/classes/1_14_gui.yml
+++ /dev/null
@@ -1,299 +0,0 @@
-#
-# Config for the GUI "/gui"
-# Counting for rows and columns starts always at 1
-#
-
-options:
- # How the enabled item should look like
- enabled:
- # Material name in the Material enum
- material: LIME_DYE
- # Displayname
- display: '&aEnabled'
-
- # How the disabled item should look like
- disabled:
- material: RED_DYE
- display: '&cDisabled'
-
- # How the comming-soon item should look like
- coming_soon:
- material: ORANGE_DYE
- display: '&6Coming soon...'
-
- # How the back item should look like
- back:
- material: BARRIER
- display: '&cBack'
-
- # When filling of an inventory is true, how the item should look like
- fill:
- material: GRAY_STAINED_GLASS_PANE
- display: ''
-
- # WorldoptionsGUI
- world:
- fill: false
- # What the title of the Inv should be
- title: 'World Options'
-
- # Rows
- rows: 3
-
- # Where the back item should be
- back:
- enabled: true
- slot:
- row: 3
- col: 5
-
- # Reset button
- reset:
- # If feature should be enabled or not
- enabled: true
- slot:
- row: 1
- col: 8
- material: DIAMOND_HOE
- data: 0
- display: '&eReset World'
-
- # Fire button
- fire:
- enabled: true
- slot:
- row: 1
- col: 2
- # Where the state item should be
- state:
- row: 2
- col: 2
- material: FLINT_AND_STEEL
- display: '&eToggle Fire'
-
- # TNT button
- tnt:
- enabled: true
- slot:
- row: 1
- col: 5
- state:
- row: 2
- col: 5
- material: TNT
- display: '&eToggle TNT-Explosion'
-
- players:
- title: 'Players added to this world'
-
- back:
- enabled: true
- slot:
- row: 6
- col: 6
-
- rows: 6
-
- nextpage:
- enabled: true
- slot:
- row: 6
- col: 8
- material: PAPER
- display: '&eNext Page'
- pagebefore:
- enabled: true
- slot:
- row: 6
- col: 2
- material: PAPER
- display: '&ePage before'
- currentpage:
- enabled: true
- slot:
- row: 6
- col: 4
- material: SUNFLOWER
- display: '&eCurrent page: &a%page'
-
- playerhead:
- material: PLAYER_HEAD
- display: '&e%player'
-
- # PlayerGUI for managing one player on a world
- player:
- fill: false
- title: 'Player options for %player'
-
- back:
- slot:
- enabled: true
- row: 3
- col: 5
-
- rows: 3
-
- build:
- enabled: true
- slot:
- row: 1
- col: 1
- state:
- row: 2
- col: 1
- material: GOLDEN_AXE
- display: '&eToggle Build-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To build on this world'
- gamemode:
- enabled: true
- slot:
- row: 1
- col: 2
- state:
- row: 2
- col: 2
- material: END_CRYSTAL
- display: '&eToggle GameMode-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To change the GameMode on this world'
- teleport:
- enabled: true
- slot:
- row: 1
- col: 3
- state:
- row: 2
- col: 3
- material: COMPASS
- display: '&eToggle Teleport-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To teleport on this world'
- worldedit:
- enabled: true
- slot:
- row: 1
- col: 4
- state:
- row: 2
- col: 4
- material: WOODEN_AXE
- display: '&eToggle WorldEdit-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To use WorldEdit on this world'
- addmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 399
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To add a member to this world'
- delmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 286
- display: '&eToggle Delmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To remove a member from this world'
- setpermissions:
- enabled: false
- slot:
- row: 1
- col: 8
- state:
- row: 2
- col: 8
- material: 331
- display: '&eToggle Setpermissions-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To set permissions for a member of this world'
- administrateworld:
- enabled: false
- slot:
- row: 1
- col: 9
- state:
- row: 2
- col: 9
- material: 421
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To adminstrate this world'
-
-# WorldsystemGUI
-worldsystem:
- fill: false
- title: 'WorldSystem'
-
- rows: 1
-
- back:
- slot:
- enabled: true
- row: 1
- col: 5
-
- playeroptions:
- enabled: true
- slot:
- row: 1
- col: 1
- material: LEATHER_HELMET
- display: '&ePlayer Options'
- worldoptions:
- enabled: true
- slot:
- row: 1
- col: 9
- material: GRASS_BLOCK
- display: '&eWorld Options'
-
-# GUI for choosing world template
-worldchoose:
- fill: false
- title: 'Choose world template'
-
- back:
- enabled: true
- slot:
- row: 4
- col: 5
-
- rows: 4
-
- # The key must be named exactly as in the config.yml
- template_default:
- enabled: true
- slot:
- row: 2
- col: 3
- material: GRASS_BLOCK
- display: '&aDefault template'
-
- another_template:
- enabled: true
- slot:
- row: 2
- col: 7
- material: STONE
- display: '&aAnother template'
-
-
diff --git a/target/classes/LICENSE b/target/classes/LICENSE
deleted file mode 100644
index f288702d..00000000
--- a/target/classes/LICENSE
+++ /dev/null
@@ -1,674 +0,0 @@
- GNU GENERAL PUBLIC LICENSE
- Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The GNU General Public License is a free, copyleft license for
-software and other kinds of works.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-the GNU General Public License is intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users. We, the Free Software Foundation, use the
-GNU General Public License for most of our software; it applies also to
-any other work released this way by its authors. You can apply it to
-your programs, too.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- To protect your rights, we need to prevent others from denying you
-these rights or asking you to surrender the rights. Therefore, you have
-certain responsibilities if you distribute copies of the software, or if
-you modify it: responsibilities to respect the freedom of others.
-
- For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must pass on to the recipients the same
-freedoms that you received. You must make sure that they, too, receive
-or can get the source code. And you must show them these terms so they
-know their rights.
-
- Developers that use the GNU GPL protect your rights with two steps:
-(1) assert copyright on the software, and (2) offer you this License
-giving you legal permission to copy, distribute and/or modify it.
-
- For the developers' and authors' protection, the GPL clearly explains
-that there is no warranty for this free software. For both users' and
-authors' sake, the GPL requires that modified versions be marked as
-changed, so that their problems will not be attributed erroneously to
-authors of previous versions.
-
- Some devices are designed to deny users access to install or run
-modified versions of the software inside them, although the manufacturer
-can do so. This is fundamentally incompatible with the aim of
-protecting users' freedom to change the software. The systematic
-pattern of such abuse occurs in the area of products for individuals to
-use, which is precisely where it is most unacceptable. Therefore, we
-have designed this version of the GPL to prohibit the practice for those
-products. If such problems arise substantially in other domains, we
-stand ready to extend this provision to those domains in future versions
-of the GPL, as needed to protect the freedom of users.
-
- Finally, every program is threatened constantly by software patents.
-States should not allow patents to restrict development and use of
-software on general-purpose computers, but in those that do, we wish to
-avoid the special danger that patents applied to a free program could
-make it effectively proprietary. To prevent this, the GPL assures that
-patents cannot be used to render the program non-free.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Use with the GNU Affero General Public License.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU Affero General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the special requirements of the GNU Affero General Public License,
-section 13, concerning interaction through a network will apply to the
-combination as such.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU General Public License from time to time. Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If the program does terminal interaction, make it output a short
-notice like this when it starts in an interactive mode:
-
- Copyright (C)
- This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License. Of course, your program's commands
-might be different; for a GUI interface, you would use an "about box".
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU GPL, see
- .
-
- The GNU General Public License does not permit incorporating your program
-into proprietary programs. If your program is a subroutine library, you
-may consider it more useful to permit linking proprietary applications with
-the library. If this is what you want to do, use the GNU Lesser General
-Public License instead of this License. But first, please read
-.
diff --git a/target/classes/config.yml b/target/classes/config.yml
deleted file mode 100644
index 17611131..00000000
--- a/target/classes/config.yml
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-# Path where the worlds will be saved
-worldfolder: 'plugins/WorldSystem/Worlds'
-
-worldtemplates:
- # Whether players can decide on different templates
- multi_choose: false
- # If multi_choose is disabled, which template should be choosen
- default: 'template_default'
- templates:
- # The "1" can be any key
- 1:
- # Name of directory in plugins/WorldSystem/worldsources
- # e.g. this would be plugins/WorldSystem/worldsources/template_default
- name: 'template_default'
- # Just remove the permission field if everybody should be able to use this template
- 2:
- name: 'another_template'
- # Only players with this exact permission can use and see this template
- # ws.* will not work with this
- permission: ws.template.another_template
- # If this config option is given, 100 is needed to create a world
- # This amount will then with withdrawn from the player
- cost: 100
-
- # Options for random world generation
- # Here you can configure the world generator of a template
- generator:
- # A seed for worldgeneration
- # Set it to 0 for no seed-useage
- seed: 0
- # Environment for the world
- # Valid inputs are 'NORMAL', 'NETHER' and 'THE_END'
- environment: NORMAL
- # Type of the world eg. flat, amplified, ...
- # Valid types are 'NORMAL', 'VERSION_1_1', 'FLAT', 'AMPLIFIED', 'CUSTOMIZED' or 'LARGE_BIOMES'
- type: NORMAL
- # Put in here the name of a generator
- # If you have one from one plugin
- generator: ''
-
-# If a confirm is needed before auto-update
-need_confirm: true
-
-# When nobody is on a world time until it get unloaded
-unloadingtime: 20
-
-# If true nobody can teleport or change their gamemode a WorldSystem world
-# Except for players with the permissions: ws.gamemode | ws.tp.*
-survival: false
-
-# If WorldSystem should load the worlds async if possible (FAWE installed)
-load_worlds_async: true
-
-# Options for the database saving player positions
-database:
- # Which type should be choosen:
- # 'mysql' or 'sqlite'
- # You need a working mysql database in order to use this option
- type: sqlite
- # How the table with the saved player positions on the playerworlds should be named
- worlds_table_name: worlds_positions
- # How the table with the saved player positions on the normal worlds should be named
- players_table_name: player_positions
- # how should the uuid cache be stored
- players_uuids: players_uuids
-
- # Configure here your mysql connection
- mysql_settings:
- host: 127.0.0.1
- port: 3306
- username: root
- password: YOUR_PASSWORD_HERE
- database: database
- sqlite_settings:
- # Where the database file should be located
- file: 'plugins/WorldSystem/repository.db'
-
-# If true players will teleported to the spawn on join
-spawn_teleportation: true
-
-# Time in seconds until a request expires
-request_expires: 20
-
-# Name of the languagefile in plugins/WorldSystem/languages/
-language: en
-
-# Prefix which will be shown before each message
-prefix: '&8[&3WorldSystem&8] &6'
-
-# Time in days after a not used world will be deleted
-# Set to -1 to disable
-delete_after: -1
-
-# Whether WorldSystem should contact the Mojang authserver
-# If not, some unknown playernames will not be displayed
-# eg. in the gui or in /ws info
-contact_authserver: true
-
-# Options for the LagSystem:
-# period_in_seconds - how often will be checked for entities in seconds
-# entities_per_world - maximal allowed entities per world
-# garbagecollector - how often will be unused ram be cleared
-lagsystem:
- period_in_seconds: 10
- entities_per_world: 350
- garbagecollector:
- use: false
- period_in_minutes: 5
-
-# Location where you will be teleported when you leave you world
-spawn:
- gamemode: 2
- spawnpoint:
- use_last_location: true
- world: world
- x: 0
- y: 20
- z: 0
- yaw: 0
- pitch: 0
-
-# Location where you spawn when you join a world
-worldspawn:
- use_last_location: true
- use: false
- spawnpoint:
- x: 0
- y: 20
- z: 0
- yaw: 0
- pitch: 0
\ No newline at end of file
diff --git a/target/classes/custom.yml b/target/classes/custom.yml
deleted file mode 100644
index 05a078c5..00000000
--- a/target/classes/custom.yml
+++ /dev/null
@@ -1,84 +0,0 @@
-nopermission: ""
-unknown_error: ""
-lagdetection: "%world"
-wrong_usage: ""
-not_registered: ""
-
-world:
- reseted: ""
- still_loaded: ""
- not_on: ""
- created: ""
- already_exists: ""
- delete:
- own: ""
- other: "%player"
- does_not_exists:
- own: ""
- other: ""
- setting_up: ""
- playerlist: "%players"
- still_creating: ""
- set_home: ""
- not_enough_money: ""
-
-
-member:
- removed: "%player"
- added: "%player"
- already_added: ""
- not_added:
- own: ""
- other: ""
- no_one_added
-
-request:
- expired: ""
- confirm: "%command"
- until_expire: "%time"
- already_sent: ""
- not_sent: ""
- invalid_input: "%input"
-
-toggle:
- gamemode:
- enabled: ""
- disabled: ""
- teleport:
- enabled: ""
- disabled: ""
- build:
- enabled: ""
- disabled: ""
- fire:
- enabled: ""
- disabled: ""
- tnt:
- enabled: ""
- disabled: ""
-
-info:
- owner: "%data"
- id: "%data"
- member: "%data"
- tnt: "%data"
- fire: "%data"
- enabled: ""
- disabled: ""
-
-command_help:
- list:
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- - ""
- delete_command: ""
diff --git a/target/classes/de/butzlabben/WorldSystem/data/PlayerWorld.class b/target/classes/de/butzlabben/WorldSystem/data/PlayerWorld.class
deleted file mode 100644
index fbeb8c44..00000000
Binary files a/target/classes/de/butzlabben/WorldSystem/data/PlayerWorld.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/WorldSystem/data/SqlLiteDatabase.class b/target/classes/de/butzlabben/WorldSystem/data/SqlLiteDatabase.class
deleted file mode 100644
index b79c18ed..00000000
Binary files a/target/classes/de/butzlabben/WorldSystem/data/SqlLiteDatabase.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/WorldSystem/data/WorldSystemData.class b/target/classes/de/butzlabben/WorldSystem/data/WorldSystemData.class
deleted file mode 100644
index 8dd983c6..00000000
Binary files a/target/classes/de/butzlabben/WorldSystem/data/WorldSystemData.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/CostumInv.class b/target/classes/de/butzlabben/inventory/CostumInv.class
deleted file mode 100644
index 31f158d0..00000000
Binary files a/target/classes/de/butzlabben/inventory/CostumInv.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/DependListener.class b/target/classes/de/butzlabben/inventory/DependListener.class
deleted file mode 100644
index b0e68e97..00000000
Binary files a/target/classes/de/butzlabben/inventory/DependListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/OrcClickListener.class b/target/classes/de/butzlabben/inventory/OrcClickListener.class
deleted file mode 100644
index 53cda646..00000000
Binary files a/target/classes/de/butzlabben/inventory/OrcClickListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/OrcInventory.class b/target/classes/de/butzlabben/inventory/OrcInventory.class
deleted file mode 100644
index 1cbdf0e9..00000000
Binary files a/target/classes/de/butzlabben/inventory/OrcInventory.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/OrcItem.class b/target/classes/de/butzlabben/inventory/OrcItem.class
deleted file mode 100644
index f6dd0dd7..00000000
Binary files a/target/classes/de/butzlabben/inventory/OrcItem.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/OrcListener.class b/target/classes/de/butzlabben/inventory/OrcListener.class
deleted file mode 100644
index 9e6d8ada..00000000
Binary files a/target/classes/de/butzlabben/inventory/OrcListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/pages/InventoryPage.class b/target/classes/de/butzlabben/inventory/pages/InventoryPage.class
deleted file mode 100644
index f0986a1d..00000000
Binary files a/target/classes/de/butzlabben/inventory/pages/InventoryPage.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/pages/ItemConverter.class b/target/classes/de/butzlabben/inventory/pages/ItemConverter.class
deleted file mode 100644
index 8430886d..00000000
Binary files a/target/classes/de/butzlabben/inventory/pages/ItemConverter.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/inventory/pages/PageGUICreator.class b/target/classes/de/butzlabben/inventory/pages/PageGUICreator.class
deleted file mode 100644
index 03b78533..00000000
Binary files a/target/classes/de/butzlabben/inventory/pages/PageGUICreator.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/GCRunnable.class b/target/classes/de/butzlabben/world/GCRunnable.class
deleted file mode 100644
index 4c85daec..00000000
Binary files a/target/classes/de/butzlabben/world/GCRunnable.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/GameProfileBuilder$CachedProfile.class b/target/classes/de/butzlabben/world/GameProfileBuilder$CachedProfile.class
deleted file mode 100644
index ea7fb8ed..00000000
Binary files a/target/classes/de/butzlabben/world/GameProfileBuilder$CachedProfile.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/GameProfileBuilder$GameProfileSerializer.class b/target/classes/de/butzlabben/world/GameProfileBuilder$GameProfileSerializer.class
deleted file mode 100644
index e0ae8224..00000000
Binary files a/target/classes/de/butzlabben/world/GameProfileBuilder$GameProfileSerializer.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/GameProfileBuilder.class b/target/classes/de/butzlabben/world/GameProfileBuilder.class
deleted file mode 100644
index 0e4a341b..00000000
Binary files a/target/classes/de/butzlabben/world/GameProfileBuilder.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/WorldCheckerRunnable.class b/target/classes/de/butzlabben/world/WorldCheckerRunnable.class
deleted file mode 100644
index 4acd8019..00000000
Binary files a/target/classes/de/butzlabben/world/WorldCheckerRunnable.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/WorldSystem.class b/target/classes/de/butzlabben/world/WorldSystem.class
deleted file mode 100644
index fea0795f..00000000
Binary files a/target/classes/de/butzlabben/world/WorldSystem.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/command/CommandRegistry.class b/target/classes/de/butzlabben/world/command/CommandRegistry.class
deleted file mode 100644
index 5d046724..00000000
Binary files a/target/classes/de/butzlabben/world/command/CommandRegistry.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/command/commands/WSCommands.class b/target/classes/de/butzlabben/world/command/commands/WSCommands.class
deleted file mode 100644
index 80f31b50..00000000
Binary files a/target/classes/de/butzlabben/world/command/commands/WSCommands.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/command/commands/WorldAdministrateCommand.class b/target/classes/de/butzlabben/world/command/commands/WorldAdministrateCommand.class
deleted file mode 100644
index 9c104edd..00000000
Binary files a/target/classes/de/butzlabben/world/command/commands/WorldAdministrateCommand.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/command/commands/WorldSettingsCommands.class b/target/classes/de/butzlabben/world/command/commands/WorldSettingsCommands.class
deleted file mode 100644
index 971e571e..00000000
Binary files a/target/classes/de/butzlabben/world/command/commands/WorldSettingsCommands.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/config/DependenceConfig.class b/target/classes/de/butzlabben/world/config/DependenceConfig.class
deleted file mode 100644
index e849fb83..00000000
Binary files a/target/classes/de/butzlabben/world/config/DependenceConfig.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/config/Entry.class b/target/classes/de/butzlabben/world/config/Entry.class
deleted file mode 100644
index ea6fb4ec..00000000
Binary files a/target/classes/de/butzlabben/world/config/Entry.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/config/GuiConfig.class b/target/classes/de/butzlabben/world/config/GuiConfig.class
deleted file mode 100644
index 452243ab..00000000
Binary files a/target/classes/de/butzlabben/world/config/GuiConfig.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/config/MessageConfig.class b/target/classes/de/butzlabben/world/config/MessageConfig.class
deleted file mode 100644
index ce3ba3d2..00000000
Binary files a/target/classes/de/butzlabben/world/config/MessageConfig.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/config/PluginConfig.class b/target/classes/de/butzlabben/world/config/PluginConfig.class
deleted file mode 100644
index 450f8ce6..00000000
Binary files a/target/classes/de/butzlabben/world/config/PluginConfig.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/config/SettingsConfig.class b/target/classes/de/butzlabben/world/config/SettingsConfig.class
deleted file mode 100644
index f32de32e..00000000
Binary files a/target/classes/de/butzlabben/world/config/SettingsConfig.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/config/WorldConfig.class b/target/classes/de/butzlabben/world/config/WorldConfig.class
deleted file mode 100644
index 09bf9429..00000000
Binary files a/target/classes/de/butzlabben/world/config/WorldConfig.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/config/WorldPerm.class b/target/classes/de/butzlabben/world/config/WorldPerm.class
deleted file mode 100644
index 10b00a9d..00000000
Binary files a/target/classes/de/butzlabben/world/config/WorldPerm.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldAddmemberEvent.class b/target/classes/de/butzlabben/world/event/WorldAddmemberEvent.class
deleted file mode 100644
index 44fea9de..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldAddmemberEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldCreateEvent.class b/target/classes/de/butzlabben/world/event/WorldCreateEvent.class
deleted file mode 100644
index deabe3be..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldCreateEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldDeleteEvent.class b/target/classes/de/butzlabben/world/event/WorldDeleteEvent.class
deleted file mode 100644
index 81c0c899..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldDeleteEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldEvent.class b/target/classes/de/butzlabben/world/event/WorldEvent.class
deleted file mode 100644
index 3a51cbff..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldLoadEvent.class b/target/classes/de/butzlabben/world/event/WorldLoadEvent.class
deleted file mode 100644
index 96be4a69..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldLoadEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldRemovememberEvent.class b/target/classes/de/butzlabben/world/event/WorldRemovememberEvent.class
deleted file mode 100644
index d1d05b15..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldRemovememberEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldResetEvent.class b/target/classes/de/butzlabben/world/event/WorldResetEvent.class
deleted file mode 100644
index c888e2bd..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldResetEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldToggleFireEvent.class b/target/classes/de/butzlabben/world/event/WorldToggleFireEvent.class
deleted file mode 100644
index 5bdeb61e..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldToggleFireEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldToggleTntEvent.class b/target/classes/de/butzlabben/world/event/WorldToggleTntEvent.class
deleted file mode 100644
index ae932f3a..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldToggleTntEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/event/WorldUnloadEvent.class b/target/classes/de/butzlabben/world/event/WorldUnloadEvent.class
deleted file mode 100644
index 37ea5a8e..00000000
Binary files a/target/classes/de/butzlabben/world/event/WorldUnloadEvent.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/GuiCommand.class b/target/classes/de/butzlabben/world/gui/GuiCommand.class
deleted file mode 100644
index b5459043..00000000
Binary files a/target/classes/de/butzlabben/world/gui/GuiCommand.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/PlayerOptionsGUI.class b/target/classes/de/butzlabben/world/gui/PlayerOptionsGUI.class
deleted file mode 100644
index 63575925..00000000
Binary files a/target/classes/de/butzlabben/world/gui/PlayerOptionsGUI.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/PlayersPageGUI.class b/target/classes/de/butzlabben/world/gui/PlayersPageGUI.class
deleted file mode 100644
index 374cd396..00000000
Binary files a/target/classes/de/butzlabben/world/gui/PlayersPageGUI.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/WorldChooseGUI.class b/target/classes/de/butzlabben/world/gui/WorldChooseGUI.class
deleted file mode 100644
index ff0e10cd..00000000
Binary files a/target/classes/de/butzlabben/world/gui/WorldChooseGUI.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/WorldOptionsGUI.class b/target/classes/de/butzlabben/world/gui/WorldOptionsGUI.class
deleted file mode 100644
index 34107a44..00000000
Binary files a/target/classes/de/butzlabben/world/gui/WorldOptionsGUI.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/WorldSystemGUI.class b/target/classes/de/butzlabben/world/gui/WorldSystemGUI.class
deleted file mode 100644
index 35c965b0..00000000
Binary files a/target/classes/de/butzlabben/world/gui/WorldSystemGUI.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/clicklistener/ComingSoonClickListener.class b/target/classes/de/butzlabben/world/gui/clicklistener/ComingSoonClickListener.class
deleted file mode 100644
index a8a99117..00000000
Binary files a/target/classes/de/butzlabben/world/gui/clicklistener/ComingSoonClickListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/clicklistener/CommandExecutorClickListener.class b/target/classes/de/butzlabben/world/gui/clicklistener/CommandExecutorClickListener.class
deleted file mode 100644
index f080fcdb..00000000
Binary files a/target/classes/de/butzlabben/world/gui/clicklistener/CommandExecutorClickListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/clicklistener/InventoryOpenClickListener.class b/target/classes/de/butzlabben/world/gui/clicklistener/InventoryOpenClickListener.class
deleted file mode 100644
index 7622d543..00000000
Binary files a/target/classes/de/butzlabben/world/gui/clicklistener/InventoryOpenClickListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/playeroption/BuildStatus.class b/target/classes/de/butzlabben/world/gui/playeroption/BuildStatus.class
deleted file mode 100644
index 598a09fc..00000000
Binary files a/target/classes/de/butzlabben/world/gui/playeroption/BuildStatus.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/playeroption/GamemodeStatus.class b/target/classes/de/butzlabben/world/gui/playeroption/GamemodeStatus.class
deleted file mode 100644
index 69d78def..00000000
Binary files a/target/classes/de/butzlabben/world/gui/playeroption/GamemodeStatus.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/playeroption/TeleportStatus.class b/target/classes/de/butzlabben/world/gui/playeroption/TeleportStatus.class
deleted file mode 100644
index be7b6428..00000000
Binary files a/target/classes/de/butzlabben/world/gui/playeroption/TeleportStatus.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/playeroption/WorldEditStatus.class b/target/classes/de/butzlabben/world/gui/playeroption/WorldEditStatus.class
deleted file mode 100644
index f47cc8b7..00000000
Binary files a/target/classes/de/butzlabben/world/gui/playeroption/WorldEditStatus.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/worldoption/FireStatus.class b/target/classes/de/butzlabben/world/gui/worldoption/FireStatus.class
deleted file mode 100644
index cdd7f50a..00000000
Binary files a/target/classes/de/butzlabben/world/gui/worldoption/FireStatus.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/gui/worldoption/TntStatus.class b/target/classes/de/butzlabben/world/gui/worldoption/TntStatus.class
deleted file mode 100644
index 5744f896..00000000
Binary files a/target/classes/de/butzlabben/world/gui/worldoption/TntStatus.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/listener/BlockListener.class b/target/classes/de/butzlabben/world/listener/BlockListener.class
deleted file mode 100644
index 71dc54a8..00000000
Binary files a/target/classes/de/butzlabben/world/listener/BlockListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/listener/CommandListener.class b/target/classes/de/butzlabben/world/listener/CommandListener.class
deleted file mode 100644
index e4479172..00000000
Binary files a/target/classes/de/butzlabben/world/listener/CommandListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/listener/PlayerListener.class b/target/classes/de/butzlabben/world/listener/PlayerListener.class
deleted file mode 100644
index dfdf270c..00000000
Binary files a/target/classes/de/butzlabben/world/listener/PlayerListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/listener/WorldEditListener.class b/target/classes/de/butzlabben/world/listener/WorldEditListener.class
deleted file mode 100644
index a04fe77c..00000000
Binary files a/target/classes/de/butzlabben/world/listener/WorldEditListener.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/listener/WorldInitSkipSpawn.class b/target/classes/de/butzlabben/world/listener/WorldInitSkipSpawn.class
deleted file mode 100644
index f653d041..00000000
Binary files a/target/classes/de/butzlabben/world/listener/WorldInitSkipSpawn.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/MoneyUtil.class b/target/classes/de/butzlabben/world/util/MoneyUtil.class
deleted file mode 100644
index 4d853385..00000000
Binary files a/target/classes/de/butzlabben/world/util/MoneyUtil.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/PapiExtension.class b/target/classes/de/butzlabben/world/util/PapiExtension.class
deleted file mode 100644
index 9888c7f8..00000000
Binary files a/target/classes/de/butzlabben/world/util/PapiExtension.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/PlayerPositions.class b/target/classes/de/butzlabben/world/util/PlayerPositions.class
deleted file mode 100644
index 38a49550..00000000
Binary files a/target/classes/de/butzlabben/world/util/PlayerPositions.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/PlayerWrapper.class b/target/classes/de/butzlabben/world/util/PlayerWrapper.class
deleted file mode 100644
index 042b001c..00000000
Binary files a/target/classes/de/butzlabben/world/util/PlayerWrapper.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/TeleportUtil.class b/target/classes/de/butzlabben/world/util/TeleportUtil.class
deleted file mode 100644
index 918011d2..00000000
Binary files a/target/classes/de/butzlabben/world/util/TeleportUtil.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/VersionUtil.class b/target/classes/de/butzlabben/world/util/VersionUtil.class
deleted file mode 100644
index 430f7b23..00000000
Binary files a/target/classes/de/butzlabben/world/util/VersionUtil.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/Worldutils.class b/target/classes/de/butzlabben/world/util/Worldutils.class
deleted file mode 100644
index 86b6ad9a..00000000
Binary files a/target/classes/de/butzlabben/world/util/Worldutils.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/database/DatabaseConnection.class b/target/classes/de/butzlabben/world/util/database/DatabaseConnection.class
deleted file mode 100644
index 04b2bc01..00000000
Binary files a/target/classes/de/butzlabben/world/util/database/DatabaseConnection.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/database/DatabaseProvider.class b/target/classes/de/butzlabben/world/util/database/DatabaseProvider.class
deleted file mode 100644
index 1b041093..00000000
Binary files a/target/classes/de/butzlabben/world/util/database/DatabaseProvider.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/database/DatabaseUtil.class b/target/classes/de/butzlabben/world/util/database/DatabaseUtil.class
deleted file mode 100644
index 6a079df4..00000000
Binary files a/target/classes/de/butzlabben/world/util/database/DatabaseUtil.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/database/MysqlConnection.class b/target/classes/de/butzlabben/world/util/database/MysqlConnection.class
deleted file mode 100644
index 21af9989..00000000
Binary files a/target/classes/de/butzlabben/world/util/database/MysqlConnection.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/util/database/SqliteConnection.class b/target/classes/de/butzlabben/world/util/database/SqliteConnection.class
deleted file mode 100644
index 04ce7118..00000000
Binary files a/target/classes/de/butzlabben/world/util/database/SqliteConnection.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/CreatorAdapter.class b/target/classes/de/butzlabben/world/wrapper/CreatorAdapter.class
deleted file mode 100644
index 48e665d4..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/CreatorAdapter.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/GeneratorSettings.class b/target/classes/de/butzlabben/world/wrapper/GeneratorSettings.class
deleted file mode 100644
index e66332fe..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/GeneratorSettings.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/SystemWorld$1$1.class b/target/classes/de/butzlabben/world/wrapper/SystemWorld$1$1.class
deleted file mode 100644
index ecde6c89..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/SystemWorld$1$1.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/SystemWorld$1.class b/target/classes/de/butzlabben/world/wrapper/SystemWorld$1.class
deleted file mode 100644
index fddc8c83..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/SystemWorld$1.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/SystemWorld$2.class b/target/classes/de/butzlabben/world/wrapper/SystemWorld$2.class
deleted file mode 100644
index 11f27236..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/SystemWorld$2.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/SystemWorld.class b/target/classes/de/butzlabben/world/wrapper/SystemWorld.class
deleted file mode 100644
index 1fd6a36b..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/SystemWorld.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/WorldPlayer.class b/target/classes/de/butzlabben/world/wrapper/WorldPlayer.class
deleted file mode 100644
index 319aa1e9..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/WorldPlayer.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/WorldTemplate.class b/target/classes/de/butzlabben/world/wrapper/WorldTemplate.class
deleted file mode 100644
index eb7b19eb..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/WorldTemplate.class and /dev/null differ
diff --git a/target/classes/de/butzlabben/world/wrapper/WorldTemplateProvider.class b/target/classes/de/butzlabben/world/wrapper/WorldTemplateProvider.class
deleted file mode 100644
index 7d830257..00000000
Binary files a/target/classes/de/butzlabben/world/wrapper/WorldTemplateProvider.class and /dev/null differ
diff --git a/target/classes/languages/de.yml b/target/classes/languages/de.yml
deleted file mode 100644
index ee0c5c93..00000000
--- a/target/classes/languages/de.yml
+++ /dev/null
@@ -1,88 +0,0 @@
-nopermission: "&cDu besitzt keine Berechtigungen!"
-unknown_error: "&cEtwas lief schief..."
-lagdetection: "Lags in Welt: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cDieser Spieler war noch nie auf dem Server"
-
-world:
- reseted: "Deine Welt wurde zur\u00fcckgesetzt!"
- still_loaded: "&cDeine Welt ist noch geladen!"
- not_on: "&cDu bist auf keiner Welt!"
- created: "Deine Welt ist nun bereit. Nutze &a/ws home"
- already_exists: "&cDu besitzt bereits eine Welt!"
- delete:
- own: "&cDeine Welt wurde entfernt!"
- other: "Die Welt von &c%player&6 wurde entfernt!"
- does_not_exists:
- own: "&cDu besitzt keine Welt!"
- other: "&cDieser Spieler besitzt keine Welt!"
- setting_up: "&aBereite Welt vor..."
- playerlist: "Spieler in der Welt: %players"
- still_creating: "&cWelt wird noch erstellt..."
- set_home: "Du hast das Home gesetzt"
- not_enough_money: "Du hast nicht genug Geld"
-
-member:
- removed: "Du hast &c%player&6 von deiner Welt entfernt!"
- added: "Du hast &c%player&6 zu deiner Welt hinzugef\u00fcgt!"
- already_added: "&cDer Spieler ist bereits Mitglied deiner Welt!"
- not_added:
- own: "&cDer Spieler ist kein Mitglied deiner Welt!"
- other: "&cDu bist nicht zu der Welt hinzugef\u00fcgt!"
- no_one_added: "&cEs sind keine Mitglieder hinzugefügt"
-
-request:
- expired: "&cDeine Anfrage ist ausgelaufen!"
- confirm: "&cBitte bestätige das Zur\u00fccksetzen: %command"
- until_expire: "&cDeine Anfrage l\u00e4uft in %time Sekunden aus!"
- already_sent: "&cDu hast bereits eine Anfrage gesendet!"
- not_sent: "&cDu hast keine Anfrage gesendet!"
- invalid_input: "&c%input ist eine ung\u00fcltige Eingabe!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 kann nun seinen Spielmodus \u00e4ndern!"
- disabled: "&c%player&6 kann seinen Spielmodus nicht mehr \u00e4ndern!"
- teleport:
- enabled: "&a%player&6 kann sich nun teleportieren!"
- disabled: "&c%player&6 kann sich nicht l\u00e4nger teleportieren!"
- build:
- enabled: "&a%player&6 kann nun bauen!"
- disabled: "&c%player&6 kann nicht mehr bauen!"
- worldedit:
- enabled: "&a%player&6 can now use WorldEdit!"
- disabled: "&c%player&6 can no longer use WorldEdit!"
- fire:
- enabled: "&aFeuer aktiviert!"
- disabled: "&cFeuer deaktiviert!"
- tnt:
- enabled: "&aTNT-Schaden aktiviert!"
- disabled: "&cTNT-Schaden deaktiviert!"
-
-info:
- owner: "Eigent\u00fcmer: %data"
- id: "ID: %data"
- member: "Mitglieder: %data"
- tnt: "TNT: %data"
- fire: "Feuer: %data"
- enabled: "&aAn"
- disabled: "&cAus"
-
-command_help:
- list:
- - "/ws get &8- &7Gibt dir eine Welt"
- - "/ws home &8- &7Teleportiert dich auf deine Welt"
- - "/ws sethome &8- &7Setzt ein bestimmtes Home"
- - "/ws gui &8- &7\u00f6ffnets das GUI-Menu wenn du der Weltenbesitzer bist"
- - "/ws tp &8- &7Teleportiert dich auf eine bestimmte Welt"
- - "/ws addmember &8- &7F\u00fcgt jemanden zu deiner Welt hinzu"
- - "/ws delmember&8 - &7Entfernt jemanden von deiner Welt"
- - "/ws tnt &8- &7Erlaubt/Verbietet TNT auf deiner Welt"
- - "/ws fire &8- &7Erlaubt/Verbietet Feuer auf deiner Welt"
- - "/ws togglegm &8- &7Erlaubt/Verbietet einem Spieler den Spielmodus zu wechseln"
- - "/ws togglebuild &8- &7Erlaubt/Verbietet einem Spieler zu bauen"
- - "/ws toggletp &8- &7Erlaubt/Verbietet einem Spieler sich zu teleportieren"
- - "/ws togglewe &8- &7Erlaubt/Verbietet einem Spieler WorldEdit zu nutzen"
- - "/ws info &8- &7Zeigt Informationen \u00fcber die Welt"
- - "/ws reset &8- &7Setzt deine Welt zur\u00fcck"
- delete_command: "/ws delete &8- &7L\u00f6scht eine Welt"
\ No newline at end of file
diff --git a/target/classes/languages/en.yml b/target/classes/languages/en.yml
deleted file mode 100644
index 3877b7c6..00000000
--- a/target/classes/languages/en.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-nopermission: "&cYou do not have permission for that command!"
-unknown_error: "&cSomething went wrong..."
-lagdetection: "Lagdetection in world: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cThis player hasn't joined yet!"
-
-world:
- reseted: "Your world was reset successfully!"
- still_loaded: "&cYour world is still loaded!"
- not_on: "&cYou are not in a world!"
- created: "Your world is now ready. Get there with &a/ws home"
- already_exists: "&cYou already have a world!"
- delete:
- own: "&cYour world was deleted!"
- other: "You deleted the world of &c%player&6!"
- does_not_exists:
- own: "&cYou don't have a world!"
- other: "&cThis player doesn't has a world!"
- setting_up: "&aLoading world..."
- playerlist: "Players in this world: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "You removed &c%player&6 from your world!"
- added: "You have added &c%player&6 to your world!"
- already_added: "&cThis player is already a member!"
- not_added:
- own: "&cThis player isn't a member!"
- other: "&cYou have not been added to this world!"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cYour request has expired!"
- confirm: "WARNING - Please confirm reset of your world: %command"
- until_expire: "&cYour request expires in %time seconds!"
- already_sent: "&cYou already sent a request!"
- not_sent: "&cYou have not sent a request!"
- invalid_input: "&c%input is not a valid request!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 can now change their gamemode!"
- disabled: "&c%player&6 can no longer change their gamemode!"
- teleport:
- enabled: "&a%player&6 can now teleport!"
- disabled: "&c%player&6 can no longer teleport!"
- build:
- enabled: "&a%player&6 can now build!"
- disabled: "&c%player&6 can no longer build!"
- worldedit:
- enabled: "&a%player&6 can now use WorldEdit!"
- disabled: "&c%player&6 can no longer use WorldEdit!"
- fire:
- enabled: "&aYou activated fire!"
- disabled: "&cYou deactivated fire!"
- tnt:
- enabled: "&aYou activated TNT-Damage!"
- disabled: "&cYou deactivated TNT-Damage!"
-
-info:
- owner: "Owner: %data"
- id: "ID: %data"
- member: "Member: %data"
- tnt: "TNT: %data"
- fire: "Fire: %data"
- enabled: "&aOn"
- disabled: "&cOff"
-
-command_help:
- list:
- - "&6/ws get &8- &7Create a world"
- - "&6/ws home &8- &7Teleport to your world's home"
- - "&6/ws sethome &8- &7Set a new home on your world"
- - "&6/ws gui &8- &7Open settings GUI (must be world owner)"
- - "&6/ws tp &8- &7Teleport to another player's world"
- - "&6/ws addmember &8- &7Add a player to your world"
- - "&6/ws delmember &8- &7Remove a player from your world"
- - "&6/ws leave &8- &7Leave a world"
- - "&6/ws tnt &8- &7Enable or disable TNT on your world"
- - "&6/ws fire &8- &7Enable or disable fire on your world"
- - "&6/ws togglegm &8- &7Allow/deny a player to change gamemodes on your world"
- - "&6/ws togglebuild &8- &7Allow/deny a player to build on your world"
- - "&6/ws toggletp &8- &7Allow/deny a player to teleport on your world"
- - "&6/ws togglewe &8- &7Allow/deny a player using WorldEdit on your world"
- - "&6/ws info &8- &7Show information about the world you are in"
- - "&6/ws reset &8- &7Reset your world"
- delete_command: "/ws delete &8- &7Delete a world"
diff --git a/target/classes/languages/es.yml b/target/classes/languages/es.yml
deleted file mode 100644
index b281e0f3..00000000
--- a/target/classes/languages/es.yml
+++ /dev/null
@@ -1,88 +0,0 @@
-nopermission: "&cNo tienes permiso."
-unknown_error: "&cAlgo salio mal..."
-lagdetection: "Deteccion de lag en el mundo: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cEse jugador no existe."
-
-world:
- reseted: "Tu mundo ha sido reiniciado."
- still_loaded: "&cTu mundo aun esta cargando."
- not_on: "&cNo estas en un mundo."
- created: "Tu mundo esta listo. Ve a el con &a/ws home&6."
- already_exists: "&cYa tienes un mundo."
- delete:
- own: "&cTu mundo ha sido eliminado"
- other: "Has eliminado el mundo de &c%player&6."
- does_not_exists:
- own: "&cNo tienes un mundo."
- other: "&cEse jugador no tiene un mundo."
- setting_up: "&aConfigurando el mundo..."
- playerlist: "Jugadores en este mundo: %players"
- still_creating: "&cEl mundo aun no esta listo."
- set_home: "Has establecido el hogar."
- not_enough_money: "No tienes suficiente dinero."
-
-member:
- removed: "Has eliminado a &c%player&6 de tu mundo."
- added: "Has agregado a &c%player&6 a tu mundo."
- already_added: "&cEse jugador ya es miembro de tu mundo."
- not_added:
- own: "&cEse jugador no es miembro de tu mundo."
- other: "&cNo estas agregado a este mundo."
- no_one_added: "&cNo hay jugadores agregados."
-
-request:
- expired: "&cTu solicitud ha expirado."
- confirm: "&cPor favor confirma el reinicio de tu mundo con: %command"
- until_expire: "&cTu solicitud expira en %time segundos."
- already_sent: "&cYa has enviado una solicitud."
- not_sent: "&cNo has enviado una solicitud."
- invalid_input: "&c%input no es una solicitud valida."
-
-toggle:
- gamemode:
- enabled: "&a%player&6 ahora puede cambiar su modo de juego."
- disabled: "&c%player&6 ya no puede cambiar su modo de juego."
- teleport:
- enabled: "&a%player&6 ahora puede teletransportarse."
- disabled: "&c%player&6 ya no puede teletransportarse."
- build:
- enabled: "&a%player&6 ahora puede construir."
- disabled: "&c%player&6 ya no puede construir"
- worldedit:
- enabled: "&a%player&6 ahora puede usar WorldEdit."
- disabled: "&c%player&6 ya no puede usar WorldEdit."
- fire:
- enabled: "&aHas activado el fuego."
- disabled: "&cHas desactivado el fuego."
- tnt:
- enabled: "&aHas activado la TNT."
- disabled: "&cHas desactivado la TNT."
-
-info:
- owner: "Propietario: %data"
- id: "ID: %data"
- member: "Miembros: %data"
- tnt: "TNT: %data"
- fire: "Fuego: %data"
- enabled: "&aActivado"
- disabled: "&cDesactivado"
-command_help:
- list:
- - "/ws get &8- &7Obten tu mundo"
- - "/ws home &8- &7Ve a tu mundo"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Abre el menu de tu mundo"
- - "/ws tp &8- &7Ve a un mundo especifico"
- - "/ws addmember &8- &7Agrega jugadores a tu mundo"
- - "/ws delmember &8- &7Elimina jugadores de tu mundo"
- - "/ws leave &8- &7Salir de un mundo"
- - "/ws tnt &8- &7Activa/Desactiva la TNT en tu mundo"
- - "/ws fire &8- &7Activa/Desactiva el FUEGO en tu mundo"
- - "/ws togglegm &8- &7Activa/Desactiva el cambio de modo"
- - "/ws togglebuild &8- &7Activa/Desactiva la construccion"
- - "/ws toggletp &8- &7Activa/Desactiva la teletransportacion"
- - "/ws togglewe &8- &7Activa/Desactiva el uso de WorldEdit."
- - "/ws info &8- &7Muestra informacion del mundo"
- - "/ws reset &8- &7Reinicia tu mundo"
- delete_command: "/ws delete &8- &7Elimina tu mundo"
\ No newline at end of file
diff --git a/target/classes/languages/fi.yml b/target/classes/languages/fi.yml
deleted file mode 100644
index 7ea79a83..00000000
--- a/target/classes/languages/fi.yml
+++ /dev/null
@@ -1,85 +0,0 @@
-nopermission: "&cSinulla ei ole lupaa tuohon komentoon!"
-unknown_error: "&cJotain meni pieleen..."
-lagdetection: "Lagia havaittu maailmassa: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cTämä pelaaja ei ole liittynyt vielä!"
-
-world:
- reseted: "Maailmasi nollautui!"
- still_loaded: "&cMailmasi on vieläkin ladattu!"
- not_on: "&cEt ole maailmassa!"
- created: "Maailmasi on nyt valmis. Pääset sinne komennolla &a/ws home"
- already_exists: "&cSinulla on jo maailma!"
- delete:
- own: "&cMaailmasi poistettiin!"
- other: "Poistit pelaajan &c%player&6 maailman&6!"
- does_not_exists:
- own: "&cSinulla ei ole maailmaa!"
- other: "&cKyseisellä pelaajalla ei ole maailmaa!"
- setting_up: "&aAlustetaan maailmaa..."
- playerlist: "Pelaajat tässä maailmassa: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Poistit pelaajan &c%player&6 maailmastasi!"
- added: "Lisäsit pelaajan &c%player&6 maailmaasi!"
- already_added: "&cKyseinen pelaaja on jo jäsen!"
- not_added:
- own: "&cKyseinen pelaaja ei ole jäsen!"
- other: "&cSinua ei ole lisätty tähän maailmaan"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cPyyntösi on vanhentunut!"
- confirm: "&cVahvista maailmasi nollaaminen: %command"
- until_expire: "&cPyyntösi vanhentuu %time seconds sekunnin kuluttua!"
- already_sent: "&cLähetit jo pyynnön!"
- not_sent: "&cEt lähettänyt pyyntöä!"
- invalid_input: "&cSyöte ei ole kelvollinen!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 voi nyt vaihtaa pelimuotonsa!"
- disabled: "&c%player&6 ei voi enää vaihtaa pelimuotoansa!"
- teleport:
- enabled: "&a%player&6 voi nyt teleportata!"
- disabled: "&c%player&6 ei voi enään teleportata!"
- build:
- enabled: "&a%player&6 voi nyt rakentaa!"
- disabled: "&c%player&6 ei voi enään rakentaa!"
- fire:
- enabled: "&aSinä aktivoit tulen!"
- disabled: "&cSinä deaktivoit tulen!"
- tnt:
- enabled: "&aSinä aktivoit TNT-Damagen!"
- disabled: "&cSinä deaktivoit TNT-Damagen!"
-
-info:
- owner: "Omistaja: %data"
- id: "ID: %data"
- member: "Jäsen: %data"
- tnt: "TNT: %data"
- fire: "Tuli: %data"
- enabled: "&aOn"
- disabled: "&cOff"
-
-command_help:
- list:
- - "/ws get &8- &7Luo sinulle maailman"
- - "/ws home &8- &7Teleporttaa sinut maailmaasi"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Avaa sinulle valikon jos omistat tämän maailman"
- - "/ws tp &8- &7Teleporttaa sinut tiettyyn maailmaan"
- - "/ws addmember &8- &7Lisää pelaajan sinun maailmaasi"
- - "/ws delmember &8- &7Poistaa pelaajan sinun maailmastasi"
- - "/ws leave &8- &7Lähtee maailmasta"
- - "/ws tnt &8- &7Sallii/Kieltää TNT sinun maailmastasi"
- - "/ws fire &8- &7Sallii/Kieltää Tulen sinun maailmastasi"
- - "/ws togglegm &8- &7Sallii/Kieltää pelaajan vaihtamasta pelimuotoansa"
- - "/ws togglebuild &8- &7Sallii/Kieltää pelaajan rakentamasta"
- - "/ws toggletp &8- &7Sallii/Kieltää pelaajan treleporttaamasta"
- - "/ws info &8- &7Näyttää tietoa aktiivisesta maailmasta"
- - "/ws reset &8- &7Nollaa sinun maailmasi"
- delete_command: "/ws delete &8- &7Poistaa maailman"
\ No newline at end of file
diff --git a/target/classes/languages/fr.yml b/target/classes/languages/fr.yml
deleted file mode 100644
index f355f046..00000000
--- a/target/classes/languages/fr.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-nopermission: "&cVous n'avez pas la permission!"
-unknown_error: "&cQuelque chose s'est mal passé ..."
-lagdetection: "Lag détecté sur le monde: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cCe joueur n'a pas encore rejoint!!"
-
-world:
- reseted: "Votre monde a été réinitialisé!"
- still_loaded: "&cVotre monde est toujours chargé!"
- not_on: "&cVous n'êtes pas sur un monde!"
- created: "Votre monde est maintenant prêt. Allez-y avec &a/ws home"
- already_exists: "&cVous avez déjà un monde!"
- delete:
- own: "&cVotre monde a été supprimé!"
- other: "Vous avez supprimé le monde de &c%player&6!"
- does_not_exists:
- own: "&cVous n'avez pas de monde!"
- other: "&cCe joueur n'a pas de monde!"
- setting_up: "&aChargement du monde..."
- playerlist: "Joueurs dans ce monde: %players"
- still_creating: "&cLe monde est encore en train de se créer"
- set_home: "Vous avez placé le home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Vous avez retiré &c%player&6 de votre monde!"
- added: "Vous avez ajouté &c%player&6 à votre monde!"
- already_added: "&cCe joueur est déjà membre!"
- not_added:
- own: "&cCe joueur n'est pas membre!"
- other: "&cVous n'avez pas été ajouté à ce monde!"
- no_one_added: "&cIl n'y a aucun membre d'ajouté"
-
-request:
- expired: "&cVotre demande a expiré!"
- confirm: "AVERTISSEMENT - Veuillez confirmer la réinitialisation de votre monde: %command"
- until_expire: "&cVotre demande expire dans %time secondes!"
- already_sent: "&cVous avez déjà envoyé une demande!"
- not_sent: "&cVous n'avez pas envoyé de demande!"
- invalid_input: "&c%input n'est pas une demande valide!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 peut désormais changer son mode de jeu!"
- disabled: "&c%player&6 ne peut désormais plus changer son mode de jeu!"
- teleport:
- enabled: "&a%player&6 peut désormais se téléporter!"
- disabled: "&c%player&6 ne peut désormais plus se téléporter!"
- build:
- enabled: "&a%player&6 peut désormais construire!"
- disabled: "&c%player&6 ne peut désormais plus construire!"
- worldedit:
- enabled: "&a%player&6 peut désormais utiliser WorldEdit!"
- disabled: "&c%player&6 ne peut désormais plus utiliser WorldEdit!"
- fire:
- enabled: "&aVous avez activé le feu!"
- disabled: "&cVous avez désactivé le feu!"
- tnt:
- enabled: "&aVous avez activé la TNT!"
- disabled: "&cVous avez désactivé la TNT!"
-
-info:
- owner: "Propriétaire: %data"
- id: "ID: %data"
- member: "Membre: %data"
- tnt: "TNT: %data"
- fire: "Feu: %data"
- enabled: "&aActivé"
- disabled: "&cDésactivé"
-
-command_help:
- list:
- - "/ws get &8- &7Vous donne un monde"
- - "/ws home &8- &7Vous téléporte sur votre monde"
- - "/ws sethome &8- &7Définit un home spécifique"
- - "/ws gui &8- &7Ouvre le menu de votre monde"
- - "/ws tp &8- &7Vous téléporte sur un monde spécifique"
- - "/ws addmember &8- &7Ajoute un joueur à votre monde"
- - "/ws delmember &8- &7Retire un joueur de votre monde"
- - "/ws leave &8- &7Quitter un monde"
- - "/ws tnt &8- &7Active / Désactive la TNT sur votre monde"
- - "/ws fire &8- &7Active / Désactive le feu sur votre monde"
- - "/ws togglegm &8- &7Autorise / Interdit à un joueur de changer de mode de jeu"
- - "/ws togglebuild &8- &7Autorise / Interdit à un joueur de construire sur votre monde"
- - "/ws toggletp &8- &7Autorise / Interdit à un joueur de se téléporter sur votre monde"
- - "/ws togglewe &8- &7Autorise / Interdit à un joueur d'utiliser WorldEdit"
- - "/ws info &8- &7Affiche les informations relatives à un monde"
- - "/ws reset &8- &7Réinitialiser votre monde"
- delete_command: "/ws delete &8- &7Supprimer votre monde"
\ No newline at end of file
diff --git a/target/classes/languages/hu.yml b/target/classes/languages/hu.yml
deleted file mode 100644
index ae626795..00000000
--- a/target/classes/languages/hu.yml
+++ /dev/null
@@ -1,86 +0,0 @@
-nopermission: "&cNincs jogod ehhez!"
-unknown_error: "&cValami elromlott..."
-lagdetection: "Lag észlelés a világban: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cEz a játékos még nem csatlakozott!"
-
-world:
- reseted: "A világod vissza lett állítva!"
- still_loaded: "&cA világod még mindig be van töltve!"
- not_on: "&cNem vagy a világon!"
- created: "A világod készen áll. Szállj fel a &a/ws home"
- already_exists: "&cMár van világod!"
- delete:
- own: "&cA világod törölve!"
- other: "Törölte a világot &c%player&6 játékostól!"
- does_not_exists:
- own: "&cNincs világod!"
- other: "&cEz a játékos nem rendelkezik világgal!"
- setting_up: "&aA világ létrehozása..."
- playerlist: "Játékos ebben a világban: %player"
- still_creating: "&cA világ még mindig létrehozás alatt"
- set_home: "Beállítottad az otthonodat"
- not_enough_money: "Nincs elég pénzed"
-
-member:
- removed: "Törölted &c%player&6 játékost a világodból!"
- added: "Hozzáadtad &c%player&6 játékost a világodhoz!"
- already_added: "&cEz a játékos már tagja!"
- not_added:
- own: "&cEz a játékos nem tagja!"
- other: "&cNem vagy hozzáadva ehhez a világhoz"
- still_creating: "&cA világ még mindig létrehozás alatt"
- no_one_added: "&cNincs tagok hozzáadva"
-
-request:
- expired: "&cA kérelem lejárt!"
- confirm: "&cKérlek, erősítsd meg a világ újraindítását: %command"
- until_expire: "&cA kérés lejárati ideje %time másodperc!"
- already_sent: "&cMár elküldtél egy kérelmet!"
- not_sent: "&cNem küldtél kérést!"
- invalid_input: "&c%input nem érvényes bemenet!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 most megváltoztathatja játékmódját!"
- disabled: "&c%player&6 már nem tudja megváltoztatni játékmódját!"
- teleport:
- enabled: "&a%player&6 most teleportálhat!"
- disabled: "&c%player&6 már nem teleportálhat!"
- build:
- enabled: "&a%player&6 most építhet!"
- disabled: "&c%player&6 már nem építhet!"
- fire:
- enabled: "&aAktiváltad a tüzet!"
- disabled: "&cDeaktiváltad a tüzet!"
- tnt:
- enabled: "&aAktiváltad a TNT-sebzést!"
- disabled: "&cDeaktiváltad TNT-sebzést!"
-
-info:
- owner: "Tulajdonos: %data"
- id: "ID: %data"
- member: "Tag: %data"
- tnt: "TNT: %data"
- fire: "Tűz: %data"
- enabled: "&aBe"
- disabled: "&cKi"
-
-command_help:
- list:
- - "/ws get &8- &7Add neked egy világot"
- - "/ws home &8- &7Teleportálás a világodba"
- - "/ws sethome &8- &7Beállítja a megadott otthont"
- - "/ws gui &8- &7Megnyitja a GUI menüt ha a világ tulajdonosa vagy"
- - "/ws tp &8- &7Teleportál egy kiválasztott világba"
- - "/ws addmember &8- &7Hozzáad egy játékost a világodhoz"
- - "/ws delmember &8- &7Eltávolít egy játékost a világodból"
- - "/ws leave &8- &7Elhagyja a világot"
- - "/ws tnt &8- &7Engedi/Tagadja a TNT-t a világodban"
- - "/ws fire &8- &7Engedi/Tagadja a Tüzet a világodban"
- - "/ws togglegm &8- &7Engedi/Tagadja játékos változtatt játék módot"
- - "/ws togglebuild &8- &7Engedi/Tagadja a játékos építést"
- - "/ws toggletp &8- &7Engedi/Tagadja a játékos teleportálást"
- - "/ws info &8- &7Információt mutat a világról"
- - "/ws reset &8- &7Visszaállítja a világodat"
- delete_command: "/ws delete &8- &7Törli a világot"
\ No newline at end of file
diff --git a/target/classes/languages/ja.yml b/target/classes/languages/ja.yml
deleted file mode 100644
index 2ef9c3bb..00000000
--- a/target/classes/languages/ja.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-nopermission: "&cこのコマンドを実行する権限を持っていません!"
-unknown_error: "&c何かがうまくいきませんでした..."
-lagdetection: "ワールドのラグを検出: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cこのプレイヤーはまだ参加していません!"
-
-world:
- reseted: "リセットされました!"
- still_loaded: "&cワールドはまだロード中です!"
- not_on: "&cワールドにいません!"
- created: "ワールドの準備が整いました。&a/ws home &rで移動する"
- already_exists: "&c既にワールドがあります!"
- delete:
- own: "&cワールドを削除しました!"
- other: "&c%player&6のワールドを削除しました!"
- does_not_exists:
- own: "&cワールドがありません!"
- other: "&cこのプレイヤーはワールドがありません!"
- setting_up: "&aワールド読み込み中..."
- playerlist: "このワールドのプレイヤー: %players"
- still_creating: "&cワールドはまだ作成中です"
- set_home: "ホームを設定しました"
- not_enough_money: "十分なお金を持っていません"
-
-member:
- removed: "ワールドから &c%player &6を削除しました!"
- added: "ワールドに &c%player &6を追加しました!"
- already_added: "&cこのプレイヤーは既にメンバーです!"
- not_added:
- own: "&cこのプレイヤーはメンバーではありません!"
- other: "&cあなたはこのワールドに追加されていません!"
- no_one_added: "&cメンバーが追加されていません"
-
-request:
- expired: "&cリクエストの期限が切れました!"
- confirm: "警告 - ワールドのリセットを確認してください: %command"
- until_expire: "&cリクエストは %time 秒で期限切れになります!"
- already_sent: "&c既にリクエストを送信しました!"
- not_sent: "&cリクエストを送信していません!"
- invalid_input: "&c%input は有効なリクエストではありません!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 はゲームモードを変更できるようになりました!"
- disabled: "&c%player&6 はゲームモードの変更ができなくなりました!"
- teleport:
- enabled: "&a%player&6 はテレポートでるようになりました!"
- disabled: "&c%player&6 はテレポートできなくなりました!"
- build:
- enabled: "&a%player&6 は建築できるようになりました!"
- disabled: "&c%player&6 は建築できないようになりました!"
- worldedit:
- enabled: "&a%player&6 はWorldEditが使えるようになりました!"
- disabled: "&c%player&6 はWorldEditが使えないようになりました!"
- fire:
- enabled: "&a炎が有効になりました!"
- disabled: "&c炎が無効になりました!"
- tnt:
- enabled: "&aTNTダメージが有効になりました!"
- disabled: "&cTNTダメージが無効になりました!"
-
-info:
- owner: "所有者: %data"
- id: "ID: %data"
- member: "メンバー: %data"
- tnt: "TNT: %data"
- fire: "炎: %data"
- enabled: "&aオン"
- disabled: "&cオフ"
-
-command_help:
- list:
- - "/ws get &8- &7ワールドを与える"
- - "/ws home &8- &7ワールドにテレポートする"
- - "/ws sethome &8- &7特定のホームを設定する"
- - "/ws gui &8- &7ワールドの所有者である場合、GUIメニューを開く"
- - "/ws tp &8- &7特定のワールドにテレポートする"
- - "/ws addmember &8- &7プレイヤーをワールドに追加する"
- - "/ws delmember &8- &7プレイヤーをワールドから削除する"
- - "/ws leave &8- &7ワールドから抜ける"
- - "/ws tnt &8- &7ワールドでのTNTを許可/拒否する"
- - "/ws fire &8- &7ワールドでの炎を許可/拒否する"
- - "/ws togglegm &8- &7ワールドでのゲームモード変更を許可/拒否する"
- - "/ws togglebuild &8- &7ワールドでの建築を許可/拒否する"
- - "/ws toggletp &8- &7ワールドでのテレポートを許可/拒否する"
- - "/ws togglewe &8- &7ワールドでのWorldEditを許可/拒否する"
- - "/ws info &8- &7ワールドに関する情報を表示する"
- - "/ws reset &8- &7ワールドをリセットする"
- delete_command: "/ws delete &8- &7ワールドを削除する"
\ No newline at end of file
diff --git a/target/classes/languages/nl.yml b/target/classes/languages/nl.yml
deleted file mode 100644
index fd25ddd8..00000000
--- a/target/classes/languages/nl.yml
+++ /dev/null
@@ -1,85 +0,0 @@
-nopermission: "&cJij hebt geen rechten om dit te doen!"
-unknown_error: "&cEr is iets verkeerd gegaan.."
-lagdetection: "Lag gededecteerd in wereld: &c%world"
-wrong_usage: "&c%gebruik"
-not_registered: "&cDeze speler heeft nog nooit gejoined!"
-
-world:
- reseted: "Jouw wereld is gereset!"
- still_loaded: "&cJouw wereld is nog steeds geladen!"
- not_on: "&cJij bent niet in een wereld!"
- created: "Jouw wereld is gemaakt gebruik: &a/ws home"
- already_exists: "&cJij hebt al een wereld!"
- delete:
- own: "&cJouw wereld is verwijderd!"
- other: "Jij hebt de wereld verwijderd van: &c%player&6!"
- does_not_exists:
- own: "&cJij hebt nog geen wereld!"
- other: "&cDeze speler heeft nog geen wereld!"
- setting_up: "&aWereld word aangemaakt"
- playerlist: "speler is in wereld: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Jij hebt &c%player&6 verwijderd van jouw wereld!"
- added: "Jij hebt &c%player&6 toegevoegd aan jouw wereld!"
- already_added: "&cDeze speler is al toegevoegd!"
- not_added:
- own: "&cDeze speler is nog niet toegevoegd!"
- other: "&cJij bent niet aan deze wereld toegevoegd"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cJouw uitnodiging is verlopen!"
- confirm: "&cBevestig het verwijderen van jouw wereld: %command"
- until_expire: "&cJouw uitnodiging verloopt over %time seconden!"
- already_sent: "&cJij hebt al een uitnodiging verstuurd!"
- not_sent: "&cJij hebt geen uitnodiging gestuurd!"
- invalid_input: "&c%input is niet een command!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 kan nu zijn spelermodus veranderen!"
- disabled: "&c%player&6 kan niet meer zijn spelermodus veranderen!"
- teleport:
- enabled: "&a%player&6 kan nu teleporteren!"
- disabled: "&c%player&6 kan nu niet meer teleporteren!"
- build:
- enabled: "&a%player&6 kan nu bouwen!"
- disabled: "&c%player&6 kan nu niet meer bouwen!"
- fire:
- enabled: "&aJij hebt vuur geactiveert!"
- disabled: "&cJij hebt vuur gedeactiveerd!"
- tnt:
- enabled: "&aJij hebt TNT-schade geactiveerd!"
- disabled: "&cJij hebt TNT-schade gedeactiveerd!"
-
-info:
- owner: "Owner: %data"
- id: "ID: %data"
- member: "Toegevoegd: %data"
- tnt: "TNT: %data"
- fire: "Vuur: %data"
- enabled: "&Aan"
- disabled: "&cUit"
-
-command_help:
- list:
- - "/ws get &8- &7Will give you a world"
- - "/ws home &8- &7Teleports you on your world"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Opens the GUI menu if you are the worldowner"
- - "/ws tp &8- &7Teleports you on a specific world"
- - "/ws addmember &8- &7Adds a player to your world"
- - "/ws delmember &8- &7Removes a player from your world"
- - "/ws leave &8- &7Leave a world"
- - "/ws tnt &8- &7Allows/Denys TNT on your world"
- - "/ws fire &8- &7Allows/Denys Fire on your world"
- - "/ws togglegm &8- &7Allows/Denys a player changing gamemode"
- - "/ws togglebuild &8- &7Allows/Denys a player building"
- - "/ws toggletp &8- &7Allows/Denys a player teleporting"
- - "/ws info &8- &7Shows information about the world"
- - "/ws reset &8- &7Will reset your world"
- delete_command: "/ws delete &8- &7Will delete a world"
\ No newline at end of file
diff --git a/target/classes/languages/pl.yml b/target/classes/languages/pl.yml
deleted file mode 100644
index 263b4a13..00000000
--- a/target/classes/languages/pl.yml
+++ /dev/null
@@ -1,85 +0,0 @@
-nopermission: "&cNie posiadasz uprawnień do tego!"
-unknown_error: "&cCoś poszło nie tak..."
-lagdetection: "Wykryto laga na świecie: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cTen gracz nie dołączył jeszcze na serwer!"
-
-world:
- reseted: "Twój świat został zresetowany!"
- still_loaded: "&cTwój serwer wciąż się ładuje!"
- not_on: "&cNie jesteś na swoim świecie!"
- created: "Twój świat jest gotowy. Dostań się na niego za pomocą &a/ws home"
- already_exists: "&cJuż posiadasz swój świat!"
- delete:
- own: "&cTwój świat został skasowany!"
- other: "Usunąłeś świat gracza: &c%player&6!"
- does_not_exists:
- own: "&cNie masz swojego świata!"
- other: "&cTen gracz nie ma swojego świata!"
- setting_up: "&aUstawianie świata..."
- playerlist: "Gracze na tym świecie: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Usunąłeś &c%player&6 ze swojego świata!"
- added: "Dodałeś &c%player&6 na swój świat!"
- already_added: "&cTen gracz jest już dodany na Twoim świecie!"
- not_added:
- own: "&cTen gracz nie jest dodany do Twojego świata!"
- other: "&cNie jesteś dodany na ten świat!"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cTwoja prośba wygasła!"
- confirm: "&cPotwierdź zresetowanie swojego świata komendą: %command"
- until_expire: "&cTwója prośba wygaśnie za %time sek.!"
- already_sent: "&cJuż wysłałeś prośbę!"
- not_sent: "&cNie wysłałeś prośby!"
- invalid_input: "&c%input nie jest poprawnym argumentem komendy!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 może teraz zmienić swój gamemode!"
- disabled: "&c%player&6 nie może już zmienić swojego gamemode!"
- teleport:
- enabled: "&a%player&6 może teleportować się!"
- disabled: "&c%player&6 nie może teleportować się!"
- build:
- enabled: "&a%player&6 może budować!"
- disabled: "&c%player&6 nie może już budować!"
- fire:
- enabled: "&aWłączyłeś ogień!"
- disabled: "&cWyłączyłeś ogień!"
- tnt:
- enabled: "&aWłączyłeś obrażenia od TNT!"
- disabled: "&cWyłączyłeś obrażenia od TNT!"
-
-info:
- owner: "Właściciel: %data"
- id: "ID: %data"
- member: "Członek: %data"
- tnt: "TNT: %data"
- fire: "Ogień: %data"
- enabled: "&aWłączone"
- disabled: "&cWyłączone"
-
-command_help:
- list:
- - "/ws get &8- &7Tworzy Twój świat"
- - "/ws home &8- &7Teleportuje Cie na Twój świat"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Otwiera GUI świata jeżeli jesteś jego właścicielem"
- - "/ws tp &8- &7Teleportuje Cie na określony świat"
- - "/ws addmember &8- &7Dodaj gracza na swój świat"
- - "/ws delmember &8- &7Usuń gracza ze swojego świata"
- - "/ws leave &8- &7Opuść świat"
- - "/ws tnt &8- &7Zezwól/Odmów TNT na swoim świecie"
- - "/ws fire &8- &7Zezwól/Odmów Ogień na swoim świecie"
- - "/ws togglegm &8- &7Zezwól/Odmów graczowi zmieniać swój gamemode"
- - "/ws togglebuild &8- &7Zezwól/Odmów graczowi budowanie"
- - "/ws toggletp &8- &7Zezwól/Odmów graczowi teleportowanie się"
- - "/ws info &8- &7Pokazuje informacje o świecie"
- - "/ws reset &8- &7Zresetuje Twój świat"
- delete_command: "/ws delete &8- &7Usunie Twój świat"
\ No newline at end of file
diff --git a/target/classes/languages/ru.yml b/target/classes/languages/ru.yml
deleted file mode 100644
index 923922f3..00000000
--- a/target/classes/languages/ru.yml
+++ /dev/null
@@ -1,84 +0,0 @@
-nopermission: "&cУ тебя нет прав!"
-unknown_error: "&cЧего-то не удалось..."
-lagdetection: "Лагов в мире: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&cЭтот игрок играет первый раз га этом сервере"
-
-world:
- reseted: "Твой мир был возвращен!"
- still_loaded: "&cТвой мир ещё загружен!"
- not_on: "&cТебя нету в не каком мире!"
- created: "Твой мир готов. Используй &a/ws home"
- already_exists: "&cТакой мир уже существует!"
- delete:
- own: "&cТвой мир был удален!"
- other: "Мир от &c%player&6 был удален!"
- does_not_exists:
- own: "&cУ тебя нету мира!"
- other: "&cУ этого игрока нету мира!"
- setting_up: "&aПриготовлеваю мир..."
- playerlist: "Игроков в мире: %players"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "Ты удалил &c%player&6 из твоего мира!"
- added: "Ты добавил &c%player&6 к твоему миру!"
- already_added: "&cЭтот игрок уже член твоего мира!"
- not_added:
- own: "&cЭтот игрок не член твоего мира!"
- other: "&cТебя не добавили к этому миру"
- no_one_added: "&cThere are no members added"
-
-request:
- expired: "&cТвой запрос вытек!"
- confirm: "&Подтверди сброс: %command"
- until_expire: "&cТвой запрос вытечет через %time секунды!"
- already_sent: "&cТы уже послал запрос!"
- not_sent: "&cТы не послал запрос!"
- invalid_input: "&c%input не действительный запрос!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 теперь может изменить свой режим игры!"
- disabled: "&c%player&6 не может больше изменить свой режим игры!"
- teleport:
- enabled: "&a%player&6 теперь может телепортироваться!"
- disabled: "&c%player&6 не может больше телепортироваться!"
- build:
- enabled: "&a%player&6 может теперь строить!"
- disabled: "&c%player&6 не может больше строить!"
- fire:
- enabled: "&aОгонь включен!"
- disabled: "&cОгонь отключен"
- tnt:
- enabled: "&aПовреждение через ТНТ включено!"
- disabled: "&cПовреждение через ТНТ отключено!"
-
-info:
- owner: "Владелец: %data"
- id: "ID: %data"
- member: "Члены: %data"
- tnt: "ТНТ: %data"
- fire: "Огонь: %data"
- enabled: "&aВключен"
- disabled: "&cОтключен"
-
-command_help:
- list:
- - "/ws get &8- &7Даст тебе мир"
- - "/ws home &8- &7Телепортирует тебя в твой мир"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7Открывает ГИП если ты владелец этого мира"
- - "/ws tp &8- &7Телепортирует тебя в определенный мир"
- - "/ws addmember &8- &7Добавляет кого-то к твоему миру"
- - "/ws delmember&8 - &7Удаляет кого-то из твоего мира"
- - "/ws tnt &8- &7Разрешает/Запрещает TНT на твоем мире"
- - "/ws fire &8- &7Разрешает/Запрещает огонь в твоем мире"
- - "/ws togglegm &8- &7Разрешает/Запрещает игроку менять режим игры"
- - "/ws togglebuild &8- &7Разрешает/Запрещает игроку строить"
- - "/ws toggletp &8- &7Разрешает/Запрещает игроку телепортироваться"
- - "/ws info &8- &7Показывает информацию про мир"
- - "/ws reset &8- &7Сбрасывает твой мир"
- delete_command: "/ws delete &8- &7Удалает твой мир"
\ No newline at end of file
diff --git a/target/classes/languages/zh.yml b/target/classes/languages/zh.yml
deleted file mode 100644
index 30f852e2..00000000
--- a/target/classes/languages/zh.yml
+++ /dev/null
@@ -1,84 +0,0 @@
-nopermission: "&c你没有权限!"
-unknown_error: "&c出错..."
-lagdetection: "滞后: &c%world"
-wrong_usage: "&c%usage"
-not_registered: "&c该玩家未在线!"
-
-world:
- reseted: "你的世界已重置!"
- still_loaded: "&c你的世界正在加载!"
- not_on: "&c你未在世界里!"
- created: "你的世界已准备就绪,输入 &a/ws home &6前往"
- already_exists: "&c你已拥有一个世界!"
- delete:
- own: "&c你的世界已删除!"
- other: "你删除了 &c%player &6的世界"
- does_not_exists:
- own: "&c你没有世界!"
- other: "&c这个玩家没有世界!"
- setting_up: "&a正在建立世界..."
- playerlist: "玩家: %players 在这个世界上"
- still_creating: "&cWorld is still creating"
- set_home: "You set the home"
- not_enough_money: "You do not have enough money"
-
-member:
- removed: "玩家 &c%player&6 从你的世界移除!"
- added: "你添加 &c%player&6 到你的世界!"
- already_added: "&c这个玩家已经在你的世界里了!"
- not_added:
- own: "&c该玩家未在你的世界里!"
- other: "&c你未加入这个世界"
-
-request:
- expired: "&c确认超时!"
- confirm: "&c请确认,重置你的世界: %command"
- until_expire: "&c请在 %time 秒,内确认!"
- already_sent: "&c你已发送请求!"
- not_sent: "&c你未发送请求!"
- invalid_input: "&c%input 错误!"
-
-toggle:
- gamemode:
- enabled: "&a%player&6 可以改变游戏模式!"
- disabled: "&c%player&6 不能游戏模式!"
- teleport:
- enabled: "&a%player&6 可以传送!"
- disabled: "&c%player&6 不能传送!"
- build:
- enabled: "&a%player&6 可以建筑!"
- disabled: "&c%player&6 不能建筑!"
- fire:
- enabled: "&a你开启了 火!"
- disabled: "&c你禁用了 火!"
- tnt:
- enabled: "&a你开启了 TNT-爆炸!"
- disabled: "&c你禁用了 TNT-爆炸!"
-
-info:
- owner: "管理者: %data"
- id: "ID: %data"
- member: "成员: %data"
- tnt: "TNT: %data"
- fire: "火: %data"
- enabled: "&a开启"
- disabled: "&c关闭"
-
-command_help:
- list:
- - "/ws get &8- &7创建一个世界"
- - "/ws home &8- &7返回你的世界"
- - "/ws sethome &8- &7Sets a specific home"
- - "/ws gui &8- &7如果你是世界管理者,使用该指令打开菜单"
- - "/ws tp &8- &7传送到指定世界"
- - "/ws addmember &8- &7添加一个玩家到你的世界"
- - "/ws delmember &8- &7将一个玩家从你的世界删除"
- - "/ws leave &8- &7离开一个世界"
- - "/ws tnt &8- &7开启/禁用 TNT爆炸"
- - "/ws fire &8- &7开启/禁用,火"
- - "/ws togglegm &8- &7开启/禁用,玩家切换模式"
- - "/ws togglebuild &8- &7开启/禁用,玩家建筑"
- - "/ws toggletp &8- &7开启/禁用,玩家传送"
- - "/ws info &8- &7查看世界信息"
- - "/ws reset &8- &7重置你的世界"
- delete_command: "/ws delete &8- &7删除一个世界"
\ No newline at end of file
diff --git a/target/classes/old_gui.yml b/target/classes/old_gui.yml
deleted file mode 100644
index d3784c98..00000000
--- a/target/classes/old_gui.yml
+++ /dev/null
@@ -1,302 +0,0 @@
-#
-# Config for the GUI "/gui"
-# Counting for rows and columns starts always at 1
-#
-
-options:
- # How the enabled item should look like
- enabled:
- # Material name in the Material enum
- material: INK_SACK
- # Data, how it should look like eg. blue, red, green
- data: 10
- # Displayname
- display: '&aEnabled'
-
- # How the disabled item should look like
- disabled:
- material: INK_SACK
- data: 1
- display: '&cDisabled'
-
- # How the comming-soon item should look like
- coming_soon:
- material: INK_SACK
- data: 14
- display: '&6Coming soon...'
-
- # How the back item should look like
- back:
- material: BARRIER
- display: '&cBack'
-
- # When filling of an inventory is true, how the item should look like
- fill:
- material: STAINED_GLASS_PANE
- data: 7
- display: ''
-
- # WorldoptionsGUI
- world:
- fill: false
- # What the title of the Inv should be
- title: 'World Options'
-
- # Rows
- rows: 3
-
- # Where the back item should be
- back:
- enabled: true
- slot:
- row: 3
- col: 5
-
- # Reset button
- reset:
- # If feature should be enabled or not
- enabled: true
- slot:
- row: 1
- col: 8
- material: DIAMOND_HOE
- data: 0
- display: '&eReset World'
-
- # Fire button
- fire:
- enabled: true
- slot:
- row: 1
- col: 2
- # Where the state item should be
- state:
- row: 2
- col: 2
- material: FLINT_AND_STEEL
- display: '&eToggle Fire'
-
- # TNT button
- tnt:
- enabled: true
- slot:
- row: 1
- col: 5
- state:
- row: 2
- col: 5
- material: TNT
- display: '&eToggle TNT-Explosion'
-
- players:
- title: 'Players added to this world'
-
- back:
- enabled: true
- slot:
- row: 6
- col: 6
-
- rows: 6
-
- nextpage:
- enabled: true
- slot:
- row: 6
- col: 8
- material: PAPER
- display: '&eNext Page'
- pagebefore:
- enabled: true
- slot:
- row: 6
- col: 2
- material: PAPER
- display: '&ePage before'
- currentpage:
- enabled: true
- slot:
- row: 6
- col: 4
- material: DOUBLE_PLANT
- display: '&eCurrent page: &a%page'
- player_list_to_row: 4
- playerhead:
- material: SKULL_ITEM
- display: '&e%player'
-
- # PlayerGUI for managing one player on a world
- player:
- fill: false
- title: 'Player options for %player'
-
- back:
- enabled: true
- slot:
- row: 3
- col: 5
-
- rows: 3
-
- build:
- enabled: true
- slot:
- row: 1
- col: 1
- state:
- row: 2
- col: 1
- material: GOLD_AXE
- display: '&eToggle Build-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To build on this world'
- gamemode:
- enabled: true
- slot:
- row: 1
- col: 2
- state:
- row: 2
- col: 2
- material: END_CRYSTAL
- display: '&eToggle GameMode-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To change the GameMode on this world'
- teleport:
- enabled: true
- slot:
- row: 1
- col: 3
- state:
- row: 2
- col: 3
- material: COMPASS
- display: '&eToggle Teleport-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To teleport on this world'
- worldedit:
- enabled: true
- slot:
- row: 1
- col: 4
- state:
- row: 2
- col: 4
- material: WOOD_AXE
- display: '&eToggle WorldEdit-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To use WorldEdit on this world'
- addmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 399
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To add a member to this world'
- delmember:
- enabled: false
- slot:
- row: 1
- col: 6
- state:
- row: 2
- col: 6
- material: 286
- display: '&eToggle Delmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To remove a member from this world'
- setpermissions:
- enabled: false
- slot:
- row: 1
- col: 8
- state:
- row: 2
- col: 8
- material: 331
- display: '&eToggle Setpermissions-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To set permissions for a member of this world'
- administrateworld:
- enabled: false
- slot:
- row: 1
- col: 9
- state:
- row: 2
- col: 9
- material: 421
- display: '&eToggle Addmember-Permission'
- lore:
- - '&7Toggles the permission for a player'
- - '&7To adminstrate this world'
-
-# WorldsystemGUI
-worldsystem:
- fill: false
- title: 'WorldSystem'
-
- rows: 1
-
- back:
- enabled: true
- slot:
- row: 1
- col: 5
-
- playeroptions:
- enabled: true
- slot:
- row: 1
- col: 1
- material: LEATHER_HELMET
- display: '&ePlayer Options'
- worldoptions:
- enabled: true
- slot:
- row: 1
- col: 9
- material: GRASS
- display: '&eWorld Options'
-
-# GUI for choosing world template
-worldchoose:
- fill: false
- title: 'Choose world template'
-
- back:
- enabled: true
- slot:
- row: 4
- col: 5
-
- rows: 4
-
- # The key must be named exactly as in the config.yml
- template_default:
- enabled: true
- slot:
- row: 2
- col: 3
- material: GRASS
- display: '&aDefault template'
-
- another_template:
- enabled: true
- slot:
- row: 2
- col: 7
- material: STONE
- display: '&aAnother template'
\ No newline at end of file
diff --git a/target/classes/plugin.yml b/target/classes/plugin.yml
deleted file mode 100644
index 060d4ff4..00000000
--- a/target/classes/plugin.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: WorldSystem
-main: de.butzlabben.world.WorldSystem
-authors: [ Trainerlord, CrazyCloudCraft ]
-version: ${version}
-description: ${description}
-api-version: 1.13
-depend: [ WorldEdit ]
-softdepend: [ PlaceholderAPI ]
-commands:
- ws:
- description: WorldSystem command
-permissions:
- ws.*:
- default: op
- description: Grants all /worldsystem subcommands
- children:
- ws.tp.*: true
- ws.get: true
- ws.sethome: true
- ws.build: true
- ws.gamemode: true
- ws.delete: true
- ws.lag: true
- ws.big: true
- ws.large: true
- ws.tp.*:
- default: op
- description: Grants all /worldsystem tp subcommands
- children:
- ws.tp.world: true
- ws.tp.toother: true
- ws.tp.other: true
diff --git a/target/classes/settings.yml b/target/classes/settings.yml
deleted file mode 100644
index f97c8426..00000000
--- a/target/classes/settings.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-# Center will be at the spawn or the worldspawn
-worldborder:
- # If WorldSystem should change the worldborder
- should_change: true
- # Default size
- normal: 500
- # Here you can define your own ranks, as many as you want
- # The permission node will be the key and the value the size
- ranks:
- # For example, with the permission ws.big you will get a worldborder with the size 1000
- ws.big: 1000
- ws.bigger: 1500
-
- # Set a specialized center which is not the spawn
- center:
- as_spawn: true
- # Should the worldborder move with the home set by the owner
- as_home: false
- x: 0
- y: 20
- z: 0
-
-difficulty: EASY
-
-
-# Commands that should be executed on /ws get when it is ready
-# Placeholders: %player: Name of player, %world: Name of world, %uuid: UUID of player
-commands_on_get:
-#- tell %player You have got a world
-#- tell %player You are now on %world
-
-
-# All Gamerules in 1.12
-# Not supported gamerules will be ignored
-#
-# If you need help, look at
-# https://minecraft.gamepedia.com/Commands/gamerule
-
-announceAdvancements: true
-commandBlockOutput: false
-disableElytraMovementCheck: false
-doDaylightCycle: true
-doEntityDrops: true
-doFireTick: true
-doLimitedCrafting: false
-doMobLoot: true
-doMobSpawning: true
-doTileDrops: true
-doWeatherCycle: false
-gameLoopFunction: false
-keepInventory: true
-logAdminCommands: true
-maxCommandChainLength: 65536
-maxEntityCramming: 24
-mobGriefing: true
-naturalRegeneration: true
-randomTickSpeed: 3
-reducedDebugInfo: false
-sendCommandFeedback: true
-showDeathMessages: true
-spawnRadius: 10
-spectatorsGenerateChunks: true
\ No newline at end of file
diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties
deleted file mode 100644
index b7aee7dd..00000000
--- a/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-artifactId=WorldSystem
-groupId=de.butzlabben
-version=2.5.0-build-sqlite-dev
diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted file mode 100644
index 7e5eb777..00000000
--- a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
+++ /dev/null
@@ -1,81 +0,0 @@
-de/butzlabben/world/config/MessageConfig.class
-de/butzlabben/world/gui/playeroption/BuildStatus.class
-de/butzlabben/inventory/OrcInventory.class
-de/butzlabben/world/util/MoneyUtil.class
-de/butzlabben/world/wrapper/CreatorAdapter.class
-de/butzlabben/world/gui/playeroption/WorldEditStatus.class
-de/butzlabben/world/util/database/SqliteConnection.class
-de/butzlabben/inventory/DependListener.class
-de/butzlabben/world/listener/WorldInitSkipSpawn.class
-de/butzlabben/world/event/WorldAddmemberEvent.class
-de/butzlabben/world/gui/clicklistener/CommandExecutorClickListener.class
-de/butzlabben/world/config/WorldConfig.class
-de/butzlabben/world/listener/WorldEditListener.class
-de/butzlabben/world/listener/BlockListener.class
-de/butzlabben/world/command/commands/WorldSettingsCommands.class
-de/butzlabben/world/gui/worldoption/FireStatus.class
-de/butzlabben/world/gui/PlayersPageGUI.class
-de/butzlabben/world/gui/playeroption/GamemodeStatus.class
-de/butzlabben/world/wrapper/WorldPlayer.class
-de/butzlabben/world/wrapper/SystemWorld$2.class
-de/butzlabben/world/gui/worldoption/TntStatus.class
-de/butzlabben/world/util/database/DatabaseUtil.class
-de/butzlabben/world/GCRunnable.class
-de/butzlabben/world/util/PlayerPositions.class
-de/butzlabben/world/listener/PlayerListener.class
-de/butzlabben/world/GameProfileBuilder$CachedProfile.class
-de/butzlabben/world/event/WorldToggleFireEvent.class
-de/butzlabben/world/command/commands/WorldAdministrateCommand.class
-de/butzlabben/world/WorldSystem.class
-de/butzlabben/world/util/PlayerWrapper.class
-de/butzlabben/world/util/PapiExtension.class
-de/butzlabben/world/wrapper/WorldTemplate.class
-de/butzlabben/inventory/OrcListener.class
-de/butzlabben/inventory/OrcItem.class
-de/butzlabben/world/config/SettingsConfig.class
-de/butzlabben/world/util/database/DatabaseConnection.class
-de/butzlabben/world/gui/playeroption/TeleportStatus.class
-de/butzlabben/world/event/WorldToggleTntEvent.class
-de/butzlabben/world/event/WorldCreateEvent.class
-de/butzlabben/WorldSystem/data/PlayerWorld.class
-de/butzlabben/world/util/VersionUtil.class
-de/butzlabben/world/event/WorldRemovememberEvent.class
-de/butzlabben/world/event/WorldResetEvent.class
-de/butzlabben/inventory/OrcClickListener.class
-de/butzlabben/world/GameProfileBuilder$GameProfileSerializer.class
-de/butzlabben/world/command/CommandRegistry.class
-de/butzlabben/world/wrapper/SystemWorld.class
-de/butzlabben/world/util/database/MysqlConnection.class
-de/butzlabben/world/gui/WorldChooseGUI.class
-de/butzlabben/world/listener/CommandListener.class
-de/butzlabben/world/util/database/DatabaseProvider.class
-de/butzlabben/world/gui/PlayerOptionsGUI.class
-de/butzlabben/inventory/CostumInv.class
-de/butzlabben/world/gui/WorldSystemGUI.class
-de/butzlabben/world/config/PluginConfig.class
-de/butzlabben/world/wrapper/SystemWorld$1.class
-de/butzlabben/world/config/WorldPerm.class
-de/butzlabben/world/util/TeleportUtil.class
-de/butzlabben/WorldSystem/data/SqlLiteDatabase.class
-de/butzlabben/world/util/Worldutils.class
-de/butzlabben/world/wrapper/WorldTemplateProvider.class
-de/butzlabben/inventory/pages/InventoryPage.class
-de/butzlabben/world/gui/WorldOptionsGUI.class
-de/butzlabben/world/config/GuiConfig.class
-de/butzlabben/world/event/WorldUnloadEvent.class
-de/butzlabben/world/event/WorldDeleteEvent.class
-de/butzlabben/world/GameProfileBuilder.class
-de/butzlabben/world/gui/clicklistener/InventoryOpenClickListener.class
-de/butzlabben/world/wrapper/SystemWorld$1$1.class
-de/butzlabben/world/WorldCheckerRunnable.class
-de/butzlabben/world/event/WorldEvent.class
-de/butzlabben/world/wrapper/GeneratorSettings.class
-de/butzlabben/world/command/commands/WSCommands.class
-de/butzlabben/WorldSystem/data/WorldSystemData.class
-de/butzlabben/world/config/Entry.class
-de/butzlabben/world/gui/clicklistener/ComingSoonClickListener.class
-de/butzlabben/world/config/DependenceConfig.class
-de/butzlabben/inventory/pages/PageGUICreator.class
-de/butzlabben/world/event/WorldLoadEvent.class
-de/butzlabben/world/gui/GuiCommand.class
-de/butzlabben/inventory/pages/ItemConverter.class
diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
deleted file mode 100644
index b60c1643..00000000
--- a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
+++ /dev/null
@@ -1,77 +0,0 @@
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/database/DatabaseProvider.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/database/SqliteConnection.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/config/SettingsConfig.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/database/DatabaseUtil.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/pages/InventoryPage.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/OrcInventory.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/TeleportUtil.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/DependListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/WorldSystem/data/WorldSystemData.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/database/DatabaseConnection.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/playeroption/BuildStatus.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/GuiCommand.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/command/CommandRegistry.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/command/commands/WorldSettingsCommands.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/config/MessageConfig.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/wrapper/GeneratorSettings.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldResetEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/WorldOptionsGUI.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/wrapper/CreatorAdapter.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/config/WorldConfig.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/clicklistener/ComingSoonClickListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/clicklistener/InventoryOpenClickListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/PapiExtension.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/worldoption/TntStatus.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/VersionUtil.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldLoadEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/wrapper/WorldTemplate.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/CostumInv.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/Worldutils.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/config/PluginConfig.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/listener/WorldEditListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/OrcClickListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/PlayerWrapper.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/WorldChooseGUI.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/playeroption/WorldEditStatus.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldToggleTntEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/listener/PlayerListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldDeleteEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldAddmemberEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/WorldSystemGUI.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldCreateEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/config/Entry.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/GCRunnable.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/PlayersPageGUI.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/command/commands/WorldAdministrateCommand.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/playeroption/GamemodeStatus.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/wrapper/SystemWorld.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldToggleFireEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/OrcListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/wrapper/AsyncCreatorAdapter.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/WorldSystem.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/config/GuiConfig.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/WorldCheckerRunnable.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/WorldSystem/data/SqlLiteDatabase.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/MoneyUtil.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/OrcItem.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/PlayerPositions.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/pages/ItemConverter.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/listener/BlockListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/command/commands/WSCommands.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/wrapper/WorldTemplateProvider.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/inventory/pages/PageGUICreator.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/config/WorldPerm.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/clicklistener/CommandExecutorClickListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/wrapper/WorldPlayer.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/util/database/MysqlConnection.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/worldoption/FireStatus.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/config/DependenceConfig.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldRemovememberEvent.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/listener/WorldInitSkipSpawn.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/GameProfileBuilder.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/listener/CommandListener.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/playeroption/TeleportStatus.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/gui/PlayerOptionsGUI.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/WorldSystem/data/PlayerWorld.java
-/home/daniel/Software Development/WorldSystem/src/main/java/de/butzlabben/world/event/WorldUnloadEvent.java
diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
deleted file mode 100644
index e69de29b..00000000
diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
deleted file mode 100644
index e69de29b..00000000
diff --git a/yarn.lock b/yarn.lock
deleted file mode 100644
index a34c66e2..00000000
--- a/yarn.lock
+++ /dev/null
@@ -1,4524 +0,0 @@
-# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-# yarn lockfile v1
-
-
-"@babel/code-frame@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
- integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
- dependencies:
- "@babel/highlight" "^7.8.3"
-
-"@babel/helper-validator-identifier@^7.9.0":
- version "7.9.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80"
- integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==
-
-"@babel/highlight@^7.8.3":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079"
- integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==
- dependencies:
- "@babel/helper-validator-identifier" "^7.9.0"
- chalk "^2.0.0"
- js-tokens "^4.0.0"
-
-"@babel/runtime@^7.11.2":
- version "7.11.2"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
- integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==
- dependencies:
- regenerator-runtime "^0.13.4"
-
-"@colors/colors@1.5.0":
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
- integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
-
-"@commitlint/cli@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-11.0.0.tgz#698199bc52afed50aa28169237758fa14a67b5d3"
- integrity sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==
- dependencies:
- "@babel/runtime" "^7.11.2"
- "@commitlint/format" "^11.0.0"
- "@commitlint/lint" "^11.0.0"
- "@commitlint/load" "^11.0.0"
- "@commitlint/read" "^11.0.0"
- chalk "4.1.0"
- core-js "^3.6.1"
- get-stdin "8.0.0"
- lodash "^4.17.19"
- resolve-from "5.0.0"
- resolve-global "1.0.0"
- yargs "^15.1.0"
-
-"@commitlint/ensure@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-11.0.0.tgz#3e796b968ab5b72bc6f8a6040076406306c987fb"
- integrity sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==
- dependencies:
- "@commitlint/types" "^11.0.0"
- lodash "^4.17.19"
-
-"@commitlint/execute-rule@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz#3ed60ab7a33019e58d90e2d891b75d7df77b4b4d"
- integrity sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==
-
-"@commitlint/format@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-11.0.0.tgz#ac47b0b9ca46540c0082c721b290794e67bdc51b"
- integrity sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==
- dependencies:
- "@commitlint/types" "^11.0.0"
- chalk "^4.0.0"
-
-"@commitlint/is-ignored@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-11.0.0.tgz#7b803eda56276dbe7fec51eb1510676198468f39"
- integrity sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==
- dependencies:
- "@commitlint/types" "^11.0.0"
- semver "7.3.2"
-
-"@commitlint/lint@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-11.0.0.tgz#01e062cd1b0e7c3d756aa2c246462e0b6a3348a4"
- integrity sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==
- dependencies:
- "@commitlint/is-ignored" "^11.0.0"
- "@commitlint/parse" "^11.0.0"
- "@commitlint/rules" "^11.0.0"
- "@commitlint/types" "^11.0.0"
-
-"@commitlint/load@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-11.0.0.tgz#f736562f0ffa7e773f8808fea93319042ee18211"
- integrity sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==
- dependencies:
- "@commitlint/execute-rule" "^11.0.0"
- "@commitlint/resolve-extends" "^11.0.0"
- "@commitlint/types" "^11.0.0"
- chalk "4.1.0"
- cosmiconfig "^7.0.0"
- lodash "^4.17.19"
- resolve-from "^5.0.0"
-
-"@commitlint/message@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-11.0.0.tgz#83554c3cbbc884fd07b473593bc3e94bcaa3ee05"
- integrity sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==
-
-"@commitlint/parse@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-11.0.0.tgz#d18b08cf67c35d02115207d7009306a2e8e7c901"
- integrity sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==
- dependencies:
- conventional-changelog-angular "^5.0.0"
- conventional-commits-parser "^3.0.0"
-
-"@commitlint/read@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-11.0.0.tgz#f24240548c63587bba139fa5a364cab926077016"
- integrity sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==
- dependencies:
- "@commitlint/top-level" "^11.0.0"
- fs-extra "^9.0.0"
- git-raw-commits "^2.0.0"
-
-"@commitlint/resolve-extends@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz#158ecbe27d4a2a51d426111a01478e216fbb1036"
- integrity sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==
- dependencies:
- import-fresh "^3.0.0"
- lodash "^4.17.19"
- resolve-from "^5.0.0"
- resolve-global "^1.0.0"
-
-"@commitlint/rules@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-11.0.0.tgz#bdb310cc6fc55c9f8d7d917a22b69055c535c375"
- integrity sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==
- dependencies:
- "@commitlint/ensure" "^11.0.0"
- "@commitlint/message" "^11.0.0"
- "@commitlint/to-lines" "^11.0.0"
- "@commitlint/types" "^11.0.0"
-
-"@commitlint/to-lines@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-11.0.0.tgz#86dea151c10eea41e39ea96fa4de07839258a7fe"
- integrity sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==
-
-"@commitlint/top-level@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-11.0.0.tgz#bb2d1b6e5ed3be56874633b59e1f7de118c32783"
- integrity sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==
- dependencies:
- find-up "^5.0.0"
-
-"@commitlint/types@^11.0.0":
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-11.0.0.tgz#719cf05fcc1abb6533610a2e0f5dd1e61eac14fe"
- integrity sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==
-
-"@gar/promisify@^1.1.3":
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
- integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
-
-"@isaacs/string-locale-compare@^1.1.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b"
- integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==
-
-"@nodelib/fs.scandir@2.1.3":
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b"
- integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==
- dependencies:
- "@nodelib/fs.stat" "2.0.3"
- run-parallel "^1.1.9"
-
-"@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3"
- integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==
-
-"@nodelib/fs.walk@^1.2.3":
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976"
- integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==
- dependencies:
- "@nodelib/fs.scandir" "2.1.3"
- fastq "^1.6.0"
-
-"@npmcli/arborist@^5.0.0", "@npmcli/arborist@^5.0.4":
- version "5.3.0"
- resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-5.3.0.tgz#321d9424677bfc08569e98a5ac445ee781f32053"
- integrity sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==
- dependencies:
- "@isaacs/string-locale-compare" "^1.1.0"
- "@npmcli/installed-package-contents" "^1.0.7"
- "@npmcli/map-workspaces" "^2.0.3"
- "@npmcli/metavuln-calculator" "^3.0.1"
- "@npmcli/move-file" "^2.0.0"
- "@npmcli/name-from-folder" "^1.0.1"
- "@npmcli/node-gyp" "^2.0.0"
- "@npmcli/package-json" "^2.0.0"
- "@npmcli/run-script" "^4.1.3"
- bin-links "^3.0.0"
- cacache "^16.0.6"
- common-ancestor-path "^1.0.1"
- json-parse-even-better-errors "^2.3.1"
- json-stringify-nice "^1.1.4"
- mkdirp "^1.0.4"
- mkdirp-infer-owner "^2.0.0"
- nopt "^5.0.0"
- npm-install-checks "^5.0.0"
- npm-package-arg "^9.0.0"
- npm-pick-manifest "^7.0.0"
- npm-registry-fetch "^13.0.0"
- npmlog "^6.0.2"
- pacote "^13.6.1"
- parse-conflict-json "^2.0.1"
- proc-log "^2.0.0"
- promise-all-reject-late "^1.0.0"
- promise-call-limit "^1.0.1"
- read-package-json-fast "^2.0.2"
- readdir-scoped-modules "^1.1.0"
- rimraf "^3.0.2"
- semver "^7.3.7"
- ssri "^9.0.0"
- treeverse "^2.0.0"
- walk-up-path "^1.0.0"
-
-"@npmcli/ci-detect@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/ci-detect/-/ci-detect-2.0.0.tgz#e63c91bcd4185ac1e85720a34fc48e164ece5b89"
- integrity sha512-8yQtQ9ArHh/TzdUDKQwEvwCgpDuhSWTDAbiKMl3854PcT+Dk4UmWaiawuFTLy9n5twzXOBXVflWe+90/ffXQrA==
-
-"@npmcli/config@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-4.1.0.tgz#5c92e5ded2a44baf76b94926646329c3b39e79b8"
- integrity sha512-cPQmIQ2Q0vuOfrenrA3isikdMFMAHgzlXV+EmvZ8f2JeJsU5xTU2bG7ipXECiMvPF9nM+QDnMLuIg8QLw9H4xg==
- dependencies:
- "@npmcli/map-workspaces" "^2.0.2"
- ini "^3.0.0"
- mkdirp-infer-owner "^2.0.0"
- nopt "^5.0.0"
- proc-log "^2.0.0"
- read-package-json-fast "^2.0.3"
- semver "^7.3.5"
- walk-up-path "^1.0.0"
-
-"@npmcli/disparity-colors@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/disparity-colors/-/disparity-colors-2.0.0.tgz#cb518166ee21573b96241a3613fef70acb2a60ba"
- integrity sha512-FFXGrIjhvd2qSZ8iS0yDvbI7nbjdyT2VNO7wotosjYZM2p2r8PN3B7Om3M5NO9KqW/OVzfzLB3L0V5Vo5QXC7A==
- dependencies:
- ansi-styles "^4.3.0"
-
-"@npmcli/fs@^2.1.0":
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.0.tgz#f2a21c28386e299d1a9fae8051d35ad180e33109"
- integrity sha512-DmfBvNXGaetMxj9LTp8NAN9vEidXURrf5ZTslQzEAi/6GbW+4yjaLFQc6Tue5cpZ9Frlk4OBo/Snf1Bh/S7qTQ==
- dependencies:
- "@gar/promisify" "^1.1.3"
- semver "^7.3.5"
-
-"@npmcli/git@^3.0.0":
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-3.0.1.tgz#049b99b1381a2ddf7dc56ba3e91eaf76ca803a8d"
- integrity sha512-UU85F/T+F1oVn3IsB/L6k9zXIMpXBuUBE25QDH0SsURwT6IOBqkC7M16uqo2vVZIyji3X1K4XH9luip7YekH1A==
- dependencies:
- "@npmcli/promise-spawn" "^3.0.0"
- lru-cache "^7.4.4"
- mkdirp "^1.0.4"
- npm-pick-manifest "^7.0.0"
- proc-log "^2.0.0"
- promise-inflight "^1.0.1"
- promise-retry "^2.0.1"
- semver "^7.3.5"
- which "^2.0.2"
-
-"@npmcli/installed-package-contents@^1.0.7":
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz#ab7408c6147911b970a8abe261ce512232a3f4fa"
- integrity sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==
- dependencies:
- npm-bundled "^1.1.1"
- npm-normalize-package-bin "^1.0.1"
-
-"@npmcli/map-workspaces@^2.0.2", "@npmcli/map-workspaces@^2.0.3":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-2.0.3.tgz#2d3c75119ee53246e9aa75bc469a55281cd5f08f"
- integrity sha512-X6suAun5QyupNM8iHkNPh0AHdRC2rb1W+MTdMvvA/2ixgmqZwlq5cGUBgmKHUHT2LgrkKJMAXbfAoTxOigpK8Q==
- dependencies:
- "@npmcli/name-from-folder" "^1.0.1"
- glob "^8.0.1"
- minimatch "^5.0.1"
- read-package-json-fast "^2.0.3"
-
-"@npmcli/metavuln-calculator@^3.0.1":
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/@npmcli/metavuln-calculator/-/metavuln-calculator-3.1.1.tgz#9359bd72b400f8353f6a28a25c8457b562602622"
- integrity sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==
- dependencies:
- cacache "^16.0.0"
- json-parse-even-better-errors "^2.3.1"
- pacote "^13.0.3"
- semver "^7.3.5"
-
-"@npmcli/move-file@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.0.tgz#417f585016081a0184cef3e38902cd917a9bbd02"
- integrity sha512-UR6D5f4KEGWJV6BGPH3Qb2EtgH+t+1XQ1Tt85c7qicN6cezzuHPdZwwAxqZr4JLtnQu0LZsTza/5gmNmSl8XLg==
- dependencies:
- mkdirp "^1.0.4"
- rimraf "^3.0.2"
-
-"@npmcli/name-from-folder@^1.0.1":
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz#77ecd0a4fcb772ba6fe927e2e2e155fbec2e6b1a"
- integrity sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==
-
-"@npmcli/node-gyp@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-2.0.0.tgz#8c20e53e34e9078d18815c1d2dda6f2420d75e35"
- integrity sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==
-
-"@npmcli/package-json@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-2.0.0.tgz#3bbcf4677e21055adbe673d9f08c9f9cde942e4a"
- integrity sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==
- dependencies:
- json-parse-even-better-errors "^2.3.1"
-
-"@npmcli/promise-spawn@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-3.0.0.tgz#53283b5f18f855c6925f23c24e67c911501ef573"
- integrity sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==
- dependencies:
- infer-owner "^1.0.4"
-
-"@npmcli/run-script@^4.1.0", "@npmcli/run-script@^4.1.3", "@npmcli/run-script@^4.1.7":
- version "4.1.7"
- resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-4.1.7.tgz#b1a2f57568eb738e45e9ea3123fb054b400a86f7"
- integrity sha512-WXr/MyM4tpKA4BotB81NccGAv8B48lNH0gRoILucbcAhTQXLCoi6HflMV3KdXubIqvP9SuLsFn68Z7r4jl+ppw==
- dependencies:
- "@npmcli/node-gyp" "^2.0.0"
- "@npmcli/promise-spawn" "^3.0.0"
- node-gyp "^9.0.0"
- read-package-json-fast "^2.0.3"
- which "^2.0.2"
-
-"@octokit/auth-token@^2.4.0":
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.0.tgz#b64178975218b99e4dfe948253f0673cbbb59d9f"
- integrity sha512-eoOVMjILna7FVQf96iWc3+ZtE/ZT6y8ob8ZzcqKY1ibSQCnu4O/B7pJvzMx5cyZ/RjAff6DAdEb0O0Cjcxidkg==
- dependencies:
- "@octokit/types" "^2.0.0"
-
-"@octokit/auth-token@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.0.tgz#6f22c5fc56445c496628488ba6810131558fa4a9"
- integrity sha512-MDNFUBcJIptB9At7HiV7VCvU3NcL4GnfCQaP8C5lrxWrRPMJBnemYtehaKSOlaM7AYxeRyj9etenu8LVpSpVaQ==
- dependencies:
- "@octokit/types" "^6.0.3"
-
-"@octokit/core@^2.4.3":
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/@octokit/core/-/core-2.5.0.tgz#4706258893a7ac6ab35d58d2fb9f2d2ba19a41a5"
- integrity sha512-uvzmkemQrBgD8xuGbjhxzJN1darJk9L2cS+M99cHrDG2jlSVpxNJVhoV86cXdYBqdHCc9Z995uLCczaaHIYA6Q==
- dependencies:
- "@octokit/auth-token" "^2.4.0"
- "@octokit/graphql" "^4.3.1"
- "@octokit/request" "^5.4.0"
- "@octokit/types" "^2.0.0"
- before-after-hook "^2.1.0"
- universal-user-agent "^5.0.0"
-
-"@octokit/core@^4.0.0":
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.0.4.tgz#335d9b377691e3264ce57a9e5a1f6cda783e5838"
- integrity sha512-sUpR/hc4Gc7K34o60bWC7WUH6Q7T6ftZ2dUmepSyJr9PRF76/qqkWjE2SOEzCqLA5W83SaISymwKtxks+96hPQ==
- dependencies:
- "@octokit/auth-token" "^3.0.0"
- "@octokit/graphql" "^5.0.0"
- "@octokit/request" "^6.0.0"
- "@octokit/request-error" "^3.0.0"
- "@octokit/types" "^6.0.3"
- before-after-hook "^2.2.0"
- universal-user-agent "^6.0.0"
-
-"@octokit/endpoint@^6.0.1":
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.1.tgz#16d5c0e7a83e3a644d1ddbe8cded6c3d038d31d7"
- integrity sha512-pOPHaSz57SFT/m3R5P8MUu4wLPszokn5pXcB/pzavLTQf2jbU+6iayTvzaY6/BiotuRS0qyEUkx3QglT4U958A==
- dependencies:
- "@octokit/types" "^2.11.1"
- is-plain-object "^3.0.0"
- universal-user-agent "^5.0.0"
-
-"@octokit/endpoint@^7.0.0":
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.0.tgz#be758a1236d68d6bbb505e686dd50881c327a519"
- integrity sha512-Kz/mIkOTjs9rV50hf/JK9pIDl4aGwAtT8pry6Rpy+hVXkAPhXanNQRxMoq6AeRgDCZR6t/A1zKniY2V1YhrzlQ==
- dependencies:
- "@octokit/types" "^6.0.3"
- is-plain-object "^5.0.0"
- universal-user-agent "^6.0.0"
-
-"@octokit/graphql@^4.3.1":
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.4.0.tgz#4540b48bbf796b837b311ba6ea5104760db530ca"
- integrity sha512-Du3hAaSROQ8EatmYoSAJjzAz3t79t9Opj/WY1zUgxVUGfIKn0AEjg+hlOLscF6fv6i/4y/CeUvsWgIfwMkTccw==
- dependencies:
- "@octokit/request" "^5.3.0"
- "@octokit/types" "^2.0.0"
- universal-user-agent "^5.0.0"
-
-"@octokit/graphql@^5.0.0":
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.0.tgz#2cc6eb3bf8e0278656df1a7d0ca0d7591599e3b3"
- integrity sha512-1ZZ8tX4lUEcLPvHagfIVu5S2xpHYXAmgN0+95eAOPoaVPzCfUXJtA5vASafcpWcO86ze0Pzn30TAx72aB2aguQ==
- dependencies:
- "@octokit/request" "^6.0.0"
- "@octokit/types" "^6.0.3"
- universal-user-agent "^6.0.0"
-
-"@octokit/openapi-types@^12.10.0":
- version "12.10.0"
- resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.10.0.tgz#60b27456e2e750dae9925ed248b9daad12a12c5c"
- integrity sha512-xsgA7LKuQ/2QReMZQXNlBP68ferPlqw66Jmx5/J399Cn5EgIDaHXou6Rgn1GkpDNjkPji67fTlC2rz6ABaVFKw==
-
-"@octokit/plugin-paginate-rest@^2.2.0":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.2.0.tgz#9ae0c14c1b90ec0d96d2ef1b44706b4505a91cee"
- integrity sha512-KoNxC3PLNar8UJwR+1VMQOw2IoOrrFdo5YOiDKnBhpVbKpw+zkBKNMNKwM44UWL25Vkn0Sl3nYIEGKY+gW5ebw==
- dependencies:
- "@octokit/types" "^2.12.1"
-
-"@octokit/plugin-paginate-rest@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-3.0.0.tgz#df779de686aeb21b5e776e4318defc33b0418566"
- integrity sha512-fvw0Q5IXnn60D32sKeLIxgXCEZ7BTSAjJd8cFAE6QU5qUp0xo7LjFUjjX1J5D7HgN355CN4EXE4+Q1/96JaNUA==
- dependencies:
- "@octokit/types" "^6.39.0"
-
-"@octokit/plugin-request-log@^1.0.0":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz#eef87a431300f6148c39a7f75f8cfeb218b2547e"
- integrity sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==
-
-"@octokit/plugin-request-log@^1.0.4":
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85"
- integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==
-
-"@octokit/plugin-rest-endpoint-methods@3.10.0":
- version "3.10.0"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.10.0.tgz#47f780d69192e45f09f71ded76f0b121b40e2d48"
- integrity sha512-Z2DBsdnkWKuVBVFiLoEUKP/82ylH4Ij5F1Mss106hnQYXTxDfCWAyHW+hJ6ophuHVJ9Flaaue3fYn4CggzkHTg==
- dependencies:
- "@octokit/types" "^2.14.0"
- deprecation "^2.3.1"
-
-"@octokit/plugin-rest-endpoint-methods@^6.0.0":
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-6.1.0.tgz#64804122e6bb93d4165a56cdcfc8bab1143d3d9f"
- integrity sha512-gP/yHUY0k/uKkEqXF6tZGRhCFqZNjQ0qdh9/gVo74AJ2pc3cr1rjnW/KRw1uXUKB/H9Y0rRBCBxsLXJmQjPv3A==
- dependencies:
- "@octokit/types" "^6.40.0"
- deprecation "^2.3.1"
-
-"@octokit/request-error@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.0.0.tgz#94ca7293373654400fbb2995f377f9473e00834b"
- integrity sha512-rtYicB4Absc60rUv74Rjpzek84UbVHGHJRu4fNVlZ1mCcyUPPuzFfG9Rn6sjHrd95DEsmjSt1Axlc699ZlbDkw==
- dependencies:
- "@octokit/types" "^2.0.0"
- deprecation "^2.0.0"
- once "^1.4.0"
-
-"@octokit/request-error@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.0.tgz#f527d178f115a3b62d76ce4804dd5bdbc0270a81"
- integrity sha512-WBtpzm9lR8z4IHIMtOqr6XwfkGvMOOILNLxsWvDwtzm/n7f5AWuqJTXQXdDtOvPfTDrH4TPhEvW2qMlR4JFA2w==
- dependencies:
- "@octokit/types" "^6.0.3"
- deprecation "^2.0.0"
- once "^1.4.0"
-
-"@octokit/request@^5.3.0", "@octokit/request@^5.4.0":
- version "5.4.2"
- resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.4.2.tgz#74f8e5bbd39dc738a1b127629791f8ad1b3193ee"
- integrity sha512-zKdnGuQ2TQ2vFk9VU8awFT4+EYf92Z/v3OlzRaSh4RIP0H6cvW1BFPXq4XYvNez+TPQjqN+0uSkCYnMFFhcFrw==
- dependencies:
- "@octokit/endpoint" "^6.0.1"
- "@octokit/request-error" "^2.0.0"
- "@octokit/types" "^2.11.1"
- deprecation "^2.0.0"
- is-plain-object "^3.0.0"
- node-fetch "^2.3.0"
- once "^1.4.0"
- universal-user-agent "^5.0.0"
-
-"@octokit/request@^6.0.0":
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.0.tgz#9c25606df84e6f2ccbcc2c58e1d35438e20b688b"
- integrity sha512-7IAmHnaezZrgUqtRShMlByJK33MT9ZDnMRgZjnRrRV9a/jzzFwKGz0vxhFU6i7VMLraYcQ1qmcAOin37Kryq+Q==
- dependencies:
- "@octokit/endpoint" "^7.0.0"
- "@octokit/request-error" "^3.0.0"
- "@octokit/types" "^6.16.1"
- is-plain-object "^5.0.0"
- node-fetch "^2.6.7"
- universal-user-agent "^6.0.0"
-
-"@octokit/rest@^17.0.0":
- version "17.8.0"
- resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-17.8.0.tgz#85da66a98d9f5dfadab079dbb15f6031bd7e5460"
- integrity sha512-m2pdo9+DoEoqQ7wRXV1ihffhE1gbvoC20nvchphluEusbZI6Y9HyXABGiXL+mByy2uUMR2cgBDqBJQQ6bY8Uvg==
- dependencies:
- "@octokit/core" "^2.4.3"
- "@octokit/plugin-paginate-rest" "^2.2.0"
- "@octokit/plugin-request-log" "^1.0.0"
- "@octokit/plugin-rest-endpoint-methods" "3.10.0"
-
-"@octokit/rest@^19.0.0":
- version "19.0.3"
- resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.3.tgz#b9a4e8dc8d53e030d611c053153ee6045f080f02"
- integrity sha512-5arkTsnnRT7/sbI4fqgSJ35KiFaN7zQm0uQiQtivNQLI8RQx8EHwJCajcTUwmaCMNDg7tdCvqAnc7uvHHPxrtQ==
- dependencies:
- "@octokit/core" "^4.0.0"
- "@octokit/plugin-paginate-rest" "^3.0.0"
- "@octokit/plugin-request-log" "^1.0.4"
- "@octokit/plugin-rest-endpoint-methods" "^6.0.0"
-
-"@octokit/types@^2.0.0", "@octokit/types@^2.11.1", "@octokit/types@^2.12.1", "@octokit/types@^2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.14.0.tgz#f5afa004c37193afab66b407b7785a8d7c4f102a"
- integrity sha512-1w2wxpN45rEXPDFeB7rGain7wcJ/aTRg8bdILITVnS0O7a4zEGELa3JmIe+jeLdekQjvZRbVfNPqS+mi5fKCKQ==
- dependencies:
- "@types/node" ">= 8"
-
-"@octokit/types@^6.0.3", "@octokit/types@^6.16.1", "@octokit/types@^6.39.0", "@octokit/types@^6.40.0":
- version "6.40.0"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.40.0.tgz#f2e665196d419e19bb4265603cf904a820505d0e"
- integrity sha512-MFZOU5r8SwgJWDMhrLUSvyJPtVsqA6VnbVI3TNbsmw+Jnvrktzvq2fYES/6RiJA/5Ykdwq4mJmtlYUfW7CGjmw==
- dependencies:
- "@octokit/openapi-types" "^12.10.0"
-
-"@semantic-release/changelog@5.0.1":
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/@semantic-release/changelog/-/changelog-5.0.1.tgz#50a84b63e5d391b7debfe021421589fa2bcdafe4"
- integrity sha512-unvqHo5jk4dvAf2nZ3aw4imrlwQ2I50eVVvq9D47Qc3R+keNqepx1vDYwkjF8guFXnOYaYcR28yrZWno1hFbiw==
- dependencies:
- "@semantic-release/error" "^2.1.0"
- aggregate-error "^3.0.0"
- fs-extra "^9.0.0"
- lodash "^4.17.4"
-
-"@semantic-release/commit-analyzer@8.0.1":
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-8.0.1.tgz#5d2a37cd5a3312da0e3ac05b1ca348bf60b90bca"
- integrity sha512-5bJma/oB7B4MtwUkZC2Bf7O1MHfi4gWe4mA+MIQ3lsEV0b422Bvl1z5HRpplDnMLHH3EXMoRdEng6Ds5wUqA3A==
- dependencies:
- conventional-changelog-angular "^5.0.0"
- conventional-commits-filter "^2.0.0"
- conventional-commits-parser "^3.0.7"
- debug "^4.0.0"
- import-from "^3.0.0"
- lodash "^4.17.4"
- micromatch "^4.0.2"
-
-"@semantic-release/commit-analyzer@^9.0.2":
- version "9.0.2"
- resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-9.0.2.tgz#a78e54f9834193b55f1073fa6258eecc9a545e03"
- integrity sha512-E+dr6L+xIHZkX4zNMe6Rnwg4YQrWNXK+rNsvwOPpdFppvZO1olE2fIgWhv89TkQErygevbjsZFSIxp+u6w2e5g==
- dependencies:
- conventional-changelog-angular "^5.0.0"
- conventional-commits-filter "^2.0.0"
- conventional-commits-parser "^3.2.3"
- debug "^4.0.0"
- import-from "^4.0.0"
- lodash "^4.17.4"
- micromatch "^4.0.2"
-
-"@semantic-release/error@^2.1.0", "@semantic-release/error@^2.2.0":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-2.2.0.tgz#ee9d5a09c9969eade1ec864776aeda5c5cddbbf0"
- integrity sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg==
-
-"@semantic-release/error@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-3.0.0.tgz#30a3b97bbb5844d695eb22f9d3aa40f6a92770c2"
- integrity sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==
-
-"@semantic-release/git@9.0.0":
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/@semantic-release/git/-/git-9.0.0.tgz#304c4883c87d095b1faaae93300f1f1e0466e9a5"
- integrity sha512-AZ4Zha5NAPAciIJH3ipzw/WU9qLAn8ENaoVAhD6srRPxTpTzuV3NhNh14rcAo8Paj9dO+5u4rTKcpetOBluYVw==
- dependencies:
- "@semantic-release/error" "^2.1.0"
- aggregate-error "^3.0.0"
- debug "^4.0.0"
- dir-glob "^3.0.0"
- execa "^4.0.0"
- lodash "^4.17.4"
- micromatch "^4.0.0"
- p-reduce "^2.0.0"
-
-"@semantic-release/github@7.1.1":
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/@semantic-release/github/-/github-7.1.1.tgz#e998aa9a9cd770838d9f27c64f060c2b686b9d95"
- integrity sha512-w8CLCvGVKNe2FPOYQ68OFxFVNNha7YRzptnwTZYdjXYtgTDKw0XVfnMSd9NlJeQPYGfQmIhIVPNBU/cA6zUY0A==
- dependencies:
- "@octokit/rest" "^17.0.0"
- "@semantic-release/error" "^2.2.0"
- aggregate-error "^3.0.0"
- bottleneck "^2.18.1"
- debug "^4.0.0"
- dir-glob "^3.0.0"
- fs-extra "^9.0.0"
- globby "^11.0.0"
- http-proxy-agent "^4.0.0"
- https-proxy-agent "^5.0.0"
- issue-parser "^6.0.0"
- lodash "^4.17.4"
- mime "^2.4.3"
- p-filter "^2.0.0"
- p-retry "^4.0.0"
- url-join "^4.0.0"
-
-"@semantic-release/github@^8.0.0":
- version "8.0.5"
- resolved "https://registry.yarnpkg.com/@semantic-release/github/-/github-8.0.5.tgz#73a128b7989bf3b4f8968c6cf2fa802dda27dfd2"
- integrity sha512-9pGxRM3gv1hgoZ/muyd4pWnykdIUVfCiev6MXE9lOyGQof4FQy95GFE26nDcifs9ZG7bBzV8ue87bo/y1zVf0g==
- dependencies:
- "@octokit/rest" "^19.0.0"
- "@semantic-release/error" "^2.2.0"
- aggregate-error "^3.0.0"
- bottleneck "^2.18.1"
- debug "^4.0.0"
- dir-glob "^3.0.0"
- fs-extra "^10.0.0"
- globby "^11.0.0"
- http-proxy-agent "^5.0.0"
- https-proxy-agent "^5.0.0"
- issue-parser "^6.0.0"
- lodash "^4.17.4"
- mime "^3.0.0"
- p-filter "^2.0.0"
- p-retry "^4.0.0"
- url-join "^4.0.0"
-
-"@semantic-release/npm@^9.0.0":
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/@semantic-release/npm/-/npm-9.0.1.tgz#d81828eb1fb771e2767b3a8ee989915e1af27075"
- integrity sha512-I5nVZklxBzfMFwemhRNbSrkiN/dsH3c7K9+KSk6jUnq0rdLFUuJt7EBsysq4Ir3moajQgFkfEryEHPqiKJj20g==
- dependencies:
- "@semantic-release/error" "^3.0.0"
- aggregate-error "^3.0.0"
- execa "^5.0.0"
- fs-extra "^10.0.0"
- lodash "^4.17.15"
- nerf-dart "^1.0.0"
- normalize-url "^6.0.0"
- npm "^8.3.0"
- rc "^1.2.8"
- read-pkg "^5.0.0"
- registry-auth-token "^4.0.0"
- semver "^7.1.2"
- tempy "^1.0.0"
-
-"@semantic-release/release-notes-generator@9.0.1":
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-9.0.1.tgz#732d285d103064f2a64f08a32031551ebb4f918b"
- integrity sha512-bOoTiH6SiiR0x2uywSNR7uZcRDl22IpZhj+Q5Bn0v+98MFtOMhCxFhbrKQjhbYoZw7vps1mvMRmFkp/g6R9cvQ==
- dependencies:
- conventional-changelog-angular "^5.0.0"
- conventional-changelog-writer "^4.0.0"
- conventional-commits-filter "^2.0.0"
- conventional-commits-parser "^3.0.0"
- debug "^4.0.0"
- get-stream "^5.0.0"
- import-from "^3.0.0"
- into-stream "^5.0.0"
- lodash "^4.17.4"
- read-pkg-up "^7.0.0"
-
-"@semantic-release/release-notes-generator@^10.0.0":
- version "10.0.3"
- resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-10.0.3.tgz#85f7ca78bfa6b01fb5fda0ac48112855d69171dc"
- integrity sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w==
- dependencies:
- conventional-changelog-angular "^5.0.0"
- conventional-changelog-writer "^5.0.0"
- conventional-commits-filter "^2.0.0"
- conventional-commits-parser "^3.2.3"
- debug "^4.0.0"
- get-stream "^6.0.0"
- import-from "^4.0.0"
- into-stream "^6.0.0"
- lodash "^4.17.4"
- read-pkg-up "^7.0.0"
-
-"@tootallnate/once@1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
- integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
-
-"@tootallnate/once@2":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf"
- integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==
-
-"@types/color-name@^1.1.1":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
- integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
-
-"@types/minimist@^1.2.0":
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c"
- integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
-
-"@types/node@>= 8":
- version "13.13.5"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.5.tgz#96ec3b0afafd64a4ccea9107b75bf8489f0e5765"
- integrity sha512-3ySmiBYJPqgjiHA7oEaIo2Rzz0HrOZ7yrNO5HWyaE5q0lQ3BppDZ3N53Miz8bw2I7gh1/zir2MGVZBvpb1zq9g==
-
-"@types/normalize-package-data@^2.4.0":
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
- integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
-
-"@types/parse-json@^4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
- integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
-
-"@types/retry@^0.12.0":
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
- integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
-
-JSONStream@^1.0.4:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0"
- integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==
- dependencies:
- jsonparse "^1.2.0"
- through ">=2.2.7 <3"
-
-abbrev@1, abbrev@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
- integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
-
-agent-base@6:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.0.tgz#5d0101f19bbfaed39980b22ae866de153b93f09a"
- integrity sha512-j1Q7cSCqN+AwrmDd+pzgqc0/NpC655x2bUf5ZjRIO77DcNBFmh+OgRNzF6OKdCC9RSCb19fGd99+bhXFdkRNqw==
- dependencies:
- debug "4"
-
-agent-base@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
- integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
- dependencies:
- debug "4"
-
-agentkeepalive@^4.2.1:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717"
- integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==
- dependencies:
- debug "^4.1.0"
- depd "^1.1.2"
- humanize-ms "^1.2.1"
-
-aggregate-error@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0"
- integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==
- dependencies:
- clean-stack "^2.0.0"
- indent-string "^4.0.0"
-
-ansi-colors@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
- integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
-
-ansi-escapes@^4.3.0:
- version "4.3.1"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61"
- integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
- dependencies:
- type-fest "^0.11.0"
-
-ansi-escapes@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-5.0.0.tgz#b6a0caf0eef0c41af190e9a749e0c00ec04bb2a6"
- integrity sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==
- dependencies:
- type-fest "^1.0.2"
-
-ansi-regex@^5.0.0, ansi-regex@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
- integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
-
-ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
- dependencies:
- color-convert "^1.9.0"
-
-ansi-styles@^4.0.0, ansi-styles@^4.1.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
- integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
- dependencies:
- "@types/color-name" "^1.1.1"
- color-convert "^2.0.1"
-
-ansi-styles@^4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
- integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
- dependencies:
- color-convert "^2.0.1"
-
-ansicolors@~0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"
- integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=
-
-"aproba@^1.0.3 || ^2.0.0", aproba@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
- integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
-
-archy@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
- integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=
-
-are-we-there-yet@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz#ba20bd6b553e31d62fc8c31bd23d22b95734390d"
- integrity sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==
- dependencies:
- delegates "^1.0.0"
- readable-stream "^3.6.0"
-
-argv-formatter@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/argv-formatter/-/argv-formatter-1.0.0.tgz#a0ca0cbc29a5b73e836eebe1cbf6c5e0e4eb82f9"
- integrity sha1-oMoMvCmltz6Dbuvhy/bF4OTrgvk=
-
-array-find-index@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
- integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=
-
-array-ify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
- integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=
-
-array-union@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
- integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
-
-arrify@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
- integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
-
-asap@^2.0.0:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
- integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
-
-astral-regex@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
- integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
-
-at-least-node@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
- integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
-
-balanced-match@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
- integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
-
-before-after-hook@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.1.0.tgz#b6c03487f44e24200dd30ca5e6a1979c5d2fb635"
- integrity sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==
-
-before-after-hook@^2.2.0:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.2.tgz#a6e8ca41028d90ee2c24222f201c90956091613e"
- integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==
-
-bin-links@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-3.0.1.tgz#cc70ffb481988b22c527d3e6e454787876987a49"
- integrity sha512-9vx+ypzVhASvHTS6K+YSGf7nwQdANoz7v6MTC0aCtYnOEZ87YvMf81aY737EZnGZdpbRM3sfWjO9oWkKmuIvyQ==
- dependencies:
- cmd-shim "^5.0.0"
- mkdirp-infer-owner "^2.0.0"
- npm-normalize-package-bin "^1.0.0"
- read-cmd-shim "^3.0.0"
- rimraf "^3.0.0"
- write-file-atomic "^4.0.0"
-
-binary-extensions@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
- integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
-
-bottleneck@^2.18.1:
- version "2.19.5"
- resolved "https://registry.yarnpkg.com/bottleneck/-/bottleneck-2.19.5.tgz#5df0b90f59fd47656ebe63c78a98419205cadd91"
- integrity sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==
-
-brace-expansion@^1.1.7:
- version "1.1.11"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
- integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
- dependencies:
- balanced-match "^1.0.0"
- concat-map "0.0.1"
-
-brace-expansion@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
- integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
- dependencies:
- balanced-match "^1.0.0"
-
-braces@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
- integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
- dependencies:
- fill-range "^7.0.1"
-
-builtins@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9"
- integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==
- dependencies:
- semver "^7.0.0"
-
-cacache@^16.0.0, cacache@^16.0.6, cacache@^16.1.0, cacache@^16.1.1:
- version "16.1.1"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.1.tgz#4e79fb91d3efffe0630d5ad32db55cc1b870669c"
- integrity sha512-VDKN+LHyCQXaaYZ7rA/qtkURU+/yYhviUdvqEv2LT6QPZU8jpyzEkEVAcKlKLt5dJ5BRp11ym8lo3NKLluEPLg==
- dependencies:
- "@npmcli/fs" "^2.1.0"
- "@npmcli/move-file" "^2.0.0"
- chownr "^2.0.0"
- fs-minipass "^2.1.0"
- glob "^8.0.1"
- infer-owner "^1.0.4"
- lru-cache "^7.7.1"
- minipass "^3.1.6"
- minipass-collect "^1.0.2"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.4"
- mkdirp "^1.0.4"
- p-map "^4.0.0"
- promise-inflight "^1.0.1"
- rimraf "^3.0.2"
- ssri "^9.0.0"
- tar "^6.1.11"
- unique-filename "^1.1.1"
-
-callsites@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
- integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
-
-camelcase-keys@^4.0.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77"
- integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c=
- dependencies:
- camelcase "^4.1.0"
- map-obj "^2.0.0"
- quick-lru "^1.0.0"
-
-camelcase-keys@^6.2.2:
- version "6.2.2"
- resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0"
- integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==
- dependencies:
- camelcase "^5.3.1"
- map-obj "^4.0.0"
- quick-lru "^4.0.1"
-
-camelcase@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
- integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
-
-camelcase@^5.0.0, camelcase@^5.3.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
- integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-
-cardinal@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505"
- integrity sha1-fMEFXYItISlU0HsIXeolHMe8VQU=
- dependencies:
- ansicolors "~0.3.2"
- redeyed "~2.1.0"
-
-chalk@4.1.0, chalk@^4.0.0, chalk@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
- integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
- dependencies:
- ansi-styles "^4.1.0"
- supports-color "^7.1.0"
-
-chalk@^2.0.0, chalk@^2.3.2:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
-
-chalk@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
- integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
- dependencies:
- ansi-styles "^4.1.0"
- supports-color "^7.1.0"
-
-chalk@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.0.1.tgz#ca57d71e82bb534a296df63bbacc4a1c22b2a4b6"
- integrity sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==
-
-chownr@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
- integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
-
-ci-info@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
- integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
-
-cidr-regex@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/cidr-regex/-/cidr-regex-3.1.1.tgz#ba1972c57c66f61875f18fd7dd487469770b571d"
- integrity sha512-RBqYd32aDwbCMFJRL6wHOlDNYJsPNTt8vC82ErHF5vKt8QQzxm1FrkW8s/R5pVrXMf17sba09Uoy91PKiddAsw==
- dependencies:
- ip-regex "^4.1.0"
-
-clean-stack@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
- integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
-
-cli-columns@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/cli-columns/-/cli-columns-4.0.0.tgz#9fe4d65975238d55218c41bd2ed296a7fa555646"
- integrity sha512-XW2Vg+w+L9on9wtwKpyzluIPCWXjaBahI7mTcYjx+BVIYD9c3yqcv/yKC7CmdCZat4rq2yiE1UMSJC5ivKfMtQ==
- dependencies:
- string-width "^4.2.3"
- strip-ansi "^6.0.1"
-
-cli-cursor@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
- integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
- dependencies:
- restore-cursor "^3.1.0"
-
-cli-table3@^0.6.1, cli-table3@^0.6.2:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.2.tgz#aaf5df9d8b5bf12634dc8b3040806a0c07120d2a"
- integrity sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==
- dependencies:
- string-width "^4.2.0"
- optionalDependencies:
- "@colors/colors" "1.5.0"
-
-cli-truncate@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
- integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
- dependencies:
- slice-ansi "^3.0.0"
- string-width "^4.2.0"
-
-cliui@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
- integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
- dependencies:
- string-width "^4.2.0"
- strip-ansi "^6.0.0"
- wrap-ansi "^6.2.0"
-
-cliui@^7.0.2:
- version "7.0.4"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
- integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
- dependencies:
- string-width "^4.2.0"
- strip-ansi "^6.0.0"
- wrap-ansi "^7.0.0"
-
-clone@^1.0.2:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
- integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
-
-cmd-shim@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-5.0.0.tgz#8d0aaa1a6b0708630694c4dbde070ed94c707724"
- integrity sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==
- dependencies:
- mkdirp-infer-owner "^2.0.0"
-
-color-convert@^1.9.0:
- version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
- dependencies:
- color-name "1.1.3"
-
-color-convert@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
- integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
- dependencies:
- color-name "~1.1.4"
-
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
-
-color-name@~1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
- integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-
-color-support@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
- integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
-
-columnify@^1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3"
- integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==
- dependencies:
- strip-ansi "^6.0.1"
- wcwidth "^1.0.0"
-
-commander@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.0.tgz#b990bfb8ac030aedc6d11bc04d1488ffef56db75"
- integrity sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q==
-
-commitlint@11.0.0:
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/commitlint/-/commitlint-11.0.0.tgz#a60f759b938c97c5d601c881cfe71b1d4051d219"
- integrity sha512-nTmP1tM52gfi39tDCN8dAlRRWJyVoJY2JuYgVhSONETGJ2MY69K/go0YbCzlIEDO/bUka5ybeI6CJz5ZicvNzg==
- dependencies:
- "@commitlint/cli" "^11.0.0"
-
-common-ancestor-path@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz#4f7d2d1394d91b7abdf51871c62f71eadb0182a7"
- integrity sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==
-
-compare-func@^1.3.1:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648"
- integrity sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg=
- dependencies:
- array-ify "^1.0.0"
- dot-prop "^3.0.0"
-
-compare-func@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3"
- integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==
- dependencies:
- array-ify "^1.0.0"
- dot-prop "^5.1.0"
-
-compare-versions@^3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
- integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
-
-concat-map@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
- integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-
-console-control-strings@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
- integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
-
-conventional-changelog-angular@^5.0.0:
- version "5.0.6"
- resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.6.tgz#269540c624553aded809c29a3508fdc2b544c059"
- integrity sha512-QDEmLa+7qdhVIv8sFZfVxU1VSyVvnXPsxq8Vam49mKUcO1Z8VTLEJk9uI21uiJUsnmm0I4Hrsdc9TgkOQo9WSA==
- dependencies:
- compare-func "^1.3.1"
- q "^1.5.1"
-
-conventional-changelog-conventionalcommits@4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.5.0.tgz#a02e0b06d11d342fdc0f00c91d78265ed0bc0a62"
- integrity sha512-buge9xDvjjOxJlyxUnar/+6i/aVEVGA7EEh4OafBCXPlLUQPGbRUBhBUveWRxzvR8TEjhKEP4BdepnpG2FSZXw==
- dependencies:
- compare-func "^2.0.0"
- lodash "^4.17.15"
- q "^1.5.1"
-
-conventional-changelog-writer@^4.0.0:
- version "4.0.11"
- resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.11.tgz#9f56d2122d20c96eb48baae0bf1deffaed1edba4"
- integrity sha512-g81GQOR392I+57Cw3IyP1f+f42ME6aEkbR+L7v1FBBWolB0xkjKTeCWVguzRrp6UiT1O6gBpJbEy2eq7AnV1rw==
- dependencies:
- compare-func "^1.3.1"
- conventional-commits-filter "^2.0.2"
- dateformat "^3.0.0"
- handlebars "^4.4.0"
- json-stringify-safe "^5.0.1"
- lodash "^4.17.15"
- meow "^5.0.0"
- semver "^6.0.0"
- split "^1.0.0"
- through2 "^3.0.0"
-
-conventional-changelog-writer@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359"
- integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==
- dependencies:
- conventional-commits-filter "^2.0.7"
- dateformat "^3.0.0"
- handlebars "^4.7.7"
- json-stringify-safe "^5.0.1"
- lodash "^4.17.15"
- meow "^8.0.0"
- semver "^6.0.0"
- split "^1.0.0"
- through2 "^4.0.0"
-
-conventional-commits-filter@^2.0.0, conventional-commits-filter@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.2.tgz#f122f89fbcd5bb81e2af2fcac0254d062d1039c1"
- integrity sha512-WpGKsMeXfs21m1zIw4s9H5sys2+9JccTzpN6toXtxhpw2VNF2JUXwIakthKBy+LN4DvJm+TzWhxOMWOs1OFCFQ==
- dependencies:
- lodash.ismatch "^4.4.0"
- modify-values "^1.0.0"
-
-conventional-commits-filter@^2.0.7:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3"
- integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==
- dependencies:
- lodash.ismatch "^4.4.0"
- modify-values "^1.0.0"
-
-conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.0.7:
- version "3.0.8"
- resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.8.tgz#23310a9bda6c93c874224375e72b09fb275fe710"
- integrity sha512-YcBSGkZbYp7d+Cr3NWUeXbPDFUN6g3SaSIzOybi8bjHL5IJ5225OSCxJJ4LgziyEJ7AaJtE9L2/EU6H7Nt/DDQ==
- dependencies:
- JSONStream "^1.0.4"
- is-text-path "^1.0.1"
- lodash "^4.17.15"
- meow "^5.0.0"
- split2 "^2.0.0"
- through2 "^3.0.0"
- trim-off-newlines "^1.0.0"
-
-conventional-commits-parser@^3.2.3:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972"
- integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==
- dependencies:
- JSONStream "^1.0.4"
- is-text-path "^1.0.1"
- lodash "^4.17.15"
- meow "^8.0.0"
- split2 "^3.0.0"
- through2 "^4.0.0"
-
-core-js@^3.6.1:
- version "3.6.5"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a"
- integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==
-
-core-util-is@~1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
- integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
-
-cosmiconfig@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
- integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
- dependencies:
- "@types/parse-json" "^4.0.0"
- import-fresh "^3.2.1"
- parse-json "^5.0.0"
- path-type "^4.0.0"
- yaml "^1.10.0"
-
-cross-spawn@^6.0.0:
- version "6.0.5"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
- integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
- dependencies:
- nice-try "^1.0.4"
- path-key "^2.0.1"
- semver "^5.5.0"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
-cross-spawn@^7.0.0:
- version "7.0.2"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.2.tgz#d0d7dcfa74e89115c7619f4f721a94e1fdb716d6"
- integrity sha512-PD6G8QG3S4FK/XCGFbEQrDqO2AnMMsy0meR7lerlIOHAAbkuavGU/pOqprrlvfTNjvowivTeBsjebAL0NSoMxw==
- dependencies:
- path-key "^3.1.0"
- shebang-command "^2.0.0"
- which "^2.0.1"
-
-cross-spawn@^7.0.3:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
- integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
- dependencies:
- path-key "^3.1.0"
- shebang-command "^2.0.0"
- which "^2.0.1"
-
-crypto-random-string@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
- integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
-
-currently-unhandled@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
- integrity sha1-mI3zP+qxke95mmE2nddsF635V+o=
- dependencies:
- array-find-index "^1.0.1"
-
-dargs@^4.0.1:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17"
- integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc=
- dependencies:
- number-is-nan "^1.0.0"
-
-dateformat@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
- integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
-
-debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.2.0, debug@^4.3.3:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
- integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
- dependencies:
- ms "2.1.2"
-
-debuglog@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
- integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
-
-decamelize-keys@^1.0.0, decamelize-keys@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
- integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=
- dependencies:
- decamelize "^1.1.0"
- map-obj "^1.0.0"
-
-decamelize@^1.1.0, decamelize@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
- integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
-
-dedent@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
- integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
-
-deep-extend@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
- integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
-
-defaults@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
- integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
- dependencies:
- clone "^1.0.2"
-
-del@^6.0.0:
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a"
- integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==
- dependencies:
- globby "^11.0.1"
- graceful-fs "^4.2.4"
- is-glob "^4.0.1"
- is-path-cwd "^2.2.0"
- is-path-inside "^3.0.2"
- p-map "^4.0.0"
- rimraf "^3.0.2"
- slash "^3.0.0"
-
-delegates@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
- integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
-
-depd@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
- integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
-
-deprecation@^2.0.0, deprecation@^2.3.1:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919"
- integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
-
-dezalgo@^1.0.0:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456"
- integrity sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=
- dependencies:
- asap "^2.0.0"
- wrappy "1"
-
-diff@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40"
- integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==
-
-dir-glob@^3.0.0, dir-glob@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
- integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
- dependencies:
- path-type "^4.0.0"
-
-dot-prop@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
- integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc=
- dependencies:
- is-obj "^1.0.0"
-
-dot-prop@^5.1.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb"
- integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==
- dependencies:
- is-obj "^2.0.0"
-
-duplexer2@~0.1.0:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1"
- integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=
- dependencies:
- readable-stream "^2.0.2"
-
-emoji-regex@^8.0.0:
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
- integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
-
-encoding@^0.1.13:
- version "0.1.13"
- resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
- integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
- dependencies:
- iconv-lite "^0.6.2"
-
-end-of-stream@^1.1.0:
- version "1.4.4"
- resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
- integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
- dependencies:
- once "^1.4.0"
-
-enquirer@^2.3.6:
- version "2.3.6"
- resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
- integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
- dependencies:
- ansi-colors "^4.1.1"
-
-env-ci@^5.0.0:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-5.0.2.tgz#48b6687f8af8cdf5e31b8fcf2987553d085249d9"
- integrity sha512-Xc41mKvjouTXD3Oy9AqySz1IeyvJvHZ20Twf5ZLYbNpPPIuCnL/qHCmNlD01LoNy0JTunw9HPYVptD19Ac7Mbw==
- dependencies:
- execa "^4.0.0"
- java-properties "^1.0.0"
-
-env-paths@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43"
- integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==
-
-err-code@^2.0.2:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9"
- integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==
-
-error-ex@^1.3.1:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
- dependencies:
- is-arrayish "^0.2.1"
-
-escalade@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
- integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
-
-escape-string-regexp@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
- integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
-
-esprima@~4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
- integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-
-execa@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
- integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
- dependencies:
- cross-spawn "^6.0.0"
- get-stream "^4.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-execa@^4.0.0, execa@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a"
- integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==
- dependencies:
- cross-spawn "^7.0.0"
- get-stream "^5.0.0"
- human-signals "^1.1.1"
- is-stream "^2.0.0"
- merge-stream "^2.0.0"
- npm-run-path "^4.0.0"
- onetime "^5.1.0"
- signal-exit "^3.0.2"
- strip-final-newline "^2.0.0"
-
-execa@^5.0.0:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
- integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
- dependencies:
- cross-spawn "^7.0.3"
- get-stream "^6.0.0"
- human-signals "^2.1.0"
- is-stream "^2.0.0"
- merge-stream "^2.0.0"
- npm-run-path "^4.0.1"
- onetime "^5.1.2"
- signal-exit "^3.0.3"
- strip-final-newline "^2.0.0"
-
-fast-glob@^3.1.1:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.2.tgz#ade1a9d91148965d4bf7c51f72e1ca662d32e63d"
- integrity sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A==
- dependencies:
- "@nodelib/fs.stat" "^2.0.2"
- "@nodelib/fs.walk" "^1.2.3"
- glob-parent "^5.1.0"
- merge2 "^1.3.0"
- micromatch "^4.0.2"
- picomatch "^2.2.1"
-
-fast-glob@^3.2.9:
- version "3.2.11"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
- integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
- dependencies:
- "@nodelib/fs.stat" "^2.0.2"
- "@nodelib/fs.walk" "^1.2.3"
- glob-parent "^5.1.2"
- merge2 "^1.3.0"
- micromatch "^4.0.4"
-
-fastest-levenshtein@^1.0.12:
- version "1.0.12"
- resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2"
- integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==
-
-fastq@^1.6.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.7.0.tgz#fcd79a08c5bd7ec5b55cd3f5c4720db551929801"
- integrity sha512-YOadQRnHd5q6PogvAR/x62BGituF2ufiEA6s8aavQANw5YKHERI4AREboX6KotzP8oX2klxYF2wcV/7bn1clfQ==
- dependencies:
- reusify "^1.0.4"
-
-figures@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
- integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
- dependencies:
- escape-string-regexp "^1.0.5"
-
-figures@^3.0.0, figures@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
- integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
- dependencies:
- escape-string-regexp "^1.0.5"
-
-fill-range@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
- integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
- dependencies:
- to-regex-range "^5.0.1"
-
-find-up@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
- integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
- dependencies:
- locate-path "^2.0.0"
-
-find-up@^4.0.0, find-up@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
- integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
- dependencies:
- locate-path "^5.0.0"
- path-exists "^4.0.0"
-
-find-up@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
- integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
- dependencies:
- locate-path "^6.0.0"
- path-exists "^4.0.0"
-
-find-versions@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e"
- integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==
- dependencies:
- semver-regex "^2.0.0"
-
-find-versions@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-4.0.0.tgz#3c57e573bf97769b8cb8df16934b627915da4965"
- integrity sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==
- dependencies:
- semver-regex "^3.1.2"
-
-from2@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
- integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
- dependencies:
- inherits "^2.0.1"
- readable-stream "^2.0.0"
-
-fs-extra@^10.0.0:
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf"
- integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
- dependencies:
- graceful-fs "^4.2.0"
- jsonfile "^6.0.1"
- universalify "^2.0.0"
-
-fs-extra@^9.0.0:
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3"
- integrity sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==
- dependencies:
- at-least-node "^1.0.0"
- graceful-fs "^4.2.0"
- jsonfile "^6.0.1"
- universalify "^1.0.0"
-
-fs-minipass@^2.0.0, fs-minipass@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
- integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
- dependencies:
- minipass "^3.0.0"
-
-fs.realpath@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
- integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-
-gauge@^4.0.3:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce"
- integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==
- dependencies:
- aproba "^1.0.3 || ^2.0.0"
- color-support "^1.1.3"
- console-control-strings "^1.1.0"
- has-unicode "^2.0.1"
- signal-exit "^3.0.7"
- string-width "^4.2.3"
- strip-ansi "^6.0.1"
- wide-align "^1.1.5"
-
-get-caller-file@^2.0.1, get-caller-file@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
- integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-
-get-own-enumerable-property-symbols@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
- integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
-
-get-stdin@8.0.0:
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53"
- integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==
-
-get-stream@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
- integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
- dependencies:
- pump "^3.0.0"
-
-get-stream@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9"
- integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==
- dependencies:
- pump "^3.0.0"
-
-get-stream@^6.0.0:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
- integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
-
-git-log-parser@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/git-log-parser/-/git-log-parser-1.2.0.tgz#2e6a4c1b13fc00028207ba795a7ac31667b9fd4a"
- integrity sha1-LmpMGxP8AAKCB7p5WnrDFme5/Uo=
- dependencies:
- argv-formatter "~1.0.0"
- spawn-error-forwarder "~1.0.0"
- split2 "~1.0.0"
- stream-combiner2 "~1.1.1"
- through2 "~2.0.0"
- traverse "~0.6.6"
-
-git-raw-commits@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.3.tgz#f040e67b8445962d4d168903a9e84c4240c17655"
- integrity sha512-SoSsFL5lnixVzctGEi2uykjA7B5I0AhO9x6kdzvGRHbxsa6JSEgrgy1esRKsfOKE1cgyOJ/KDR2Trxu157sb8w==
- dependencies:
- dargs "^4.0.1"
- lodash.template "^4.0.2"
- meow "^5.0.0"
- split2 "^2.0.0"
- through2 "^3.0.0"
-
-glob-parent@^5.1.0, glob-parent@^5.1.2:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
- integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
- dependencies:
- is-glob "^4.0.1"
-
-glob@^7.1.3, glob@^7.1.4:
- version "7.1.6"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
- integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.0.4"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
-glob@^8.0.1:
- version "8.0.3"
- resolved "https://registry.yarnpkg.com/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e"
- integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^5.0.1"
- once "^1.3.0"
-
-global-dirs@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
- integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=
- dependencies:
- ini "^1.3.4"
-
-globby@^11.0.0:
- version "11.0.0"
- resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.0.tgz#56fd0e9f0d4f8fb0c456f1ab0dee96e1380bc154"
- integrity sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==
- dependencies:
- array-union "^2.1.0"
- dir-glob "^3.0.1"
- fast-glob "^3.1.1"
- ignore "^5.1.4"
- merge2 "^1.3.0"
- slash "^3.0.0"
-
-globby@^11.0.1:
- version "11.1.0"
- resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
- integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
- dependencies:
- array-union "^2.1.0"
- dir-glob "^3.0.1"
- fast-glob "^3.2.9"
- ignore "^5.2.0"
- merge2 "^1.4.1"
- slash "^3.0.0"
-
-graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4:
- version "4.2.4"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
- integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
-
-graceful-fs@^4.2.10, graceful-fs@^4.2.6:
- version "4.2.10"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
- integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
-
-gradle-semantic-release-plugin@1.4.8:
- version "1.4.8"
- resolved "https://registry.yarnpkg.com/gradle-semantic-release-plugin/-/gradle-semantic-release-plugin-1.4.8.tgz#bd3609949d79b1c239a4522531fa3b46e8ed10da"
- integrity sha512-/FyjF1iASUKxHegNdNMd8+clXWznYPcQdE90XshEbRGP3B8n8iDktsykLHJse6Dztn6f1A/HjNvAPZxfCrbPjA==
- dependencies:
- promisified-properties "^2.0.3"
- split2 "^3.1.1"
-
-handlebars@^4.4.0, handlebars@^4.7.7:
- version "4.7.7"
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
- integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
- dependencies:
- minimist "^1.2.5"
- neo-async "^2.6.0"
- source-map "^0.6.1"
- wordwrap "^1.0.0"
- optionalDependencies:
- uglify-js "^3.1.4"
-
-hard-rejection@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883"
- integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==
-
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
-
-has-flag@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
- integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-
-has-unicode@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
- integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==
-
-has@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
- dependencies:
- function-bind "^1.1.1"
-
-hook-std@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/hook-std/-/hook-std-2.0.0.tgz#ff9aafdebb6a989a354f729bb6445cf4a3a7077c"
- integrity sha512-zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g==
-
-hosted-git-info@^2.1.4:
- version "2.8.9"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
- integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-
-hosted-git-info@^4.0.0, hosted-git-info@^4.0.1:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224"
- integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==
- dependencies:
- lru-cache "^6.0.0"
-
-hosted-git-info@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-5.0.0.tgz#df7a06678b4ebd722139786303db80fdf302ea56"
- integrity sha512-rRnjWu0Bxj+nIfUOkz0695C0H6tRrN5iYIzYejb0tDEefe2AekHu/U5Kn9pEie5vsJqpNQU02az7TGSH3qpz4Q==
- dependencies:
- lru-cache "^7.5.1"
-
-http-cache-semantics@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390"
- integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==
-
-http-proxy-agent@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
- integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
- dependencies:
- "@tootallnate/once" "1"
- agent-base "6"
- debug "4"
-
-http-proxy-agent@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43"
- integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==
- dependencies:
- "@tootallnate/once" "2"
- agent-base "6"
- debug "4"
-
-https-proxy-agent@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
- integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==
- dependencies:
- agent-base "6"
- debug "4"
-
-human-signals@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
- integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
-
-human-signals@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
- integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
-
-humanize-ms@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
- integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=
- dependencies:
- ms "^2.0.0"
-
-husky@4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/husky/-/husky-4.3.0.tgz#0b2ec1d66424e9219d359e26a51c58ec5278f0de"
- integrity sha512-tTMeLCLqSBqnflBZnlVDhpaIMucSGaYyX6855jM4AguGeWCeSzNdb1mfyWduTZ3pe3SJVvVWGL0jO1iKZVPfTA==
- dependencies:
- chalk "^4.0.0"
- ci-info "^2.0.0"
- compare-versions "^3.6.0"
- cosmiconfig "^7.0.0"
- find-versions "^3.2.0"
- opencollective-postinstall "^2.0.2"
- pkg-dir "^4.2.0"
- please-upgrade-node "^3.2.0"
- slash "^3.0.0"
- which-pm-runs "^1.0.0"
-
-iconv-lite@^0.6.2:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01"
- integrity sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==
- dependencies:
- safer-buffer ">= 2.1.2 < 3.0.0"
-
-ignore-walk@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-5.0.1.tgz#5f199e23e1288f518d90358d461387788a154776"
- integrity sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==
- dependencies:
- minimatch "^5.0.1"
-
-ignore@^5.1.4:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf"
- integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==
-
-ignore@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
- integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
-
-import-fresh@^3.0.0, import-fresh@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
- integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
- dependencies:
- parent-module "^1.0.0"
- resolve-from "^4.0.0"
-
-import-from@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966"
- integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==
- dependencies:
- resolve-from "^5.0.0"
-
-import-from@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/import-from/-/import-from-4.0.0.tgz#2710b8d66817d232e16f4166e319248d3d5492e2"
- integrity sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==
-
-imurmurhash@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
- integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
-
-indent-string@^3.0.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
- integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
-
-indent-string@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
- integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
-
-infer-owner@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
- integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
-
-inflight@^1.0.4:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
- integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
- dependencies:
- once "^1.3.0"
- wrappy "1"
-
-inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
- integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-ini@^1.3.4, ini@~1.3.0:
- version "1.3.8"
- resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
- integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-
-ini@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/ini/-/ini-3.0.0.tgz#2f6de95006923aa75feed8894f5686165adc08f1"
- integrity sha512-TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw==
-
-init-package-json@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-3.0.2.tgz#f5bc9bac93f2bdc005778bc2271be642fecfcd69"
- integrity sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==
- dependencies:
- npm-package-arg "^9.0.1"
- promzard "^0.3.0"
- read "^1.0.7"
- read-package-json "^5.0.0"
- semver "^7.3.5"
- validate-npm-package-license "^3.0.4"
- validate-npm-package-name "^4.0.0"
-
-into-stream@^5.0.0:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-5.1.1.tgz#f9a20a348a11f3c13face22763f2d02e127f4db8"
- integrity sha512-krrAJ7McQxGGmvaYbB7Q1mcA+cRwg9Ij2RfWIeVesNBgVDZmzY/Fa4IpZUT3bmdRzMzdf/mzltCG2Dq99IZGBA==
- dependencies:
- from2 "^2.3.0"
- p-is-promise "^3.0.0"
-
-into-stream@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-6.0.0.tgz#4bfc1244c0128224e18b8870e85b2de8e66c6702"
- integrity sha512-XHbaOAvP+uFKUFsOgoNPRjLkwB+I22JFPFe5OjTkQ0nwgj6+pSjb4NmB6VMxaPshLiOf+zcpOCBQuLwC1KHhZA==
- dependencies:
- from2 "^2.3.0"
- p-is-promise "^3.0.0"
-
-ip-regex@^4.1.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5"
- integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==
-
-ip@^1.1.5:
- version "1.1.8"
- resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48"
- integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==
-
-is-arrayish@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
- integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
-
-is-cidr@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-4.0.2.tgz#94c7585e4c6c77ceabf920f8cde51b8c0fda8814"
- integrity sha512-z4a1ENUajDbEl/Q6/pVBpTR1nBjjEE1X7qb7bmWYanNnPoKAvUCPFKeXV6Fe4mgTkWKBqiHIcwsI3SndiO5FeA==
- dependencies:
- cidr-regex "^3.1.1"
-
-is-core-module@^2.5.0, is-core-module@^2.8.1:
- version "2.9.0"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69"
- integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==
- dependencies:
- has "^1.0.3"
-
-is-extglob@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
- integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
-
-is-fullwidth-code-point@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
- integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
-
-is-glob@^4.0.1:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
- integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
- dependencies:
- is-extglob "^2.1.1"
-
-is-lambda@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5"
- integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==
-
-is-number@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
- integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
-
-is-obj@^1.0.0, is-obj@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
- integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
-
-is-obj@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
- integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
-
-is-path-cwd@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
- integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
-
-is-path-inside@^3.0.2:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
- integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
-
-is-plain-obj@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
- integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
-
-is-plain-object@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928"
- integrity sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==
- dependencies:
- isobject "^4.0.0"
-
-is-plain-object@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344"
- integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
-
-is-regexp@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
- integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
-
-is-stream@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
- integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
-
-is-stream@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
- integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
-
-is-text-path@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
- integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=
- dependencies:
- text-extensions "^1.0.0"
-
-isarray@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
- integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
-
-isexe@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
- integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
-
-isobject@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0"
- integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==
-
-issue-parser@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/issue-parser/-/issue-parser-6.0.0.tgz#b1edd06315d4f2044a9755daf85fdafde9b4014a"
- integrity sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==
- dependencies:
- lodash.capitalize "^4.2.1"
- lodash.escaperegexp "^4.1.2"
- lodash.isplainobject "^4.0.6"
- lodash.isstring "^4.0.1"
- lodash.uniqby "^4.7.0"
-
-java-properties@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/java-properties/-/java-properties-1.0.2.tgz#ccd1fa73907438a5b5c38982269d0e771fe78211"
- integrity sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==
-
-js-tokens@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-
-json-parse-better-errors@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
- integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
-
-json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
- integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
-
-json-stringify-nice@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz#2c937962b80181d3f317dd39aa323e14f5a60a67"
- integrity sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==
-
-json-stringify-safe@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
- integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
-
-jsonfile@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179"
- integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==
- dependencies:
- universalify "^1.0.0"
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsonparse@^1.2.0, jsonparse@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
- integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=
-
-just-diff-apply@^5.2.0:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/just-diff-apply/-/just-diff-apply-5.3.1.tgz#30f40809ffed55ad76dccf73fa9b85a76964c867"
- integrity sha512-dgFenZnMsc1xGNqgdtgnh7DK+Oy352CE3VZLbzcbQpsBs9iI2K3M0IRrdgREZ72eItTjbl0suRyvKRdVQa9GbA==
-
-just-diff@^5.0.1:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/just-diff/-/just-diff-5.0.3.tgz#4c9c514dec5526b25ab977590e3c39a0cf271554"
- integrity sha512-a8p80xcpJ6sdurk5PxDKb4mav9MeKjA3zFKZpCWBIfvg8mznfnmb13MKZvlrwJ+Lhis0wM3uGAzE0ArhFHvIcg==
-
-kind-of@^6.0.3:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
- integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
-
-libnpmaccess@^6.0.2:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-6.0.3.tgz#473cc3e4aadb2bc713419d92e45d23b070d8cded"
- integrity sha512-4tkfUZprwvih2VUZYMozL7EMKgQ5q9VW2NtRyxWtQWlkLTAWHRklcAvBN49CVqEkhUw7vTX2fNgB5LzgUucgYg==
- dependencies:
- aproba "^2.0.0"
- minipass "^3.1.1"
- npm-package-arg "^9.0.1"
- npm-registry-fetch "^13.0.0"
-
-libnpmdiff@^4.0.2:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-4.0.4.tgz#487ccb609dacd7f558f089feef3153933e157d02"
- integrity sha512-bUz12309DdkeFL/K0sKhW1mbg8DARMbNI0vQKrJp1J8lxhxqkAjzSQ3eQCacFjSwCz4xaf630ogwuOkSt61ZEQ==
- dependencies:
- "@npmcli/disparity-colors" "^2.0.0"
- "@npmcli/installed-package-contents" "^1.0.7"
- binary-extensions "^2.2.0"
- diff "^5.0.0"
- minimatch "^5.0.1"
- npm-package-arg "^9.0.1"
- pacote "^13.6.1"
- tar "^6.1.0"
-
-libnpmexec@^4.0.2:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-4.0.8.tgz#27be33278dec1c7cfce52e28f8814b19e31129fe"
- integrity sha512-SKO6JCt/rL6r+ilbq315zEj2sDdZRniCJ2AvmzqMyIKW4IMuuLsOjjkcWKBV2l1Vle54ud7Tkv9IEPR2cE0mJg==
- dependencies:
- "@npmcli/arborist" "^5.0.0"
- "@npmcli/ci-detect" "^2.0.0"
- "@npmcli/run-script" "^4.1.3"
- chalk "^4.1.0"
- mkdirp-infer-owner "^2.0.0"
- npm-package-arg "^9.0.1"
- npmlog "^6.0.2"
- pacote "^13.6.1"
- proc-log "^2.0.0"
- read "^1.0.7"
- read-package-json-fast "^2.0.2"
- walk-up-path "^1.0.0"
-
-libnpmfund@^3.0.1:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-3.0.2.tgz#7da0827950f0db2cce0acb0dc7652d1834a8b239"
- integrity sha512-wmFMP/93Wjy+jDg5LaSldDgAhSgCyA64JUUmp806Kae7y3YP9Qv5m1vUhPxT4yebxgB2v/I6G1/RUcNb1y0kVg==
- dependencies:
- "@npmcli/arborist" "^5.0.0"
-
-libnpmhook@^8.0.2:
- version "8.0.3"
- resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-8.0.3.tgz#9628518a63455d21dafda312ee46175275707ff5"
- integrity sha512-TEdNI1mC5zS+w/juCgxrwwQnpbq9lY76NDOS0N37pn6pWIUxB1Yq8mwy6MUEXR1TgH4HurSQyKT6I6Kp9Wjm4A==
- dependencies:
- aproba "^2.0.0"
- npm-registry-fetch "^13.0.0"
-
-libnpmorg@^4.0.2:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-4.0.3.tgz#a85cbdb3665ad4f7c7279d239a4581ec2eeef5a6"
- integrity sha512-r4CpmCEF+e5PbFMBi64xSXmqn0uGgV4T7NWpGL4/A6KT/DTtIxALILQZq+l0ZdN1xm4RjOvqSDR22oT4il8rAQ==
- dependencies:
- aproba "^2.0.0"
- npm-registry-fetch "^13.0.0"
-
-libnpmpack@^4.0.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-4.1.2.tgz#9234a3b1ae433f922c19e97cd3a8a0b135b5f4cc"
- integrity sha512-megSAPeZGv9jnDM4KovKbczjyuy/EcPxCIU/iaWsDU1IEAVtBJ0qHqNUm5yN2AgN501Tb3CL6KeFGYdG4E31rQ==
- dependencies:
- "@npmcli/run-script" "^4.1.3"
- npm-package-arg "^9.0.1"
- pacote "^13.6.1"
-
-libnpmpublish@^6.0.2:
- version "6.0.4"
- resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-6.0.4.tgz#adb41ec6b0c307d6f603746a4d929dcefb8f1a0b"
- integrity sha512-lvAEYW8mB8QblL6Q/PI/wMzKNvIrF7Kpujf/4fGS/32a2i3jzUXi04TNyIBcK6dQJ34IgywfaKGh+Jq4HYPFmg==
- dependencies:
- normalize-package-data "^4.0.0"
- npm-package-arg "^9.0.1"
- npm-registry-fetch "^13.0.0"
- semver "^7.3.7"
- ssri "^9.0.0"
-
-libnpmsearch@^5.0.2:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-5.0.3.tgz#ed502a4c2c70ea36723180455fae1357546b2184"
- integrity sha512-Ofq76qKAPhxbiyzPf/5LPjJln26VTKwU9hIU0ACxQ6tNtBJ1CHmI7iITrdp7vNezhZc0FlkXwrIpqXjhBJZgLQ==
- dependencies:
- npm-registry-fetch "^13.0.0"
-
-libnpmteam@^4.0.2:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-4.0.3.tgz#9335fbbd032b3770f5c9b7ffc6203f47d1ed144a"
- integrity sha512-LsYYLz4TlTpcqkusInY5MhKjiHFaCx1GV0LmydXJ/QMh+3IWBJpUhes4ynTZuFoJKkDIFjxyMU09ul+RZixgdg==
- dependencies:
- aproba "^2.0.0"
- npm-registry-fetch "^13.0.0"
-
-libnpmversion@^3.0.1:
- version "3.0.6"
- resolved "https://registry.yarnpkg.com/libnpmversion/-/libnpmversion-3.0.6.tgz#a4a476d38a44d38db9ac424a5e7334479e7fb8b9"
- integrity sha512-+lI+AO7cZwDxyAeWCIR8+n9XEfgSDAqmNbv4zy+H6onGthsk/+E3aa+5zIeBpyG5g268zjpc0qrBch0Q3w0nBA==
- dependencies:
- "@npmcli/git" "^3.0.0"
- "@npmcli/run-script" "^4.1.3"
- json-parse-even-better-errors "^2.3.1"
- proc-log "^2.0.0"
- semver "^7.3.7"
-
-lines-and-columns@^1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
- integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
-
-lint-staged@10.5.1:
- version "10.5.1"
- resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.5.1.tgz#901e915c2360072dded0e7d752a0d9a49e079daa"
- integrity sha512-fTkTGFtwFIJJzn/PbUO3RXyEBHIhbfYBE7+rJyLcOXabViaO/h6OslgeK6zpeUtzkDrzkgyAYDTLAwx6JzDTHw==
- dependencies:
- chalk "^4.1.0"
- cli-truncate "^2.1.0"
- commander "^6.2.0"
- cosmiconfig "^7.0.0"
- debug "^4.2.0"
- dedent "^0.7.0"
- enquirer "^2.3.6"
- execa "^4.1.0"
- listr2 "^3.2.2"
- log-symbols "^4.0.0"
- micromatch "^4.0.2"
- normalize-path "^3.0.0"
- please-upgrade-node "^3.2.0"
- string-argv "0.3.1"
- stringify-object "^3.3.0"
-
-listr2@^3.2.2:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.2.2.tgz#d20feb75015e506992b55af40722ba1af168b8f1"
- integrity sha512-AajqcZEUikF2ioph6PfH3dIuxJclhr3i3kHgTOP0xeXdWQohrvJAAmqVcV43/GI987HFY/vzT73jYXoa4esDHg==
- dependencies:
- chalk "^4.1.0"
- cli-truncate "^2.1.0"
- figures "^3.2.0"
- indent-string "^4.0.0"
- log-update "^4.0.0"
- p-map "^4.0.0"
- rxjs "^6.6.3"
- through "^2.3.8"
-
-load-json-file@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
- integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
- dependencies:
- graceful-fs "^4.1.2"
- parse-json "^4.0.0"
- pify "^3.0.0"
- strip-bom "^3.0.0"
-
-locate-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
- integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
- dependencies:
- p-locate "^2.0.0"
- path-exists "^3.0.0"
-
-locate-path@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
- integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
- dependencies:
- p-locate "^4.1.0"
-
-locate-path@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
- integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
- dependencies:
- p-locate "^5.0.0"
-
-lodash._reinterpolate@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
- integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
-
-lodash.capitalize@^4.2.1:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz#f826c9b4e2a8511d84e3aca29db05e1a4f3b72a9"
- integrity sha1-+CbJtOKoUR2E46yinbBeGk87cqk=
-
-lodash.escaperegexp@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347"
- integrity sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=
-
-lodash.ismatch@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37"
- integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=
-
-lodash.isplainobject@^4.0.6:
- version "4.0.6"
- resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
- integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=
-
-lodash.isstring@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
- integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=
-
-lodash.template@^4.0.2:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
- integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
- dependencies:
- lodash._reinterpolate "^3.0.0"
- lodash.templatesettings "^4.0.0"
-
-lodash.templatesettings@^4.0.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
- integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
- dependencies:
- lodash._reinterpolate "^3.0.0"
-
-lodash.uniqby@^4.7.0:
- version "4.7.0"
- resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
- integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=
-
-lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21, lodash@^4.17.4:
- version "4.17.21"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
- integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
-
-log-symbols@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920"
- integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==
- dependencies:
- chalk "^4.0.0"
-
-log-update@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1"
- integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==
- dependencies:
- ansi-escapes "^4.3.0"
- cli-cursor "^3.1.0"
- slice-ansi "^4.0.0"
- wrap-ansi "^6.2.0"
-
-loud-rejection@^1.0.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
- integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=
- dependencies:
- currently-unhandled "^0.4.1"
- signal-exit "^3.0.0"
-
-lru-cache@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
- integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
- dependencies:
- yallist "^4.0.0"
-
-lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1:
- version "7.13.1"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.13.1.tgz#267a81fbd0881327c46a81c5922606a2cfe336c4"
- integrity sha512-CHqbAq7NFlW3RSnoWXLJBxCWaZVBrfa9UEHId2M3AW8iEBurbqduNexEUCGc3SHc6iCYXNJCDi903LajSVAEPQ==
-
-macos-release@^2.2.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f"
- integrity sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==
-
-make-fetch-happen@^10.0.3, make-fetch-happen@^10.0.6, make-fetch-happen@^10.1.8:
- version "10.1.8"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.1.8.tgz#3b6e93dd8d8fdb76c0d7bf32e617f37c3108435a"
- integrity sha512-0ASJbG12Au6+N5I84W+8FhGS6iM8MyzvZady+zaQAu+6IOaESFzCLLD0AR1sAFF3Jufi8bxm586ABN6hWd3k7g==
- dependencies:
- agentkeepalive "^4.2.1"
- cacache "^16.1.0"
- http-cache-semantics "^4.1.0"
- http-proxy-agent "^5.0.0"
- https-proxy-agent "^5.0.0"
- is-lambda "^1.0.1"
- lru-cache "^7.7.1"
- minipass "^3.1.6"
- minipass-collect "^1.0.2"
- minipass-fetch "^2.0.3"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.4"
- negotiator "^0.6.3"
- promise-retry "^2.0.1"
- socks-proxy-agent "^7.0.0"
- ssri "^9.0.0"
-
-map-obj@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
- integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=
-
-map-obj@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9"
- integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk=
-
-map-obj@^4.0.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
- integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
-
-marked-terminal@^5.0.0:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-5.1.1.tgz#d2edc2991841d893ee943b44b40b2ee9518b4d9f"
- integrity sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==
- dependencies:
- ansi-escapes "^5.0.0"
- cardinal "^2.1.1"
- chalk "^5.0.0"
- cli-table3 "^0.6.1"
- node-emoji "^1.11.0"
- supports-hyperlinks "^2.2.0"
-
-marked@^4.0.10:
- version "4.0.18"
- resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.18.tgz#cd0ac54b2e5610cfb90e8fd46ccaa8292c9ed569"
- integrity sha512-wbLDJ7Zh0sqA0Vdg6aqlbT+yPxqLblpAZh1mK2+AO2twQkPywvvqQNfEPVwSSRjZ7dZcdeVBIAgiO7MMp3Dszw==
-
-meow@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4"
- integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==
- dependencies:
- camelcase-keys "^4.0.0"
- decamelize-keys "^1.0.0"
- loud-rejection "^1.0.0"
- minimist-options "^3.0.1"
- normalize-package-data "^2.3.4"
- read-pkg-up "^3.0.0"
- redent "^2.0.0"
- trim-newlines "^2.0.0"
- yargs-parser "^10.0.0"
-
-meow@^8.0.0:
- version "8.1.2"
- resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897"
- integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==
- dependencies:
- "@types/minimist" "^1.2.0"
- camelcase-keys "^6.2.2"
- decamelize-keys "^1.1.0"
- hard-rejection "^2.1.0"
- minimist-options "4.1.0"
- normalize-package-data "^3.0.0"
- read-pkg-up "^7.0.1"
- redent "^3.0.0"
- trim-newlines "^3.0.0"
- type-fest "^0.18.0"
- yargs-parser "^20.2.3"
-
-merge-stream@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
- integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
-
-merge2@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81"
- integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==
-
-merge2@^1.4.1:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
- integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
-
-micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4:
- version "4.0.5"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
- integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
- dependencies:
- braces "^3.0.2"
- picomatch "^2.3.1"
-
-mime@^2.4.3:
- version "2.4.5"
- resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.5.tgz#d8de2ecb92982dedbb6541c9b6841d7f218ea009"
- integrity sha512-3hQhEUF027BuxZjQA3s7rIv/7VCQPa27hN9u9g87sEkWaKwQPuXOkVKtOeiyUrnWqTDiOs8Ed2rwg733mB0R5w==
-
-mime@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7"
- integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==
-
-mimic-fn@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
- integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
-
-min-indent@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
- integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
-
-minimatch@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
- integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
- dependencies:
- brace-expansion "^1.1.7"
-
-minimatch@^5.0.1:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7"
- integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==
- dependencies:
- brace-expansion "^2.0.1"
-
-minimist-options@4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
- integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
- dependencies:
- arrify "^1.0.1"
- is-plain-obj "^1.1.0"
- kind-of "^6.0.3"
-
-minimist-options@^3.0.1:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
- integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==
- dependencies:
- arrify "^1.0.1"
- is-plain-obj "^1.1.0"
-
-minimist@^1.2.0, minimist@^1.2.5:
- version "1.2.6"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
- integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
-
-minipass-collect@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
- integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
- dependencies:
- minipass "^3.0.0"
-
-minipass-fetch@^2.0.3:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.0.tgz#ca1754a5f857a3be99a9271277246ac0b44c3ff8"
- integrity sha512-H9U4UVBGXEyyWJnqYDCLp1PwD8XIkJ4akNHp1aGVI+2Ym7wQMlxDKi4IB4JbmyU+pl9pEs/cVrK6cOuvmbK4Sg==
- dependencies:
- minipass "^3.1.6"
- minipass-sized "^1.0.3"
- minizlib "^2.1.2"
- optionalDependencies:
- encoding "^0.1.13"
-
-minipass-flush@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
- integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
- dependencies:
- minipass "^3.0.0"
-
-minipass-json-stream@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7"
- integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==
- dependencies:
- jsonparse "^1.3.1"
- minipass "^3.0.0"
-
-minipass-pipeline@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
- integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
- dependencies:
- minipass "^3.0.0"
-
-minipass-sized@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70"
- integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==
- dependencies:
- minipass "^3.0.0"
-
-minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6:
- version "3.3.4"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae"
- integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==
- dependencies:
- yallist "^4.0.0"
-
-minizlib@^2.1.1, minizlib@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
- integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
- dependencies:
- minipass "^3.0.0"
- yallist "^4.0.0"
-
-mkdirp-infer-owner@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz#55d3b368e7d89065c38f32fd38e638f0ab61d316"
- integrity sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==
- dependencies:
- chownr "^2.0.0"
- infer-owner "^1.0.4"
- mkdirp "^1.0.3"
-
-mkdirp@^1.0.3, mkdirp@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
- integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
-
-modify-values@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022"
- integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==
-
-ms@2.1.2, ms@^2.0.0:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
- integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-
-ms@^2.1.2:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
- integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
-
-mute-stream@~0.0.4:
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
- integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
-
-negotiator@^0.6.3:
- version "0.6.3"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
- integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
-
-neo-async@^2.6.0:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
- integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
-
-nerf-dart@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a"
- integrity sha1-5tq3/r9a2Bbqgc9cYpxaDr3nLBo=
-
-nice-try@^1.0.4:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
- integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
-
-node-emoji@^1.11.0:
- version "1.11.0"
- resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c"
- integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==
- dependencies:
- lodash "^4.17.21"
-
-node-fetch@^2.3.0, node-fetch@^2.6.7:
- version "2.6.7"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
- integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
- dependencies:
- whatwg-url "^5.0.0"
-
-node-gyp@^9.0.0:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.1.0.tgz#c8d8e590678ea1f7b8097511dedf41fc126648f8"
- integrity sha512-HkmN0ZpQJU7FLbJauJTHkHlSVAXlNGDAzH/VYFZGDOnFyn/Na3GlNJfkudmufOdS6/jNFhy88ObzL7ERz9es1g==
- dependencies:
- env-paths "^2.2.0"
- glob "^7.1.4"
- graceful-fs "^4.2.6"
- make-fetch-happen "^10.0.3"
- nopt "^5.0.0"
- npmlog "^6.0.0"
- rimraf "^3.0.2"
- semver "^7.3.5"
- tar "^6.1.2"
- which "^2.0.2"
-
-nopt@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
- integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
- dependencies:
- abbrev "1"
-
-normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
- integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
- dependencies:
- hosted-git-info "^2.1.4"
- resolve "^1.10.0"
- semver "2 || 3 || 4 || 5"
- validate-npm-package-license "^3.0.1"
-
-normalize-package-data@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e"
- integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==
- dependencies:
- hosted-git-info "^4.0.1"
- is-core-module "^2.5.0"
- semver "^7.3.4"
- validate-npm-package-license "^3.0.1"
-
-normalize-package-data@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-4.0.0.tgz#1122d5359af21d4cd08718b92b058a658594177c"
- integrity sha512-m+GL22VXJKkKbw62ZaBBjv8u6IE3UI4Mh5QakIqs3fWiKe0Xyi6L97hakwZK41/LD4R/2ly71Bayx0NLMwLA/g==
- dependencies:
- hosted-git-info "^5.0.0"
- is-core-module "^2.8.1"
- semver "^7.3.5"
- validate-npm-package-license "^3.0.4"
-
-normalize-path@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
- integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
-
-normalize-url@^6.0.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a"
- integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==
-
-npm-audit-report@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/npm-audit-report/-/npm-audit-report-3.0.0.tgz#1bf3e531208b5f77347c8d00c3d9badf5be30cd6"
- integrity sha512-tWQzfbwz1sc4244Bx2BVELw0EmZlCsCF0X93RDcmmwhonCsPMoEviYsi+32R+mdRvOWXolPce9zo64n2xgPESw==
- dependencies:
- chalk "^4.0.0"
-
-npm-bundled@^1.1.1, npm-bundled@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1"
- integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==
- dependencies:
- npm-normalize-package-bin "^1.0.1"
-
-npm-install-checks@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-5.0.0.tgz#5ff27d209a4e3542b8ac6b0c1db6063506248234"
- integrity sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==
- dependencies:
- semver "^7.1.1"
-
-npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
- integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
-
-npm-package-arg@^9.0.0, npm-package-arg@^9.0.1, npm-package-arg@^9.1.0:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-9.1.0.tgz#a60e9f1e7c03e4e3e4e994ea87fff8b90b522987"
- integrity sha512-4J0GL+u2Nh6OnhvUKXRr2ZMG4lR8qtLp+kv7UiV00Y+nGiSxtttCyIRHCt5L5BNkXQld/RceYItau3MDOoGiBw==
- dependencies:
- hosted-git-info "^5.0.0"
- proc-log "^2.0.1"
- semver "^7.3.5"
- validate-npm-package-name "^4.0.0"
-
-npm-packlist@^5.1.0:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-5.1.1.tgz#79bcaf22a26b6c30aa4dd66b976d69cc286800e0"
- integrity sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==
- dependencies:
- glob "^8.0.1"
- ignore-walk "^5.0.1"
- npm-bundled "^1.1.2"
- npm-normalize-package-bin "^1.0.1"
-
-npm-pick-manifest@^7.0.0, npm-pick-manifest@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-7.0.1.tgz#76dda30a7cd6b99be822217a935c2f5eacdaca4c"
- integrity sha512-IA8+tuv8KujbsbLQvselW2XQgmXWS47t3CB0ZrzsRZ82DbDfkcFunOaPm4X7qNuhMfq+FmV7hQT4iFVpHqV7mg==
- dependencies:
- npm-install-checks "^5.0.0"
- npm-normalize-package-bin "^1.0.1"
- npm-package-arg "^9.0.0"
- semver "^7.3.5"
-
-npm-profile@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-6.2.0.tgz#e2d62b184815a97575702319b5f32ac59e4458bb"
- integrity sha512-wG7ZAsLvhqDc2b9COAuGUJgPRUfvCnQI8NEYeifSHZpSYXAgTsHu5812kkcwZeX/5WPd/ARX/MJRWTBFjlUxvg==
- dependencies:
- npm-registry-fetch "^13.0.1"
- proc-log "^2.0.0"
-
-npm-registry-fetch@^13.0.0, npm-registry-fetch@^13.0.1, npm-registry-fetch@^13.2.0:
- version "13.2.0"
- resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-13.2.0.tgz#8ba2e801bee45b6dfa428367ab42b7d8dea3bfce"
- integrity sha512-NEKnK02Co31+cnDtnAvEdq9xn6E9yKPK/aOHXZieVbw/qVOcFd7su6kviZjImYoszjM2GykMfGMiyyPUQjUkag==
- dependencies:
- make-fetch-happen "^10.0.6"
- minipass "^3.1.6"
- minipass-fetch "^2.0.3"
- minipass-json-stream "^1.0.1"
- minizlib "^2.1.2"
- npm-package-arg "^9.0.1"
- proc-log "^2.0.0"
-
-npm-run-path@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
- integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
- dependencies:
- path-key "^2.0.0"
-
-npm-run-path@^4.0.0, npm-run-path@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
- integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
- dependencies:
- path-key "^3.0.0"
-
-npm-user-validate@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-1.0.1.tgz#31428fc5475fe8416023f178c0ab47935ad8c561"
- integrity sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw==
-
-npm@^8.3.0:
- version "8.14.0"
- resolved "https://registry.yarnpkg.com/npm/-/npm-8.14.0.tgz#4ffc167187b390e55492516bdf4a378d6b4f5b1e"
- integrity sha512-wjDSM1GBwFUyqryw0jrWzFCFRlaiCZ9omNcnV3fLERqEYR4UsdRwR/SQCJNmri24yVvD+A/Ozr5p0V2WZVt6BQ==
- dependencies:
- "@isaacs/string-locale-compare" "^1.1.0"
- "@npmcli/arborist" "^5.0.4"
- "@npmcli/ci-detect" "^2.0.0"
- "@npmcli/config" "^4.1.0"
- "@npmcli/fs" "^2.1.0"
- "@npmcli/map-workspaces" "^2.0.3"
- "@npmcli/package-json" "^2.0.0"
- "@npmcli/run-script" "^4.1.7"
- abbrev "~1.1.1"
- archy "~1.0.0"
- cacache "^16.1.1"
- chalk "^4.1.2"
- chownr "^2.0.0"
- cli-columns "^4.0.0"
- cli-table3 "^0.6.2"
- columnify "^1.6.0"
- fastest-levenshtein "^1.0.12"
- glob "^8.0.1"
- graceful-fs "^4.2.10"
- hosted-git-info "^5.0.0"
- ini "^3.0.0"
- init-package-json "^3.0.2"
- is-cidr "^4.0.2"
- json-parse-even-better-errors "^2.3.1"
- libnpmaccess "^6.0.2"
- libnpmdiff "^4.0.2"
- libnpmexec "^4.0.2"
- libnpmfund "^3.0.1"
- libnpmhook "^8.0.2"
- libnpmorg "^4.0.2"
- libnpmpack "^4.0.2"
- libnpmpublish "^6.0.2"
- libnpmsearch "^5.0.2"
- libnpmteam "^4.0.2"
- libnpmversion "^3.0.1"
- make-fetch-happen "^10.1.8"
- minipass "^3.1.6"
- minipass-pipeline "^1.2.4"
- mkdirp "^1.0.4"
- mkdirp-infer-owner "^2.0.0"
- ms "^2.1.2"
- node-gyp "^9.0.0"
- nopt "^5.0.0"
- npm-audit-report "^3.0.0"
- npm-install-checks "^5.0.0"
- npm-package-arg "^9.1.0"
- npm-pick-manifest "^7.0.1"
- npm-profile "^6.2.0"
- npm-registry-fetch "^13.2.0"
- npm-user-validate "^1.0.1"
- npmlog "^6.0.2"
- opener "^1.5.2"
- p-map "^4.0.0"
- pacote "^13.6.1"
- parse-conflict-json "^2.0.2"
- proc-log "^2.0.1"
- qrcode-terminal "^0.12.0"
- read "~1.0.7"
- read-package-json "^5.0.1"
- read-package-json-fast "^2.0.3"
- readdir-scoped-modules "^1.1.0"
- rimraf "^3.0.2"
- semver "^7.3.7"
- ssri "^9.0.1"
- tar "^6.1.11"
- text-table "~0.2.0"
- tiny-relative-date "^1.3.0"
- treeverse "^2.0.0"
- validate-npm-package-name "^4.0.0"
- which "^2.0.2"
- write-file-atomic "^4.0.1"
-
-npmlog@^6.0.0, npmlog@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830"
- integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==
- dependencies:
- are-we-there-yet "^3.0.0"
- console-control-strings "^1.1.0"
- gauge "^4.0.3"
- set-blocking "^2.0.0"
-
-number-is-nan@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
- integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
-
-once@^1.3.0, once@^1.3.1, once@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
- integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
- dependencies:
- wrappy "1"
-
-onetime@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5"
- integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==
- dependencies:
- mimic-fn "^2.1.0"
-
-onetime@^5.1.2:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
- integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
- dependencies:
- mimic-fn "^2.1.0"
-
-opencollective-postinstall@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89"
- integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==
-
-opener@^1.5.2:
- version "1.5.2"
- resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
- integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
-
-os-name@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801"
- integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==
- dependencies:
- macos-release "^2.2.0"
- windows-release "^3.1.0"
-
-p-each-series@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48"
- integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==
-
-p-filter@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c"
- integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==
- dependencies:
- p-map "^2.0.0"
-
-p-finally@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
- integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
-
-p-is-promise@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-3.0.0.tgz#58e78c7dfe2e163cf2a04ff869e7c1dba64a5971"
- integrity sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==
-
-p-limit@^1.1.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
- integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
- dependencies:
- p-try "^1.0.0"
-
-p-limit@^2.2.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
- integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
- dependencies:
- p-try "^2.0.0"
-
-p-limit@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.2.tgz#1664e010af3cadc681baafd3e2a437be7b0fb5fe"
- integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==
- dependencies:
- p-try "^2.0.0"
-
-p-locate@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
- integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
- dependencies:
- p-limit "^1.1.0"
-
-p-locate@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
- integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
- dependencies:
- p-limit "^2.2.0"
-
-p-locate@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
- integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
- dependencies:
- p-limit "^3.0.2"
-
-p-map@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
- integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
-
-p-map@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
- integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
- dependencies:
- aggregate-error "^3.0.0"
-
-p-reduce@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a"
- integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==
-
-p-retry@^4.0.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.2.0.tgz#ea9066c6b44f23cab4cd42f6147cdbbc6604da5d"
- integrity sha512-jPH38/MRh263KKcq0wBNOGFJbm+U6784RilTmHjB/HM9kH9V8WlCpVUcdOmip9cjXOh6MxZ5yk1z2SjDUJfWmA==
- dependencies:
- "@types/retry" "^0.12.0"
- retry "^0.12.0"
-
-p-try@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
- integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
-
-p-try@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
- integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-
-pacote@^13.0.3, pacote@^13.6.1:
- version "13.6.1"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-13.6.1.tgz#ac6cbd9032b4c16e5c1e0c60138dfe44e4cc589d"
- integrity sha512-L+2BI1ougAPsFjXRyBhcKmfT016NscRFLv6Pz5EiNf1CCFJFU0pSKKQwsZTyAQB+sTuUL4TyFyp6J1Ork3dOqw==
- dependencies:
- "@npmcli/git" "^3.0.0"
- "@npmcli/installed-package-contents" "^1.0.7"
- "@npmcli/promise-spawn" "^3.0.0"
- "@npmcli/run-script" "^4.1.0"
- cacache "^16.0.0"
- chownr "^2.0.0"
- fs-minipass "^2.1.0"
- infer-owner "^1.0.4"
- minipass "^3.1.6"
- mkdirp "^1.0.4"
- npm-package-arg "^9.0.0"
- npm-packlist "^5.1.0"
- npm-pick-manifest "^7.0.0"
- npm-registry-fetch "^13.0.1"
- proc-log "^2.0.0"
- promise-retry "^2.0.1"
- read-package-json "^5.0.0"
- read-package-json-fast "^2.0.3"
- rimraf "^3.0.2"
- ssri "^9.0.0"
- tar "^6.1.11"
-
-parent-module@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
- integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
- dependencies:
- callsites "^3.0.0"
-
-parse-conflict-json@^2.0.1, parse-conflict-json@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz#3d05bc8ffe07d39600dc6436c6aefe382033d323"
- integrity sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==
- dependencies:
- json-parse-even-better-errors "^2.3.1"
- just-diff "^5.0.1"
- just-diff-apply "^5.2.0"
-
-parse-json@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
- integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
- dependencies:
- error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
-
-parse-json@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
- integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
- lines-and-columns "^1.1.6"
-
-parsimmon@^1.13.0:
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/parsimmon/-/parsimmon-1.13.0.tgz#6e4ef3dbd45ed6ea6808be600ac4b9c8a44228cf"
- integrity sha512-5UIrOCW+gjbILkjKPgTgmq8LKf8TT3Iy7kN2VD7OtQ81facKn8B4gG1X94jWqXYZsxG2KbJhrv/Yq/5H6BQn7A==
-
-path-exists@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
- integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
-
-path-exists@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
- integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
-
-path-is-absolute@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
- integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
-
-path-key@^2.0.0, path-key@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
- integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
-
-path-key@^3.0.0, path-key@^3.1.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
- integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
-
-path-parse@^1.0.6:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
- integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
-
-path-type@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
- integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
- dependencies:
- pify "^3.0.0"
-
-path-type@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
- integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
-
-picomatch@^2.2.1:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
- integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
-
-picomatch@^2.3.1:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
- integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
-
-pify@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
- integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
-
-pkg-conf@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058"
- integrity sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=
- dependencies:
- find-up "^2.0.0"
- load-json-file "^4.0.0"
-
-pkg-dir@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
- integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
- dependencies:
- find-up "^4.0.0"
-
-please-upgrade-node@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
- integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
- dependencies:
- semver-compare "^1.0.0"
-
-prettier@2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.1.1.tgz#d9485dd5e499daa6cb547023b87a6cf51bee37d6"
- integrity sha512-9bY+5ZWCfqj3ghYBLxApy2zf6m+NJo5GzmLTpr9FsApsfjriNnS2dahWReHMi7qNPhhHl9SYHJs2cHZLgexNIw==
-
-proc-log@^2.0.0, proc-log@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-2.0.1.tgz#8f3f69a1f608de27878f91f5c688b225391cb685"
- integrity sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==
-
-process-nextick-args@~2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
- integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-
-promise-all-reject-late@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz#f8ebf13483e5ca91ad809ccc2fcf25f26f8643c2"
- integrity sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==
-
-promise-call-limit@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-call-limit/-/promise-call-limit-1.0.1.tgz#4bdee03aeb85674385ca934da7114e9bcd3c6e24"
- integrity sha512-3+hgaa19jzCGLuSCbieeRsu5C2joKfYn8pY6JAuXFRVfF4IO+L7UPpFWNTeWT9pM7uhskvbPPd/oEOktCn317Q==
-
-promise-inflight@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
- integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
-
-promise-retry@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22"
- integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==
- dependencies:
- err-code "^2.0.2"
- retry "^0.12.0"
-
-promisified-properties@^2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/promisified-properties/-/promisified-properties-2.0.3.tgz#bfa5be69305fd720162bd52fe26047ec8685fa1f"
- integrity sha512-4gOK+0YbtKibVzMGfduu8muo7hQS9oZek0TVNfq8TJj+j9qqMJnwGVcRma3rWO9hloF2vgTGVF3GntWd4LLTIw==
- dependencies:
- parsimmon "^1.13.0"
-
-promzard@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee"
- integrity sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=
- dependencies:
- read "1"
-
-pump@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
- integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
-q@^1.5.1:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
- integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
-
-qrcode-terminal@^0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz#bb5b699ef7f9f0505092a3748be4464fe71b5819"
- integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==
-
-quick-lru@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8"
- integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g=
-
-quick-lru@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
- integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
-
-rc@^1.2.8:
- version "1.2.8"
- resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
- integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
- dependencies:
- deep-extend "^0.6.0"
- ini "~1.3.0"
- minimist "^1.2.0"
- strip-json-comments "~2.0.1"
-
-read-cmd-shim@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-3.0.0.tgz#62b8c638225c61e6cc607f8f4b779f3b8238f155"
- integrity sha512-KQDVjGqhZk92PPNRj9ZEXEuqg8bUobSKRw+q0YQ3TKI5xkce7bUJobL4Z/OtiEbAAv70yEpYIXp4iQ9L8oPVog==
-
-read-package-json-fast@^2.0.2, read-package-json-fast@^2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz#323ca529630da82cb34b36cc0b996693c98c2b83"
- integrity sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==
- dependencies:
- json-parse-even-better-errors "^2.3.0"
- npm-normalize-package-bin "^1.0.1"
-
-read-package-json@^5.0.0, read-package-json@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-5.0.1.tgz#1ed685d95ce258954596b13e2e0e76c7d0ab4c26"
- integrity sha512-MALHuNgYWdGW3gKzuNMuYtcSSZbGQm94fAp16xt8VsYTLBjUSc55bLMKe6gzpWue0Tfi6CBgwCSdDAqutGDhMg==
- dependencies:
- glob "^8.0.1"
- json-parse-even-better-errors "^2.3.1"
- normalize-package-data "^4.0.0"
- npm-normalize-package-bin "^1.0.1"
-
-read-pkg-up@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
- integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
- dependencies:
- find-up "^2.0.0"
- read-pkg "^3.0.0"
-
-read-pkg-up@^7.0.0, read-pkg-up@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
- integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
- dependencies:
- find-up "^4.1.0"
- read-pkg "^5.2.0"
- type-fest "^0.8.1"
-
-read-pkg@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
- integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
- dependencies:
- load-json-file "^4.0.0"
- normalize-package-data "^2.3.2"
- path-type "^3.0.0"
-
-read-pkg@^5.0.0, read-pkg@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
- integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
- dependencies:
- "@types/normalize-package-data" "^2.4.0"
- normalize-package-data "^2.5.0"
- parse-json "^5.0.0"
- type-fest "^0.6.0"
-
-read@1, read@^1.0.7, read@~1.0.7:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4"
- integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=
- dependencies:
- mute-stream "~0.0.4"
-
-"readable-stream@2 || 3", readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
- dependencies:
- inherits "^2.0.3"
- string_decoder "^1.1.1"
- util-deprecate "^1.0.1"
-
-readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@~2.3.6:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
- dependencies:
- core-util-is "~1.0.0"
- inherits "~2.0.3"
- isarray "~1.0.0"
- process-nextick-args "~2.0.0"
- safe-buffer "~5.1.1"
- string_decoder "~1.1.1"
- util-deprecate "~1.0.1"
-
-readdir-scoped-modules@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309"
- integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==
- dependencies:
- debuglog "^1.0.1"
- dezalgo "^1.0.0"
- graceful-fs "^4.1.2"
- once "^1.3.0"
-
-redent@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
- integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=
- dependencies:
- indent-string "^3.0.0"
- strip-indent "^2.0.0"
-
-redent@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
- integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
- dependencies:
- indent-string "^4.0.0"
- strip-indent "^3.0.0"
-
-redeyed@~2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b"
- integrity sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=
- dependencies:
- esprima "~4.0.0"
-
-regenerator-runtime@^0.13.4:
- version "0.13.5"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
- integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
-
-registry-auth-token@^4.0.0:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.1.1.tgz#40a33be1e82539460f94328b0f7f0f84c16d9479"
- integrity sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA==
- dependencies:
- rc "^1.2.8"
-
-require-directory@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
- integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
-
-require-main-filename@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
- integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
-
-resolve-from@5.0.0, resolve-from@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
- integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
-
-resolve-from@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
- integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
-
-resolve-global@1.0.0, resolve-global@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255"
- integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==
- dependencies:
- global-dirs "^0.1.1"
-
-resolve@^1.10.0:
- version "1.17.0"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
- integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
- dependencies:
- path-parse "^1.0.6"
-
-restore-cursor@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
- integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
- dependencies:
- onetime "^5.1.0"
- signal-exit "^3.0.2"
-
-retry@^0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
- integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
-
-reusify@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
- integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
-
-rimraf@^3.0.0, rimraf@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
- integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
- dependencies:
- glob "^7.1.3"
-
-run-parallel@^1.1.9:
- version "1.1.9"
- resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679"
- integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==
-
-rxjs@^6.6.3:
- version "6.6.3"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552"
- integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
- dependencies:
- tslib "^1.9.0"
-
-safe-buffer@~5.1.0, safe-buffer@~5.1.1:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
- integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-
-safe-buffer@~5.2.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
- integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
-
-"safer-buffer@>= 2.1.2 < 3.0.0":
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
- integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-
-semantic-release@19.0.3:
- version "19.0.3"
- resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-19.0.3.tgz#9291053ad9890052f28e7c5921d4741530d516fd"
- integrity sha512-HaFbydST1cDKZHuFZxB8DTrBLJVK/AnDExpK0s3EqLIAAUAHUgnd+VSJCUtTYQKkAkauL8G9CucODrVCc7BuAA==
- dependencies:
- "@semantic-release/commit-analyzer" "^9.0.2"
- "@semantic-release/error" "^3.0.0"
- "@semantic-release/github" "^8.0.0"
- "@semantic-release/npm" "^9.0.0"
- "@semantic-release/release-notes-generator" "^10.0.0"
- aggregate-error "^3.0.0"
- cosmiconfig "^7.0.0"
- debug "^4.0.0"
- env-ci "^5.0.0"
- execa "^5.0.0"
- figures "^3.0.0"
- find-versions "^4.0.0"
- get-stream "^6.0.0"
- git-log-parser "^1.2.0"
- hook-std "^2.0.0"
- hosted-git-info "^4.0.0"
- lodash "^4.17.21"
- marked "^4.0.10"
- marked-terminal "^5.0.0"
- micromatch "^4.0.2"
- p-each-series "^2.1.0"
- p-reduce "^2.0.0"
- read-pkg-up "^7.0.0"
- resolve-from "^5.0.0"
- semver "^7.3.2"
- semver-diff "^3.1.1"
- signale "^1.2.1"
- yargs "^16.2.0"
-
-semver-compare@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
- integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
-
-semver-diff@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b"
- integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==
- dependencies:
- semver "^6.3.0"
-
-semver-regex@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338"
- integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==
-
-semver-regex@^3.1.2:
- version "3.1.4"
- resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-3.1.4.tgz#13053c0d4aa11d070a2f2872b6b1e3ae1e1971b4"
- integrity sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==
-
-"semver@2 || 3 || 4 || 5", semver@^5.5.0:
- version "5.7.1"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
- integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-
-semver@7.3.2:
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
- integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
-
-semver@^6.0.0, semver@^6.3.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
- integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-
-semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7:
- version "7.3.7"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
- integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
- dependencies:
- lru-cache "^6.0.0"
-
-set-blocking@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
- integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
-
-shebang-command@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
- integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
- dependencies:
- shebang-regex "^1.0.0"
-
-shebang-command@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
- integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
- dependencies:
- shebang-regex "^3.0.0"
-
-shebang-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
- integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
-
-shebang-regex@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
- integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
-
-signal-exit@^3.0.0, signal-exit@^3.0.2:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
- integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
-
-signal-exit@^3.0.3, signal-exit@^3.0.7:
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
- integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
-
-signale@^1.2.1:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/signale/-/signale-1.4.0.tgz#c4be58302fb0262ac00fc3d886a7c113759042f1"
- integrity sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==
- dependencies:
- chalk "^2.3.2"
- figures "^2.0.0"
- pkg-conf "^2.1.0"
-
-slash@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
- integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
-
-slice-ansi@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
- integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==
- dependencies:
- ansi-styles "^4.0.0"
- astral-regex "^2.0.0"
- is-fullwidth-code-point "^3.0.0"
-
-slice-ansi@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
- integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
- dependencies:
- ansi-styles "^4.0.0"
- astral-regex "^2.0.0"
- is-fullwidth-code-point "^3.0.0"
-
-smart-buffer@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae"
- integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==
-
-socks-proxy-agent@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6"
- integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==
- dependencies:
- agent-base "^6.0.2"
- debug "^4.3.3"
- socks "^2.6.2"
-
-socks@^2.6.2:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/socks/-/socks-2.6.2.tgz#ec042d7960073d40d94268ff3bb727dc685f111a"
- integrity sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==
- dependencies:
- ip "^1.1.5"
- smart-buffer "^4.2.0"
-
-source-map@^0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
- integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-
-spawn-error-forwarder@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz#1afd94738e999b0346d7b9fc373be55e07577029"
- integrity sha1-Gv2Uc46ZmwNG17n8NzvlXgdXcCk=
-
-spdx-correct@^3.0.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
- integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
- dependencies:
- spdx-expression-parse "^3.0.0"
- spdx-license-ids "^3.0.0"
-
-spdx-exceptions@^2.1.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
- integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
-
-spdx-expression-parse@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
- integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
- dependencies:
- spdx-exceptions "^2.1.0"
- spdx-license-ids "^3.0.0"
-
-spdx-license-ids@^3.0.0:
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654"
- integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
-
-split2@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493"
- integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==
- dependencies:
- through2 "^2.0.2"
-
-split2@^3.0.0:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f"
- integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==
- dependencies:
- readable-stream "^3.0.0"
-
-split2@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/split2/-/split2-3.1.1.tgz#c51f18f3e06a8c4469aaab487687d8d956160bb6"
- integrity sha512-emNzr1s7ruq4N+1993yht631/JH+jaj0NYBosuKmLcq+JkGQ9MmTw1RB1fGaTCzUuseRIClrlSLHRNYGwWQ58Q==
- dependencies:
- readable-stream "^3.0.0"
-
-split2@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/split2/-/split2-1.0.0.tgz#52e2e221d88c75f9a73f90556e263ff96772b314"
- integrity sha1-UuLiIdiMdfmnP5BVbiY/+WdysxQ=
- dependencies:
- through2 "~2.0.0"
-
-split@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
- integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==
- dependencies:
- through "2"
-
-ssri@^9.0.0, ssri@^9.0.1:
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057"
- integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==
- dependencies:
- minipass "^3.1.1"
-
-stream-combiner2@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe"
- integrity sha1-+02KFCDqNidk4hrUeAOXvry0HL4=
- dependencies:
- duplexer2 "~0.1.0"
- readable-stream "^2.0.2"
-
-string-argv@0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
- integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
-
-"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.3:
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
- integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
- dependencies:
- emoji-regex "^8.0.0"
- is-fullwidth-code-point "^3.0.0"
- strip-ansi "^6.0.1"
-
-string-width@^4.1.0, string-width@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
- integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
- dependencies:
- emoji-regex "^8.0.0"
- is-fullwidth-code-point "^3.0.0"
- strip-ansi "^6.0.0"
-
-string_decoder@^1.1.1:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
- integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
- dependencies:
- safe-buffer "~5.2.0"
-
-string_decoder@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
- integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
- dependencies:
- safe-buffer "~5.1.0"
-
-stringify-object@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
- integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
- dependencies:
- get-own-enumerable-property-symbols "^3.0.0"
- is-obj "^1.0.1"
- is-regexp "^1.0.0"
-
-strip-ansi@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
- integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
- dependencies:
- ansi-regex "^5.0.0"
-
-strip-ansi@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
- integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
- dependencies:
- ansi-regex "^5.0.1"
-
-strip-bom@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
- integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
-
-strip-eof@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
- integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-
-strip-final-newline@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
- integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
-
-strip-indent@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
- integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=
-
-strip-indent@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
- integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
- dependencies:
- min-indent "^1.0.0"
-
-strip-json-comments@~2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
- integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
-
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
- dependencies:
- has-flag "^3.0.0"
-
-supports-color@^7.0.0, supports-color@^7.1.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
- integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
- dependencies:
- has-flag "^4.0.0"
-
-supports-hyperlinks@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb"
- integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==
- dependencies:
- has-flag "^4.0.0"
- supports-color "^7.0.0"
-
-tar@^6.1.0, tar@^6.1.11, tar@^6.1.2:
- version "6.1.11"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621"
- integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==
- dependencies:
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- minipass "^3.0.0"
- minizlib "^2.1.1"
- mkdirp "^1.0.3"
- yallist "^4.0.0"
-
-temp-dir@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e"
- integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==
-
-tempy@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/tempy/-/tempy-1.0.1.tgz#30fe901fd869cfb36ee2bd999805aa72fbb035de"
- integrity sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==
- dependencies:
- del "^6.0.0"
- is-stream "^2.0.0"
- temp-dir "^2.0.0"
- type-fest "^0.16.0"
- unique-string "^2.0.0"
-
-text-extensions@^1.0.0:
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26"
- integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==
-
-text-table@~0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
- integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
-
-through2@^2.0.2, through2@~2.0.0:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
- integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
- dependencies:
- readable-stream "~2.3.6"
- xtend "~4.0.1"
-
-through2@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.1.tgz#39276e713c3302edf9e388dd9c812dd3b825bd5a"
- integrity sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==
- dependencies:
- readable-stream "2 || 3"
-
-through2@^4.0.0:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764"
- integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==
- dependencies:
- readable-stream "3"
-
-through@2, "through@>=2.2.7 <3", through@^2.3.8:
- version "2.3.8"
- resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
- integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
-
-tiny-relative-date@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz#fa08aad501ed730f31cc043181d995c39a935e07"
- integrity sha512-MOQHpzllWxDCHHaDno30hhLfbouoYlOI8YlMNtvKe1zXbjEVhbcEovQxvZrPvtiYW630GQDoMMarCnjfyfHA+A==
-
-to-regex-range@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
- integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
- dependencies:
- is-number "^7.0.0"
-
-tr46@~0.0.3:
- version "0.0.3"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
- integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
-
-traverse@~0.6.6:
- version "0.6.6"
- resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137"
- integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=
-
-treeverse@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/treeverse/-/treeverse-2.0.0.tgz#036dcef04bc3fd79a9b79a68d4da03e882d8a9ca"
- integrity sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==
-
-trim-newlines@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20"
- integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=
-
-trim-newlines@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144"
- integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
-
-trim-off-newlines@^1.0.0:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.3.tgz#8df24847fcb821b0ab27d58ab6efec9f2fe961a1"
- integrity sha512-kh6Tu6GbeSNMGfrrZh6Bb/4ZEHV1QlB4xNDBeog8Y9/QwFlKTRyWvY3Fs9tRDAMZliVUwieMgEdIeL/FtqjkJg==
-
-tslib@^1.9.0:
- version "1.11.2"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.2.tgz#9c79d83272c9a7aaf166f73915c9667ecdde3cc9"
- integrity sha512-tTSkux6IGPnUGUd1XAZHcpu85MOkIl5zX49pO+jfsie3eP0B6pyhOlLXm3cAC6T7s+euSDDUUV+Acop5WmtkVg==
-
-type-fest@^0.11.0:
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1"
- integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
-
-type-fest@^0.16.0:
- version "0.16.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860"
- integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==
-
-type-fest@^0.18.0:
- version "0.18.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f"
- integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==
-
-type-fest@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
- integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
-
-type-fest@^0.8.1:
- version "0.8.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
- integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
-
-type-fest@^1.0.2:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1"
- integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==
-
-uglify-js@^3.1.4:
- version "3.16.2"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.16.2.tgz#0481e1dbeed343ad1c2ddf3c6d42e89b7a6d4def"
- integrity sha512-AaQNokTNgExWrkEYA24BTNMSjyqEXPSfhqoS0AxmHkCJ4U+Dyy5AvbGV/sqxuxficEfGGoX3zWw9R7QpLFfEsg==
-
-unique-filename@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
- integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
- dependencies:
- unique-slug "^2.0.0"
-
-unique-slug@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
- integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
- dependencies:
- imurmurhash "^0.1.4"
-
-unique-string@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
- integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==
- dependencies:
- crypto-random-string "^2.0.0"
-
-universal-user-agent@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-5.0.0.tgz#a3182aa758069bf0e79952570ca757de3579c1d9"
- integrity sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==
- dependencies:
- os-name "^3.1.0"
-
-universal-user-agent@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee"
- integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==
-
-universalify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d"
- integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==
-
-universalify@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
- integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
-
-url-join@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7"
- integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==
-
-util-deprecate@^1.0.1, util-deprecate@~1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
- integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
-
-validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
- integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
- dependencies:
- spdx-correct "^3.0.0"
- spdx-expression-parse "^3.0.0"
-
-validate-npm-package-name@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz#fe8f1c50ac20afdb86f177da85b3600f0ac0d747"
- integrity sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==
- dependencies:
- builtins "^5.0.0"
-
-walk-up-path@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-1.0.0.tgz#d4745e893dd5fd0dbb58dd0a4c6a33d9c9fec53e"
- integrity sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==
-
-wcwidth@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
- integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
- dependencies:
- defaults "^1.0.3"
-
-webidl-conversions@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
- integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
-
-whatwg-url@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
- integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
- dependencies:
- tr46 "~0.0.3"
- webidl-conversions "^3.0.0"
-
-which-module@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
- integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
-
-which-pm-runs@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
- integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
-
-which@^1.2.9:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
- integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
- dependencies:
- isexe "^2.0.0"
-
-which@^2.0.1, which@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
- integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
- dependencies:
- isexe "^2.0.0"
-
-wide-align@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3"
- integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
- dependencies:
- string-width "^1.0.2 || 2 || 3 || 4"
-
-windows-release@^3.1.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.3.0.tgz#dce167e9f8be733f21c849ebd4d03fe66b29b9f0"
- integrity sha512-2HetyTg1Y+R+rUgrKeUEhAG/ZuOmTrI1NBb3ZyAGQMYmOJjBBPe4MTodghRkmLJZHwkuPi02anbeGP+Zf401LQ==
- dependencies:
- execa "^1.0.0"
-
-wordwrap@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
- integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
-
-wrap-ansi@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
- integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
- dependencies:
- ansi-styles "^4.0.0"
- string-width "^4.1.0"
- strip-ansi "^6.0.0"
-
-wrap-ansi@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
- integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
- dependencies:
- ansi-styles "^4.0.0"
- string-width "^4.1.0"
- strip-ansi "^6.0.0"
-
-wrappy@1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
- integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
-
-write-file-atomic@^4.0.0, write-file-atomic@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.1.tgz#9faa33a964c1c85ff6f849b80b42a88c2c537c8f"
- integrity sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==
- dependencies:
- imurmurhash "^0.1.4"
- signal-exit "^3.0.7"
-
-xtend@~4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
-
-y18n@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
- integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
-
-y18n@^5.0.5:
- version "5.0.8"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
- integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
-
-yallist@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
- integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
-
-yaml@^1.10.0:
- version "1.10.0"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
- integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
-
-yargs-parser@^10.0.0:
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8"
- integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==
- dependencies:
- camelcase "^4.1.0"
-
-yargs-parser@^18.1.2:
- version "18.1.3"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
- integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
- dependencies:
- camelcase "^5.0.0"
- decamelize "^1.2.0"
-
-yargs-parser@^20.2.2, yargs-parser@^20.2.3:
- version "20.2.9"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
- integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
-
-yargs@^15.1.0:
- version "15.4.1"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
- integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
- dependencies:
- cliui "^6.0.0"
- decamelize "^1.2.0"
- find-up "^4.1.0"
- get-caller-file "^2.0.1"
- require-directory "^2.1.1"
- require-main-filename "^2.0.0"
- set-blocking "^2.0.0"
- string-width "^4.2.0"
- which-module "^2.0.0"
- y18n "^4.0.0"
- yargs-parser "^18.1.2"
-
-yargs@^16.2.0:
- version "16.2.0"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
- integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
- dependencies:
- cliui "^7.0.2"
- escalade "^3.1.1"
- get-caller-file "^2.0.5"
- require-directory "^2.1.1"
- string-width "^4.2.0"
- y18n "^5.0.5"
- yargs-parser "^20.2.2"