@verdaccio/ui-theme 3.1.0 → 6.0.0-6-next.11
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.
- package/.babelrc +33 -0
- package/.eslintrc +115 -0
- package/.stylelintrc +40 -0
- package/CHANGELOG.md +152 -554
- package/LICENSE +1 -1
- package/README.md +22 -95
- package/config/env.js +9 -0
- package/jest/api/packages.json +42 -0
- package/jest/identity.js +29 -0
- package/jest/jest.config.js +39 -0
- package/jest/jestEnvironment.js +1 -0
- package/jest/server-handlers.ts +9 -0
- package/jest/server.ts +6 -0
- package/jest/setup-env.ts +15 -0
- package/jest/setup.ts +31 -0
- package/jest/unit/components/__mocks__/api.ts +47 -0
- package/jest/unit/components/__mocks__/token.ts +31 -0
- package/jest/unit/components/store/login.ts +23 -0
- package/jest/unit/components/store/logo.ts +7 -0
- package/jest/unit/components/store/package.ts +174 -0
- package/jest/unit/components/store/packageMeta.ts +592 -0
- package/jest/unit/empty.ts +1 -0
- package/lib/constants.ts +9 -0
- package/package.json +153 -228
- package/src/App/App.test.tsx +123 -0
- package/src/App/App.tsx +54 -0
- package/src/App/AppError.tsx +38 -0
- package/src/App/AppRoute.tsx +63 -0
- package/src/App/Footer/Footer.test.tsx +20 -0
- package/src/App/Footer/Footer.tsx +111 -0
- package/src/App/Footer/__snapshots__/Footer.test.tsx.snap +456 -0
- package/src/App/Footer/index.ts +1 -0
- package/src/App/Footer/styles.ts +44 -0
- package/src/App/Header/Header.test.tsx +152 -0
- package/src/App/Header/Header.tsx +74 -0
- package/src/App/Header/HeaderGreetings.tsx +22 -0
- package/src/App/Header/HeaderInfoDialog.tsx +19 -0
- package/src/App/Header/HeaderLeft.tsx +31 -0
- package/src/App/Header/HeaderMenu.tsx +65 -0
- package/src/App/Header/HeaderRight.tsx +118 -0
- package/src/App/Header/HeaderToolTip.tsx +19 -0
- package/src/App/Header/HeaderToolTipIcon.tsx +75 -0
- package/src/App/Header/LanguageSwitch.tsx +125 -0
- package/src/App/Header/LoginDialog/LoginDialog.test.tsx +112 -0
- package/src/App/Header/LoginDialog/LoginDialog.tsx +81 -0
- package/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx +32 -0
- package/src/App/Header/LoginDialog/LoginDialogForm.tsx +97 -0
- package/src/App/Header/LoginDialog/LoginDialogFormError.tsx +43 -0
- package/src/App/Header/LoginDialog/LoginDialogHeader.tsx +48 -0
- package/src/App/Header/LoginDialog/__snapshots__/LoginDialog.test.tsx.snap +3 -0
- package/src/App/Header/LoginDialog/index.ts +1 -0
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +27 -0
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx +155 -0
- package/src/App/Header/RegistryInfoContent/index.ts +1 -0
- package/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +30 -0
- package/src/App/Header/RegistryInfoDialog/index.ts +1 -0
- package/src/App/Header/RegistryInfoDialog/styles.ts +16 -0
- package/src/App/Header/RegistryInfoDialog/types.ts +7 -0
- package/src/App/Header/Search/Search.test.tsx +168 -0
- package/src/App/Header/Search/Search.tsx +127 -0
- package/src/App/Header/Search/SearchAdornment.tsx +18 -0
- package/src/App/Header/Search/__snapshots__/Search.test.tsx.snap +101 -0
- package/src/App/Header/Search/index.ts +1 -0
- package/src/App/Header/index.ts +1 -0
- package/src/App/Header/styles.ts +89 -0
- package/src/App/index.ts +1 -0
- package/src/App/utils/loadable.tsx +10 -0
- package/src/components/.eslintrc +7 -0
- package/src/components/ActionBar/ActionBar.test.tsx +91 -0
- package/src/components/ActionBar/ActionBar.tsx +45 -0
- package/src/components/ActionBar/ActionBarAction.tsx +75 -0
- package/src/components/ActionBar/__snapshots__/ActionBar.test.tsx.snap +122 -0
- package/src/components/ActionBar/index.ts +1 -0
- package/src/components/AppBar.tsx +10 -0
- package/src/components/Author/Author.test.tsx +75 -0
- package/src/components/Author/Author.tsx +47 -0
- package/src/components/Author/__snapshots__/Author.test.tsx.snap +353 -0
- package/src/components/Author/index.ts +1 -0
- package/src/components/Author/styles.ts +23 -0
- package/src/components/AutoComplete/AutoComplete.tsx +179 -0
- package/src/components/AutoComplete/AutoCompleteV2.tsx +296 -0
- package/src/components/AutoComplete/index.ts +1 -0
- package/src/components/AutoComplete/styles.tsx +58 -0
- package/src/components/AutoComplete/useAutoComplete.tsx +61 -0
- package/src/components/Avatar.tsx +3 -0
- package/src/components/Box.tsx +8 -0
- package/src/components/Button.tsx +10 -0
- package/src/components/Card.tsx +10 -0
- package/src/components/CardActions.tsx +13 -0
- package/src/components/CardContent.tsx +10 -0
- package/src/components/Chip.tsx +10 -0
- package/src/components/CircularProgress.tsx +15 -0
- package/src/components/CopyToClipBoard.tsx +45 -0
- package/src/components/Dialog.tsx +10 -0
- package/src/components/DialogActions.tsx +16 -0
- package/src/components/DialogContent.tsx +16 -0
- package/src/components/DialogTitle.tsx +10 -0
- package/src/components/Divider.tsx +10 -0
- package/src/components/FloatingActionButton.tsx +12 -0
- package/src/components/FormControl.tsx +10 -0
- package/src/components/FormHelperText.tsx +16 -0
- package/src/components/Grid.tsx +10 -0
- package/src/components/Heading.tsx +15 -0
- package/src/components/IconButton.tsx +10 -0
- package/src/components/Icons/.eslintrc +5 -0
- package/src/components/Icons/Earth.tsx +36 -0
- package/src/components/Icons/FileBinary.tsx +20 -0
- package/src/components/Icons/Law.tsx +20 -0
- package/src/components/Icons/License.tsx +18 -0
- package/src/components/Icons/Time.tsx +19 -0
- package/src/components/Icons/Version.tsx +20 -0
- package/src/components/Icons/index.ts +5 -0
- package/src/components/Input.tsx +10 -0
- package/src/components/InputAdornment/InputAdornment.tsx +16 -0
- package/src/components/InputAdornment/index.ts +1 -0
- package/src/components/InputLabel.tsx +10 -0
- package/src/components/Label/Label.test.tsx +15 -0
- package/src/components/Label/Label.tsx +35 -0
- package/src/components/Label/__snapshots__/Label.test.tsx.snap +14 -0
- package/src/components/Label/index.ts +1 -0
- package/src/components/Link.tsx +39 -0
- package/src/components/List.tsx +10 -0
- package/src/components/ListItem.tsx +23 -0
- package/src/components/ListItemText.tsx +16 -0
- package/src/components/Loading/Loading.test.tsx +12 -0
- package/src/components/Loading/Loading.tsx +17 -0
- package/src/components/Loading/Spinner/Spinner.test.tsx +14 -0
- package/src/components/Loading/Spinner/Spinner.tsx +35 -0
- package/src/components/Loading/Spinner/__snapshots__/Spinner.test.tsx.snap +148 -0
- package/src/components/Loading/Spinner/index.tsx +1 -0
- package/src/components/Loading/__snapshots__/Loading.test.tsx.snap +86 -0
- package/src/components/Loading/index.ts +1 -0
- package/src/components/Loading/styles.ts +17 -0
- package/src/components/Logo/Logo.test.tsx +12 -0
- package/src/components/Logo/Logo.tsx +55 -0
- package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +19 -0
- package/src/components/Logo/img/logo-black-and-white.svg +1 -0
- package/src/components/Logo/img/logo.svg +1 -0
- package/src/components/Logo/index.ts +1 -0
- package/src/components/Menu.tsx +10 -0
- package/src/components/MenuItem.tsx +25 -0
- package/src/components/NotFound/NotFound.tsx +52 -0
- package/src/components/NotFound/Notfound.test.tsx +37 -0
- package/src/components/NotFound/__snapshots__/Notfound.test.tsx.snap +44 -0
- package/src/components/NotFound/img/package.svg +1 -0
- package/src/components/NotFound/index.ts +1 -0
- package/src/components/NotFound/styles.ts +40 -0
- package/src/components/Paper.tsx +10 -0
- package/src/components/SnackbarContent.tsx +15 -0
- package/src/components/SvgIcon.tsx +38 -0
- package/src/components/Tab.tsx +10 -0
- package/src/components/Tabs.tsx +14 -0
- package/src/components/Text/Text.tsx +17 -0
- package/src/components/Text/TextConfig.ts +7 -0
- package/src/components/Text/index.ts +2 -0
- package/src/components/TextField/TextField.test.tsx +16 -0
- package/src/components/TextField/TextField.tsx +23 -0
- package/src/components/TextField/__snapshots__/TextField.test.tsx.snap +19 -0
- package/src/components/TextField/index.ts +1 -0
- package/src/components/Toolbar.tsx +10 -0
- package/src/components/Tooltip.tsx +25 -0
- package/src/design-tokens/ResetStyles.tsx +44 -0
- package/src/design-tokens/StyleBaseline.tsx +14 -0
- package/src/design-tokens/ThemeContext.ts +13 -0
- package/src/design-tokens/ThemeProvider.tsx +44 -0
- package/src/design-tokens/emotion.ts +5 -0
- package/src/design-tokens/load-dayjs-locale.ts +98 -0
- package/src/design-tokens/theme.ts +159 -0
- package/src/design-tokens/useLocalStorage.ts +40 -0
- package/src/design-tokens/useOnClickOutside.ts +28 -0
- package/src/design-tokens/useTheme.ts +7 -0
- package/src/i18n/ABOUT_TRANSLATIONS.md +13 -0
- package/src/i18n/config.ts +52 -0
- package/src/i18n/crowdin/ui.json +170 -0
- package/src/i18n/deprecated_translations_dont_use/cs-CZ.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/de-DE.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/en-US.json +170 -0
- package/src/i18n/deprecated_translations_dont_use/es-ES.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/fr-FR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/ja-JP.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/km-KH.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/pt-BR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/ru-RU.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/tr-TR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/uk-UA.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/zh-CN.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/zh-TW.json +165 -0
- package/src/i18n/enabledLanguages.ts +35 -0
- package/src/index.tsx +36 -0
- package/src/lib/constants.ts +9 -0
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.test.tsx +93 -0
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx +100 -0
- package/src/pages/Version/DetailContainer/Dependencies/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Dependencies/styles.ts +26 -0
- package/src/pages/Version/DetailContainer/Dependencies/types.ts +7 -0
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.test.tsx +34 -0
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx +31 -0
- package/src/pages/Version/DetailContainer/Deprecated/index.ts +1 -0
- package/src/pages/Version/DetailContainer/DetailContainer.test.tsx +13 -0
- package/src/pages/Version/DetailContainer/DetailContainer.tsx +37 -0
- package/src/pages/Version/DetailContainer/DetailContainerContent.tsx +41 -0
- package/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx +19 -0
- package/src/pages/Version/DetailContainer/DetailContainerTabs.tsx +36 -0
- package/src/pages/Version/DetailContainer/NoItems/NoItems.tsx +16 -0
- package/src/pages/Version/DetailContainer/NoItems/Noitems.test.tsx +16 -0
- package/src/pages/Version/DetailContainer/NoItems/__snapshots__/Noitems.test.tsx.snap +9 -0
- package/src/pages/Version/DetailContainer/NoItems/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Readme/Readme.spec.tsx +19 -0
- package/src/pages/Version/DetailContainer/Readme/Readme.tsx +22 -0
- package/src/pages/Version/DetailContainer/Readme/__snapshots__/Readme.spec.tsx.snap +94 -0
- package/src/pages/Version/DetailContainer/Readme/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Readme/types.ts +3 -0
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.test.tsx +58 -0
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx +45 -0
- package/src/pages/Version/DetailContainer/UpLinks/__snapshots__/UpLinks.test.tsx.snap +247 -0
- package/src/pages/Version/DetailContainer/UpLinks/index.ts +1 -0
- package/src/pages/Version/DetailContainer/UpLinks/styles.ts +24 -0
- package/src/pages/Version/DetailContainer/Versions/Versions.test.tsx +60 -0
- package/src/pages/Version/DetailContainer/Versions/Versions.tsx +41 -0
- package/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx +40 -0
- package/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx +28 -0
- package/src/pages/Version/DetailContainer/Versions/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailContainer/Versions/__snapshots__/Versions.test.tsx.snap +3 -0
- package/src/pages/Version/DetailContainer/Versions/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Versions/styles.ts +30 -0
- package/src/pages/Version/DetailContainer/__snapshots__/DetailContainer.test.tsx.snap +103 -0
- package/src/pages/Version/DetailContainer/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/DetailSidebar.tsx +55 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.test.tsx +111 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx +53 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx +40 -0
- package/src/pages/Version/DetailSidebar/Developers/Developers.test.tsx +117 -0
- package/src/pages/Version/DetailSidebar/Developers/Developers.tsx +90 -0
- package/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx +32 -0
- package/src/pages/Version/DetailSidebar/Developers/__snapshots__/Developers.test.tsx.snap +380 -0
- package/src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts +16 -0
- package/src/pages/Version/DetailSidebar/Developers/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Developers/styles.ts +31 -0
- package/src/pages/Version/DetailSidebar/Dist/Dist.test.tsx +78 -0
- package/src/pages/Version/DetailSidebar/Dist/Dist.tsx +49 -0
- package/src/pages/Version/DetailSidebar/Dist/__snapshots__/Dist.test.tsx.snap +602 -0
- package/src/pages/Version/DetailSidebar/Dist/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Dist/styles.ts +27 -0
- package/src/pages/Version/DetailSidebar/Engines/Engines.test.tsx +71 -0
- package/src/pages/Version/DetailSidebar/Engines/Engines.tsx +58 -0
- package/src/pages/Version/DetailSidebar/Engines/img/node.png +0 -0
- package/src/pages/Version/DetailSidebar/Engines/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Engines/styles.ts +14 -0
- package/src/pages/Version/DetailSidebar/Install/Install.test.tsx +64 -0
- package/src/pages/Version/DetailSidebar/Install/Install.tsx +52 -0
- package/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx +97 -0
- package/src/pages/Version/DetailSidebar/Install/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailSidebar/Install/img/npm.svg +15 -0
- package/src/pages/Version/DetailSidebar/Install/img/pnpm.svg +1 -0
- package/src/pages/Version/DetailSidebar/Install/img/yarn.svg +1 -0
- package/src/pages/Version/DetailSidebar/Install/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Repository/Repository.test.tsx +78 -0
- package/src/pages/Version/DetailSidebar/Repository/Repository.tsx +93 -0
- package/src/pages/Version/DetailSidebar/Repository/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailSidebar/Repository/__snapshots__/Repository.test.tsx.snap +3 -0
- package/src/pages/Version/DetailSidebar/Repository/img/git.png +0 -0
- package/src/pages/Version/DetailSidebar/Repository/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/index.ts +1 -0
- package/src/pages/Version/Version.test.tsx +68 -0
- package/src/pages/Version/Version.tsx +41 -0
- package/src/pages/Version/VersionContextProvider.tsx +43 -0
- package/src/pages/Version/VersionLayout.tsx +20 -0
- package/src/pages/Version/__partials__/data.json +5984 -0
- package/src/pages/Version/context.ts +10 -0
- package/src/pages/Version/get-route-package-name.ts +9 -0
- package/src/pages/Version/index.ts +4 -0
- package/src/pages/Version/version-config.ts +19 -0
- package/src/pages/home/Home.tsx +25 -0
- package/src/pages/home/PackageList/Help/Help.test.tsx +12 -0
- package/src/pages/home/PackageList/Help/Help.tsx +56 -0
- package/src/pages/home/PackageList/Help/__snapshots__/Help.test.tsx.snap +159 -0
- package/src/pages/home/PackageList/Help/index.ts +1 -0
- package/src/pages/home/PackageList/Help/styles.ts +13 -0
- package/src/pages/home/PackageList/Package/Package.test.tsx +56 -0
- package/src/pages/home/PackageList/Package/Package.tsx +253 -0
- package/src/pages/home/PackageList/Package/Tag/Tag.test.tsx +16 -0
- package/src/pages/home/PackageList/Package/Tag/Tag.tsx +11 -0
- package/src/pages/home/PackageList/Package/Tag/__snapshots__/Tag.test.tsx.snap +21 -0
- package/src/pages/home/PackageList/Package/Tag/index.ts +1 -0
- package/src/pages/home/PackageList/Package/Tag/styles.ts +11 -0
- package/src/pages/home/PackageList/Package/index.ts +1 -0
- package/src/pages/home/PackageList/Package/styles.ts +112 -0
- package/src/pages/home/PackageList/PackageList.tsx +81 -0
- package/src/pages/home/PackageList/Packagelist.test.tsx +60 -0
- package/src/pages/home/PackageList/index.ts +1 -0
- package/src/pages/home/index.ts +1 -0
- package/src/providers/API/api.test.ts +136 -0
- package/src/providers/API/api.ts +73 -0
- package/src/providers/API/storage.ts +12 -0
- package/src/providers/config/AppConfigurationProvider.tsx +57 -0
- package/src/providers/config/index.ts +1 -0
- package/src/store/index.ts +1 -0
- package/src/store/models/configuration.ts +42 -0
- package/src/store/models/download.ts +31 -0
- package/src/store/models/index.ts +17 -0
- package/src/store/models/login.ts +90 -0
- package/src/store/models/manifest.ts +91 -0
- package/src/store/models/packages.ts +36 -0
- package/src/store/models/search.ts +81 -0
- package/src/store/store.ts +15 -0
- package/src/template/favicon.ico +0 -0
- package/src/template/index.html +21 -0
- package/src/utils/.eslintrc +5 -0
- package/src/utils/cli-utils.test.ts +66 -0
- package/src/utils/cli-utils.ts +38 -0
- package/src/utils/colors.ts +1 -0
- package/src/utils/constants.ts +5 -0
- package/src/utils/file-size.ts +13 -0
- package/src/utils/i18nForTests.ts +25 -0
- package/src/utils/login.test.ts +71 -0
- package/src/utils/login.ts +44 -0
- package/src/utils/package.test.ts +101 -0
- package/src/utils/package.ts +105 -0
- package/src/utils/sec-utils.ts +15 -0
- package/src/utils/storage.ts +12 -0
- package/src/utils/test-react-testing-library.tsx +38 -0
- package/src/utils/url.test.ts +28 -0
- package/src/utils/url.ts +58 -0
- package/src/utils/windows.ts +3 -0
- package/static/favicon.ico +0 -0
- package/static/index.html +21 -0
- package/static/main.c57129036f278d0c7acf.js +2 -0
- package/static/main.c57129036f278d0c7acf.js.LICENSE.txt +1456 -0
- package/static/manifest.json +5 -17
- package/static/runtime.c57129036f278d0c7acf.js +2 -0
- package/static/{runtime.f6e570dfe38870a45bf5.js.LICENSE.txt → runtime.c57129036f278d0c7acf.js.LICENSE.txt} +2 -2
- package/static/vendors.c57129036f278d0c7acf.js +2 -0
- package/static/vendors.c57129036f278d0c7acf.js.LICENSE.txt +2932 -0
- package/tools/.eslintrc +14 -0
- package/tools/_verdaccio.config.yaml +59 -0
- package/tools/dev.server.js +48 -0
- package/tools/getPackageJson.js +25 -0
- package/tools/verdaccio.js +31 -0
- package/tools/webpack.config.js +82 -0
- package/tools/webpack.dev.config.babel.js +60 -0
- package/tools/webpack.prod.config.babel.js +81 -0
- package/tsconfig.build.json +24 -0
- package/tsconfig.json +27 -0
- package/types/custom.d.ts +9 -0
- package/types/files.d.ts +9 -0
- package/types/index.ts +12 -0
- package/types/jest-dom.d.ts +1 -0
- package/types/packageMeta.ts +82 -0
- package/static/238.f6e570dfe38870a45bf5.js +0 -2
- package/static/238.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/718.f6e570dfe38870a45bf5.js +0 -2
- package/static/718.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/73.f6e570dfe38870a45bf5.js +0 -2
- package/static/73.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Dependencies.f6e570dfe38870a45bf5.js +0 -2
- package/static/Dependencies.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Dist.f6e570dfe38870a45bf5.js +0 -2
- package/static/Dist.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Engines.f6e570dfe38870a45bf5.js +0 -2
- package/static/Engines.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Home.f6e570dfe38870a45bf5.js +0 -2
- package/static/Home.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Install.f6e570dfe38870a45bf5.js +0 -2
- package/static/Install.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/NotFound.f6e570dfe38870a45bf5.js +0 -2
- package/static/NotFound.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Provider.f6e570dfe38870a45bf5.js +0 -2
- package/static/Provider.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Repository.f6e570dfe38870a45bf5.js +0 -2
- package/static/Repository.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/UpLinks.f6e570dfe38870a45bf5.js +0 -2
- package/static/UpLinks.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Version.f6e570dfe38870a45bf5.js +0 -2
- package/static/Version.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Versions.f6e570dfe38870a45bf5.js +0 -2
- package/static/Versions.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/main.f6e570dfe38870a45bf5.js +0 -2
- package/static/main.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/runtime.f6e570dfe38870a45bf5.js +0 -2
- package/static/vendors.f6e570dfe38870a45bf5.js +0 -2
- package/static/vendors.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -98
|
@@ -0,0 +1,592 @@
|
|
|
1
|
+
export const packageMeta = {
|
|
2
|
+
name: 'verdaccio',
|
|
3
|
+
'dist-tags': { latest: '2.7.1', beta: '2.4.1-beta' },
|
|
4
|
+
time: {
|
|
5
|
+
modified: '2017-12-14T15:43:27.317Z',
|
|
6
|
+
created: '2016-07-28T12:48:43.536Z',
|
|
7
|
+
'1.4.0': '2016-07-28T12:48:43.536Z',
|
|
8
|
+
'2.0.0': '2016-08-26T22:36:41.762Z',
|
|
9
|
+
'2.0.1': '2016-08-29T13:26:21.754Z',
|
|
10
|
+
'2.1.0': '2016-10-12T00:48:03.025Z',
|
|
11
|
+
'2.1.1': '2017-02-07T06:43:22.801Z',
|
|
12
|
+
'2.2.0-v20170212': '2017-02-12T14:48:27.322Z',
|
|
13
|
+
'2.1.2': '2017-03-09T06:25:28.107Z',
|
|
14
|
+
'2.1.3': '2017-03-29T20:03:36.850Z',
|
|
15
|
+
'2.1.4': '2017-04-13T20:08:41.131Z',
|
|
16
|
+
'2.1.5': '2017-04-22T09:07:39.821Z',
|
|
17
|
+
'2.1.6': '2017-05-12T07:43:36.616Z',
|
|
18
|
+
'2.1.7': '2017-05-14T13:50:14.016Z',
|
|
19
|
+
'2.1.10': '2017-06-03T09:53:52.449Z',
|
|
20
|
+
'2.2.0': '2017-06-08T19:02:53.618Z',
|
|
21
|
+
'2.2.1': '2017-06-17T16:23:14.158Z',
|
|
22
|
+
'2.2.2': '2017-07-02T13:13:13.304Z',
|
|
23
|
+
'2.2.3': '2017-07-04T20:43:59.442Z',
|
|
24
|
+
'2.2.4': '2017-07-05T17:28:07.187Z',
|
|
25
|
+
'2.2.5': '2017-07-05T17:34:11.089Z',
|
|
26
|
+
'2.2.6': '2017-07-13T05:04:54.418Z',
|
|
27
|
+
'2.2.7': '2017-07-15T23:27:24.523Z',
|
|
28
|
+
'2.3.0-beta': '2017-07-15T23:31:31.664Z',
|
|
29
|
+
'2.2.7-r': '2017-07-18T19:44:48.946Z',
|
|
30
|
+
'2.3.0-beta-1': '2017-07-22T16:27:45.025Z',
|
|
31
|
+
'2.3.0-beta-2': '2017-07-22T17:12:09.905Z',
|
|
32
|
+
'2.3.0-beta-3': '2017-07-22T17:35:05.771Z',
|
|
33
|
+
'2.3.0-beta-4': '2017-07-22T18:22:42.563Z',
|
|
34
|
+
'2.3.0': '2017-07-22T23:08:37.513Z',
|
|
35
|
+
'2.3.1-pre': '2017-07-24T05:50:40.852Z',
|
|
36
|
+
'2.3.1': '2017-07-25T05:24:27.651Z',
|
|
37
|
+
'2.3.2': '2017-07-28T23:05:36.431Z',
|
|
38
|
+
'2.3.3': '2017-07-29T10:05:30.120Z',
|
|
39
|
+
'2.3.4': '2017-07-29T10:18:44.061Z',
|
|
40
|
+
'2.3.5': '2017-08-14T06:22:57.686Z',
|
|
41
|
+
'2.3.6': '2017-08-17T04:30:44.872Z',
|
|
42
|
+
'2.4.0': '2017-09-23T08:01:22.780Z',
|
|
43
|
+
'2.4.1-beta': '2017-10-01T08:57:14.509Z',
|
|
44
|
+
'2.5.0': '2017-10-01T12:31:06.333Z',
|
|
45
|
+
'2.5.1': '2017-10-01T13:32:06.584Z',
|
|
46
|
+
'2.6.0': '2017-10-18T20:22:32.836Z',
|
|
47
|
+
'2.6.1': '2017-10-19T17:26:24.083Z',
|
|
48
|
+
'2.6.2': '2017-10-21T08:37:16.527Z',
|
|
49
|
+
'2.6.3': '2017-10-21T16:04:05.556Z',
|
|
50
|
+
'2.6.4': '2017-10-31T17:47:03.647Z',
|
|
51
|
+
'2.6.5': '2017-11-05T09:09:31.332Z',
|
|
52
|
+
'2.6.6': '2017-11-08T22:47:16.504Z',
|
|
53
|
+
'2.7.0': '2017-12-05T23:25:06.372Z',
|
|
54
|
+
'2.7.1': '2017-12-14T15:43:27.317Z',
|
|
55
|
+
},
|
|
56
|
+
_uplinks: {
|
|
57
|
+
abc: { etag: 'ddfdxjn8m8n6gn70-8m', fetched: 1532297472000 },
|
|
58
|
+
npmjs: { etag: '"5a272ad2-4f6b1"', fetched: 1513266232741 },
|
|
59
|
+
xyz: { etag: '564748hydydygs-s7ehj', fetched: 1532124672000 },
|
|
60
|
+
},
|
|
61
|
+
_rev: '16-ba1b806df0298246',
|
|
62
|
+
_attachments: {},
|
|
63
|
+
latest: {
|
|
64
|
+
name: 'verdaccio',
|
|
65
|
+
version: '2.7.1',
|
|
66
|
+
description: 'Private npm repository server',
|
|
67
|
+
author: {
|
|
68
|
+
name: 'User NPM',
|
|
69
|
+
email: 'test@author.local',
|
|
70
|
+
avatar: 'https://www.gravatar.com/avatar/a5a236ba477ee98908600c40cda74f4a',
|
|
71
|
+
},
|
|
72
|
+
repository: {
|
|
73
|
+
type: 'git',
|
|
74
|
+
url: 'git://github.com/verdaccio/verdaccio.git',
|
|
75
|
+
},
|
|
76
|
+
main: 'index.js',
|
|
77
|
+
bin: { verdaccio: './bin/verdaccio' },
|
|
78
|
+
dependencies: {
|
|
79
|
+
'@verdaccio/file-locking': '0.0.3',
|
|
80
|
+
'@verdaccio/streams': '0.0.2',
|
|
81
|
+
JSONStream: '^1.1.1',
|
|
82
|
+
'apache-md5': '^1.1.2',
|
|
83
|
+
async: '^2.0.1',
|
|
84
|
+
'body-parser': '^1.15.0',
|
|
85
|
+
bunyan: '^1.8.0',
|
|
86
|
+
chalk: '^2.0.1',
|
|
87
|
+
commander: '^2.11.0',
|
|
88
|
+
compression: '1.6.2',
|
|
89
|
+
cookies: '^0.7.0',
|
|
90
|
+
cors: '^2.8.3',
|
|
91
|
+
express: '4.15.3',
|
|
92
|
+
global: '^4.3.2',
|
|
93
|
+
handlebars: '4.0.5',
|
|
94
|
+
'http-errors': '^1.4.0',
|
|
95
|
+
'js-string-escape': '1.0.1',
|
|
96
|
+
'js-yaml': '^3.6.0',
|
|
97
|
+
jsonwebtoken: '^7.4.1',
|
|
98
|
+
lockfile: '^1.0.1',
|
|
99
|
+
lodash: '4.17.4',
|
|
100
|
+
lunr: '^0.7.0',
|
|
101
|
+
marked: '0.3.6',
|
|
102
|
+
mime: '^1.3.6',
|
|
103
|
+
minimatch: '^3.0.2',
|
|
104
|
+
mkdirp: '^0.5.1',
|
|
105
|
+
pkginfo: '^0.4.0',
|
|
106
|
+
request: '^2.72.0',
|
|
107
|
+
semver: '^5.1.0',
|
|
108
|
+
'unix-crypt-td-js': '^1.0.0',
|
|
109
|
+
},
|
|
110
|
+
devDependencies: {
|
|
111
|
+
axios: '0.16.2',
|
|
112
|
+
'babel-cli': '6.24.1',
|
|
113
|
+
'babel-core': '6.25.0',
|
|
114
|
+
'babel-eslint': '7.2.3',
|
|
115
|
+
'babel-loader': '7.1.1',
|
|
116
|
+
'babel-plugin-flow-runtime': '0.11.1',
|
|
117
|
+
'babel-plugin-transform-decorators-legacy': '1.3.4',
|
|
118
|
+
'babel-plugin-transform-runtime': '6.23.0',
|
|
119
|
+
'babel-polyfill': '^6.26.0',
|
|
120
|
+
'babel-preset-env': '1.5.2',
|
|
121
|
+
'babel-preset-flow': '6.23.0',
|
|
122
|
+
'babel-preset-react': '6.24.1',
|
|
123
|
+
'babel-preset-stage-2': '6.24.1',
|
|
124
|
+
'babel-preset-stage-3': '6.24.1',
|
|
125
|
+
'babel-runtime': '6.23.0',
|
|
126
|
+
'codacy-coverage': '2.0.2',
|
|
127
|
+
codecov: '2.2.0',
|
|
128
|
+
coveralls: '2.13.1',
|
|
129
|
+
'css-loader': '0.28.4',
|
|
130
|
+
'element-react': '1.0.16',
|
|
131
|
+
'element-theme-default': '1.3.7',
|
|
132
|
+
eslint: '4.2.0',
|
|
133
|
+
'eslint-config-google': '0.8.0',
|
|
134
|
+
'eslint-loader': '1.8.0',
|
|
135
|
+
'eslint-plugin-babel': '4.1.1',
|
|
136
|
+
'eslint-plugin-flowtype': '2.35.0',
|
|
137
|
+
'eslint-plugin-import': '2.6.1',
|
|
138
|
+
'eslint-plugin-react': '7.1.0',
|
|
139
|
+
'extract-text-webpack-plugin': '3.0.0',
|
|
140
|
+
'file-loader': '0.11.2',
|
|
141
|
+
'flow-runtime': '0.13.0',
|
|
142
|
+
'friendly-errors-webpack-plugin': '1.6.1',
|
|
143
|
+
'fs-extra': '4.0.1',
|
|
144
|
+
'github-markdown-css': '2.8.0',
|
|
145
|
+
'html-webpack-plugin': '2.29.0',
|
|
146
|
+
'in-publish': '2.0.0',
|
|
147
|
+
'localstorage-memory': '1.0.2',
|
|
148
|
+
mocha: '3.4.2',
|
|
149
|
+
'mocha-lcov-reporter': '1.3.0',
|
|
150
|
+
'node-sass': '4.5.3',
|
|
151
|
+
'normalize.css': '7.0.0',
|
|
152
|
+
nyc: '11.0.3',
|
|
153
|
+
ora: '1.3.0',
|
|
154
|
+
'prop-types': '15.5.10',
|
|
155
|
+
react: '15.6.1',
|
|
156
|
+
'react-dom': '15.6.1',
|
|
157
|
+
'react-hot-loader': '3.0.0-beta.7',
|
|
158
|
+
'react-router-dom': '4.1.1',
|
|
159
|
+
'react-syntax-highlighter': '5.6.2',
|
|
160
|
+
rimraf: '2.6.1',
|
|
161
|
+
'sass-loader': '6.0.6',
|
|
162
|
+
'source-map-loader': '0.2.1',
|
|
163
|
+
'standard-version': '4.2.0',
|
|
164
|
+
'style-loader': '0.18.2',
|
|
165
|
+
stylelint: '7.13.0',
|
|
166
|
+
'stylelint-config-standard': '16.0.0',
|
|
167
|
+
'stylelint-webpack-plugin': '0.8.0',
|
|
168
|
+
'url-loader': '0.5.8',
|
|
169
|
+
webpack: '3.2.0',
|
|
170
|
+
'webpack-dev-server': '2.5.0',
|
|
171
|
+
'webpack-merge': '4.1.0',
|
|
172
|
+
},
|
|
173
|
+
keywords: [
|
|
174
|
+
'private',
|
|
175
|
+
'package',
|
|
176
|
+
'repository',
|
|
177
|
+
'registry',
|
|
178
|
+
'enterprise',
|
|
179
|
+
'modules',
|
|
180
|
+
'proxy',
|
|
181
|
+
'server',
|
|
182
|
+
],
|
|
183
|
+
scripts: {
|
|
184
|
+
release: 'standard-version -a -s',
|
|
185
|
+
prepublish: 'in-publish && npm run build:webui || not-in-publish',
|
|
186
|
+
test: 'mocha ./test/functional ./test/unit --reporter=spec --full-trace',
|
|
187
|
+
'pre:ci': 'npm run build:webui',
|
|
188
|
+
'test:ci': 'npm run test:coverage',
|
|
189
|
+
'test:only': 'mocha ./test/functional ./test/unit',
|
|
190
|
+
'test:coverage': 'nyc npm t',
|
|
191
|
+
'coverage:html': 'nyc report --reporter=html',
|
|
192
|
+
'coverage:publish': 'nyc report --reporter=lcov | codecov',
|
|
193
|
+
lint: 'eslint .',
|
|
194
|
+
'lint:css': "stylelint 'src/**/*.scss' --syntax scss",
|
|
195
|
+
'pre:webpack': 'npm run lint && rimraf static/*',
|
|
196
|
+
'dev:webui': 'babel-node tools/dev.server.js',
|
|
197
|
+
'build:webui': 'npm run pre:webpack && webpack --config tools/webpack.prod.config.babel.js',
|
|
198
|
+
'build:docker': 'docker build -t verdaccio . --no-cache',
|
|
199
|
+
'build:docker:rpi': 'docker build -f Dockerfile.rpi -t verdaccio:rpi .',
|
|
200
|
+
},
|
|
201
|
+
engines: { node: '>=4.6.1', npm: '>=2.15.9' },
|
|
202
|
+
preferGlobal: true,
|
|
203
|
+
publishConfig: { registry: 'https://registry.verdaccio.org' },
|
|
204
|
+
license: 'WTFPL',
|
|
205
|
+
contributors: [
|
|
206
|
+
{
|
|
207
|
+
name: '030',
|
|
208
|
+
email: 'test1@test.local',
|
|
209
|
+
avatar: 'https://www.gravatar.com/avatar/4ef03c2bf8d8689527903212d96fb45b',
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
name: 'User NPM',
|
|
213
|
+
email: 'test2@test.local',
|
|
214
|
+
avatar: 'https://www.gravatar.com/avatar/a5a236ba477ee98908600c40cda74f4a',
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
name: 'User NPM',
|
|
218
|
+
email: 'test3@test.comu',
|
|
219
|
+
avatar: 'https://www.gravatar.com/avatar/41a61049006855759bd6ec82ef0543a0',
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
name: 'Alex Vernacchia',
|
|
223
|
+
email: 'tes4@test.local',
|
|
224
|
+
avatar: 'https://www.gravatar.com/avatar/06975001f7f2be7052bcf978700c6112',
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
name: 'Alexander Makarenko',
|
|
228
|
+
email: 'test5@test.local',
|
|
229
|
+
avatar: 'https://www.gravatar.com/avatar/d9acfc4ed4e49a436738ff26a722dce4',
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: 'Alexandre-io',
|
|
233
|
+
email: 'test6@test.local',
|
|
234
|
+
avatar: 'https://www.gravatar.com/avatar/2e095c7cfd278f72825d0fed6e12e3b1',
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
name: 'Aram Drevekenin',
|
|
238
|
+
email: 'test7@test.local',
|
|
239
|
+
avatar: 'https://www.gravatar.com/avatar/371edff6d79c39bb9e36bde39d41a4b0',
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
name: 'Bart Dubois',
|
|
243
|
+
email: 'test8@test.local',
|
|
244
|
+
avatar: 'https://www.gravatar.com/avatar/4acf72b14fcb459286c988c4523bafc8',
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: 'Barthélemy Vessemont',
|
|
248
|
+
email: 'test9@test.local',
|
|
249
|
+
avatar: 'https://www.gravatar.com/avatar/322cd2fad528a55c4351ec76d85ef525',
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: 'Brandon Nicholls',
|
|
253
|
+
email: 'test10@test.local',
|
|
254
|
+
avatar: 'https://www.gravatar.com/avatar/2d3b462f08f214ed459967aa7ef206f7',
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
name: 'Bren Norris',
|
|
258
|
+
email: 'test11@test.local',
|
|
259
|
+
avatar: 'https://www.gravatar.com/avatar/465a42204a22efada0f15b46a7cdad3a',
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
name: 'Brett Trotter',
|
|
263
|
+
email: 'test12@test.local',
|
|
264
|
+
avatar: 'https://www.gravatar.com/avatar/27a54519dcbe64c6d705f3cc4854595a',
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
name: 'Brian Peacock',
|
|
268
|
+
email: 'test13@test.local',
|
|
269
|
+
avatar: 'https://www.gravatar.com/avatar/3dd3d627330e7e048c13a7480f19842e',
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
name: 'Cedric Darne',
|
|
273
|
+
email: 'test14@test.local',
|
|
274
|
+
avatar: 'https://www.gravatar.com/avatar/0a617cebc6539940d7956c86e86c72a6',
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
name: 'Chad Killingsworth',
|
|
278
|
+
email: 'test15@test.local',
|
|
279
|
+
avatar: 'https://www.gravatar.com/avatar/a5825b2d69311e559e28a535e5f0d483',
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
name: 'Chris Breneman',
|
|
283
|
+
email: 'test16@test.local',
|
|
284
|
+
avatar: 'https://www.gravatar.com/avatar/3c5c3edef955c93edac672cbad04d7cd',
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
name: 'Cody Droz',
|
|
288
|
+
email: 'test17@test.local',
|
|
289
|
+
avatar: 'https://www.gravatar.com/avatar/b762ce4d14acfece36e783b1592d882b',
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
name: 'Daniel Rodríguez Rivero',
|
|
293
|
+
email: 'test18@test.local',
|
|
294
|
+
avatar: 'https://www.gravatar.com/avatar/ac7f548c31e8a002cfa41bd4c71e222d',
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
name: 'Denis Babineau',
|
|
298
|
+
email: 'test19@test.local',
|
|
299
|
+
avatar: 'https://www.gravatar.com/avatar/ee5a522e067759ba0403824ecebeab4d',
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
name: 'Emmanuel Narh',
|
|
303
|
+
email: 'test20@test.local',
|
|
304
|
+
avatar: 'https://www.gravatar.com/avatar/93a84a6120969fd181785ff9de834f0a',
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
name: 'Fabio Poloni',
|
|
308
|
+
email: 'test21@test.local',
|
|
309
|
+
avatar: 'https://www.gravatar.com/avatar/f9a05677360e5f52fcca6e1af9b0f2ee',
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
name: 'Facundo Chambó',
|
|
313
|
+
email: 'test22@test.local',
|
|
314
|
+
avatar: 'https://www.gravatar.com/avatar/ec9e7c590ba4081c25fcf197f90a4ea0',
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
name: 'Guilherme Bernal',
|
|
318
|
+
email: 'test23@test.local',
|
|
319
|
+
avatar: 'https://www.gravatar.com/avatar/e5d55dcf2495618e8b9f8778f8353ee0',
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
name: 'Jakub Jirutka',
|
|
323
|
+
email: 'test24@test.local',
|
|
324
|
+
avatar: 'https://www.gravatar.com/avatar/061bdb74aa4a543108658b277a257b4b',
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
name: 'James Newell',
|
|
328
|
+
email: 'test25@test.local',
|
|
329
|
+
avatar: 'https://www.gravatar.com/avatar/825190aaae6ec7fd95085e1fb6f261d2',
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
name: 'Jan Vansteenkiste',
|
|
333
|
+
email: 'test26@test.local',
|
|
334
|
+
avatar: 'https://www.gravatar.com/avatar/41835625a324201c796a0a0cffe4796b',
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
name: 'Jannis Achstetter',
|
|
338
|
+
email: 'test27@test.local',
|
|
339
|
+
avatar: 'https://www.gravatar.com/avatar/92d1cce007b032f4a63c6df764f18030',
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
name: 'Jeremy Moritz',
|
|
343
|
+
email: 'test28@test.local',
|
|
344
|
+
avatar: 'https://www.gravatar.com/avatar/008127e8f10293f43e62de3b7b3520e1',
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
name: 'John Gozde',
|
|
348
|
+
email: 'test29@test.local',
|
|
349
|
+
avatar: 'https://www.gravatar.com/avatar/3e8927c60cb043a56fdd6531cfcaddbc',
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
name: 'Jon de la Motte',
|
|
353
|
+
email: 'test30@test.local',
|
|
354
|
+
avatar: 'https://www.gravatar.com/avatar/126c1ea4fdb20bbb85c3ff735b7b0964',
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
name: 'Joseph Gentle',
|
|
358
|
+
email: 'test31@test.local',
|
|
359
|
+
avatar: 'https://www.gravatar.com/avatar/484f0b8ba8b7cc43db0be8f910a91254',
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
name: 'José De Paz',
|
|
363
|
+
email: 'test32@test.local',
|
|
364
|
+
avatar: 'https://www.gravatar.com/avatar/2532122835f5ebf1642b707ae088c895',
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
name: 'Juan Carlos Picado',
|
|
368
|
+
email: 'test33@test.local',
|
|
369
|
+
avatar: 'https://www.gravatar.com/avatar/c676605ff39f9c7a43f5518a8ce54e12',
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
name: 'Juan Carlos Picado',
|
|
373
|
+
email: 'test34@test.local',
|
|
374
|
+
avatar: 'https://www.gravatar.com/avatar/fba48015a688c38cc84e5b55b07858c0',
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
name: 'User NPM',
|
|
378
|
+
email: 'test35@test.local',
|
|
379
|
+
avatar: 'https://www.gravatar.com/avatar/fba48015a688c38cc84e5b55b07858c0',
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
name: 'User NPM @nickname',
|
|
383
|
+
email: 'test36@test.local',
|
|
384
|
+
avatar: 'https://www.gravatar.com/avatar/fba48015a688c38cc84e5b55b07858c0',
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
name: 'Kalman Speier',
|
|
388
|
+
email: 'test37@test.local',
|
|
389
|
+
avatar: 'https://www.gravatar.com/avatar/272806ba17639e2fbf811e51eb8bfb99',
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
name: 'Keyvan Fatehi',
|
|
393
|
+
email: 'test38@test.local',
|
|
394
|
+
avatar: 'https://www.gravatar.com/avatar/22735d1ba5765955914eb2d597dfaab5',
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
name: 'Kody J. Peterson',
|
|
398
|
+
email: 'test39@test.local',
|
|
399
|
+
avatar: 'https://www.gravatar.com/avatar/918a15afc52e9b0a67b2651191b23d04',
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
name: 'Madison Grubb',
|
|
403
|
+
email: 'test40@test.local',
|
|
404
|
+
avatar: 'https://www.gravatar.com/avatar/73b84fdf661c11d48d3370bfa197162b',
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
name: 'Manuel de Brito Fontes',
|
|
408
|
+
email: 'test41@test.local',
|
|
409
|
+
avatar: 'https://www.gravatar.com/avatar/8798ca0a499428e5e8f25d3614ac8b6e',
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
name: 'Mark Doeswijk',
|
|
413
|
+
email: 'test42@test.local',
|
|
414
|
+
avatar: 'https://www.gravatar.com/avatar/0d70ebd6c46dc01502bfab5f8c2d2bc5',
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
name: 'Meeeeow',
|
|
418
|
+
email: 'test43@test.local',
|
|
419
|
+
avatar: 'https://www.gravatar.com/avatar/baa061890d7b352ba121082272419a8a',
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
name: 'Meeeeow',
|
|
423
|
+
email: 'test44@test.local',
|
|
424
|
+
avatar: 'https://www.gravatar.com/avatar/12a36e093451d4c0f75d4240960ce29b',
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
name: 'Michael Arnel',
|
|
428
|
+
email: 'test45@test.local',
|
|
429
|
+
avatar: 'https://www.gravatar.com/avatar/5f9a5ed24c63609d52651258f6dd8c12',
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
name: 'Michael Crowe',
|
|
433
|
+
email: 'test46@test.local',
|
|
434
|
+
avatar: 'https://www.gravatar.com/avatar/eec9ee62019852da28a3bc91c57907f9',
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
name: 'Miguel Mejias',
|
|
438
|
+
email: 'test47@test.local',
|
|
439
|
+
avatar: 'https://www.gravatar.com/avatar/7289a01fedfdb9ddf855ee4dd4d41ae2',
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
name: 'Miroslav Bajtoš',
|
|
443
|
+
email: 'test48@test.local',
|
|
444
|
+
avatar: 'https://www.gravatar.com/avatar/b4d8831300713259f74aea79f842ca57',
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
name: 'Nate Ziarek',
|
|
448
|
+
email: 'test49@test.local',
|
|
449
|
+
avatar: 'https://www.gravatar.com/avatar/6442023756294fd43aa518bbe5cc6dcc',
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
name: 'Nick',
|
|
453
|
+
email: 'test50@test.local',
|
|
454
|
+
avatar: 'https://www.gravatar.com/avatar/8a810f12c9624ea2092852fe7c19f1ee',
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
name: 'Piotr Synowiec',
|
|
458
|
+
email: 'test51@test.local',
|
|
459
|
+
avatar: 'https://www.gravatar.com/avatar/87028f33a3e1e5b4201c371abddf93e2',
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
name: 'Rafael Cesar',
|
|
463
|
+
email: 'test52@test.local',
|
|
464
|
+
avatar: 'https://www.gravatar.com/avatar/204ed93fa5be7e2f9f299ad8bca6431f',
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
name: 'Robert Ewald',
|
|
468
|
+
email: 'test53@test.local',
|
|
469
|
+
avatar: 'https://www.gravatar.com/avatar/ec2166ce419f78fb354f128b01a4a44d',
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
name: 'Robert Groh',
|
|
473
|
+
email: 'test54@test.local',
|
|
474
|
+
avatar: 'https://www.gravatar.com/avatar/565ccb5374a3e0e31a75f11da2eb57aa',
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
name: 'Robin Persson',
|
|
478
|
+
email: 'test55@test.local',
|
|
479
|
+
avatar: 'https://www.gravatar.com/avatar/99da46e4d59664134b176869340f464b',
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
name: 'Romain Lai-King',
|
|
483
|
+
email: 'test56@test.local',
|
|
484
|
+
avatar: 'https://www.gravatar.com/avatar/69d0370c58399d0e0bbd15ccabfe1ec5',
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
name: 'Ryan Graham',
|
|
488
|
+
email: 'test57@test.local',
|
|
489
|
+
avatar: 'https://www.gravatar.com/avatar/8bd1dd86bbf8705a5a702b86a2f3a390',
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
name: 'Ryan Graham',
|
|
493
|
+
email: 'test58@test.local',
|
|
494
|
+
avatar: 'https://www.gravatar.com/avatar/e272ab422c1c629e9be26cba8b6c0166',
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
name: 'Sam Day',
|
|
498
|
+
email: 'test59@test.local',
|
|
499
|
+
avatar: 'https://www.gravatar.com/avatar/1886554b0562a0eeeb78a4d1f27917ea',
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
name: 'Tarun Garg',
|
|
503
|
+
email: 'test60@test.local',
|
|
504
|
+
avatar: 'https://www.gravatar.com/avatar/185e200c3451cfbe341f0e758626303a',
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
name: 'Thomas Cort',
|
|
508
|
+
email: 'test61@test.local',
|
|
509
|
+
avatar: 'https://www.gravatar.com/avatar/120d2921c33c1bd8dedfce67a28dcc63',
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
name: 'Tom Vincent',
|
|
513
|
+
email: 'test62@test.local',
|
|
514
|
+
avatar: 'https://www.gravatar.com/avatar/fb0c7faeda7f5d5632182a3d80381bfa',
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
name: 'Trent Earl',
|
|
518
|
+
email: 'test63@test.local',
|
|
519
|
+
avatar: 'https://www.gravatar.com/avatar/1e30abe66d21824b89c28d05e5b57d84',
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
name: 'Yannick Croissant',
|
|
523
|
+
email: 'test64@test.local',
|
|
524
|
+
avatar: 'https://www.gravatar.com/avatar/1e619ddb2a180222dd3d9f0348e65b9b',
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
name: 'Yannick Galatol',
|
|
528
|
+
email: 'test65@test.local',
|
|
529
|
+
avatar: 'https://www.gravatar.com/avatar/2f624f92326fef845bb2c07b392b7e48',
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
name: 'cklein',
|
|
533
|
+
email: 'test66@test.local',
|
|
534
|
+
avatar: 'https://www.gravatar.com/avatar/f8288370380881cf3afc5a92a63d652d',
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
name: 'danielo515',
|
|
538
|
+
email: 'test67@test.local',
|
|
539
|
+
avatar: 'https://www.gravatar.com/avatar/ac7f548c31e8a002cfa41bd4c71e222d',
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
name: 'jmwilkinson',
|
|
543
|
+
email: 'test68@test.local',
|
|
544
|
+
avatar: 'https://www.gravatar.com/avatar/3b99683f0a4c26a8906ecbe7968a4ade',
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
name: 'nickname',
|
|
548
|
+
email: 'test69@test.local',
|
|
549
|
+
avatar: 'https://www.gravatar.com/avatar/fba48015a688c38cc84e5b55b07858c0',
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
name: 'nickname',
|
|
553
|
+
email: 'test70@test.local',
|
|
554
|
+
avatar: 'https://www.gravatar.com/avatar/047ba1e853d20459e531619af5493c56',
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
name: 'maxlaverse',
|
|
558
|
+
email: 'test71@test.local',
|
|
559
|
+
avatar: 'https://www.gravatar.com/avatar/74324a2900906c45949a8c5cee6d0730',
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
name: 'saheba',
|
|
563
|
+
email: 'test72@test.local',
|
|
564
|
+
avatar: 'https://www.gravatar.com/avatar/77644c51856cab149e0f550c5f0c6ed8',
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
name: 'steve-p-com',
|
|
568
|
+
email: 'test73@test.local',
|
|
569
|
+
avatar: 'https://www.gravatar.com/avatar/bef1821d3036b8b9242c4999826c1c3c',
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
name: 'trent.earl',
|
|
573
|
+
email: 'test74@test.local',
|
|
574
|
+
avatar: 'https://www.gravatar.com/avatar/f84b8ae496f7c988dce5a71d773e75bb',
|
|
575
|
+
},
|
|
576
|
+
],
|
|
577
|
+
readmeFilename: 'README.md',
|
|
578
|
+
gitHead: '567dbe327819ed30afb96906f8d43f19740e2e3d',
|
|
579
|
+
bugs: { url: 'https://github.com/verdaccio/verdaccio/issues' },
|
|
580
|
+
homepage: 'https://github.com/verdaccio/verdaccio#readme',
|
|
581
|
+
_id: 'verdaccio@2.7.1',
|
|
582
|
+
_shasum: '958c919180e7f2ed6775f48d4ec64bd8de2a14df',
|
|
583
|
+
_from: '.',
|
|
584
|
+
_npmVersion: '3.10.10',
|
|
585
|
+
_nodeVersion: '6.9.5',
|
|
586
|
+
_npmUser: {},
|
|
587
|
+
dist: {
|
|
588
|
+
shasum: '958c919180e7f2ed6775f48d4ec64bd8de2a14df',
|
|
589
|
+
tarball: 'https://registry.verdaccio.org/verdaccio/-/verdaccio-2.7.1.tgz',
|
|
590
|
+
},
|
|
591
|
+
},
|
|
592
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default {};
|