invenio-app-rdm 8.0.0.dev9__py2.py3-none-any.whl → 14.0.0b4.dev4__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_app_rdm/__init__.py +13 -4
- invenio_app_rdm/administration/__init__.py +8 -0
- invenio_app_rdm/administration/audit_logs/__init__.py +12 -0
- invenio_app_rdm/administration/audit_logs/audit_logs.py +81 -0
- invenio_app_rdm/administration/domains/__init__.py +22 -0
- invenio_app_rdm/administration/domains/domains.py +159 -0
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/__init__.py +15 -0
- invenio_app_rdm/administration/records/records.py +163 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/audit_logs.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/domains_search.html +13 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/drafts.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/records.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +93 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation_details.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/users_search.html +14 -0
- invenio_app_rdm/administration/user_moderation/__init__.py +11 -0
- invenio_app_rdm/administration/user_moderation/user_moderation.py +175 -0
- invenio_app_rdm/administration/users/__init__.py +12 -0
- invenio_app_rdm/administration/users/users.py +130 -0
- invenio_app_rdm/administration/views/__init__.py +11 -0
- invenio_app_rdm/administration/views/ui.py +21 -0
- invenio_app_rdm/cli.py +95 -0
- invenio_app_rdm/communities_ui/__init__.py +9 -0
- invenio_app_rdm/communities_ui/searchapp.py +27 -0
- invenio_app_rdm/communities_ui/sitemap.py +63 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/collection.html +60 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/macros.html +43 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html +59 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html +24 -0
- invenio_app_rdm/communities_ui/views/__init__.py +13 -0
- invenio_app_rdm/communities_ui/views/communities.py +206 -0
- invenio_app_rdm/communities_ui/views/ui.py +93 -0
- invenio_app_rdm/config.py +1072 -182
- invenio_app_rdm/ext.py +157 -0
- invenio_app_rdm/fixtures/__init__.py +56 -0
- invenio_app_rdm/fixtures/data/oai_sets.yaml +6 -0
- invenio_app_rdm/fixtures/oai_sets.py +20 -0
- invenio_app_rdm/fixtures/pages/.gitkeep +1 -0
- invenio_app_rdm/fixtures/pages.py +76 -0
- invenio_app_rdm/records_ui/previewer/__init__.py +9 -0
- invenio_app_rdm/records_ui/previewer/iiif_simple.py +51 -0
- invenio_app_rdm/records_ui/searchapp.py +46 -232
- invenio_app_rdm/records_ui/sitemap.py +44 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +63 -18
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +316 -169
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html +64 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +4 -3
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html +2 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html +22 -20
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +299 -167
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +3 -24
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html +6 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +34 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +20 -15
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +18 -41
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +55 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html +9 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +62 -49
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html +23 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +33 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +5 -9
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html +21 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html +15 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +112 -90
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +21 -19
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html +17 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html +3 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html +3 -7
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +69 -48
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +234 -49
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +170 -71
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html +62 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html +21 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html +3 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html +33 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html +3 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
- invenio_app_rdm/records_ui/utils.py +127 -2
- invenio_app_rdm/records_ui/views/__init__.py +114 -38
- invenio_app_rdm/records_ui/views/decorators.py +395 -117
- invenio_app_rdm/records_ui/views/deposits.py +414 -104
- invenio_app_rdm/records_ui/views/filters.py +118 -11
- invenio_app_rdm/records_ui/views/records.py +395 -66
- invenio_app_rdm/redirector/__init__.py +8 -0
- invenio_app_rdm/redirector/resource.py +106 -0
- invenio_app_rdm/redirector/views.py +18 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-inclusion/index.html +14 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html +38 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html +26 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +129 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +66 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html +78 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html +49 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html +49 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html +59 -0
- invenio_app_rdm/requests_ui/views/__init__.py +1 -3
- invenio_app_rdm/requests_ui/views/requests.py +345 -53
- invenio_app_rdm/requests_ui/views/ui.py +38 -9
- invenio_app_rdm/tasks.py +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js +136 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js +35 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +119 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js +31 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js +87 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js +89 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js +92 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +199 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +80 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +109 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js +196 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js +27 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/SearchResultItemLayout.js +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/drafts/index.js +32 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/CompareRevisions.js +129 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordActions.js +75 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordResourceActions.js +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RemovalReasonsSelect.js +85 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RestoreConfirmation.js +108 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/TombstoneForm.js +212 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js +38 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +30 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js +40 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js +84 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js +121 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +79 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js +103 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js +29 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js +151 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationBulkActions.js +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationSearchLayout.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/UserActions.js +263 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/api.js +42 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/index.js +8 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/routes.js +38 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/index.js +30 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/SearchResultItemLayout.js +202 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/UserSearchLayout.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js +114 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js +61 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +84 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +46 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/components.js +3 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +52 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +61 -39
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js +78 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js +54 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js +189 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +788 -307
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js +65 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +27 -13
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +165 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js +23 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js +254 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +179 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js +186 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js +30 -16
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +68 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +140 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js +129 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js +63 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js +89 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js +33 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +68 -73
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +150 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +90 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +109 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +58 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/index.js +3 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +123 -43
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +143 -79
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +188 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js +93 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/CreateAccessLink.js +111 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchItem.js +170 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchResultContainer.js +236 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +106 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +239 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AccessUsersGroups.js +178 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AddUserGroupAccessModal.js +172 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/GroupsTab.js +88 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/PeopleTab.js +88 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/UserGroupAccessSearchResultItem.js +158 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/{ShareButton.js → ShareOptions/ShareButton.js} +23 -6
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +252 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/api/api.js +39 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js +24 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +92 -124
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +131 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/index.js +13 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +12 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +61 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +177 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +50 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js +34 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +165 -299
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +48 -20
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js +28 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +164 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +210 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +78 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +210 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +155 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +154 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +85 -74
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less +26 -70
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/previewer/iiif_simple.less +16 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +170 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +110 -17
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +395 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +34 -8
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +6 -9
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +103 -15
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables +5 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +121 -13
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.variables +6 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +61 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +29 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +115 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.variables +4 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +50 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.variables +5 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +116 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +68 -37
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +80 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.overrides +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +557 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +142 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +161 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.variables +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.overrides +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +116 -12
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +4 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +151 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables +5 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.overrides +3 -23
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +67 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.variables +3 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +71 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +168 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.variables +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides +463 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +164 -10
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +951 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +307 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +896 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +961 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +897 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +830 -160
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +282 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +883 -4
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +259 -65
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +290 -63
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +960 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +896 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +960 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +901 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +289 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +952 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +17 -6
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +905 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +907 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +910 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +901 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +908 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +289 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +958 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +908 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +951 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +952 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +910 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +891 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +5 -8
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +872 -142
- invenio_app_rdm/theme/static/images/gnd-icon.svg +27 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +19 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +33 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +31 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +32 -79
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html +40 -57
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +114 -76
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +16 -13
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +151 -61
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +3 -3
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +12 -7
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +254 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html +197 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html +196 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html +149 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html +143 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +98 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/javascript.html +12 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +50 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html +36 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html +13 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt +15 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html +63 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html +17 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html +29 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/latest_record.html +18 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/rdm_abstract_previewer.html +30 -0
- invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html +147 -0
- invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html +42 -0
- invenio_app_rdm/theme/views.py +106 -37
- invenio_app_rdm/theme/webpack.py +72 -36
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +1389 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +1362 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1398 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1085 -372
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +987 -367
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +1389 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +1364 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1390 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +1402 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +1366 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/messages.pot +1046 -271
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1391 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1384 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +1362 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1400 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +1340 -63
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py +1 -0
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +90 -0
- invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +47 -0
- invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +205 -0
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +235 -0
- invenio_app_rdm/upgrade_scripts/migrate_13_0_to_14_0.py +268 -0
- invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +7 -3
- invenio_app_rdm/upgrade_scripts/migrate_3_0_to_4_0.py +4 -6
- invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +30 -43
- invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +1 -5
- invenio_app_rdm/upgrade_scripts/migrate_7_0_to_8_0.py +7 -11
- invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +98 -0
- invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +43 -0
- invenio_app_rdm/users/schemas.py +27 -0
- invenio_app_rdm/users_ui/__init__.py +9 -0
- invenio_app_rdm/users_ui/searchapp.py +53 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/base.html +21 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +25 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +46 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html +24 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html +25 -0
- invenio_app_rdm/users_ui/views/__init__.py +14 -0
- invenio_app_rdm/users_ui/views/dashboard.py +59 -0
- invenio_app_rdm/users_ui/views/ui.py +68 -0
- invenio_app_rdm/utils/files.py +120 -0
- invenio_app_rdm/views.py +21 -0
- invenio_app_rdm-14.0.0b4.dev4.dist-info/METADATA +627 -0
- invenio_app_rdm-14.0.0b4.dev4.dist-info/RECORD +508 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/WHEEL +1 -1
- invenio_app_rdm-14.0.0b4.dev4.dist-info/entry_points.txt +44 -0
- invenio_app_rdm/admin.py +0 -36
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/dashboard.html +0 -47
- invenio_app_rdm/records_ui/views/utils.py +0 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/Image.js +0 -36
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -257
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/base.js +0 -140
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/communities.js +0 -200
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/requests.js +0 -394
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/uploads.js +0 -287
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/index.js +0 -155
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm_requests/menuTabInit.js +0 -24
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/deposit.less +0 -158
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/export_page.less +0 -20
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/footer.less +0 -88
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/frontpage.less +0 -97
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/details.less +0 -53
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/sidebar.less +0 -47
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page.less +0 -423
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/navbar.less +0 -305
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/search.less +0 -52
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme.less +0 -492
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/variables.less +0 -60
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm_requests/theme.less +0 -22
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -63
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -39
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- invenio_app_rdm/theme/templates/semantic-ui/invenio_requests/community-submission/index.html +0 -67
- invenio_app_rdm/version.py +0 -23
- invenio_app_rdm-8.0.0.dev9.dist-info/AUTHORS.rst +0 -11
- invenio_app_rdm-8.0.0.dev9.dist-info/METADATA +0 -74
- invenio_app_rdm-8.0.0.dev9.dist-info/RECORD +0 -179
- invenio_app_rdm-8.0.0.dev9.dist-info/entry_points.txt +0 -14
- /invenio_app_rdm/{translations/.gitkeep → fixtures/data/pages.yaml} +0 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info/licenses}/LICENSE +0 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/top_level.txt +0 -0
|
@@ -1,1512 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "invenio-app-rdm-ui",
|
|
3
|
-
"requires": true,
|
|
4
|
-
"lockfileVersion": 1,
|
|
5
|
-
"dependencies": {
|
|
6
|
-
"@babel/runtime": {
|
|
7
|
-
"version": "7.14.6",
|
|
8
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz",
|
|
9
|
-
"integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==",
|
|
10
|
-
"dev": true,
|
|
11
|
-
"requires": {
|
|
12
|
-
"regenerator-runtime": "^0.13.4"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"acorn": {
|
|
16
|
-
"version": "8.4.1",
|
|
17
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz",
|
|
18
|
-
"integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==",
|
|
19
|
-
"dev": true
|
|
20
|
-
},
|
|
21
|
-
"acorn-class-fields": {
|
|
22
|
-
"version": "0.3.7",
|
|
23
|
-
"resolved": "https://registry.npmjs.org/acorn-class-fields/-/acorn-class-fields-0.3.7.tgz",
|
|
24
|
-
"integrity": "sha512-jdUWSFce0fuADUljmExz4TWpPkxmRW/ZCPRqeeUzbGf0vFUcpQYbyq52l75qGd0oSwwtAepeL6hgb/naRgvcKQ==",
|
|
25
|
-
"dev": true,
|
|
26
|
-
"requires": {
|
|
27
|
-
"acorn-private-class-elements": "^0.2.7"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"acorn-dynamic-import": {
|
|
31
|
-
"version": "4.0.0",
|
|
32
|
-
"resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz",
|
|
33
|
-
"integrity": "sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==",
|
|
34
|
-
"dev": true
|
|
35
|
-
},
|
|
36
|
-
"acorn-jsx": {
|
|
37
|
-
"version": "5.3.2",
|
|
38
|
-
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
|
|
39
|
-
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
|
|
40
|
-
"dev": true
|
|
41
|
-
},
|
|
42
|
-
"acorn-private-class-elements": {
|
|
43
|
-
"version": "0.2.7",
|
|
44
|
-
"resolved": "https://registry.npmjs.org/acorn-private-class-elements/-/acorn-private-class-elements-0.2.7.tgz",
|
|
45
|
-
"integrity": "sha512-+GZH2wOKNZOBI4OOPmzpo4cs6mW297sn6fgIk1dUI08jGjhAaEwvC39mN2gJAg2lmAQJ1rBkFqKWonL3Zz6PVA==",
|
|
46
|
-
"dev": true
|
|
47
|
-
},
|
|
48
|
-
"acorn-private-methods": {
|
|
49
|
-
"version": "0.3.3",
|
|
50
|
-
"resolved": "https://registry.npmjs.org/acorn-private-methods/-/acorn-private-methods-0.3.3.tgz",
|
|
51
|
-
"integrity": "sha512-46oeEol3YFvLSah5m9hGMlNpxDBCEkdceJgf01AjqKYTK9r6HexKs2rgSbLK81pYjZZMonhftuUReGMlbbv05w==",
|
|
52
|
-
"dev": true,
|
|
53
|
-
"requires": {
|
|
54
|
-
"acorn-private-class-elements": "^0.2.7"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"acorn-stage3": {
|
|
58
|
-
"version": "4.0.0",
|
|
59
|
-
"resolved": "https://registry.npmjs.org/acorn-stage3/-/acorn-stage3-4.0.0.tgz",
|
|
60
|
-
"integrity": "sha512-BR+LaADtA6GTB5prkNqWmlmCLYmkyW0whvSxdHhbupTaro2qBJ95fJDEiRLPUmiACGHPaYyeH9xmNJWdGfXRQw==",
|
|
61
|
-
"dev": true,
|
|
62
|
-
"requires": {
|
|
63
|
-
"acorn-class-fields": "^0.3.7",
|
|
64
|
-
"acorn-private-methods": "^0.3.3",
|
|
65
|
-
"acorn-static-class-features": "^0.2.4"
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
"acorn-static-class-features": {
|
|
69
|
-
"version": "0.2.4",
|
|
70
|
-
"resolved": "https://registry.npmjs.org/acorn-static-class-features/-/acorn-static-class-features-0.2.4.tgz",
|
|
71
|
-
"integrity": "sha512-5X4mpYq5J3pdndLmIB0+WtFd/mKWnNYpuTlTzj32wUu/PMmEGOiayQ5UrqgwdBNiaZBtDDh5kddpP7Yg2QaQYA==",
|
|
72
|
-
"dev": true,
|
|
73
|
-
"requires": {
|
|
74
|
-
"acorn-private-class-elements": "^0.2.7"
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
"acorn-walk": {
|
|
78
|
-
"version": "8.1.1",
|
|
79
|
-
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.1.1.tgz",
|
|
80
|
-
"integrity": "sha512-FbJdceMlPHEAWJOILDk1fXD8lnTlEIWFkqtfk+MvmL5q/qlHfN7GEHcsFZWt/Tea9jRNPWUZG4G976nqAAmU9w==",
|
|
81
|
-
"dev": true
|
|
82
|
-
},
|
|
83
|
-
"ansi-styles": {
|
|
84
|
-
"version": "4.3.0",
|
|
85
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
86
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
87
|
-
"dev": true,
|
|
88
|
-
"requires": {
|
|
89
|
-
"color-convert": "^2.0.1"
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
"append-buffer": {
|
|
93
|
-
"version": "1.0.2",
|
|
94
|
-
"resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz",
|
|
95
|
-
"integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=",
|
|
96
|
-
"dev": true,
|
|
97
|
-
"requires": {
|
|
98
|
-
"buffer-equal": "^1.0.0"
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
"arrify": {
|
|
102
|
-
"version": "2.0.1",
|
|
103
|
-
"resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz",
|
|
104
|
-
"integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==",
|
|
105
|
-
"dev": true
|
|
106
|
-
},
|
|
107
|
-
"balanced-match": {
|
|
108
|
-
"version": "1.0.2",
|
|
109
|
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
110
|
-
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
111
|
-
"dev": true
|
|
112
|
-
},
|
|
113
|
-
"brace-expansion": {
|
|
114
|
-
"version": "1.1.11",
|
|
115
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
116
|
-
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
|
117
|
-
"dev": true,
|
|
118
|
-
"requires": {
|
|
119
|
-
"balanced-match": "^1.0.0",
|
|
120
|
-
"concat-map": "0.0.1"
|
|
121
|
-
}
|
|
122
|
-
},
|
|
123
|
-
"buffer-equal": {
|
|
124
|
-
"version": "1.0.0",
|
|
125
|
-
"resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
|
|
126
|
-
"integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=",
|
|
127
|
-
"dev": true
|
|
128
|
-
},
|
|
129
|
-
"call-bind": {
|
|
130
|
-
"version": "1.0.2",
|
|
131
|
-
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
|
|
132
|
-
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
|
|
133
|
-
"dev": true,
|
|
134
|
-
"requires": {
|
|
135
|
-
"function-bind": "^1.1.1",
|
|
136
|
-
"get-intrinsic": "^1.0.2"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
"chalk": {
|
|
140
|
-
"version": "4.1.1",
|
|
141
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz",
|
|
142
|
-
"integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==",
|
|
143
|
-
"dev": true,
|
|
144
|
-
"requires": {
|
|
145
|
-
"ansi-styles": "^4.1.0",
|
|
146
|
-
"supports-color": "^7.1.0"
|
|
147
|
-
}
|
|
148
|
-
},
|
|
149
|
-
"clone": {
|
|
150
|
-
"version": "2.1.2",
|
|
151
|
-
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
|
|
152
|
-
"integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
|
|
153
|
-
"dev": true
|
|
154
|
-
},
|
|
155
|
-
"clone-buffer": {
|
|
156
|
-
"version": "1.0.0",
|
|
157
|
-
"resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz",
|
|
158
|
-
"integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=",
|
|
159
|
-
"dev": true
|
|
160
|
-
},
|
|
161
|
-
"clone-deep": {
|
|
162
|
-
"version": "4.0.1",
|
|
163
|
-
"resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
|
|
164
|
-
"integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
|
|
165
|
-
"dev": true,
|
|
166
|
-
"requires": {
|
|
167
|
-
"is-plain-object": "^2.0.4",
|
|
168
|
-
"kind-of": "^6.0.2",
|
|
169
|
-
"shallow-clone": "^3.0.0"
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
"clone-stats": {
|
|
173
|
-
"version": "1.0.0",
|
|
174
|
-
"resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz",
|
|
175
|
-
"integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=",
|
|
176
|
-
"dev": true
|
|
177
|
-
},
|
|
178
|
-
"cloneable-readable": {
|
|
179
|
-
"version": "1.1.3",
|
|
180
|
-
"resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz",
|
|
181
|
-
"integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==",
|
|
182
|
-
"dev": true,
|
|
183
|
-
"requires": {
|
|
184
|
-
"inherits": "^2.0.1",
|
|
185
|
-
"process-nextick-args": "^2.0.0",
|
|
186
|
-
"readable-stream": "^2.3.5"
|
|
187
|
-
},
|
|
188
|
-
"dependencies": {
|
|
189
|
-
"readable-stream": {
|
|
190
|
-
"version": "2.3.7",
|
|
191
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
192
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
193
|
-
"dev": true,
|
|
194
|
-
"requires": {
|
|
195
|
-
"core-util-is": "~1.0.0",
|
|
196
|
-
"inherits": "~2.0.3",
|
|
197
|
-
"isarray": "~1.0.0",
|
|
198
|
-
"process-nextick-args": "~2.0.0",
|
|
199
|
-
"safe-buffer": "~5.1.1",
|
|
200
|
-
"string_decoder": "~1.1.1",
|
|
201
|
-
"util-deprecate": "~1.0.1"
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
|
-
"safe-buffer": {
|
|
205
|
-
"version": "5.1.2",
|
|
206
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
207
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
208
|
-
"dev": true
|
|
209
|
-
},
|
|
210
|
-
"string_decoder": {
|
|
211
|
-
"version": "1.1.1",
|
|
212
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
213
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
214
|
-
"dev": true,
|
|
215
|
-
"requires": {
|
|
216
|
-
"safe-buffer": "~5.1.0"
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"color-convert": {
|
|
222
|
-
"version": "2.0.1",
|
|
223
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
224
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
225
|
-
"dev": true,
|
|
226
|
-
"requires": {
|
|
227
|
-
"color-name": "~1.1.4"
|
|
228
|
-
}
|
|
229
|
-
},
|
|
230
|
-
"color-name": {
|
|
231
|
-
"version": "1.1.4",
|
|
232
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
233
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
234
|
-
"dev": true
|
|
235
|
-
},
|
|
236
|
-
"commander": {
|
|
237
|
-
"version": "5.1.0",
|
|
238
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
|
|
239
|
-
"integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
|
|
240
|
-
"dev": true
|
|
241
|
-
},
|
|
242
|
-
"concat-map": {
|
|
243
|
-
"version": "0.0.1",
|
|
244
|
-
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
245
|
-
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
|
|
246
|
-
"dev": true
|
|
247
|
-
},
|
|
248
|
-
"content-type": {
|
|
249
|
-
"version": "1.0.4",
|
|
250
|
-
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
|
|
251
|
-
"integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
|
|
252
|
-
"dev": true
|
|
253
|
-
},
|
|
254
|
-
"convert-source-map": {
|
|
255
|
-
"version": "1.8.0",
|
|
256
|
-
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
|
|
257
|
-
"integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
|
|
258
|
-
"dev": true,
|
|
259
|
-
"requires": {
|
|
260
|
-
"safe-buffer": "~5.1.1"
|
|
261
|
-
},
|
|
262
|
-
"dependencies": {
|
|
263
|
-
"safe-buffer": {
|
|
264
|
-
"version": "5.1.2",
|
|
265
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
266
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
267
|
-
"dev": true
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
},
|
|
271
|
-
"core-util-is": {
|
|
272
|
-
"version": "1.0.2",
|
|
273
|
-
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
|
274
|
-
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
|
|
275
|
-
"dev": true
|
|
276
|
-
},
|
|
277
|
-
"deepmerge": {
|
|
278
|
-
"version": "4.2.2",
|
|
279
|
-
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
|
|
280
|
-
"integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
|
|
281
|
-
"dev": true
|
|
282
|
-
},
|
|
283
|
-
"define-properties": {
|
|
284
|
-
"version": "1.1.3",
|
|
285
|
-
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
|
|
286
|
-
"integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
|
|
287
|
-
"dev": true,
|
|
288
|
-
"requires": {
|
|
289
|
-
"object-keys": "^1.0.12"
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
"duplexify": {
|
|
293
|
-
"version": "3.7.1",
|
|
294
|
-
"resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
|
|
295
|
-
"integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
|
|
296
|
-
"dev": true,
|
|
297
|
-
"requires": {
|
|
298
|
-
"end-of-stream": "^1.0.0",
|
|
299
|
-
"inherits": "^2.0.1",
|
|
300
|
-
"readable-stream": "^2.0.0",
|
|
301
|
-
"stream-shift": "^1.0.0"
|
|
302
|
-
},
|
|
303
|
-
"dependencies": {
|
|
304
|
-
"readable-stream": {
|
|
305
|
-
"version": "2.3.7",
|
|
306
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
307
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
308
|
-
"dev": true,
|
|
309
|
-
"requires": {
|
|
310
|
-
"core-util-is": "~1.0.0",
|
|
311
|
-
"inherits": "~2.0.3",
|
|
312
|
-
"isarray": "~1.0.0",
|
|
313
|
-
"process-nextick-args": "~2.0.0",
|
|
314
|
-
"safe-buffer": "~5.1.1",
|
|
315
|
-
"string_decoder": "~1.1.1",
|
|
316
|
-
"util-deprecate": "~1.0.1"
|
|
317
|
-
}
|
|
318
|
-
},
|
|
319
|
-
"safe-buffer": {
|
|
320
|
-
"version": "5.1.2",
|
|
321
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
322
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
323
|
-
"dev": true
|
|
324
|
-
},
|
|
325
|
-
"string_decoder": {
|
|
326
|
-
"version": "1.1.1",
|
|
327
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
328
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
329
|
-
"dev": true,
|
|
330
|
-
"requires": {
|
|
331
|
-
"safe-buffer": "~5.1.0"
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
},
|
|
336
|
-
"encoding": {
|
|
337
|
-
"version": "0.1.13",
|
|
338
|
-
"resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
|
|
339
|
-
"integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
|
|
340
|
-
"dev": true,
|
|
341
|
-
"requires": {
|
|
342
|
-
"iconv-lite": "^0.6.2"
|
|
343
|
-
}
|
|
344
|
-
},
|
|
345
|
-
"end-of-stream": {
|
|
346
|
-
"version": "1.4.4",
|
|
347
|
-
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
|
|
348
|
-
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
|
|
349
|
-
"dev": true,
|
|
350
|
-
"requires": {
|
|
351
|
-
"once": "^1.4.0"
|
|
352
|
-
}
|
|
353
|
-
},
|
|
354
|
-
"ensure-array": {
|
|
355
|
-
"version": "1.0.0",
|
|
356
|
-
"resolved": "https://registry.npmjs.org/ensure-array/-/ensure-array-1.0.0.tgz",
|
|
357
|
-
"integrity": "sha512-A+3Ntl5WS+GjDnHtC67dKIjw+IoGoeFdNvjn3ZfKEmZgWUz0nxBPE4W52QMCbGZsat0VwWskD5T6AEpe3T2d1g==",
|
|
358
|
-
"dev": true
|
|
359
|
-
},
|
|
360
|
-
"eol": {
|
|
361
|
-
"version": "0.9.1",
|
|
362
|
-
"resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz",
|
|
363
|
-
"integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==",
|
|
364
|
-
"dev": true
|
|
365
|
-
},
|
|
366
|
-
"esprima": {
|
|
367
|
-
"version": "4.0.1",
|
|
368
|
-
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
|
369
|
-
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
|
|
370
|
-
"dev": true
|
|
371
|
-
},
|
|
372
|
-
"extend": {
|
|
373
|
-
"version": "3.0.2",
|
|
374
|
-
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
|
375
|
-
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
|
|
376
|
-
"dev": true
|
|
377
|
-
},
|
|
378
|
-
"flush-write-stream": {
|
|
379
|
-
"version": "1.1.1",
|
|
380
|
-
"resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
|
|
381
|
-
"integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
|
|
382
|
-
"dev": true,
|
|
383
|
-
"requires": {
|
|
384
|
-
"inherits": "^2.0.3",
|
|
385
|
-
"readable-stream": "^2.3.6"
|
|
386
|
-
},
|
|
387
|
-
"dependencies": {
|
|
388
|
-
"readable-stream": {
|
|
389
|
-
"version": "2.3.7",
|
|
390
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
391
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
392
|
-
"dev": true,
|
|
393
|
-
"requires": {
|
|
394
|
-
"core-util-is": "~1.0.0",
|
|
395
|
-
"inherits": "~2.0.3",
|
|
396
|
-
"isarray": "~1.0.0",
|
|
397
|
-
"process-nextick-args": "~2.0.0",
|
|
398
|
-
"safe-buffer": "~5.1.1",
|
|
399
|
-
"string_decoder": "~1.1.1",
|
|
400
|
-
"util-deprecate": "~1.0.1"
|
|
401
|
-
}
|
|
402
|
-
},
|
|
403
|
-
"safe-buffer": {
|
|
404
|
-
"version": "5.1.2",
|
|
405
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
406
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
407
|
-
"dev": true
|
|
408
|
-
},
|
|
409
|
-
"string_decoder": {
|
|
410
|
-
"version": "1.1.1",
|
|
411
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
412
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
413
|
-
"dev": true,
|
|
414
|
-
"requires": {
|
|
415
|
-
"safe-buffer": "~5.1.0"
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
}
|
|
419
|
-
},
|
|
420
|
-
"fs-mkdirp-stream": {
|
|
421
|
-
"version": "1.0.0",
|
|
422
|
-
"resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz",
|
|
423
|
-
"integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=",
|
|
424
|
-
"dev": true,
|
|
425
|
-
"requires": {
|
|
426
|
-
"graceful-fs": "^4.1.11",
|
|
427
|
-
"through2": "^2.0.3"
|
|
428
|
-
},
|
|
429
|
-
"dependencies": {
|
|
430
|
-
"readable-stream": {
|
|
431
|
-
"version": "2.3.7",
|
|
432
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
433
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
434
|
-
"dev": true,
|
|
435
|
-
"requires": {
|
|
436
|
-
"core-util-is": "~1.0.0",
|
|
437
|
-
"inherits": "~2.0.3",
|
|
438
|
-
"isarray": "~1.0.0",
|
|
439
|
-
"process-nextick-args": "~2.0.0",
|
|
440
|
-
"safe-buffer": "~5.1.1",
|
|
441
|
-
"string_decoder": "~1.1.1",
|
|
442
|
-
"util-deprecate": "~1.0.1"
|
|
443
|
-
}
|
|
444
|
-
},
|
|
445
|
-
"safe-buffer": {
|
|
446
|
-
"version": "5.1.2",
|
|
447
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
448
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
449
|
-
"dev": true
|
|
450
|
-
},
|
|
451
|
-
"string_decoder": {
|
|
452
|
-
"version": "1.1.1",
|
|
453
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
454
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
455
|
-
"dev": true,
|
|
456
|
-
"requires": {
|
|
457
|
-
"safe-buffer": "~5.1.0"
|
|
458
|
-
}
|
|
459
|
-
},
|
|
460
|
-
"through2": {
|
|
461
|
-
"version": "2.0.5",
|
|
462
|
-
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
|
463
|
-
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
|
464
|
-
"dev": true,
|
|
465
|
-
"requires": {
|
|
466
|
-
"readable-stream": "~2.3.6",
|
|
467
|
-
"xtend": "~4.0.1"
|
|
468
|
-
}
|
|
469
|
-
}
|
|
470
|
-
}
|
|
471
|
-
},
|
|
472
|
-
"fs.realpath": {
|
|
473
|
-
"version": "1.0.0",
|
|
474
|
-
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
475
|
-
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
|
|
476
|
-
"dev": true
|
|
477
|
-
},
|
|
478
|
-
"function-bind": {
|
|
479
|
-
"version": "1.1.1",
|
|
480
|
-
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
|
481
|
-
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
|
|
482
|
-
"dev": true
|
|
483
|
-
},
|
|
484
|
-
"get-intrinsic": {
|
|
485
|
-
"version": "1.1.1",
|
|
486
|
-
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
|
|
487
|
-
"integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
|
|
488
|
-
"dev": true,
|
|
489
|
-
"requires": {
|
|
490
|
-
"function-bind": "^1.1.1",
|
|
491
|
-
"has": "^1.0.3",
|
|
492
|
-
"has-symbols": "^1.0.1"
|
|
493
|
-
}
|
|
494
|
-
},
|
|
495
|
-
"gettext-parser": {
|
|
496
|
-
"version": "4.0.4",
|
|
497
|
-
"resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-4.0.4.tgz",
|
|
498
|
-
"integrity": "sha512-VDZEeOIYd0veZXt5iAn0SS3I0Fz14fJw+59avRNa7VIslEDriRLxcfrBd/xeQyOcm6nyS4uuufxm2iw88qirAg==",
|
|
499
|
-
"dev": true,
|
|
500
|
-
"requires": {
|
|
501
|
-
"content-type": "^1.0.4",
|
|
502
|
-
"encoding": "^0.1.13",
|
|
503
|
-
"readable-stream": "^3.6.0",
|
|
504
|
-
"safe-buffer": "^5.2.1"
|
|
505
|
-
}
|
|
506
|
-
},
|
|
507
|
-
"glob": {
|
|
508
|
-
"version": "7.1.7",
|
|
509
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
|
|
510
|
-
"integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
|
|
511
|
-
"dev": true,
|
|
512
|
-
"requires": {
|
|
513
|
-
"fs.realpath": "^1.0.0",
|
|
514
|
-
"inflight": "^1.0.4",
|
|
515
|
-
"inherits": "2",
|
|
516
|
-
"minimatch": "^3.0.4",
|
|
517
|
-
"once": "^1.3.0",
|
|
518
|
-
"path-is-absolute": "^1.0.0"
|
|
519
|
-
}
|
|
520
|
-
},
|
|
521
|
-
"glob-parent": {
|
|
522
|
-
"version": "3.1.0",
|
|
523
|
-
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
|
|
524
|
-
"integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
|
|
525
|
-
"dev": true,
|
|
526
|
-
"requires": {
|
|
527
|
-
"is-glob": "^3.1.0",
|
|
528
|
-
"path-dirname": "^1.0.0"
|
|
529
|
-
}
|
|
530
|
-
},
|
|
531
|
-
"glob-stream": {
|
|
532
|
-
"version": "6.1.0",
|
|
533
|
-
"resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz",
|
|
534
|
-
"integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=",
|
|
535
|
-
"dev": true,
|
|
536
|
-
"requires": {
|
|
537
|
-
"extend": "^3.0.0",
|
|
538
|
-
"glob": "^7.1.1",
|
|
539
|
-
"glob-parent": "^3.1.0",
|
|
540
|
-
"is-negated-glob": "^1.0.0",
|
|
541
|
-
"ordered-read-streams": "^1.0.0",
|
|
542
|
-
"pumpify": "^1.3.5",
|
|
543
|
-
"readable-stream": "^2.1.5",
|
|
544
|
-
"remove-trailing-separator": "^1.0.1",
|
|
545
|
-
"to-absolute-glob": "^2.0.0",
|
|
546
|
-
"unique-stream": "^2.0.2"
|
|
547
|
-
},
|
|
548
|
-
"dependencies": {
|
|
549
|
-
"readable-stream": {
|
|
550
|
-
"version": "2.3.7",
|
|
551
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
552
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
553
|
-
"dev": true,
|
|
554
|
-
"requires": {
|
|
555
|
-
"core-util-is": "~1.0.0",
|
|
556
|
-
"inherits": "~2.0.3",
|
|
557
|
-
"isarray": "~1.0.0",
|
|
558
|
-
"process-nextick-args": "~2.0.0",
|
|
559
|
-
"safe-buffer": "~5.1.1",
|
|
560
|
-
"string_decoder": "~1.1.1",
|
|
561
|
-
"util-deprecate": "~1.0.1"
|
|
562
|
-
}
|
|
563
|
-
},
|
|
564
|
-
"safe-buffer": {
|
|
565
|
-
"version": "5.1.2",
|
|
566
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
567
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
568
|
-
"dev": true
|
|
569
|
-
},
|
|
570
|
-
"string_decoder": {
|
|
571
|
-
"version": "1.1.1",
|
|
572
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
573
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
574
|
-
"dev": true,
|
|
575
|
-
"requires": {
|
|
576
|
-
"safe-buffer": "~5.1.0"
|
|
577
|
-
}
|
|
578
|
-
}
|
|
579
|
-
}
|
|
580
|
-
},
|
|
581
|
-
"graceful-fs": {
|
|
582
|
-
"version": "4.2.6",
|
|
583
|
-
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz",
|
|
584
|
-
"integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==",
|
|
585
|
-
"dev": true
|
|
586
|
-
},
|
|
587
|
-
"gulp-sort": {
|
|
588
|
-
"version": "2.0.0",
|
|
589
|
-
"resolved": "https://registry.npmjs.org/gulp-sort/-/gulp-sort-2.0.0.tgz",
|
|
590
|
-
"integrity": "sha1-xnYqLx8N4KP8WVohWZ0/rI26Gso=",
|
|
591
|
-
"dev": true,
|
|
592
|
-
"requires": {
|
|
593
|
-
"through2": "^2.0.1"
|
|
594
|
-
},
|
|
595
|
-
"dependencies": {
|
|
596
|
-
"readable-stream": {
|
|
597
|
-
"version": "2.3.7",
|
|
598
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
599
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
600
|
-
"dev": true,
|
|
601
|
-
"requires": {
|
|
602
|
-
"core-util-is": "~1.0.0",
|
|
603
|
-
"inherits": "~2.0.3",
|
|
604
|
-
"isarray": "~1.0.0",
|
|
605
|
-
"process-nextick-args": "~2.0.0",
|
|
606
|
-
"safe-buffer": "~5.1.1",
|
|
607
|
-
"string_decoder": "~1.1.1",
|
|
608
|
-
"util-deprecate": "~1.0.1"
|
|
609
|
-
}
|
|
610
|
-
},
|
|
611
|
-
"safe-buffer": {
|
|
612
|
-
"version": "5.1.2",
|
|
613
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
614
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
615
|
-
"dev": true
|
|
616
|
-
},
|
|
617
|
-
"string_decoder": {
|
|
618
|
-
"version": "1.1.1",
|
|
619
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
620
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
621
|
-
"dev": true,
|
|
622
|
-
"requires": {
|
|
623
|
-
"safe-buffer": "~5.1.0"
|
|
624
|
-
}
|
|
625
|
-
},
|
|
626
|
-
"through2": {
|
|
627
|
-
"version": "2.0.5",
|
|
628
|
-
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
|
629
|
-
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
|
630
|
-
"dev": true,
|
|
631
|
-
"requires": {
|
|
632
|
-
"readable-stream": "~2.3.6",
|
|
633
|
-
"xtend": "~4.0.1"
|
|
634
|
-
}
|
|
635
|
-
}
|
|
636
|
-
}
|
|
637
|
-
},
|
|
638
|
-
"has": {
|
|
639
|
-
"version": "1.0.3",
|
|
640
|
-
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
|
641
|
-
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
|
642
|
-
"dev": true,
|
|
643
|
-
"requires": {
|
|
644
|
-
"function-bind": "^1.1.1"
|
|
645
|
-
}
|
|
646
|
-
},
|
|
647
|
-
"has-flag": {
|
|
648
|
-
"version": "4.0.0",
|
|
649
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
650
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
651
|
-
"dev": true
|
|
652
|
-
},
|
|
653
|
-
"has-symbols": {
|
|
654
|
-
"version": "1.0.2",
|
|
655
|
-
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
|
|
656
|
-
"integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
|
|
657
|
-
"dev": true
|
|
658
|
-
},
|
|
659
|
-
"html-parse-stringify": {
|
|
660
|
-
"version": "3.0.1",
|
|
661
|
-
"resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz",
|
|
662
|
-
"integrity": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==",
|
|
663
|
-
"dev": true,
|
|
664
|
-
"requires": {
|
|
665
|
-
"void-elements": "3.1.0"
|
|
666
|
-
}
|
|
667
|
-
},
|
|
668
|
-
"i18next": {
|
|
669
|
-
"version": "20.3.3",
|
|
670
|
-
"resolved": "https://registry.npmjs.org/i18next/-/i18next-20.3.3.tgz",
|
|
671
|
-
"integrity": "sha512-tx9EUhHeaipvZ5pFLTaN9Xdm5Ssal774MpujaTA1Wv/ST/1My5SnoBmliY1lOpyEP5Z51Dq1gXifk/y4Yt3agQ==",
|
|
672
|
-
"dev": true,
|
|
673
|
-
"requires": {
|
|
674
|
-
"@babel/runtime": "^7.12.0"
|
|
675
|
-
}
|
|
676
|
-
},
|
|
677
|
-
"i18next-conv": {
|
|
678
|
-
"version": "10.2.0",
|
|
679
|
-
"resolved": "https://registry.npmjs.org/i18next-conv/-/i18next-conv-10.2.0.tgz",
|
|
680
|
-
"integrity": "sha512-wBH1z874bw7p7Q0sUWBVqxfQjOXhd3h7GC4bIUXrrzoLmvRdPtRqSYlXN150YR9+5IDYLqkUUYu0IIKDsiPmpw==",
|
|
681
|
-
"dev": true,
|
|
682
|
-
"requires": {
|
|
683
|
-
"arrify": "^2.0.1",
|
|
684
|
-
"chalk": "^4.0.0",
|
|
685
|
-
"commander": "^5.1.0",
|
|
686
|
-
"gettext-parser": "^4.0.3",
|
|
687
|
-
"mkdirp": "^1.0.4",
|
|
688
|
-
"node-gettext": "^3.0.0"
|
|
689
|
-
}
|
|
690
|
-
},
|
|
691
|
-
"i18next-scanner": {
|
|
692
|
-
"version": "3.0.0",
|
|
693
|
-
"resolved": "https://registry.npmjs.org/i18next-scanner/-/i18next-scanner-3.0.0.tgz",
|
|
694
|
-
"integrity": "sha512-cm4Ch3VqicGZS8y+4xSvXoOsnE/iWhHZi6AZEyAgLLm3EDZ/eY21gDbLfbnwKVY6wCghzAEO9LfRNlxwTo8KMQ==",
|
|
695
|
-
"dev": true,
|
|
696
|
-
"requires": {
|
|
697
|
-
"acorn": "^8.0.4",
|
|
698
|
-
"acorn-dynamic-import": "^4.0.0",
|
|
699
|
-
"acorn-jsx": "^5.3.1",
|
|
700
|
-
"acorn-stage3": "^4.0.0",
|
|
701
|
-
"acorn-walk": "^8.0.0",
|
|
702
|
-
"chalk": "^4.1.0",
|
|
703
|
-
"clone-deep": "^4.0.0",
|
|
704
|
-
"commander": "^6.2.0",
|
|
705
|
-
"deepmerge": "^4.0.0",
|
|
706
|
-
"ensure-array": "^1.0.0",
|
|
707
|
-
"eol": "^0.9.1",
|
|
708
|
-
"esprima": "^4.0.0",
|
|
709
|
-
"gulp-sort": "^2.0.0",
|
|
710
|
-
"i18next": "*",
|
|
711
|
-
"lodash": "^4.0.0",
|
|
712
|
-
"parse5": "^6.0.0",
|
|
713
|
-
"sortobject": "^4.0.0",
|
|
714
|
-
"through2": "^4.0.0",
|
|
715
|
-
"vinyl": "^2.2.0",
|
|
716
|
-
"vinyl-fs": "^3.0.1"
|
|
717
|
-
},
|
|
718
|
-
"dependencies": {
|
|
719
|
-
"commander": {
|
|
720
|
-
"version": "6.2.1",
|
|
721
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
|
|
722
|
-
"integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
|
|
723
|
-
"dev": true
|
|
724
|
-
}
|
|
725
|
-
}
|
|
726
|
-
},
|
|
727
|
-
"iconv-lite": {
|
|
728
|
-
"version": "0.6.3",
|
|
729
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
730
|
-
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
731
|
-
"dev": true,
|
|
732
|
-
"requires": {
|
|
733
|
-
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
734
|
-
}
|
|
735
|
-
},
|
|
736
|
-
"inflight": {
|
|
737
|
-
"version": "1.0.6",
|
|
738
|
-
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
739
|
-
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
|
|
740
|
-
"dev": true,
|
|
741
|
-
"requires": {
|
|
742
|
-
"once": "^1.3.0",
|
|
743
|
-
"wrappy": "1"
|
|
744
|
-
}
|
|
745
|
-
},
|
|
746
|
-
"inherits": {
|
|
747
|
-
"version": "2.0.4",
|
|
748
|
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
749
|
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
750
|
-
"dev": true
|
|
751
|
-
},
|
|
752
|
-
"is-absolute": {
|
|
753
|
-
"version": "1.0.0",
|
|
754
|
-
"resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz",
|
|
755
|
-
"integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==",
|
|
756
|
-
"dev": true,
|
|
757
|
-
"requires": {
|
|
758
|
-
"is-relative": "^1.0.0",
|
|
759
|
-
"is-windows": "^1.0.1"
|
|
760
|
-
}
|
|
761
|
-
},
|
|
762
|
-
"is-buffer": {
|
|
763
|
-
"version": "1.1.6",
|
|
764
|
-
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
|
|
765
|
-
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
|
|
766
|
-
"dev": true
|
|
767
|
-
},
|
|
768
|
-
"is-extglob": {
|
|
769
|
-
"version": "2.1.1",
|
|
770
|
-
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
771
|
-
"integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
|
|
772
|
-
"dev": true
|
|
773
|
-
},
|
|
774
|
-
"is-glob": {
|
|
775
|
-
"version": "3.1.0",
|
|
776
|
-
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
|
|
777
|
-
"integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
|
|
778
|
-
"dev": true,
|
|
779
|
-
"requires": {
|
|
780
|
-
"is-extglob": "^2.1.0"
|
|
781
|
-
}
|
|
782
|
-
},
|
|
783
|
-
"is-negated-glob": {
|
|
784
|
-
"version": "1.0.0",
|
|
785
|
-
"resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz",
|
|
786
|
-
"integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=",
|
|
787
|
-
"dev": true
|
|
788
|
-
},
|
|
789
|
-
"is-plain-object": {
|
|
790
|
-
"version": "2.0.4",
|
|
791
|
-
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
|
|
792
|
-
"integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
|
|
793
|
-
"dev": true,
|
|
794
|
-
"requires": {
|
|
795
|
-
"isobject": "^3.0.1"
|
|
796
|
-
}
|
|
797
|
-
},
|
|
798
|
-
"is-relative": {
|
|
799
|
-
"version": "1.0.0",
|
|
800
|
-
"resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz",
|
|
801
|
-
"integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==",
|
|
802
|
-
"dev": true,
|
|
803
|
-
"requires": {
|
|
804
|
-
"is-unc-path": "^1.0.0"
|
|
805
|
-
}
|
|
806
|
-
},
|
|
807
|
-
"is-unc-path": {
|
|
808
|
-
"version": "1.0.0",
|
|
809
|
-
"resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz",
|
|
810
|
-
"integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==",
|
|
811
|
-
"dev": true,
|
|
812
|
-
"requires": {
|
|
813
|
-
"unc-path-regex": "^0.1.2"
|
|
814
|
-
}
|
|
815
|
-
},
|
|
816
|
-
"is-utf8": {
|
|
817
|
-
"version": "0.2.1",
|
|
818
|
-
"resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
|
|
819
|
-
"integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
|
|
820
|
-
"dev": true
|
|
821
|
-
},
|
|
822
|
-
"is-valid-glob": {
|
|
823
|
-
"version": "1.0.0",
|
|
824
|
-
"resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz",
|
|
825
|
-
"integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=",
|
|
826
|
-
"dev": true
|
|
827
|
-
},
|
|
828
|
-
"is-windows": {
|
|
829
|
-
"version": "1.0.2",
|
|
830
|
-
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
|
|
831
|
-
"integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
|
|
832
|
-
"dev": true
|
|
833
|
-
},
|
|
834
|
-
"isarray": {
|
|
835
|
-
"version": "1.0.0",
|
|
836
|
-
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
|
837
|
-
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
|
|
838
|
-
"dev": true
|
|
839
|
-
},
|
|
840
|
-
"isobject": {
|
|
841
|
-
"version": "3.0.1",
|
|
842
|
-
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
|
|
843
|
-
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
|
|
844
|
-
"dev": true
|
|
845
|
-
},
|
|
846
|
-
"json-stable-stringify-without-jsonify": {
|
|
847
|
-
"version": "1.0.1",
|
|
848
|
-
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
|
|
849
|
-
"integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
|
|
850
|
-
"dev": true
|
|
851
|
-
},
|
|
852
|
-
"kind-of": {
|
|
853
|
-
"version": "6.0.3",
|
|
854
|
-
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
|
855
|
-
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
|
|
856
|
-
"dev": true
|
|
857
|
-
},
|
|
858
|
-
"lazystream": {
|
|
859
|
-
"version": "1.0.0",
|
|
860
|
-
"resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz",
|
|
861
|
-
"integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=",
|
|
862
|
-
"dev": true,
|
|
863
|
-
"requires": {
|
|
864
|
-
"readable-stream": "^2.0.5"
|
|
865
|
-
},
|
|
866
|
-
"dependencies": {
|
|
867
|
-
"readable-stream": {
|
|
868
|
-
"version": "2.3.7",
|
|
869
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
870
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
871
|
-
"dev": true,
|
|
872
|
-
"requires": {
|
|
873
|
-
"core-util-is": "~1.0.0",
|
|
874
|
-
"inherits": "~2.0.3",
|
|
875
|
-
"isarray": "~1.0.0",
|
|
876
|
-
"process-nextick-args": "~2.0.0",
|
|
877
|
-
"safe-buffer": "~5.1.1",
|
|
878
|
-
"string_decoder": "~1.1.1",
|
|
879
|
-
"util-deprecate": "~1.0.1"
|
|
880
|
-
}
|
|
881
|
-
},
|
|
882
|
-
"safe-buffer": {
|
|
883
|
-
"version": "5.1.2",
|
|
884
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
885
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
886
|
-
"dev": true
|
|
887
|
-
},
|
|
888
|
-
"string_decoder": {
|
|
889
|
-
"version": "1.1.1",
|
|
890
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
891
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
892
|
-
"dev": true,
|
|
893
|
-
"requires": {
|
|
894
|
-
"safe-buffer": "~5.1.0"
|
|
895
|
-
}
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
},
|
|
899
|
-
"lead": {
|
|
900
|
-
"version": "1.0.0",
|
|
901
|
-
"resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz",
|
|
902
|
-
"integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=",
|
|
903
|
-
"dev": true,
|
|
904
|
-
"requires": {
|
|
905
|
-
"flush-write-stream": "^1.0.2"
|
|
906
|
-
}
|
|
907
|
-
},
|
|
908
|
-
"lodash": {
|
|
909
|
-
"version": "4.17.21",
|
|
910
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
911
|
-
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
|
|
912
|
-
"dev": true
|
|
913
|
-
},
|
|
914
|
-
"lodash.get": {
|
|
915
|
-
"version": "4.4.2",
|
|
916
|
-
"resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
|
|
917
|
-
"integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=",
|
|
918
|
-
"dev": true
|
|
919
|
-
},
|
|
920
|
-
"minimatch": {
|
|
921
|
-
"version": "3.0.4",
|
|
922
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
|
923
|
-
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
|
|
924
|
-
"dev": true,
|
|
925
|
-
"requires": {
|
|
926
|
-
"brace-expansion": "^1.1.7"
|
|
927
|
-
}
|
|
928
|
-
},
|
|
929
|
-
"mkdirp": {
|
|
930
|
-
"version": "1.0.4",
|
|
931
|
-
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
|
|
932
|
-
"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
|
|
933
|
-
"dev": true
|
|
934
|
-
},
|
|
935
|
-
"node-gettext": {
|
|
936
|
-
"version": "3.0.0",
|
|
937
|
-
"resolved": "https://registry.npmjs.org/node-gettext/-/node-gettext-3.0.0.tgz",
|
|
938
|
-
"integrity": "sha512-/VRYibXmVoN6tnSAY2JWhNRhWYJ8Cd844jrZU/DwLVoI4vBI6ceYbd8i42sYZ9uOgDH3S7vslIKOWV/ZrT2YBA==",
|
|
939
|
-
"dev": true,
|
|
940
|
-
"requires": {
|
|
941
|
-
"lodash.get": "^4.4.2"
|
|
942
|
-
}
|
|
943
|
-
},
|
|
944
|
-
"normalize-path": {
|
|
945
|
-
"version": "2.1.1",
|
|
946
|
-
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
|
|
947
|
-
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
|
|
948
|
-
"dev": true,
|
|
949
|
-
"requires": {
|
|
950
|
-
"remove-trailing-separator": "^1.0.1"
|
|
951
|
-
}
|
|
952
|
-
},
|
|
953
|
-
"now-and-later": {
|
|
954
|
-
"version": "2.0.1",
|
|
955
|
-
"resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz",
|
|
956
|
-
"integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==",
|
|
957
|
-
"dev": true,
|
|
958
|
-
"requires": {
|
|
959
|
-
"once": "^1.3.2"
|
|
960
|
-
}
|
|
961
|
-
},
|
|
962
|
-
"object-keys": {
|
|
963
|
-
"version": "1.1.1",
|
|
964
|
-
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
|
|
965
|
-
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
|
|
966
|
-
"dev": true
|
|
967
|
-
},
|
|
968
|
-
"object.assign": {
|
|
969
|
-
"version": "4.1.2",
|
|
970
|
-
"resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
|
|
971
|
-
"integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
|
|
972
|
-
"dev": true,
|
|
973
|
-
"requires": {
|
|
974
|
-
"call-bind": "^1.0.0",
|
|
975
|
-
"define-properties": "^1.1.3",
|
|
976
|
-
"has-symbols": "^1.0.1",
|
|
977
|
-
"object-keys": "^1.1.1"
|
|
978
|
-
}
|
|
979
|
-
},
|
|
980
|
-
"once": {
|
|
981
|
-
"version": "1.4.0",
|
|
982
|
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
983
|
-
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
|
|
984
|
-
"dev": true,
|
|
985
|
-
"requires": {
|
|
986
|
-
"wrappy": "1"
|
|
987
|
-
}
|
|
988
|
-
},
|
|
989
|
-
"ordered-read-streams": {
|
|
990
|
-
"version": "1.0.1",
|
|
991
|
-
"resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz",
|
|
992
|
-
"integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=",
|
|
993
|
-
"dev": true,
|
|
994
|
-
"requires": {
|
|
995
|
-
"readable-stream": "^2.0.1"
|
|
996
|
-
},
|
|
997
|
-
"dependencies": {
|
|
998
|
-
"readable-stream": {
|
|
999
|
-
"version": "2.3.7",
|
|
1000
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
1001
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
1002
|
-
"dev": true,
|
|
1003
|
-
"requires": {
|
|
1004
|
-
"core-util-is": "~1.0.0",
|
|
1005
|
-
"inherits": "~2.0.3",
|
|
1006
|
-
"isarray": "~1.0.0",
|
|
1007
|
-
"process-nextick-args": "~2.0.0",
|
|
1008
|
-
"safe-buffer": "~5.1.1",
|
|
1009
|
-
"string_decoder": "~1.1.1",
|
|
1010
|
-
"util-deprecate": "~1.0.1"
|
|
1011
|
-
}
|
|
1012
|
-
},
|
|
1013
|
-
"safe-buffer": {
|
|
1014
|
-
"version": "5.1.2",
|
|
1015
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1016
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1017
|
-
"dev": true
|
|
1018
|
-
},
|
|
1019
|
-
"string_decoder": {
|
|
1020
|
-
"version": "1.1.1",
|
|
1021
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
1022
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
1023
|
-
"dev": true,
|
|
1024
|
-
"requires": {
|
|
1025
|
-
"safe-buffer": "~5.1.0"
|
|
1026
|
-
}
|
|
1027
|
-
}
|
|
1028
|
-
}
|
|
1029
|
-
},
|
|
1030
|
-
"parse5": {
|
|
1031
|
-
"version": "6.0.1",
|
|
1032
|
-
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
|
|
1033
|
-
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
|
|
1034
|
-
"dev": true
|
|
1035
|
-
},
|
|
1036
|
-
"path-dirname": {
|
|
1037
|
-
"version": "1.0.2",
|
|
1038
|
-
"resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
|
|
1039
|
-
"integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
|
|
1040
|
-
"dev": true
|
|
1041
|
-
},
|
|
1042
|
-
"path-is-absolute": {
|
|
1043
|
-
"version": "1.0.1",
|
|
1044
|
-
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
1045
|
-
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
|
|
1046
|
-
"dev": true
|
|
1047
|
-
},
|
|
1048
|
-
"process-nextick-args": {
|
|
1049
|
-
"version": "2.0.1",
|
|
1050
|
-
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
|
1051
|
-
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
|
|
1052
|
-
"dev": true
|
|
1053
|
-
},
|
|
1054
|
-
"pump": {
|
|
1055
|
-
"version": "2.0.1",
|
|
1056
|
-
"resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
|
|
1057
|
-
"integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
|
|
1058
|
-
"dev": true,
|
|
1059
|
-
"requires": {
|
|
1060
|
-
"end-of-stream": "^1.1.0",
|
|
1061
|
-
"once": "^1.3.1"
|
|
1062
|
-
}
|
|
1063
|
-
},
|
|
1064
|
-
"pumpify": {
|
|
1065
|
-
"version": "1.5.1",
|
|
1066
|
-
"resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
|
|
1067
|
-
"integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
|
|
1068
|
-
"dev": true,
|
|
1069
|
-
"requires": {
|
|
1070
|
-
"duplexify": "^3.6.0",
|
|
1071
|
-
"inherits": "^2.0.3",
|
|
1072
|
-
"pump": "^2.0.0"
|
|
1073
|
-
}
|
|
1074
|
-
},
|
|
1075
|
-
"react-i18next": {
|
|
1076
|
-
"version": "11.11.3",
|
|
1077
|
-
"resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.11.3.tgz",
|
|
1078
|
-
"integrity": "sha512-upzG5/SpyOlYP5oSF4K8TZBvDWVhnCo38JNV+KnWjrg0+IaJCBltyh6lRGZDO5ovLyA4dU6Ip0bwbUCjb6Yyxw==",
|
|
1079
|
-
"dev": true,
|
|
1080
|
-
"requires": {
|
|
1081
|
-
"@babel/runtime": "^7.14.5",
|
|
1082
|
-
"html-parse-stringify": "^3.0.1"
|
|
1083
|
-
}
|
|
1084
|
-
},
|
|
1085
|
-
"readable-stream": {
|
|
1086
|
-
"version": "3.6.0",
|
|
1087
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
|
1088
|
-
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
|
1089
|
-
"dev": true,
|
|
1090
|
-
"requires": {
|
|
1091
|
-
"inherits": "^2.0.3",
|
|
1092
|
-
"string_decoder": "^1.1.1",
|
|
1093
|
-
"util-deprecate": "^1.0.1"
|
|
1094
|
-
}
|
|
1095
|
-
},
|
|
1096
|
-
"regenerator-runtime": {
|
|
1097
|
-
"version": "0.13.7",
|
|
1098
|
-
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
|
|
1099
|
-
"integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==",
|
|
1100
|
-
"dev": true
|
|
1101
|
-
},
|
|
1102
|
-
"remove-bom-buffer": {
|
|
1103
|
-
"version": "3.0.0",
|
|
1104
|
-
"resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz",
|
|
1105
|
-
"integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==",
|
|
1106
|
-
"dev": true,
|
|
1107
|
-
"requires": {
|
|
1108
|
-
"is-buffer": "^1.1.5",
|
|
1109
|
-
"is-utf8": "^0.2.1"
|
|
1110
|
-
}
|
|
1111
|
-
},
|
|
1112
|
-
"remove-bom-stream": {
|
|
1113
|
-
"version": "1.2.0",
|
|
1114
|
-
"resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz",
|
|
1115
|
-
"integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=",
|
|
1116
|
-
"dev": true,
|
|
1117
|
-
"requires": {
|
|
1118
|
-
"remove-bom-buffer": "^3.0.0",
|
|
1119
|
-
"safe-buffer": "^5.1.0",
|
|
1120
|
-
"through2": "^2.0.3"
|
|
1121
|
-
},
|
|
1122
|
-
"dependencies": {
|
|
1123
|
-
"readable-stream": {
|
|
1124
|
-
"version": "2.3.7",
|
|
1125
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
1126
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
1127
|
-
"dev": true,
|
|
1128
|
-
"requires": {
|
|
1129
|
-
"core-util-is": "~1.0.0",
|
|
1130
|
-
"inherits": "~2.0.3",
|
|
1131
|
-
"isarray": "~1.0.0",
|
|
1132
|
-
"process-nextick-args": "~2.0.0",
|
|
1133
|
-
"safe-buffer": "~5.1.1",
|
|
1134
|
-
"string_decoder": "~1.1.1",
|
|
1135
|
-
"util-deprecate": "~1.0.1"
|
|
1136
|
-
},
|
|
1137
|
-
"dependencies": {
|
|
1138
|
-
"safe-buffer": {
|
|
1139
|
-
"version": "5.1.2",
|
|
1140
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1141
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1142
|
-
"dev": true
|
|
1143
|
-
}
|
|
1144
|
-
}
|
|
1145
|
-
},
|
|
1146
|
-
"string_decoder": {
|
|
1147
|
-
"version": "1.1.1",
|
|
1148
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
1149
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
1150
|
-
"dev": true,
|
|
1151
|
-
"requires": {
|
|
1152
|
-
"safe-buffer": "~5.1.0"
|
|
1153
|
-
},
|
|
1154
|
-
"dependencies": {
|
|
1155
|
-
"safe-buffer": {
|
|
1156
|
-
"version": "5.1.2",
|
|
1157
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1158
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1159
|
-
"dev": true
|
|
1160
|
-
}
|
|
1161
|
-
}
|
|
1162
|
-
},
|
|
1163
|
-
"through2": {
|
|
1164
|
-
"version": "2.0.5",
|
|
1165
|
-
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
|
1166
|
-
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
|
1167
|
-
"dev": true,
|
|
1168
|
-
"requires": {
|
|
1169
|
-
"readable-stream": "~2.3.6",
|
|
1170
|
-
"xtend": "~4.0.1"
|
|
1171
|
-
}
|
|
1172
|
-
}
|
|
1173
|
-
}
|
|
1174
|
-
},
|
|
1175
|
-
"remove-trailing-separator": {
|
|
1176
|
-
"version": "1.1.0",
|
|
1177
|
-
"resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
|
|
1178
|
-
"integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
|
|
1179
|
-
"dev": true
|
|
1180
|
-
},
|
|
1181
|
-
"replace-ext": {
|
|
1182
|
-
"version": "1.0.1",
|
|
1183
|
-
"resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz",
|
|
1184
|
-
"integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==",
|
|
1185
|
-
"dev": true
|
|
1186
|
-
},
|
|
1187
|
-
"resolve-options": {
|
|
1188
|
-
"version": "1.1.0",
|
|
1189
|
-
"resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz",
|
|
1190
|
-
"integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=",
|
|
1191
|
-
"dev": true,
|
|
1192
|
-
"requires": {
|
|
1193
|
-
"value-or-function": "^3.0.0"
|
|
1194
|
-
}
|
|
1195
|
-
},
|
|
1196
|
-
"safe-buffer": {
|
|
1197
|
-
"version": "5.2.1",
|
|
1198
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
1199
|
-
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
1200
|
-
"dev": true
|
|
1201
|
-
},
|
|
1202
|
-
"safer-buffer": {
|
|
1203
|
-
"version": "2.1.2",
|
|
1204
|
-
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
1205
|
-
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
1206
|
-
"dev": true
|
|
1207
|
-
},
|
|
1208
|
-
"shallow-clone": {
|
|
1209
|
-
"version": "3.0.1",
|
|
1210
|
-
"resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
|
|
1211
|
-
"integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
|
|
1212
|
-
"dev": true,
|
|
1213
|
-
"requires": {
|
|
1214
|
-
"kind-of": "^6.0.2"
|
|
1215
|
-
}
|
|
1216
|
-
},
|
|
1217
|
-
"sortobject": {
|
|
1218
|
-
"version": "4.14.0",
|
|
1219
|
-
"resolved": "https://registry.npmjs.org/sortobject/-/sortobject-4.14.0.tgz",
|
|
1220
|
-
"integrity": "sha512-CpH+1tXhO2IOZU7rlpuoBAil/1oxcd5kYIvwKcNd03/3Y9ls9YYe7jbJ6kNW70A/sKJbMBBHTzy68IO7KIM58g==",
|
|
1221
|
-
"dev": true
|
|
1222
|
-
},
|
|
1223
|
-
"stream-shift": {
|
|
1224
|
-
"version": "1.0.1",
|
|
1225
|
-
"resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
|
|
1226
|
-
"integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
|
|
1227
|
-
"dev": true
|
|
1228
|
-
},
|
|
1229
|
-
"string_decoder": {
|
|
1230
|
-
"version": "1.3.0",
|
|
1231
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
1232
|
-
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
1233
|
-
"dev": true,
|
|
1234
|
-
"requires": {
|
|
1235
|
-
"safe-buffer": "~5.2.0"
|
|
1236
|
-
}
|
|
1237
|
-
},
|
|
1238
|
-
"supports-color": {
|
|
1239
|
-
"version": "7.2.0",
|
|
1240
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
1241
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
1242
|
-
"dev": true,
|
|
1243
|
-
"requires": {
|
|
1244
|
-
"has-flag": "^4.0.0"
|
|
1245
|
-
}
|
|
1246
|
-
},
|
|
1247
|
-
"through2": {
|
|
1248
|
-
"version": "4.0.2",
|
|
1249
|
-
"resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
|
|
1250
|
-
"integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
|
|
1251
|
-
"dev": true,
|
|
1252
|
-
"requires": {
|
|
1253
|
-
"readable-stream": "3"
|
|
1254
|
-
}
|
|
1255
|
-
},
|
|
1256
|
-
"through2-filter": {
|
|
1257
|
-
"version": "3.0.0",
|
|
1258
|
-
"resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz",
|
|
1259
|
-
"integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==",
|
|
1260
|
-
"dev": true,
|
|
1261
|
-
"requires": {
|
|
1262
|
-
"through2": "~2.0.0",
|
|
1263
|
-
"xtend": "~4.0.0"
|
|
1264
|
-
},
|
|
1265
|
-
"dependencies": {
|
|
1266
|
-
"readable-stream": {
|
|
1267
|
-
"version": "2.3.7",
|
|
1268
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
1269
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
1270
|
-
"dev": true,
|
|
1271
|
-
"requires": {
|
|
1272
|
-
"core-util-is": "~1.0.0",
|
|
1273
|
-
"inherits": "~2.0.3",
|
|
1274
|
-
"isarray": "~1.0.0",
|
|
1275
|
-
"process-nextick-args": "~2.0.0",
|
|
1276
|
-
"safe-buffer": "~5.1.1",
|
|
1277
|
-
"string_decoder": "~1.1.1",
|
|
1278
|
-
"util-deprecate": "~1.0.1"
|
|
1279
|
-
}
|
|
1280
|
-
},
|
|
1281
|
-
"safe-buffer": {
|
|
1282
|
-
"version": "5.1.2",
|
|
1283
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1284
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1285
|
-
"dev": true
|
|
1286
|
-
},
|
|
1287
|
-
"string_decoder": {
|
|
1288
|
-
"version": "1.1.1",
|
|
1289
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
1290
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
1291
|
-
"dev": true,
|
|
1292
|
-
"requires": {
|
|
1293
|
-
"safe-buffer": "~5.1.0"
|
|
1294
|
-
}
|
|
1295
|
-
},
|
|
1296
|
-
"through2": {
|
|
1297
|
-
"version": "2.0.5",
|
|
1298
|
-
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
|
1299
|
-
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
|
1300
|
-
"dev": true,
|
|
1301
|
-
"requires": {
|
|
1302
|
-
"readable-stream": "~2.3.6",
|
|
1303
|
-
"xtend": "~4.0.1"
|
|
1304
|
-
}
|
|
1305
|
-
}
|
|
1306
|
-
}
|
|
1307
|
-
},
|
|
1308
|
-
"to-absolute-glob": {
|
|
1309
|
-
"version": "2.0.2",
|
|
1310
|
-
"resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz",
|
|
1311
|
-
"integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=",
|
|
1312
|
-
"dev": true,
|
|
1313
|
-
"requires": {
|
|
1314
|
-
"is-absolute": "^1.0.0",
|
|
1315
|
-
"is-negated-glob": "^1.0.0"
|
|
1316
|
-
}
|
|
1317
|
-
},
|
|
1318
|
-
"to-through": {
|
|
1319
|
-
"version": "2.0.0",
|
|
1320
|
-
"resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz",
|
|
1321
|
-
"integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=",
|
|
1322
|
-
"dev": true,
|
|
1323
|
-
"requires": {
|
|
1324
|
-
"through2": "^2.0.3"
|
|
1325
|
-
},
|
|
1326
|
-
"dependencies": {
|
|
1327
|
-
"readable-stream": {
|
|
1328
|
-
"version": "2.3.7",
|
|
1329
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
1330
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
1331
|
-
"dev": true,
|
|
1332
|
-
"requires": {
|
|
1333
|
-
"core-util-is": "~1.0.0",
|
|
1334
|
-
"inherits": "~2.0.3",
|
|
1335
|
-
"isarray": "~1.0.0",
|
|
1336
|
-
"process-nextick-args": "~2.0.0",
|
|
1337
|
-
"safe-buffer": "~5.1.1",
|
|
1338
|
-
"string_decoder": "~1.1.1",
|
|
1339
|
-
"util-deprecate": "~1.0.1"
|
|
1340
|
-
}
|
|
1341
|
-
},
|
|
1342
|
-
"safe-buffer": {
|
|
1343
|
-
"version": "5.1.2",
|
|
1344
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1345
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1346
|
-
"dev": true
|
|
1347
|
-
},
|
|
1348
|
-
"string_decoder": {
|
|
1349
|
-
"version": "1.1.1",
|
|
1350
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
1351
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
1352
|
-
"dev": true,
|
|
1353
|
-
"requires": {
|
|
1354
|
-
"safe-buffer": "~5.1.0"
|
|
1355
|
-
}
|
|
1356
|
-
},
|
|
1357
|
-
"through2": {
|
|
1358
|
-
"version": "2.0.5",
|
|
1359
|
-
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
|
1360
|
-
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
|
1361
|
-
"dev": true,
|
|
1362
|
-
"requires": {
|
|
1363
|
-
"readable-stream": "~2.3.6",
|
|
1364
|
-
"xtend": "~4.0.1"
|
|
1365
|
-
}
|
|
1366
|
-
}
|
|
1367
|
-
}
|
|
1368
|
-
},
|
|
1369
|
-
"unc-path-regex": {
|
|
1370
|
-
"version": "0.1.2",
|
|
1371
|
-
"resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz",
|
|
1372
|
-
"integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=",
|
|
1373
|
-
"dev": true
|
|
1374
|
-
},
|
|
1375
|
-
"unique-stream": {
|
|
1376
|
-
"version": "2.3.1",
|
|
1377
|
-
"resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz",
|
|
1378
|
-
"integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==",
|
|
1379
|
-
"dev": true,
|
|
1380
|
-
"requires": {
|
|
1381
|
-
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
1382
|
-
"through2-filter": "^3.0.0"
|
|
1383
|
-
}
|
|
1384
|
-
},
|
|
1385
|
-
"util-deprecate": {
|
|
1386
|
-
"version": "1.0.2",
|
|
1387
|
-
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
1388
|
-
"integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
|
|
1389
|
-
"dev": true
|
|
1390
|
-
},
|
|
1391
|
-
"value-or-function": {
|
|
1392
|
-
"version": "3.0.0",
|
|
1393
|
-
"resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz",
|
|
1394
|
-
"integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=",
|
|
1395
|
-
"dev": true
|
|
1396
|
-
},
|
|
1397
|
-
"vinyl": {
|
|
1398
|
-
"version": "2.2.1",
|
|
1399
|
-
"resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz",
|
|
1400
|
-
"integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==",
|
|
1401
|
-
"dev": true,
|
|
1402
|
-
"requires": {
|
|
1403
|
-
"clone": "^2.1.1",
|
|
1404
|
-
"clone-buffer": "^1.0.0",
|
|
1405
|
-
"clone-stats": "^1.0.0",
|
|
1406
|
-
"cloneable-readable": "^1.0.0",
|
|
1407
|
-
"remove-trailing-separator": "^1.0.1",
|
|
1408
|
-
"replace-ext": "^1.0.0"
|
|
1409
|
-
}
|
|
1410
|
-
},
|
|
1411
|
-
"vinyl-fs": {
|
|
1412
|
-
"version": "3.0.3",
|
|
1413
|
-
"resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz",
|
|
1414
|
-
"integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==",
|
|
1415
|
-
"dev": true,
|
|
1416
|
-
"requires": {
|
|
1417
|
-
"fs-mkdirp-stream": "^1.0.0",
|
|
1418
|
-
"glob-stream": "^6.1.0",
|
|
1419
|
-
"graceful-fs": "^4.0.0",
|
|
1420
|
-
"is-valid-glob": "^1.0.0",
|
|
1421
|
-
"lazystream": "^1.0.0",
|
|
1422
|
-
"lead": "^1.0.0",
|
|
1423
|
-
"object.assign": "^4.0.4",
|
|
1424
|
-
"pumpify": "^1.3.5",
|
|
1425
|
-
"readable-stream": "^2.3.3",
|
|
1426
|
-
"remove-bom-buffer": "^3.0.0",
|
|
1427
|
-
"remove-bom-stream": "^1.2.0",
|
|
1428
|
-
"resolve-options": "^1.1.0",
|
|
1429
|
-
"through2": "^2.0.0",
|
|
1430
|
-
"to-through": "^2.0.0",
|
|
1431
|
-
"value-or-function": "^3.0.0",
|
|
1432
|
-
"vinyl": "^2.0.0",
|
|
1433
|
-
"vinyl-sourcemap": "^1.1.0"
|
|
1434
|
-
},
|
|
1435
|
-
"dependencies": {
|
|
1436
|
-
"readable-stream": {
|
|
1437
|
-
"version": "2.3.7",
|
|
1438
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
1439
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
1440
|
-
"dev": true,
|
|
1441
|
-
"requires": {
|
|
1442
|
-
"core-util-is": "~1.0.0",
|
|
1443
|
-
"inherits": "~2.0.3",
|
|
1444
|
-
"isarray": "~1.0.0",
|
|
1445
|
-
"process-nextick-args": "~2.0.0",
|
|
1446
|
-
"safe-buffer": "~5.1.1",
|
|
1447
|
-
"string_decoder": "~1.1.1",
|
|
1448
|
-
"util-deprecate": "~1.0.1"
|
|
1449
|
-
}
|
|
1450
|
-
},
|
|
1451
|
-
"safe-buffer": {
|
|
1452
|
-
"version": "5.1.2",
|
|
1453
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1454
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1455
|
-
"dev": true
|
|
1456
|
-
},
|
|
1457
|
-
"string_decoder": {
|
|
1458
|
-
"version": "1.1.1",
|
|
1459
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
1460
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
1461
|
-
"dev": true,
|
|
1462
|
-
"requires": {
|
|
1463
|
-
"safe-buffer": "~5.1.0"
|
|
1464
|
-
}
|
|
1465
|
-
},
|
|
1466
|
-
"through2": {
|
|
1467
|
-
"version": "2.0.5",
|
|
1468
|
-
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
|
1469
|
-
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
|
1470
|
-
"dev": true,
|
|
1471
|
-
"requires": {
|
|
1472
|
-
"readable-stream": "~2.3.6",
|
|
1473
|
-
"xtend": "~4.0.1"
|
|
1474
|
-
}
|
|
1475
|
-
}
|
|
1476
|
-
}
|
|
1477
|
-
},
|
|
1478
|
-
"vinyl-sourcemap": {
|
|
1479
|
-
"version": "1.1.0",
|
|
1480
|
-
"resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz",
|
|
1481
|
-
"integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=",
|
|
1482
|
-
"dev": true,
|
|
1483
|
-
"requires": {
|
|
1484
|
-
"append-buffer": "^1.0.2",
|
|
1485
|
-
"convert-source-map": "^1.5.0",
|
|
1486
|
-
"graceful-fs": "^4.1.6",
|
|
1487
|
-
"normalize-path": "^2.1.1",
|
|
1488
|
-
"now-and-later": "^2.0.0",
|
|
1489
|
-
"remove-bom-buffer": "^3.0.0",
|
|
1490
|
-
"vinyl": "^2.0.0"
|
|
1491
|
-
}
|
|
1492
|
-
},
|
|
1493
|
-
"void-elements": {
|
|
1494
|
-
"version": "3.1.0",
|
|
1495
|
-
"resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz",
|
|
1496
|
-
"integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=",
|
|
1497
|
-
"dev": true
|
|
1498
|
-
},
|
|
1499
|
-
"wrappy": {
|
|
1500
|
-
"version": "1.0.2",
|
|
1501
|
-
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
1502
|
-
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
|
|
1503
|
-
"dev": true
|
|
1504
|
-
},
|
|
1505
|
-
"xtend": {
|
|
1506
|
-
"version": "4.0.2",
|
|
1507
|
-
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
|
|
1508
|
-
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
|
|
1509
|
-
"dev": true
|
|
1510
|
-
}
|
|
1511
|
-
}
|
|
1512
|
-
}
|