@10yun/cv-mobile-ui 0.5.27 → 0.5.30
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/build/parse-pages.js +50 -14
- package/build/parse-pages2.js +11 -10
- package/other/uParse/components/wxParseAudio.vue +1 -1
- package/other/uParse/components/wxParseVideo.vue +1 -1
- package/package.json +1 -1
- package/plugins/luch-request/adapters/index.js +131 -0
- package/plugins/luch-request/core/InterceptorManager.js +50 -0
- package/plugins/luch-request/core/Request.js +199 -0
- package/plugins/luch-request/core/buildFullPath.js +20 -0
- package/plugins/luch-request/core/defaults.js +32 -0
- package/plugins/luch-request/core/dispatchRequest.js +5 -0
- package/plugins/luch-request/core/mergeConfig.js +125 -0
- package/plugins/luch-request/core/settle.js +16 -0
- package/plugins/luch-request/helpers/buildURL.js +71 -0
- package/plugins/luch-request/helpers/combineURLs.js +12 -0
- package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/plugins/luch-request/index.d.ts +197 -0
- package/plugins/luch-request/index.js +2 -0
- package/plugins/luch-request/readme.md +3 -0
- package/plugins/luch-request/utils/clone.js +264 -0
- package/plugins/luch-request/utils.js +131 -0
- package/plugins/request.js +84 -69
- package/ui-cv/components/cv-btn-base/cv-btn-base.vue +66 -14
- package/ui-cv/components/cv-code-sms/cv-code-sms.vue +22 -15
- package/ui-cv/components/cv-date-base/cv-date-base.vue +1 -1
- package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
- package/ui-cv/components/cv-input-text/input.css +13 -0
- package/ui-cv/components/cv-picker1/cv-picker1.vue +1 -1
- package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
- package/ui-fireui/fui-alert/fui-alert.vue +141 -0
- package/ui-fireui/fui-badge/fui-badge.vue +158 -0
- package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
- package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
- package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
- package/ui-fireui/fui-button/fui-button.vue +424 -0
- package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
- package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
- package/ui-fireui/fui-card/fui-card.vue +231 -0
- package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
- package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
- package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
- package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
- package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
- package/ui-fireui/fui-divider/fui-divider.vue +118 -0
- package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
- package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
- package/ui-fireui/fui-fab/fui-fab.vue +284 -0
- package/ui-fireui/fui-footer/fui-footer.vue +131 -0
- package/ui-fireui/fui-grid/fui-grid.vue +42 -0
- package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
- package/ui-fireui/fui-icon/fui-icon.vue +820 -0
- package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
- package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
- package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
- package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
- package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
- package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
- package/ui-fireui/fui-loading/fui-loading.vue +78 -0
- package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
- package/ui-fireui/fui-modal/fui-modal.vue +392 -0
- package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
- package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
- package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
- package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
- package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
- package/ui-fireui/fui-rate/fui-rate.vue +167 -0
- package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
- package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
- package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
- package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
- package/ui-fireui/fui-steps/fui-steps.vue +214 -0
- package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
- package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
- package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
- package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
- package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
- package/ui-fireui/fui-tag/fui-tag.vue +374 -0
- package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
- package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
- package/ui-fireui/fui-tips/fui-tips.vue +161 -0
- package/ui-fireui/fui-toast/fui-toast.vue +117 -0
- package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
- package/ui-fireui/fui-upload/fui-upload.vue +446 -0
- package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
- package/uni-ui/lib/uni-icons/changelog.md +22 -0
- package/uni-ui/lib/uni-icons/package.json +42 -0
- package/uni-ui/lib/uni-icons/readme.md +8 -0
- package/uview-plus/LICENSE +1 -1
- package/uview-plus/README.md +22 -12
- package/uview-plus/changelog-wu-tool.md +21 -0
- package/uview-plus/changelog-wu.md +91 -0
- package/uview-plus/changelog.md +752 -0
- package/uview-plus/components/u--form/u--form.vue +1 -1
- package/uview-plus/components/u--image/u--image.vue +1 -1
- package/uview-plus/components/u--input/u--input.vue +3 -3
- package/uview-plus/components/u--text/u--text.vue +1 -1
- package/uview-plus/components/u--textarea/u--textarea.vue +1 -1
- package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
- package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
- package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
- package/uview-plus/{libs/config/props → components/u-action-sheet}/actionSheet.js +3 -2
- package/uview-plus/components/u-action-sheet/props.js +20 -13
- package/uview-plus/components/u-action-sheet/style.css +18 -4
- package/uview-plus/components/u-action-sheet/style.scss +2 -2
- package/uview-plus/components/u-action-sheet/u-action-sheet.vue +21 -13
- package/uview-plus/components/u-action-sheet-data/style.css +10 -0
- package/uview-plus/components/u-action-sheet-data/style.scss +12 -0
- package/uview-plus/components/u-action-sheet-data/u-action-sheet-data.vue +94 -0
- package/uview-plus/{libs/config/props → components/u-album}/album.js +5 -2
- package/uview-plus/components/u-album/props.js +40 -14
- package/uview-plus/components/u-album/style.css +16 -2
- package/uview-plus/components/u-album/style.scss +0 -1
- package/uview-plus/components/u-album/u-album.vue +55 -30
- package/uview-plus/components/u-alert/props.js +12 -11
- package/uview-plus/components/u-alert/style.css +17 -2
- package/uview-plus/components/u-alert/u-alert.vue +12 -6
- package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
- package/uview-plus/components/u-app-update/_doc/package.json +89 -0
- package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/config.js +120 -0
- package/uview-plus/components/u-app-update/img/act.png +0 -0
- package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
- package/uview-plus/components/u-app-update/img/close.png +0 -0
- package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
- package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
- package/uview-plus/components/u-app-update/pages/index.vue +8 -0
- package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
- package/uview-plus/components/u-avatar/props.js +20 -18
- package/uview-plus/components/u-avatar/style.css +18 -2
- package/uview-plus/components/u-avatar/style.scss +1 -0
- package/uview-plus/components/u-avatar/u-avatar.vue +20 -15
- package/uview-plus/{libs/config/props → components/u-avatar-group}/avatarGroup.js +1 -1
- package/uview-plus/components/u-avatar-group/props.js +13 -12
- package/uview-plus/components/u-avatar-group/style.css +17 -2
- package/uview-plus/components/u-avatar-group/u-avatar-group.vue +2 -73
- package/uview-plus/{libs/config/props → components/u-back-top}/backtop.js +2 -2
- package/uview-plus/components/u-back-top/props.js +14 -13
- package/uview-plus/components/u-back-top/style.css +17 -2
- package/uview-plus/components/u-back-top/u-back-top.vue +11 -9
- package/uview-plus/{libs/config/props → components/u-badge}/badge.js +1 -1
- package/uview-plus/components/u-badge/props.js +18 -17
- package/uview-plus/components/u-badge/style.css +17 -2
- package/uview-plus/components/u-badge/u-badge.vue +11 -7
- package/uview-plus/components/u-box/props.js +27 -0
- package/uview-plus/components/u-box/style.css +77 -0
- package/uview-plus/components/u-box/style.scss +38 -0
- package/uview-plus/components/u-box/u-box.vue +3 -0
- package/uview-plus/{libs/config/props → components/u-button}/button.js +2 -1
- package/uview-plus/components/u-button/nvue-parse.scss +2 -2
- package/uview-plus/components/u-button/props.js +37 -40
- package/uview-plus/components/u-button/style.css +21 -5
- package/uview-plus/components/u-button/u-button.vue +32 -21
- package/uview-plus/components/u-button/vue-parse.scss +4 -3
- package/uview-plus/components/u-button/vue.scss +9 -8
- package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
- package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
- package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
- package/uview-plus/components/u-button-wu/vue.scss +81 -0
- package/uview-plus/{libs/config/props → components/u-calendar}/calendar.js +7 -4
- package/uview-plus/components/u-calendar/header.vue +3 -1
- package/uview-plus/components/u-calendar/month.vue +43 -19
- package/uview-plus/components/u-calendar/props.js +45 -30
- package/uview-plus/components/u-calendar/style.css +17 -2
- package/uview-plus/components/u-calendar/u-calendar.vue +53 -17
- package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
- package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
- package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
- package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
- package/uview-plus/components/u-calendar-wu/props.js +166 -0
- package/uview-plus/components/u-calendar-wu/style.css +196 -0
- package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
- package/uview-plus/components/u-calendar-wu/util.js +552 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
- package/uview-plus/components/u-car-keyboard/props.js +5 -3
- package/uview-plus/components/u-car-keyboard/style.css +18 -3
- package/uview-plus/components/u-car-keyboard/u-car-keyboard.vue +205 -1
- package/uview-plus/components/u-card/card.js +40 -0
- package/uview-plus/components/u-card/props.js +134 -0
- package/uview-plus/components/u-card/style.css +60 -0
- package/uview-plus/components/u-card/style.scss +47 -0
- package/uview-plus/components/u-card/u-card.vue +3 -0
- package/uview-plus/components/u-cate-tab/style.css +97 -0
- package/uview-plus/components/u-cate-tab/style.scss +114 -0
- package/uview-plus/components/u-cate-tab/u-cate-tab.vue +3 -0
- package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
- package/uview-plus/components/u-cell/_doc/package.json +89 -0
- package/uview-plus/components/u-cell/_doc/readme.md +25 -0
- package/uview-plus/components/u-cell/props.js +24 -23
- package/uview-plus/components/u-cell/style.css +43 -3
- package/uview-plus/components/u-cell/style.scss +25 -2
- package/uview-plus/components/u-cell/u-cell.vue +44 -31
- package/uview-plus/components/u-cell-group/props.js +6 -5
- package/uview-plus/components/u-cell-group/style.css +17 -2
- package/uview-plus/components/u-cell-group/u-cell-group.vue +10 -6
- package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
- package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
- package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
- package/uview-plus/components/u-checkbox/props.js +22 -16
- package/uview-plus/components/u-checkbox/style.css +17 -2
- package/uview-plus/components/u-checkbox/u-checkbox.vue +87 -57
- package/uview-plus/{libs/config/props → components/u-checkbox-group}/checkboxGroup.js +1 -1
- package/uview-plus/components/u-checkbox-group/props.js +21 -19
- package/uview-plus/components/u-checkbox-group/style.css +17 -2
- package/uview-plus/components/u-checkbox-group/u-checkbox-group.vue +5 -5
- package/uview-plus/components/u-circle-progress/props.js +5 -4
- package/uview-plus/components/u-circle-progress/style.css +23 -8
- package/uview-plus/components/u-circle-progress/u-circle-progress.vue +5 -4
- package/uview-plus/components/u-code/_doc/changelog.md +6 -0
- package/uview-plus/components/u-code/_doc/package.json +86 -0
- package/uview-plus/components/u-code/_doc/readme.md +16 -0
- package/uview-plus/components/u-code/props.js +10 -9
- package/uview-plus/components/u-code/style.css +17 -2
- package/uview-plus/components/u-code/u-code.vue +6 -5
- package/uview-plus/components/u-code-input/props.js +28 -18
- package/uview-plus/components/u-code-input/style.css +22 -6
- package/uview-plus/components/u-code-input/style.scss +5 -4
- package/uview-plus/components/u-code-input/u-code-input.vue +57 -11
- package/uview-plus/components/u-col/props.js +9 -8
- package/uview-plus/components/u-col/style.css +29 -14
- package/uview-plus/components/u-col/u-col.vue +10 -8
- package/uview-plus/components/u-collapse/props.js +7 -6
- package/uview-plus/components/u-collapse/style.css +17 -2
- package/uview-plus/components/u-collapse/u-collapse.vue +4 -3
- package/uview-plus/{libs/config/props → components/u-collapse-item}/collapseItem.js +7 -1
- package/uview-plus/components/u-collapse-item/props.js +51 -14
- package/uview-plus/components/u-collapse-item/style.css +17 -2
- package/uview-plus/components/u-collapse-item/u-collapse-item.vue +3 -1
- package/uview-plus/{libs/config/props → components/u-column-notice}/columnNotice.js +2 -1
- package/uview-plus/components/u-column-notice/props.js +18 -13
- package/uview-plus/components/u-column-notice/style.css +17 -2
- package/uview-plus/components/u-column-notice/u-column-notice.vue +15 -7
- package/uview-plus/components/u-copy/u-copy.vue +1 -0
- package/uview-plus/components/u-count-down/props.js +8 -7
- package/uview-plus/components/u-count-down/style.css +17 -2
- package/uview-plus/components/u-count-down/u-count-down.vue +146 -1
- package/uview-plus/components/u-count-to/props.js +15 -14
- package/uview-plus/components/u-count-to/style.css +17 -2
- package/uview-plus/components/u-count-to/u-count-to.vue +7 -4
- package/uview-plus/{libs/config/props → components/u-datetime-picker}/datetimePicker.js +7 -1
- package/uview-plus/components/u-datetime-picker/props.js +68 -26
- package/uview-plus/components/u-datetime-picker/style.css +42 -1
- package/uview-plus/components/u-datetime-picker/style.scss +26 -0
- package/uview-plus/components/u-datetime-picker/u-datetime-picker.vue +140 -40
- package/uview-plus/components/u-divider/props.js +12 -11
- package/uview-plus/components/u-divider/style.css +17 -2
- package/uview-plus/components/u-divider/u-divider.vue +8 -5
- package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
- package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
- package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
- package/uview-plus/components/u-dropdown/props.js +12 -17
- package/uview-plus/components/u-dropdown/style.css +63 -3
- package/uview-plus/components/u-dropdown/style.scss +68 -18
- package/uview-plus/components/u-dropdown/u-dropdown.vue +208 -1
- package/uview-plus/components/u-dropdown-item/props.js +47 -37
- package/uview-plus/components/u-dropdown-item/style.css +19 -6
- package/uview-plus/components/u-dropdown-item/style.scss +4 -9
- package/uview-plus/components/u-dropdown-item/u-dropdown-item.vue +126 -1
- package/uview-plus/components/u-empty/props.js +15 -14
- package/uview-plus/components/u-empty/style.css +17 -2
- package/uview-plus/components/u-empty/u-empty.vue +39 -9
- package/uview-plus/components/u-float-button/style.css +41 -0
- package/uview-plus/components/u-float-button/style.scss +17 -0
- package/uview-plus/components/u-float-button/u-float-button.vue +164 -0
- package/uview-plus/{libs/config/props → components/u-form}/form.js +3 -3
- package/uview-plus/components/u-form/props.js +12 -11
- package/uview-plus/components/u-form/u-form.vue +1 -1
- package/uview-plus/{libs/config/props → components/u-form-item}/formItem.js +2 -0
- package/uview-plus/components/u-form-item/props.js +22 -11
- package/uview-plus/components/u-form-item/style.css +17 -4
- package/uview-plus/components/u-form-item/style.scss +0 -2
- package/uview-plus/components/u-form-item/u-form-item.vue +42 -15
- package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
- package/uview-plus/components/u-gap/_doc/package.json +86 -0
- package/uview-plus/components/u-gap/_doc/readme.md +22 -0
- package/uview-plus/components/u-gap/props.js +8 -7
- package/uview-plus/components/u-gap/style.css +17 -2
- package/uview-plus/components/u-gap/u-gap.vue +8 -7
- package/uview-plus/components/u-grid/props.js +12 -6
- package/uview-plus/components/u-grid/style.css +23 -3
- package/uview-plus/components/u-grid/style.scss +8 -1
- package/uview-plus/components/u-grid/u-grid.vue +11 -4
- package/uview-plus/components/u-grid-item/props.js +6 -5
- package/uview-plus/components/u-grid-item/style.css +17 -2
- package/uview-plus/components/u-grid-item/u-grid-item.vue +17 -14
- package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
- package/uview-plus/components/u-icon/_doc/package.json +85 -0
- package/uview-plus/components/u-icon/_doc/readme.md +10 -0
- package/uview-plus/components/u-icon/icon.js +34 -0
- package/uview-plus/components/u-icon/icons.js +213 -213
- package/uview-plus/components/u-icon/props.js +21 -20
- package/uview-plus/components/u-icon/style.css +18 -3
- package/uview-plus/components/u-icon/style.scss +2 -3
- package/uview-plus/components/u-icon/u-icon.vue +85 -34
- package/uview-plus/components/u-icon/u-icon2.vue +149 -0
- package/uview-plus/components/u-image/props.js +20 -19
- package/uview-plus/components/u-image/style.css +17 -2
- package/uview-plus/components/u-image/u-image.vue +59 -24
- package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
- package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
- package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
- package/uview-plus/components/u-image-wu/props.js +94 -0
- package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
- package/uview-plus/components/u-index-anchor/props.js +9 -8
- package/uview-plus/components/u-index-anchor/style.css +17 -2
- package/uview-plus/components/u-index-anchor/u-index-anchor.vue +12 -10
- package/uview-plus/components/u-index-item/props.js +5 -3
- package/uview-plus/components/u-index-item/style.css +17 -2
- package/uview-plus/components/u-index-item/u-index-item.vue +7 -6
- package/uview-plus/{libs/config/props → components/u-index-list}/indexList.js +3 -2
- package/uview-plus/components/u-index-list/props.js +14 -8
- package/uview-plus/components/u-index-list/style.css +19 -3
- package/uview-plus/components/u-index-list/style.scss +2 -1
- package/uview-plus/components/u-index-list/u-index-list.vue +193 -60
- package/uview-plus/components/u-input/_doc/changelog.md +6 -0
- package/uview-plus/components/u-input/_doc/package.json +88 -0
- package/uview-plus/components/u-input/_doc/readme.md +16 -0
- package/uview-plus/{libs/config/props → components/u-input}/input.js +1 -1
- package/uview-plus/components/u-input/props.js +40 -38
- package/uview-plus/components/u-input/style.css +17 -2
- package/uview-plus/components/u-input/u-input.vue +70 -54
- package/uview-plus/components/u-keyboard/props.js +20 -19
- package/uview-plus/components/u-keyboard/style.css +17 -2
- package/uview-plus/components/u-keyboard/u-keyboard.vue +4 -3
- package/uview-plus/components/u-lazy-load/style.css +38 -0
- package/uview-plus/components/u-lazy-load/style.scss +17 -0
- package/uview-plus/components/u-lazy-load/u-lazy-load.vue +3 -0
- package/uview-plus/components/u-line/_doc/changelog.md +8 -0
- package/uview-plus/components/u-line/_doc/package.json +86 -0
- package/uview-plus/components/u-line/_doc/readme.md +16 -0
- package/uview-plus/components/u-line/props.js +10 -9
- package/uview-plus/components/u-line/style.css +17 -2
- package/uview-plus/components/u-line/u-line.vue +7 -6
- package/uview-plus/components/u-line-progress/props.js +9 -8
- package/uview-plus/components/u-line-progress/style.css +17 -2
- package/uview-plus/components/u-line-progress/u-line-progress.vue +11 -8
- package/uview-plus/components/u-link/_doc/changelog.md +8 -0
- package/uview-plus/components/u-link/_doc/package.json +86 -0
- package/uview-plus/components/u-link/_doc/readme.md +20 -0
- package/uview-plus/{libs/config/props → components/u-link}/link.js +1 -1
- package/uview-plus/components/u-link/props.js +11 -10
- package/uview-plus/components/u-link/style.css +17 -2
- package/uview-plus/components/u-link/u-link.vue +10 -7
- package/uview-plus/components/u-list/props.js +43 -18
- package/uview-plus/components/u-list/style.css +17 -2
- package/uview-plus/components/u-list/u-list.vue +41 -10
- package/uview-plus/components/u-list-item/props.js +5 -4
- package/uview-plus/components/u-list-item/style.css +17 -2
- package/uview-plus/components/u-list-item/u-list-item.vue +5 -4
- package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
- package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
- package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
- package/uview-plus/{libs/config/props → components/u-loading-icon}/loadingIcon.js +1 -1
- package/uview-plus/components/u-loading-icon/props.js +16 -15
- package/uview-plus/components/u-loading-icon/style.css +21 -5
- package/uview-plus/components/u-loading-icon/style.scss +3 -3
- package/uview-plus/components/u-loading-icon/u-loading-icon.vue +3 -1
- package/uview-plus/{libs/config/props → components/u-loading-page}/loadingPage.js +2 -1
- package/uview-plus/components/u-loading-page/props.js +19 -12
- package/uview-plus/components/u-loading-page/style.css +19 -4
- package/uview-plus/components/u-loading-page/u-loading-page.vue +15 -9
- package/uview-plus/components/u-loadmore/props.js +22 -21
- package/uview-plus/components/u-loadmore/style.css +17 -2
- package/uview-plus/components/u-loadmore/u-loadmore.vue +13 -9
- package/uview-plus/components/u-mask/u-mask.vue +122 -0
- package/uview-plus/{libs/config/props → components/u-modal}/modal.js +5 -1
- package/uview-plus/components/u-modal/props.js +40 -19
- package/uview-plus/components/u-modal/style.css +21 -2
- package/uview-plus/components/u-modal/style.scss +69 -65
- package/uview-plus/components/u-modal/u-modal.vue +184 -1
- package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
- package/uview-plus/components/u-navbar/_doc/package.json +89 -0
- package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
- package/uview-plus/{libs/config/props → components/u-navbar}/navbar.js +2 -1
- package/uview-plus/components/u-navbar/props.js +26 -19
- package/uview-plus/components/u-navbar/style.css +17 -2
- package/uview-plus/components/u-navbar/u-navbar.vue +25 -12
- package/uview-plus/components/u-navbar-mini/props.js +51 -0
- package/uview-plus/components/u-navbar-mini/style.css +60 -0
- package/uview-plus/components/u-navbar-mini/style.scss +38 -0
- package/uview-plus/components/u-navbar-mini/u-navbar-mini.vue +89 -0
- package/uview-plus/components/u-navbar-wu/props.js +102 -0
- package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
- package/uview-plus/components/u-no-network/props.js +7 -6
- package/uview-plus/components/u-no-network/style.css +17 -2
- package/uview-plus/components/u-no-network/u-no-network.vue +8 -6
- package/uview-plus/{libs/config/props → components/u-notice-bar}/noticeBar.js +3 -2
- package/uview-plus/components/u-notice-bar/props.js +21 -16
- package/uview-plus/components/u-notice-bar/style.css +17 -2
- package/uview-plus/components/u-notice-bar/u-notice-bar.vue +10 -4
- package/uview-plus/components/u-notify/props.js +13 -12
- package/uview-plus/components/u-notify/style.css +17 -2
- package/uview-plus/components/u-notify/u-notify.vue +20 -16
- package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
- package/uview-plus/components/u-number-box/_doc/package.json +88 -0
- package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
- package/uview-plus/{libs/config/props → components/u-number-box}/numberBox.js +5 -1
- package/uview-plus/components/u-number-box/props.js +46 -25
- package/uview-plus/components/u-number-box/style.css +17 -2
- package/uview-plus/components/u-number-box/u-number-box.vue +72 -35
- package/uview-plus/components/u-number-keyboard/props.js +7 -6
- package/uview-plus/components/u-number-keyboard/style.css +19 -4
- package/uview-plus/components/u-number-keyboard/u-number-keyboard.vue +9 -6
- package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
- package/uview-plus/components/u-overlay/_doc/package.json +88 -0
- package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
- package/uview-plus/components/u-overlay/props.js +8 -7
- package/uview-plus/components/u-overlay/style.css +17 -2
- package/uview-plus/components/u-overlay/u-overlay.vue +14 -5
- package/uview-plus/components/u-parse/node/node.vue +12 -4
- package/uview-plus/components/u-parse/parser.js +1337 -1333
- package/uview-plus/components/u-parse/props.js +48 -47
- package/uview-plus/components/u-parse/u-parse.vue +6 -6
- package/uview-plus/{libs/config/props → components/u-picker}/picker.js +10 -4
- package/uview-plus/components/u-picker/props.js +60 -18
- package/uview-plus/components/u-picker/style.css +29 -2
- package/uview-plus/components/u-picker/style.scss +12 -1
- package/uview-plus/components/u-picker/u-picker.vue +174 -58
- package/uview-plus/components/u-picker-column/props.js +4 -3
- package/uview-plus/components/u-picker-column/style.css +17 -2
- package/uview-plus/components/u-picker-column/u-picker-column.vue +3 -3
- package/uview-plus/components/u-picker-data/style.css +10 -0
- package/uview-plus/components/u-picker-data/style.scss +12 -0
- package/uview-plus/components/u-picker-data/u-picker-data.vue +110 -0
- package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
- package/uview-plus/components/u-popup/_doc/package.json +92 -0
- package/uview-plus/components/u-popup/_doc/readme.md +16 -0
- package/uview-plus/{libs/config/props → components/u-popup}/popup.js +1 -1
- package/uview-plus/components/u-popup/props.js +19 -18
- package/uview-plus/components/u-popup/style.css +27 -2
- package/uview-plus/components/u-popup/style.scss +86 -75
- package/uview-plus/components/u-popup/u-popup.vue +250 -1
- package/uview-plus/components/u-popup-wu/keypress.js +45 -0
- package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
- package/uview-plus/components/u-qrcode/qrcode.js +1235 -0
- package/uview-plus/components/u-qrcode/style.css +20 -0
- package/uview-plus/components/u-qrcode/style.scss +23 -0
- package/uview-plus/components/u-qrcode/u-qrcode.vue +3 -0
- package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
- package/uview-plus/components/u-radio/_doc/package.json +88 -0
- package/uview-plus/components/u-radio/_doc/readme.md +25 -0
- package/uview-plus/components/u-radio/props.js +17 -16
- package/uview-plus/components/u-radio/style.css +17 -2
- package/uview-plus/components/u-radio/u-radio.vue +32 -27
- package/uview-plus/components/u-radio-group/props.js +26 -20
- package/uview-plus/{libs/config/props → components/u-radio-group}/radioGroup.js +4 -3
- package/uview-plus/components/u-radio-group/style.css +17 -2
- package/uview-plus/components/u-radio-group/u-radio-group.vue +12 -4
- package/uview-plus/components/u-rate/props.js +18 -17
- package/uview-plus/components/u-rate/style.css +17 -2
- package/uview-plus/components/u-rate/u-rate.vue +17 -14
- package/uview-plus/components/u-read-more/props.js +12 -11
- package/uview-plus/components/u-read-more/style.css +18 -2
- package/uview-plus/components/u-read-more/style.scss +23 -22
- package/uview-plus/components/u-read-more/u-read-more.vue +2 -118
- package/uview-plus/components/u-row/_doc/changelog.md +8 -0
- package/uview-plus/components/u-row/_doc/package.json +86 -0
- package/uview-plus/components/u-row/_doc/readme.md +16 -0
- package/uview-plus/components/u-row/props.js +7 -6
- package/uview-plus/components/u-row/style.css +17 -2
- package/uview-plus/components/u-row/u-row.vue +9 -7
- package/uview-plus/components/u-row-notice/props.js +11 -10
- package/uview-plus/components/u-row-notice/style.css +18 -2
- package/uview-plus/components/u-row-notice/style.scss +1 -0
- package/uview-plus/components/u-row-notice/u-row-notice.vue +17 -15
- package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
- package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
- package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
- package/uview-plus/components/u-safe-bottom/props.js +5 -3
- package/uview-plus/components/u-safe-bottom/u-safe-bottom.vue +3 -1
- package/uview-plus/components/u-scroll-list/nvue.js +1 -3
- package/uview-plus/components/u-scroll-list/props.js +10 -9
- package/uview-plus/components/u-scroll-list/style.css +18 -2
- package/uview-plus/components/u-scroll-list/style.scss +2 -0
- package/uview-plus/components/u-scroll-list/u-scroll-list.vue +17 -12
- package/uview-plus/components/u-search/props.js +42 -27
- package/uview-plus/{libs/config/props → components/u-search}/search.js +3 -2
- package/uview-plus/components/u-search/style.css +23 -2
- package/uview-plus/components/u-search/style.scss +8 -0
- package/uview-plus/components/u-search/u-search.vue +22 -8
- package/uview-plus/components/u-select/style.css +45 -0
- package/uview-plus/components/u-select/style.scss +47 -0
- package/uview-plus/components/u-select/u-select.vue +3 -0
- package/uview-plus/components/u-skeleton/props.js +15 -14
- package/uview-plus/components/u-skeleton/style.css +17 -2
- package/uview-plus/components/u-skeleton/u-skeleton.vue +22 -19
- package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
- package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
- package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/props.js +86 -0
- package/uview-plus/components/u-sku-wu/style.css +271 -0
- package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
- package/uview-plus/components/u-slider/mpwxs.js +2 -1
- package/uview-plus/components/u-slider/nvue.js +2 -1
- package/uview-plus/components/u-slider/props.js +50 -14
- package/uview-plus/{libs/config/props → components/u-slider}/slider.js +3 -1
- package/uview-plus/components/u-slider/style.css +81 -1
- package/uview-plus/components/u-slider/style.scss +76 -0
- package/uview-plus/components/u-slider/u-slider.vue +446 -1
- package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
- package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
- package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
- package/uview-plus/components/u-status-bar/props.js +10 -4
- package/uview-plus/{libs/config/props → components/u-status-bar}/statusBar.js +2 -1
- package/uview-plus/components/u-status-bar/u-status-bar.vue +23 -8
- package/uview-plus/components/u-steps/props.js +11 -10
- package/uview-plus/components/u-steps/style.css +21 -2
- package/uview-plus/components/u-steps/style.scss +4 -0
- package/uview-plus/components/u-steps/u-steps.vue +9 -5
- package/uview-plus/components/u-steps-item/props.js +13 -7
- package/uview-plus/components/u-steps-item/style.css +19 -3
- package/uview-plus/components/u-steps-item/style.scss +3 -2
- package/uview-plus/components/u-steps-item/u-steps-item.vue +53 -25
- package/uview-plus/components/u-sticky/props.js +10 -9
- package/uview-plus/components/u-sticky/u-sticky.vue +21 -14
- package/uview-plus/components/u-subsection/props.js +13 -12
- package/uview-plus/components/u-subsection/style.css +31 -16
- package/uview-plus/components/u-subsection/style.scss +13 -13
- package/uview-plus/components/u-subsection/u-subsection.vue +35 -22
- package/uview-plus/components/u-swipe-action/props.js +10 -4
- package/uview-plus/components/u-swipe-action/u-swipe-action.vue +18 -3
- package/uview-plus/components/u-swipe-action-item/alipay.sjs +229 -0
- package/uview-plus/components/u-swipe-action-item/index.wxs +20 -15
- package/uview-plus/components/u-swipe-action-item/nvue - backup.js +3 -2
- package/uview-plus/components/u-swipe-action-item/nvue.js +4 -3
- package/uview-plus/components/u-swipe-action-item/other.js +178 -0
- package/uview-plus/components/u-swipe-action-item/props.js +15 -10
- package/uview-plus/components/u-swipe-action-item/style.css +18 -2
- package/uview-plus/components/u-swipe-action-item/style.scss +1 -0
- package/uview-plus/{libs/config/props → components/u-swipe-action-item}/swipeActionItem.js +1 -0
- package/uview-plus/components/u-swipe-action-item/u-swipe-action-item.vue +85 -28
- package/uview-plus/components/u-swiper/props.js +28 -27
- package/uview-plus/components/u-swiper/style.css +20 -2
- package/uview-plus/components/u-swiper/style.scss +3 -0
- package/uview-plus/{libs/config/props → components/u-swiper}/swiper.js +1 -1
- package/uview-plus/components/u-swiper/u-swiper.vue +63 -52
- package/uview-plus/components/u-swiper-indicator/props.js +9 -8
- package/uview-plus/components/u-swiper-indicator/style.css +17 -2
- package/uview-plus/components/u-swiper-indicator/u-swiper-indicator.vue +10 -6
- package/uview-plus/components/u-switch/props.js +15 -14
- package/uview-plus/components/u-switch/style.css +17 -2
- package/uview-plus/components/u-switch/u-switch.vue +16 -14
- package/uview-plus/components/u-tabbar/props.js +13 -11
- package/uview-plus/components/u-tabbar/style.css +17 -2
- package/uview-plus/components/u-tabbar/u-tabbar.vue +6 -5
- package/uview-plus/components/u-tabbar-item/props.js +10 -9
- package/uview-plus/components/u-tabbar-item/style.css +22 -2
- package/uview-plus/components/u-tabbar-item/style.scss +5 -0
- package/uview-plus/components/u-tabbar-item/u-tabbar-item.vue +8 -5
- package/uview-plus/components/u-table/props.js +4 -3
- package/uview-plus/components/u-table/style.css +17 -2
- package/uview-plus/components/u-table/u-table.vue +3 -3
- package/uview-plus/components/u-tabs/props.js +21 -15
- package/uview-plus/components/u-tabs/style.css +22 -3
- package/uview-plus/components/u-tabs/style.scss +5 -1
- package/uview-plus/{libs/config/props → components/u-tabs}/tabs.js +9 -8
- package/uview-plus/components/u-tabs/u-tabs.vue +78 -24
- package/uview-plus/components/u-tabs-item/props.js +4 -3
- package/uview-plus/components/u-tabs-item/u-tabs-item.vue +3 -3
- package/uview-plus/components/u-tag/props.js +44 -18
- package/uview-plus/components/u-tag/style.css +17 -2
- package/uview-plus/components/u-tag/tag.js +35 -0
- package/uview-plus/components/u-tag/u-tag.vue +177 -1
- package/uview-plus/components/u-td/props.js +4 -3
- package/uview-plus/components/u-td/style.css +17 -2
- package/uview-plus/components/u-td/u-td.vue +3 -3
- package/uview-plus/components/u-text/_doc/changelog.md +10 -0
- package/uview-plus/components/u-text/_doc/package.json +89 -0
- package/uview-plus/components/u-text/_doc/readme.md +20 -0
- package/uview-plus/components/u-text/props.js +30 -24
- package/uview-plus/components/u-text/style.css +17 -6
- package/uview-plus/components/u-text/style.scss +58 -62
- package/uview-plus/{libs/config/props → components/u-text}/text.js +4 -3
- package/uview-plus/components/u-text/u-text.vue +2 -143
- package/uview-plus/components/u-text/value.js +14 -12
- package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
- package/uview-plus/components/u-textarea/_doc/package.json +86 -0
- package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
- package/uview-plus/components/u-textarea/props.js +28 -26
- package/uview-plus/components/u-textarea/style.css +17 -2
- package/uview-plus/components/u-textarea/u-textarea.vue +2 -221
- package/uview-plus/components/u-toast/style.css +18 -3
- package/uview-plus/{libs/config/props → components/u-toast}/toast.js +2 -2
- package/uview-plus/components/u-toast/u-toast.vue +31 -21
- package/uview-plus/components/u-toolbar/props.js +15 -9
- package/uview-plus/components/u-toolbar/style.css +24 -2
- package/uview-plus/components/u-toolbar/style.scss +5 -0
- package/uview-plus/{libs/config/props → components/u-toolbar}/toolbar.js +1 -1
- package/uview-plus/components/u-toolbar/u-toolbar.vue +34 -23
- package/uview-plus/components/u-tooltip/props.js +15 -14
- package/uview-plus/components/u-tooltip/style.css +17 -2
- package/uview-plus/{libs/config/props → components/u-tooltip}/tooltip.js +1 -1
- package/uview-plus/components/u-tooltip/u-tooltip.vue +22 -44
- package/uview-plus/components/u-tr/props.js +4 -3
- package/uview-plus/components/u-tr/style.css +16 -1
- package/uview-plus/components/u-tr/u-tr.vue +3 -3
- package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
- package/uview-plus/components/u-transition/_doc/package.json +86 -0
- package/uview-plus/components/u-transition/_doc/readme.md +16 -0
- package/uview-plus/components/u-transition/props.js +8 -7
- package/uview-plus/components/u-transition/style.css +17 -2
- package/uview-plus/components/u-transition/transition.js +18 -164
- package/uview-plus/components/u-transition/transitionMixin.js +163 -0
- package/uview-plus/components/u-transition/u-transition.vue +8 -7
- package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
- package/uview-plus/components/u-transition-wu/props.js +32 -0
- package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
- package/uview-plus/components/u-upload/mixin.js +6 -4
- package/uview-plus/components/u-upload/props.js +73 -26
- package/uview-plus/components/u-upload/style.css +44 -8
- package/uview-plus/components/u-upload/style.scss +22 -0
- package/uview-plus/components/u-upload/u-upload.vue +463 -106
- package/uview-plus/{libs/config/props → components/u-upload}/upload.js +13 -4
- package/uview-plus/components/u-upload/utils.js +82 -49
- package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
- package/uview-plus/components/u-view/style.css +26 -0
- package/uview-plus/components/u-view/style.scss +4 -0
- package/uview-plus/components/u-view/u-view.vue +3 -0
- package/uview-plus/components/u-waterfall/style.css +51 -0
- package/uview-plus/components/u-waterfall/style.scss +23 -0
- package/uview-plus/components/u-waterfall/u-waterfall.vue +3 -0
- package/uview-plus/index.css +2157 -943
- package/uview-plus/index.js +138 -57
- package/uview-plus/libs/config/config.js +46 -27
- package/uview-plus/libs/config/props.js +120 -94
- package/uview-plus/libs/css/color-libcss.scss +117 -0
- package/uview-plus/libs/css/color.scss +32 -155
- package/uview-plus/libs/css/common-libcss.scss +118 -14
- package/uview-plus/libs/css/common.scss +27 -12
- package/uview-plus/libs/css/components-libcss.scss +16 -1
- package/uview-plus/libs/css/components-wu.scss +30 -0
- package/uview-plus/libs/css/components.scss +21 -2
- package/uview-plus/libs/css/flex-libcss.scss +1868 -924
- package/uview-plus/libs/css/flex.scss +151 -83
- package/uview-plus/libs/css/vue-libcss.scss +8 -4
- package/uview-plus/libs/css/vue.scss +11 -10
- package/uview-plus/libs/function/calc.js +70 -0
- package/uview-plus/libs/function/cc.js +66 -0
- package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
- package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-convert/README.md +68 -0
- package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
- package/uview-plus/libs/function/color/color-convert/index.js +81 -0
- package/uview-plus/libs/function/color/color-convert/package.json +48 -0
- package/uview-plus/libs/function/color/color-convert/route.js +97 -0
- package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
- package/uview-plus/libs/function/color/color-name/README.md +11 -0
- package/uview-plus/libs/function/color/color-name/index.js +152 -0
- package/uview-plus/libs/function/color/color-name/package.json +28 -0
- package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-string/README.md +62 -0
- package/uview-plus/libs/function/color/color-string/index.js +244 -0
- package/uview-plus/libs/function/color/color-string/package.json +39 -0
- package/uview-plus/libs/function/color/color.js +496 -0
- package/uview-plus/libs/function/color/index.js +158 -0
- package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
- package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
- package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
- package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
- package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
- package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
- package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
- package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
- package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
- package/uview-plus/libs/function/colorGradient.js +112 -110
- package/uview-plus/libs/function/debounce.js +18 -18
- package/uview-plus/libs/function/digit.js +6 -8
- package/uview-plus/libs/function/http.js +4 -0
- package/uview-plus/libs/function/index-wu.js +231 -0
- package/uview-plus/libs/function/index.js +639 -481
- package/uview-plus/libs/function/platform.js +18 -18
- package/uview-plus/libs/function/test.js +166 -136
- package/uview-plus/libs/function/throttle.js +20 -20
- package/uview-plus/libs/luch-request/core/Request.js +199 -198
- package/uview-plus/libs/mixin/button.js +6 -2
- package/uview-plus/libs/mixin/mixin.js +49 -13
- package/uview-plus/libs/mixin/mpMixin.js +7 -2
- package/uview-plus/libs/mixin/mpShare.js +24 -10
- package/uview-plus/libs/mixin/openType.js +37 -2
- package/uview-plus/libs/mixin/style.js +10 -9
- package/uview-plus/libs/mixin/touch.js +4 -2
- package/uview-plus/libs/util/async-validator.js +1343 -1343
- package/uview-plus/libs/util/dayjs.js +404 -0
- package/uview-plus/libs/util/gcanvas/bridge/bridge-weex.js +241 -0
- package/uview-plus/libs/util/gcanvas/context-2d/FillStyleLinearGradient.js +18 -0
- package/uview-plus/libs/util/gcanvas/context-2d/FillStylePattern.js +8 -0
- package/uview-plus/libs/util/gcanvas/context-2d/FillStyleRadialGradient.js +17 -0
- package/uview-plus/libs/util/gcanvas/context-2d/RenderingContext.js +666 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/ActiveInfo.js +11 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/Buffer.js +21 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/Framebuffer.js +21 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/GLenum.js +298 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/GLmethod.js +142 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/GLtype.js +23 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/Program.js +21 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/Renderbuffer.js +21 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/RenderingContext.js +1191 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/Shader.js +22 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/ShaderPrecisionFormat.js +11 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/Texture.js +22 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/UniformLocation.js +22 -0
- package/uview-plus/libs/util/gcanvas/context-webgl/classUtils.js +3 -0
- package/uview-plus/libs/util/gcanvas/env/canvas.js +74 -0
- package/uview-plus/libs/util/gcanvas/env/image.js +96 -0
- package/uview-plus/libs/util/gcanvas/env/tool.js +24 -0
- package/uview-plus/libs/util/gcanvas/index.js +39 -0
- package/uview-plus/libs/util/route.js +102 -106
- package/uview-plus/libs/vue.js +3 -0
- package/uview-plus/package-wu-tool.json +84 -0
- package/uview-plus/package-wu.json +112 -0
- package/uview-plus/package.json +106 -90
- package/uview-plus/readme-wu.md +148 -0
- package/uview-plus/types/comps/_common.d.ts +9 -0
- package/uview-plus/types/comps/actionSheet.d.ts +121 -0
- package/uview-plus/types/comps/album.d.ts +82 -0
- package/uview-plus/types/comps/alert.d.ts +55 -0
- package/uview-plus/types/comps/avatar.d.ts +85 -0
- package/uview-plus/types/comps/avatarGroup.d.ts +62 -0
- package/uview-plus/types/comps/backTop.d.ts +74 -0
- package/uview-plus/types/comps/badge.d.ts +76 -0
- package/uview-plus/types/comps/button.d.ts +169 -0
- package/uview-plus/types/comps/calendar.d.ts +164 -0
- package/uview-plus/types/comps/cell.d.ts +133 -0
- package/uview-plus/types/comps/cellGroup.d.ts +27 -0
- package/uview-plus/types/comps/checkbox.d.ts +69 -0
- package/uview-plus/types/comps/checkboxGroup.d.ts +93 -0
- package/uview-plus/types/comps/code.d.ts +69 -0
- package/uview-plus/types/comps/codeInput.d.ts +98 -0
- package/uview-plus/types/comps/col.d.ts +43 -0
- package/uview-plus/types/comps/collapse.d.ts +52 -0
- package/uview-plus/types/comps/collapseItem.d.ts +83 -0
- package/uview-plus/types/comps/countDown.d.ts +60 -0
- package/uview-plus/types/comps/countTo.d.ts +88 -0
- package/uview-plus/types/comps/datetimePicker.d.ts +146 -0
- package/uview-plus/types/comps/divider.d.ts +58 -0
- package/uview-plus/types/comps/empty.d.ts +72 -0
- package/uview-plus/types/comps/form.d.ts +76 -0
- package/uview-plus/types/comps/formItem.d.ts +68 -0
- package/uview-plus/types/comps/gap.d.ts +35 -0
- package/uview-plus/types/comps/grid.d.ts +34 -0
- package/uview-plus/types/comps/gridItem.d.ts +28 -0
- package/uview-plus/types/comps/icon.d.ts +93 -0
- package/uview-plus/types/comps/image.d.ts +119 -0
- package/uview-plus/types/comps/indexAnchor.d.ts +38 -0
- package/uview-plus/types/comps/indexItem.d.ts +18 -0
- package/uview-plus/types/comps/indexList.d.ts +39 -0
- package/uview-plus/types/comps/input.d.ts +234 -0
- package/uview-plus/types/comps/keyboard.d.ts +125 -0
- package/uview-plus/types/comps/line.d.ts +44 -0
- package/uview-plus/types/comps/lineProgress.d.ts +51 -0
- package/uview-plus/types/comps/link.d.ts +51 -0
- package/uview-plus/types/comps/list.d.ts +92 -0
- package/uview-plus/types/comps/listItem.d.ts +18 -0
- package/uview-plus/types/comps/loadMore.d.ts +108 -0
- package/uview-plus/types/comps/loadingIcon.d.ts +68 -0
- package/uview-plus/types/comps/loadingPage.d.ts +58 -0
- package/uview-plus/types/comps/modal.d.ts +115 -0
- package/uview-plus/types/comps/navbar.d.ts +113 -0
- package/uview-plus/types/comps/noNetwork.d.ts +40 -0
- package/uview-plus/types/comps/noticeBar.d.ts +85 -0
- package/uview-plus/types/comps/notify.d.ts +73 -0
- package/uview-plus/types/comps/numberBox.d.ts +155 -0
- package/uview-plus/types/comps/overlay.d.ts +46 -0
- package/uview-plus/types/comps/parse.d.ts +101 -0
- package/uview-plus/types/comps/picker.d.ts +115 -0
- package/uview-plus/types/comps/popup.d.ts +103 -0
- package/uview-plus/types/comps/radio.d.ts +77 -0
- package/uview-plus/types/comps/radioGroup.d.ts +97 -0
- package/uview-plus/types/comps/rate.d.ts +85 -0
- package/uview-plus/types/comps/readMore.d.ts +80 -0
- package/uview-plus/types/comps/row.d.ts +34 -0
- package/uview-plus/types/comps/safeBottom.d.ts +16 -0
- package/uview-plus/types/comps/scrollList.d.ts +51 -0
- package/uview-plus/types/comps/search.d.ts +172 -0
- package/uview-plus/types/comps/skeleton.d.ts +70 -0
- package/uview-plus/types/comps/slider.d.ts +79 -0
- package/uview-plus/types/comps/statusBar.d.ts +22 -0
- package/uview-plus/types/comps/steps.d.ts +48 -0
- package/uview-plus/types/comps/stepsItem.d.ts +41 -0
- package/uview-plus/types/comps/sticky.d.ts +48 -0
- package/uview-plus/types/comps/subsection.d.ts +64 -0
- package/uview-plus/types/comps/swipeAction.d.ts +24 -0
- package/uview-plus/types/comps/swipeActionItem.d.ts +58 -0
- package/uview-plus/types/comps/swiper.d.ts +142 -0
- package/uview-plus/types/comps/swiperIndicator.d.ts +37 -0
- package/uview-plus/types/comps/switch.d.ts +73 -0
- package/uview-plus/types/comps/tabbar.d.ts +54 -0
- package/uview-plus/types/comps/tabbarItem.d.ts +52 -0
- package/uview-plus/types/comps/tabs.d.ts +85 -0
- package/uview-plus/types/comps/tag.d.ts +93 -0
- package/uview-plus/types/comps/text.d.ts +110 -0
- package/uview-plus/types/comps/textarea.d.ts +158 -0
- package/uview-plus/types/comps/toast.d.ts +63 -0
- package/uview-plus/types/comps/tooltip.d.ts +71 -0
- package/uview-plus/types/comps/transition.d.ts +61 -0
- package/uview-plus/types/comps/upload.d.ts +204 -0
- package/uview-plus/types/comps.d.ts +101 -0
- package/uview-plus/types/index.d.ts +172 -0
- package/uview-plus/types/package.json +26 -0
- package/uview-ui/changelog.md +26 -0
- package/uview-ui/components/u--form/u--form.vue +1 -1
- package/uview-ui/components/u--image/u--image.vue +1 -1
- package/uview-ui/components/u--input/u--input.vue +1 -1
- package/uview-ui/components/u--text/u--text.vue +1 -1
- package/uview-ui/components/u--textarea/u--textarea.vue +1 -1
- package/uview-ui/components/u-action-sheet/props.js +1 -1
- package/uview-ui/components/u-action-sheet/style.css +1 -1
- package/uview-ui/components/u-avatar/style.css +1 -0
- package/uview-ui/components/u-avatar/style.scss +1 -0
- package/uview-ui/components/u-button/nvue-parse.scss +1 -1
- package/uview-ui/components/u-button/style.css +2 -2
- package/uview-ui/components/u-button/u-button.vue +7 -2
- package/uview-ui/components/u-button/vue-parse.scss +1 -1
- package/uview-ui/components/u-car-keyboard/style.css +1 -1
- package/uview-ui/components/u-checkbox/u-checkbox.vue +2 -2
- package/uview-ui/components/u-circle-progress/style.css +6 -6
- package/uview-ui/components/u-col/style.css +13 -13
- package/uview-ui/components/u-datetime-picker/props.js +4 -0
- package/uview-ui/components/u-datetime-picker/u-datetime-picker.vue +13 -2
- package/uview-ui/components/u-form-item/u-form-item.vue +1 -1
- package/uview-ui/components/u-icon/style.css +1 -1
- package/uview-ui/components/u-image/u-image.vue +3 -2
- package/uview-ui/components/u-input/style.css +3 -0
- package/uview-ui/components/u-input/style.scss +8 -0
- package/uview-ui/components/u-input/u-input.vue +5 -5
- package/uview-ui/components/u-loading-icon/style.css +1 -1
- package/uview-ui/components/u-loading-page/style.css +2 -2
- package/uview-ui/components/u-modal/props.js +5 -0
- package/uview-ui/components/u-modal/u-modal.vue +1 -1
- package/uview-ui/components/u-number-keyboard/style.css +2 -2
- package/uview-ui/components/u-parse/u-parse.vue +1 -1
- package/uview-ui/components/u-picker/u-picker.vue +5 -2
- package/uview-ui/components/u-popup/u-popup.vue +1 -1
- package/uview-ui/components/u-radio/props.js +1 -1
- package/uview-ui/components/u-radio/u-radio.vue +2 -2
- package/uview-ui/components/u-search/style.css +1 -1
- package/uview-ui/components/u-skeleton/u-skeleton.vue +2 -2
- package/uview-ui/components/u-steps-item/u-steps-item.vue +2 -2
- package/uview-ui/components/u-subsection/style.css +1 -1
- package/uview-ui/components/u-swipe-action-item/style.css +2 -2
- package/uview-ui/components/u-tabs/u-tabs.vue +10 -1
- package/uview-ui/components/u-toast/style.css +1 -1
- package/uview-ui/components/u-tooltip/u-tooltip.vue +1 -0
- package/uview-ui/components/u-upload/style.css +7 -4
- package/uview-ui/components/u-upload/style.scss +6 -0
- package/uview-ui/components/u-upload/u-upload.vue +6 -1
- package/uview-ui/index.js +51 -52
- package/uview-ui/libs/config/config.js +2 -2
- package/uview-ui/libs/config/props/datetimePicker.js +1 -0
- package/uview-ui/libs/config/props/modal.js +2 -1
- package/uview-ui/libs/mixin/mixin.js +3 -6
- package/uview-ui/package.json +5 -8
- package/plugins/uni-upgrade.js +0 -294
- package/uview-plus/components/u-slider/nvue - /345/211/257/346/234/254.js" +0 -175
- package/uview-plus/libs/config/props/icon.js +0 -36
- package/uview-plus/libs/config/props/tag.js +0 -29
- package/uview-plus/libs/config/props/transition.js +0 -18
- /package/uview-plus/{libs/config/props → components/u-alert}/alert.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-avatar}/avatar.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-car-keyboard}/carKeyboard.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-cell}/cell.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-cell-group}/cellGroup.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-checkbox}/checkbox.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-circle-progress}/circleProgress.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-code}/code.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-code-input}/codeInput.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-col}/col.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-collapse}/collapse.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-count-down}/countDown.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-count-to}/countTo.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-divider}/divider.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-empty}/empty.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-gap}/gap.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-grid}/grid.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-grid-item}/gridItem.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-image}/image.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-index-anchor}/indexAnchor.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-keyboard}/keyboard.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-line}/line.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-line-progress}/lineProgress.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-list}/list.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-list-item}/listItem.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-loadmore}/loadmore.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-no-network}/noNetwork.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-notify}/notify.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-number-keyboard}/numberKeyboard.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-overlay}/overlay.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-parse}/parse.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-radio}/radio.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-rate}/rate.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-read-more}/readMore.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-row}/row.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-row-notice}/rowNotice.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-scroll-list}/scrollList.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-section}/section.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-skeleton}/skeleton.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-steps}/steps.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-steps-item}/stepsItem.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-sticky}/sticky.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-subsection}/subsection.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-swipe-action}/swipeAction.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-swiper-indicator}/swipterIndicator.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-switch}/switch.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-tabbar}/tabbar.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-tabbar-item}/tabbarItem.js +0 -0
- /package/uview-plus/{libs/config/props → components/u-textarea}/textarea.js +0 -0
|
@@ -0,0 +1,1443 @@
|
|
|
1
|
+
Arguments:
|
|
2
|
+
/Users/junon/n/bin/node /Users/junon/.yarn/bin/yarn.js test
|
|
3
|
+
|
|
4
|
+
PATH:
|
|
5
|
+
/Users/junon/.yarn/bin:/Users/junon/.config/yarn/global/node_modules/.bin:/Users/junon/perl5/bin:/Users/junon/google-cloud-sdk/bin:/usr/local/sbin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/junon/bin:/Users/junon/.local/bin:/src/.go/bin:/src/llvm/llvm/build/bin:/Users/junon/Library/Android/sdk/platform-tools:/Users/junon/n/bin:/usr/local/texlive/2017/bin/x86_64-darwin/
|
|
6
|
+
|
|
7
|
+
Yarn version:
|
|
8
|
+
1.5.1
|
|
9
|
+
|
|
10
|
+
Node version:
|
|
11
|
+
9.6.1
|
|
12
|
+
|
|
13
|
+
Platform:
|
|
14
|
+
darwin x64
|
|
15
|
+
|
|
16
|
+
npm manifest:
|
|
17
|
+
{
|
|
18
|
+
"name": "is-arrayish",
|
|
19
|
+
"description": "Determines if an object can be used as an array",
|
|
20
|
+
"version": "0.3.1",
|
|
21
|
+
"author": "Qix (http://github.com/qix-)",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"is",
|
|
24
|
+
"array",
|
|
25
|
+
"duck",
|
|
26
|
+
"type",
|
|
27
|
+
"arrayish",
|
|
28
|
+
"similar",
|
|
29
|
+
"proto",
|
|
30
|
+
"prototype",
|
|
31
|
+
"type"
|
|
32
|
+
],
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"scripts": {
|
|
35
|
+
"test": "mocha --require coffeescript/register",
|
|
36
|
+
"lint": "zeit-eslint --ext .jsx,.js .",
|
|
37
|
+
"lint-staged": "git diff --diff-filter=ACMRT --cached --name-only '*.js' '*.jsx' | xargs zeit-eslint"
|
|
38
|
+
},
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/qix-/node-is-arrayish.git"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@zeit/eslint-config-node": "^0.3.0",
|
|
45
|
+
"@zeit/git-hooks": "^0.1.4",
|
|
46
|
+
"coffeescript": "^2.3.1",
|
|
47
|
+
"coveralls": "^3.0.1",
|
|
48
|
+
"eslint": "^4.19.1",
|
|
49
|
+
"istanbul": "^0.4.5",
|
|
50
|
+
"mocha": "^5.2.0",
|
|
51
|
+
"should": "^13.2.1"
|
|
52
|
+
},
|
|
53
|
+
"eslintConfig": {
|
|
54
|
+
"extends": [
|
|
55
|
+
"@zeit/eslint-config-node"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"git": {
|
|
59
|
+
"pre-commit": "lint-staged"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
yarn manifest:
|
|
64
|
+
No manifest
|
|
65
|
+
|
|
66
|
+
Lockfile:
|
|
67
|
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
68
|
+
# yarn lockfile v1
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
"@zeit/eslint-config-base@0.3.0":
|
|
72
|
+
version "0.3.0"
|
|
73
|
+
resolved "https://registry.yarnpkg.com/@zeit/eslint-config-base/-/eslint-config-base-0.3.0.tgz#32a58c3e52eca4025604758cb4591f3d28e22fb4"
|
|
74
|
+
dependencies:
|
|
75
|
+
arg "^1.0.0"
|
|
76
|
+
chalk "^2.3.0"
|
|
77
|
+
|
|
78
|
+
"@zeit/eslint-config-node@^0.3.0":
|
|
79
|
+
version "0.3.0"
|
|
80
|
+
resolved "https://registry.yarnpkg.com/@zeit/eslint-config-node/-/eslint-config-node-0.3.0.tgz#6e328328f366f66c2a0549a69131bbcd9735f098"
|
|
81
|
+
dependencies:
|
|
82
|
+
"@zeit/eslint-config-base" "0.3.0"
|
|
83
|
+
|
|
84
|
+
"@zeit/git-hooks@^0.1.4":
|
|
85
|
+
version "0.1.4"
|
|
86
|
+
resolved "https://registry.yarnpkg.com/@zeit/git-hooks/-/git-hooks-0.1.4.tgz#70583db5dd69726a62c7963520e67f2c3a33cc5f"
|
|
87
|
+
|
|
88
|
+
abbrev@1:
|
|
89
|
+
version "1.1.1"
|
|
90
|
+
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
|
91
|
+
|
|
92
|
+
abbrev@1.0.x:
|
|
93
|
+
version "1.0.9"
|
|
94
|
+
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
|
|
95
|
+
|
|
96
|
+
acorn-jsx@^3.0.0:
|
|
97
|
+
version "3.0.1"
|
|
98
|
+
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
|
|
99
|
+
dependencies:
|
|
100
|
+
acorn "^3.0.4"
|
|
101
|
+
|
|
102
|
+
acorn@^3.0.4:
|
|
103
|
+
version "3.3.0"
|
|
104
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
|
|
105
|
+
|
|
106
|
+
acorn@^5.5.0:
|
|
107
|
+
version "5.7.1"
|
|
108
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8"
|
|
109
|
+
|
|
110
|
+
ajv-keywords@^2.1.0:
|
|
111
|
+
version "2.1.1"
|
|
112
|
+
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
|
|
113
|
+
|
|
114
|
+
ajv@^5.1.0, ajv@^5.2.3, ajv@^5.3.0:
|
|
115
|
+
version "5.5.2"
|
|
116
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
|
|
117
|
+
dependencies:
|
|
118
|
+
co "^4.6.0"
|
|
119
|
+
fast-deep-equal "^1.0.0"
|
|
120
|
+
fast-json-stable-stringify "^2.0.0"
|
|
121
|
+
json-schema-traverse "^0.3.0"
|
|
122
|
+
|
|
123
|
+
align-text@^0.1.1, align-text@^0.1.3:
|
|
124
|
+
version "0.1.4"
|
|
125
|
+
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
|
|
126
|
+
dependencies:
|
|
127
|
+
kind-of "^3.0.2"
|
|
128
|
+
longest "^1.0.1"
|
|
129
|
+
repeat-string "^1.5.2"
|
|
130
|
+
|
|
131
|
+
amdefine@>=0.0.4:
|
|
132
|
+
version "1.0.1"
|
|
133
|
+
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
|
|
134
|
+
|
|
135
|
+
ansi-escapes@^3.0.0:
|
|
136
|
+
version "3.1.0"
|
|
137
|
+
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
|
|
138
|
+
|
|
139
|
+
ansi-regex@^2.0.0:
|
|
140
|
+
version "2.1.1"
|
|
141
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
|
|
142
|
+
|
|
143
|
+
ansi-regex@^3.0.0:
|
|
144
|
+
version "3.0.0"
|
|
145
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
|
146
|
+
|
|
147
|
+
ansi-styles@^2.2.1:
|
|
148
|
+
version "2.2.1"
|
|
149
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
|
150
|
+
|
|
151
|
+
ansi-styles@^3.2.1:
|
|
152
|
+
version "3.2.1"
|
|
153
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
|
154
|
+
dependencies:
|
|
155
|
+
color-convert "^1.9.0"
|
|
156
|
+
|
|
157
|
+
arg@^1.0.0:
|
|
158
|
+
version "1.0.1"
|
|
159
|
+
resolved "https://registry.yarnpkg.com/arg/-/arg-1.0.1.tgz#892a26d841bd5a64880bbc8f73dd64a705910ca3"
|
|
160
|
+
|
|
161
|
+
argparse@^1.0.7:
|
|
162
|
+
version "1.0.10"
|
|
163
|
+
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
|
|
164
|
+
dependencies:
|
|
165
|
+
sprintf-js "~1.0.2"
|
|
166
|
+
|
|
167
|
+
array-union@^1.0.1:
|
|
168
|
+
version "1.0.2"
|
|
169
|
+
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
|
|
170
|
+
dependencies:
|
|
171
|
+
array-uniq "^1.0.1"
|
|
172
|
+
|
|
173
|
+
array-uniq@^1.0.1:
|
|
174
|
+
version "1.0.3"
|
|
175
|
+
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
|
|
176
|
+
|
|
177
|
+
arrify@^1.0.0:
|
|
178
|
+
version "1.0.1"
|
|
179
|
+
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
|
180
|
+
|
|
181
|
+
asn1@~0.2.3:
|
|
182
|
+
version "0.2.3"
|
|
183
|
+
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
|
|
184
|
+
|
|
185
|
+
assert-plus@1.0.0, assert-plus@^1.0.0:
|
|
186
|
+
version "1.0.0"
|
|
187
|
+
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
|
|
188
|
+
|
|
189
|
+
async@1.x, async@^1.4.0:
|
|
190
|
+
version "1.5.2"
|
|
191
|
+
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
|
|
192
|
+
|
|
193
|
+
asynckit@^0.4.0:
|
|
194
|
+
version "0.4.0"
|
|
195
|
+
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
|
196
|
+
|
|
197
|
+
aws-sign2@~0.7.0:
|
|
198
|
+
version "0.7.0"
|
|
199
|
+
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
|
|
200
|
+
|
|
201
|
+
aws4@^1.6.0:
|
|
202
|
+
version "1.7.0"
|
|
203
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289"
|
|
204
|
+
|
|
205
|
+
babel-code-frame@^6.22.0:
|
|
206
|
+
version "6.26.0"
|
|
207
|
+
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
|
|
208
|
+
dependencies:
|
|
209
|
+
chalk "^1.1.3"
|
|
210
|
+
esutils "^2.0.2"
|
|
211
|
+
js-tokens "^3.0.2"
|
|
212
|
+
|
|
213
|
+
balanced-match@^1.0.0:
|
|
214
|
+
version "1.0.0"
|
|
215
|
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
|
|
216
|
+
|
|
217
|
+
bcrypt-pbkdf@^1.0.0:
|
|
218
|
+
version "1.0.1"
|
|
219
|
+
resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
|
|
220
|
+
dependencies:
|
|
221
|
+
tweetnacl "^0.14.3"
|
|
222
|
+
|
|
223
|
+
brace-expansion@^1.1.7:
|
|
224
|
+
version "1.1.11"
|
|
225
|
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
|
|
226
|
+
dependencies:
|
|
227
|
+
balanced-match "^1.0.0"
|
|
228
|
+
concat-map "0.0.1"
|
|
229
|
+
|
|
230
|
+
browser-stdout@1.3.1:
|
|
231
|
+
version "1.3.1"
|
|
232
|
+
resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
|
|
233
|
+
|
|
234
|
+
buffer-from@^1.0.0:
|
|
235
|
+
version "1.1.0"
|
|
236
|
+
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04"
|
|
237
|
+
|
|
238
|
+
caller-path@^0.1.0:
|
|
239
|
+
version "0.1.0"
|
|
240
|
+
resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
|
|
241
|
+
dependencies:
|
|
242
|
+
callsites "^0.2.0"
|
|
243
|
+
|
|
244
|
+
callsites@^0.2.0:
|
|
245
|
+
version "0.2.0"
|
|
246
|
+
resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
|
|
247
|
+
|
|
248
|
+
camelcase@^1.0.2:
|
|
249
|
+
version "1.2.1"
|
|
250
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
|
|
251
|
+
|
|
252
|
+
caseless@~0.12.0:
|
|
253
|
+
version "0.12.0"
|
|
254
|
+
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
|
255
|
+
|
|
256
|
+
center-align@^0.1.1:
|
|
257
|
+
version "0.1.3"
|
|
258
|
+
resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
|
|
259
|
+
dependencies:
|
|
260
|
+
align-text "^0.1.3"
|
|
261
|
+
lazy-cache "^1.0.3"
|
|
262
|
+
|
|
263
|
+
chalk@^1.1.3:
|
|
264
|
+
version "1.1.3"
|
|
265
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
|
266
|
+
dependencies:
|
|
267
|
+
ansi-styles "^2.2.1"
|
|
268
|
+
escape-string-regexp "^1.0.2"
|
|
269
|
+
has-ansi "^2.0.0"
|
|
270
|
+
strip-ansi "^3.0.0"
|
|
271
|
+
supports-color "^2.0.0"
|
|
272
|
+
|
|
273
|
+
chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0:
|
|
274
|
+
version "2.4.1"
|
|
275
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
|
|
276
|
+
dependencies:
|
|
277
|
+
ansi-styles "^3.2.1"
|
|
278
|
+
escape-string-regexp "^1.0.5"
|
|
279
|
+
supports-color "^5.3.0"
|
|
280
|
+
|
|
281
|
+
chardet@^0.4.0:
|
|
282
|
+
version "0.4.2"
|
|
283
|
+
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
|
|
284
|
+
|
|
285
|
+
circular-json@^0.3.1:
|
|
286
|
+
version "0.3.3"
|
|
287
|
+
resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
|
|
288
|
+
|
|
289
|
+
cli-cursor@^2.1.0:
|
|
290
|
+
version "2.1.0"
|
|
291
|
+
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
|
|
292
|
+
dependencies:
|
|
293
|
+
restore-cursor "^2.0.0"
|
|
294
|
+
|
|
295
|
+
cli-width@^2.0.0:
|
|
296
|
+
version "2.2.0"
|
|
297
|
+
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
|
|
298
|
+
|
|
299
|
+
cliui@^2.1.0:
|
|
300
|
+
version "2.1.0"
|
|
301
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
|
|
302
|
+
dependencies:
|
|
303
|
+
center-align "^0.1.1"
|
|
304
|
+
right-align "^0.1.1"
|
|
305
|
+
wordwrap "0.0.2"
|
|
306
|
+
|
|
307
|
+
co@^4.6.0:
|
|
308
|
+
version "4.6.0"
|
|
309
|
+
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
|
|
310
|
+
|
|
311
|
+
coffeescript@^2.3.1:
|
|
312
|
+
version "2.3.1"
|
|
313
|
+
resolved "https://registry.yarnpkg.com/coffeescript/-/coffeescript-2.3.1.tgz#a25f69c251d25805c9842e57fc94bfc453ef6aed"
|
|
314
|
+
|
|
315
|
+
color-convert@^1.9.0:
|
|
316
|
+
version "1.9.2"
|
|
317
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147"
|
|
318
|
+
dependencies:
|
|
319
|
+
color-name "1.1.1"
|
|
320
|
+
|
|
321
|
+
color-name@1.1.1:
|
|
322
|
+
version "1.1.1"
|
|
323
|
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689"
|
|
324
|
+
|
|
325
|
+
combined-stream@1.0.6, combined-stream@~1.0.5:
|
|
326
|
+
version "1.0.6"
|
|
327
|
+
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
|
|
328
|
+
dependencies:
|
|
329
|
+
delayed-stream "~1.0.0"
|
|
330
|
+
|
|
331
|
+
commander@2.15.1:
|
|
332
|
+
version "2.15.1"
|
|
333
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f"
|
|
334
|
+
|
|
335
|
+
concat-map@0.0.1:
|
|
336
|
+
version "0.0.1"
|
|
337
|
+
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
|
338
|
+
|
|
339
|
+
concat-stream@^1.6.0:
|
|
340
|
+
version "1.6.2"
|
|
341
|
+
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
|
|
342
|
+
dependencies:
|
|
343
|
+
buffer-from "^1.0.0"
|
|
344
|
+
inherits "^2.0.3"
|
|
345
|
+
readable-stream "^2.2.2"
|
|
346
|
+
typedarray "^0.0.6"
|
|
347
|
+
|
|
348
|
+
core-util-is@1.0.2, core-util-is@~1.0.0:
|
|
349
|
+
version "1.0.2"
|
|
350
|
+
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
|
351
|
+
|
|
352
|
+
coveralls@^3.0.1:
|
|
353
|
+
version "3.0.1"
|
|
354
|
+
resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.1.tgz#12e15914eaa29204e56869a5ece7b9e1492d2ae2"
|
|
355
|
+
dependencies:
|
|
356
|
+
js-yaml "^3.6.1"
|
|
357
|
+
lcov-parse "^0.0.10"
|
|
358
|
+
log-driver "^1.2.5"
|
|
359
|
+
minimist "^1.2.0"
|
|
360
|
+
request "^2.79.0"
|
|
361
|
+
|
|
362
|
+
cross-spawn@^5.1.0:
|
|
363
|
+
version "5.1.0"
|
|
364
|
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
|
|
365
|
+
dependencies:
|
|
366
|
+
lru-cache "^4.0.1"
|
|
367
|
+
shebang-command "^1.2.0"
|
|
368
|
+
which "^1.2.9"
|
|
369
|
+
|
|
370
|
+
dashdash@^1.12.0:
|
|
371
|
+
version "1.14.1"
|
|
372
|
+
resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
|
|
373
|
+
dependencies:
|
|
374
|
+
assert-plus "^1.0.0"
|
|
375
|
+
|
|
376
|
+
debug@3.1.0, debug@^3.1.0:
|
|
377
|
+
version "3.1.0"
|
|
378
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
|
|
379
|
+
dependencies:
|
|
380
|
+
ms "2.0.0"
|
|
381
|
+
|
|
382
|
+
decamelize@^1.0.0:
|
|
383
|
+
version "1.2.0"
|
|
384
|
+
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
|
385
|
+
|
|
386
|
+
deep-is@~0.1.3:
|
|
387
|
+
version "0.1.3"
|
|
388
|
+
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
|
389
|
+
|
|
390
|
+
del@^2.0.2:
|
|
391
|
+
version "2.2.2"
|
|
392
|
+
resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
|
|
393
|
+
dependencies:
|
|
394
|
+
globby "^5.0.0"
|
|
395
|
+
is-path-cwd "^1.0.0"
|
|
396
|
+
is-path-in-cwd "^1.0.0"
|
|
397
|
+
object-assign "^4.0.1"
|
|
398
|
+
pify "^2.0.0"
|
|
399
|
+
pinkie-promise "^2.0.0"
|
|
400
|
+
rimraf "^2.2.8"
|
|
401
|
+
|
|
402
|
+
delayed-stream@~1.0.0:
|
|
403
|
+
version "1.0.0"
|
|
404
|
+
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
|
|
405
|
+
|
|
406
|
+
diff@3.5.0:
|
|
407
|
+
version "3.5.0"
|
|
408
|
+
resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
|
|
409
|
+
|
|
410
|
+
doctrine@^2.1.0:
|
|
411
|
+
version "2.1.0"
|
|
412
|
+
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
|
|
413
|
+
dependencies:
|
|
414
|
+
esutils "^2.0.2"
|
|
415
|
+
|
|
416
|
+
ecc-jsbn@~0.1.1:
|
|
417
|
+
version "0.1.1"
|
|
418
|
+
resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
|
|
419
|
+
dependencies:
|
|
420
|
+
jsbn "~0.1.0"
|
|
421
|
+
|
|
422
|
+
escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
|
423
|
+
version "1.0.5"
|
|
424
|
+
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
|
425
|
+
|
|
426
|
+
escodegen@1.8.x:
|
|
427
|
+
version "1.8.1"
|
|
428
|
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018"
|
|
429
|
+
dependencies:
|
|
430
|
+
esprima "^2.7.1"
|
|
431
|
+
estraverse "^1.9.1"
|
|
432
|
+
esutils "^2.0.2"
|
|
433
|
+
optionator "^0.8.1"
|
|
434
|
+
optionalDependencies:
|
|
435
|
+
source-map "~0.2.0"
|
|
436
|
+
|
|
437
|
+
eslint-scope@^3.7.1:
|
|
438
|
+
version "3.7.1"
|
|
439
|
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
|
|
440
|
+
dependencies:
|
|
441
|
+
esrecurse "^4.1.0"
|
|
442
|
+
estraverse "^4.1.1"
|
|
443
|
+
|
|
444
|
+
eslint-visitor-keys@^1.0.0:
|
|
445
|
+
version "1.0.0"
|
|
446
|
+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
|
447
|
+
|
|
448
|
+
eslint@^4.19.1:
|
|
449
|
+
version "4.19.1"
|
|
450
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300"
|
|
451
|
+
dependencies:
|
|
452
|
+
ajv "^5.3.0"
|
|
453
|
+
babel-code-frame "^6.22.0"
|
|
454
|
+
chalk "^2.1.0"
|
|
455
|
+
concat-stream "^1.6.0"
|
|
456
|
+
cross-spawn "^5.1.0"
|
|
457
|
+
debug "^3.1.0"
|
|
458
|
+
doctrine "^2.1.0"
|
|
459
|
+
eslint-scope "^3.7.1"
|
|
460
|
+
eslint-visitor-keys "^1.0.0"
|
|
461
|
+
espree "^3.5.4"
|
|
462
|
+
esquery "^1.0.0"
|
|
463
|
+
esutils "^2.0.2"
|
|
464
|
+
file-entry-cache "^2.0.0"
|
|
465
|
+
functional-red-black-tree "^1.0.1"
|
|
466
|
+
glob "^7.1.2"
|
|
467
|
+
globals "^11.0.1"
|
|
468
|
+
ignore "^3.3.3"
|
|
469
|
+
imurmurhash "^0.1.4"
|
|
470
|
+
inquirer "^3.0.6"
|
|
471
|
+
is-resolvable "^1.0.0"
|
|
472
|
+
js-yaml "^3.9.1"
|
|
473
|
+
json-stable-stringify-without-jsonify "^1.0.1"
|
|
474
|
+
levn "^0.3.0"
|
|
475
|
+
lodash "^4.17.4"
|
|
476
|
+
minimatch "^3.0.2"
|
|
477
|
+
mkdirp "^0.5.1"
|
|
478
|
+
natural-compare "^1.4.0"
|
|
479
|
+
optionator "^0.8.2"
|
|
480
|
+
path-is-inside "^1.0.2"
|
|
481
|
+
pluralize "^7.0.0"
|
|
482
|
+
progress "^2.0.0"
|
|
483
|
+
regexpp "^1.0.1"
|
|
484
|
+
require-uncached "^1.0.3"
|
|
485
|
+
semver "^5.3.0"
|
|
486
|
+
strip-ansi "^4.0.0"
|
|
487
|
+
strip-json-comments "~2.0.1"
|
|
488
|
+
table "4.0.2"
|
|
489
|
+
text-table "~0.2.0"
|
|
490
|
+
|
|
491
|
+
espree@^3.5.4:
|
|
492
|
+
version "3.5.4"
|
|
493
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
|
|
494
|
+
dependencies:
|
|
495
|
+
acorn "^5.5.0"
|
|
496
|
+
acorn-jsx "^3.0.0"
|
|
497
|
+
|
|
498
|
+
esprima@2.7.x, esprima@^2.7.1:
|
|
499
|
+
version "2.7.3"
|
|
500
|
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
|
|
501
|
+
|
|
502
|
+
esprima@^4.0.0:
|
|
503
|
+
version "4.0.0"
|
|
504
|
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
|
|
505
|
+
|
|
506
|
+
esquery@^1.0.0:
|
|
507
|
+
version "1.0.1"
|
|
508
|
+
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
|
|
509
|
+
dependencies:
|
|
510
|
+
estraverse "^4.0.0"
|
|
511
|
+
|
|
512
|
+
esrecurse@^4.1.0:
|
|
513
|
+
version "4.2.1"
|
|
514
|
+
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
|
|
515
|
+
dependencies:
|
|
516
|
+
estraverse "^4.1.0"
|
|
517
|
+
|
|
518
|
+
estraverse@^1.9.1:
|
|
519
|
+
version "1.9.3"
|
|
520
|
+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44"
|
|
521
|
+
|
|
522
|
+
estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
|
|
523
|
+
version "4.2.0"
|
|
524
|
+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
|
|
525
|
+
|
|
526
|
+
esutils@^2.0.2:
|
|
527
|
+
version "2.0.2"
|
|
528
|
+
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
|
529
|
+
|
|
530
|
+
extend@~3.0.1:
|
|
531
|
+
version "3.0.1"
|
|
532
|
+
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
|
|
533
|
+
|
|
534
|
+
external-editor@^2.0.4:
|
|
535
|
+
version "2.2.0"
|
|
536
|
+
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
|
|
537
|
+
dependencies:
|
|
538
|
+
chardet "^0.4.0"
|
|
539
|
+
iconv-lite "^0.4.17"
|
|
540
|
+
tmp "^0.0.33"
|
|
541
|
+
|
|
542
|
+
extsprintf@1.3.0:
|
|
543
|
+
version "1.3.0"
|
|
544
|
+
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
|
|
545
|
+
|
|
546
|
+
extsprintf@^1.2.0:
|
|
547
|
+
version "1.4.0"
|
|
548
|
+
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
|
|
549
|
+
|
|
550
|
+
fast-deep-equal@^1.0.0:
|
|
551
|
+
version "1.1.0"
|
|
552
|
+
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
|
|
553
|
+
|
|
554
|
+
fast-json-stable-stringify@^2.0.0:
|
|
555
|
+
version "2.0.0"
|
|
556
|
+
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
|
|
557
|
+
|
|
558
|
+
fast-levenshtein@~2.0.4:
|
|
559
|
+
version "2.0.6"
|
|
560
|
+
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
|
561
|
+
|
|
562
|
+
figures@^2.0.0:
|
|
563
|
+
version "2.0.0"
|
|
564
|
+
resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
|
|
565
|
+
dependencies:
|
|
566
|
+
escape-string-regexp "^1.0.5"
|
|
567
|
+
|
|
568
|
+
file-entry-cache@^2.0.0:
|
|
569
|
+
version "2.0.0"
|
|
570
|
+
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
|
|
571
|
+
dependencies:
|
|
572
|
+
flat-cache "^1.2.1"
|
|
573
|
+
object-assign "^4.0.1"
|
|
574
|
+
|
|
575
|
+
flat-cache@^1.2.1:
|
|
576
|
+
version "1.3.0"
|
|
577
|
+
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
|
|
578
|
+
dependencies:
|
|
579
|
+
circular-json "^0.3.1"
|
|
580
|
+
del "^2.0.2"
|
|
581
|
+
graceful-fs "^4.1.2"
|
|
582
|
+
write "^0.2.1"
|
|
583
|
+
|
|
584
|
+
forever-agent@~0.6.1:
|
|
585
|
+
version "0.6.1"
|
|
586
|
+
resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
|
|
587
|
+
|
|
588
|
+
form-data@~2.3.1:
|
|
589
|
+
version "2.3.2"
|
|
590
|
+
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
|
|
591
|
+
dependencies:
|
|
592
|
+
asynckit "^0.4.0"
|
|
593
|
+
combined-stream "1.0.6"
|
|
594
|
+
mime-types "^2.1.12"
|
|
595
|
+
|
|
596
|
+
fs.realpath@^1.0.0:
|
|
597
|
+
version "1.0.0"
|
|
598
|
+
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
|
599
|
+
|
|
600
|
+
functional-red-black-tree@^1.0.1:
|
|
601
|
+
version "1.0.1"
|
|
602
|
+
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
|
|
603
|
+
|
|
604
|
+
getpass@^0.1.1:
|
|
605
|
+
version "0.1.7"
|
|
606
|
+
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
|
|
607
|
+
dependencies:
|
|
608
|
+
assert-plus "^1.0.0"
|
|
609
|
+
|
|
610
|
+
glob@7.1.2, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
|
|
611
|
+
version "7.1.2"
|
|
612
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
|
613
|
+
dependencies:
|
|
614
|
+
fs.realpath "^1.0.0"
|
|
615
|
+
inflight "^1.0.4"
|
|
616
|
+
inherits "2"
|
|
617
|
+
minimatch "^3.0.4"
|
|
618
|
+
once "^1.3.0"
|
|
619
|
+
path-is-absolute "^1.0.0"
|
|
620
|
+
|
|
621
|
+
glob@^5.0.15:
|
|
622
|
+
version "5.0.15"
|
|
623
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
|
|
624
|
+
dependencies:
|
|
625
|
+
inflight "^1.0.4"
|
|
626
|
+
inherits "2"
|
|
627
|
+
minimatch "2 || 3"
|
|
628
|
+
once "^1.3.0"
|
|
629
|
+
path-is-absolute "^1.0.0"
|
|
630
|
+
|
|
631
|
+
globals@^11.0.1:
|
|
632
|
+
version "11.5.0"
|
|
633
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-11.5.0.tgz#6bc840de6771173b191f13d3a9c94d441ee92642"
|
|
634
|
+
|
|
635
|
+
globby@^5.0.0:
|
|
636
|
+
version "5.0.0"
|
|
637
|
+
resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
|
|
638
|
+
dependencies:
|
|
639
|
+
array-union "^1.0.1"
|
|
640
|
+
arrify "^1.0.0"
|
|
641
|
+
glob "^7.0.3"
|
|
642
|
+
object-assign "^4.0.1"
|
|
643
|
+
pify "^2.0.0"
|
|
644
|
+
pinkie-promise "^2.0.0"
|
|
645
|
+
|
|
646
|
+
graceful-fs@^4.1.2:
|
|
647
|
+
version "4.1.11"
|
|
648
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
|
|
649
|
+
|
|
650
|
+
growl@1.10.5:
|
|
651
|
+
version "1.10.5"
|
|
652
|
+
resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
|
|
653
|
+
|
|
654
|
+
handlebars@^4.0.1:
|
|
655
|
+
version "4.0.11"
|
|
656
|
+
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
|
|
657
|
+
dependencies:
|
|
658
|
+
async "^1.4.0"
|
|
659
|
+
optimist "^0.6.1"
|
|
660
|
+
source-map "^0.4.4"
|
|
661
|
+
optionalDependencies:
|
|
662
|
+
uglify-js "^2.6"
|
|
663
|
+
|
|
664
|
+
har-schema@^2.0.0:
|
|
665
|
+
version "2.0.0"
|
|
666
|
+
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
|
667
|
+
|
|
668
|
+
har-validator@~5.0.3:
|
|
669
|
+
version "5.0.3"
|
|
670
|
+
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
|
|
671
|
+
dependencies:
|
|
672
|
+
ajv "^5.1.0"
|
|
673
|
+
har-schema "^2.0.0"
|
|
674
|
+
|
|
675
|
+
has-ansi@^2.0.0:
|
|
676
|
+
version "2.0.0"
|
|
677
|
+
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
|
|
678
|
+
dependencies:
|
|
679
|
+
ansi-regex "^2.0.0"
|
|
680
|
+
|
|
681
|
+
has-flag@^1.0.0:
|
|
682
|
+
version "1.0.0"
|
|
683
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
|
|
684
|
+
|
|
685
|
+
has-flag@^3.0.0:
|
|
686
|
+
version "3.0.0"
|
|
687
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
|
688
|
+
|
|
689
|
+
he@1.1.1:
|
|
690
|
+
version "1.1.1"
|
|
691
|
+
resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
|
|
692
|
+
|
|
693
|
+
http-signature@~1.2.0:
|
|
694
|
+
version "1.2.0"
|
|
695
|
+
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
|
|
696
|
+
dependencies:
|
|
697
|
+
assert-plus "^1.0.0"
|
|
698
|
+
jsprim "^1.2.2"
|
|
699
|
+
sshpk "^1.7.0"
|
|
700
|
+
|
|
701
|
+
iconv-lite@^0.4.17:
|
|
702
|
+
version "0.4.23"
|
|
703
|
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
|
|
704
|
+
dependencies:
|
|
705
|
+
safer-buffer ">= 2.1.2 < 3"
|
|
706
|
+
|
|
707
|
+
ignore@^3.3.3:
|
|
708
|
+
version "3.3.8"
|
|
709
|
+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.8.tgz#3f8e9c35d38708a3a7e0e9abb6c73e7ee7707b2b"
|
|
710
|
+
|
|
711
|
+
imurmurhash@^0.1.4:
|
|
712
|
+
version "0.1.4"
|
|
713
|
+
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
|
714
|
+
|
|
715
|
+
inflight@^1.0.4:
|
|
716
|
+
version "1.0.6"
|
|
717
|
+
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
|
718
|
+
dependencies:
|
|
719
|
+
once "^1.3.0"
|
|
720
|
+
wrappy "1"
|
|
721
|
+
|
|
722
|
+
inherits@2, inherits@^2.0.3, inherits@~2.0.3:
|
|
723
|
+
version "2.0.3"
|
|
724
|
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
|
725
|
+
|
|
726
|
+
inquirer@^3.0.6:
|
|
727
|
+
version "3.3.0"
|
|
728
|
+
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
|
|
729
|
+
dependencies:
|
|
730
|
+
ansi-escapes "^3.0.0"
|
|
731
|
+
chalk "^2.0.0"
|
|
732
|
+
cli-cursor "^2.1.0"
|
|
733
|
+
cli-width "^2.0.0"
|
|
734
|
+
external-editor "^2.0.4"
|
|
735
|
+
figures "^2.0.0"
|
|
736
|
+
lodash "^4.3.0"
|
|
737
|
+
mute-stream "0.0.7"
|
|
738
|
+
run-async "^2.2.0"
|
|
739
|
+
rx-lite "^4.0.8"
|
|
740
|
+
rx-lite-aggregates "^4.0.8"
|
|
741
|
+
string-width "^2.1.0"
|
|
742
|
+
strip-ansi "^4.0.0"
|
|
743
|
+
through "^2.3.6"
|
|
744
|
+
|
|
745
|
+
is-buffer@^1.1.5:
|
|
746
|
+
version "1.1.6"
|
|
747
|
+
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
|
|
748
|
+
|
|
749
|
+
is-fullwidth-code-point@^2.0.0:
|
|
750
|
+
version "2.0.0"
|
|
751
|
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
|
752
|
+
|
|
753
|
+
is-path-cwd@^1.0.0:
|
|
754
|
+
version "1.0.0"
|
|
755
|
+
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
|
|
756
|
+
|
|
757
|
+
is-path-in-cwd@^1.0.0:
|
|
758
|
+
version "1.0.1"
|
|
759
|
+
resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52"
|
|
760
|
+
dependencies:
|
|
761
|
+
is-path-inside "^1.0.0"
|
|
762
|
+
|
|
763
|
+
is-path-inside@^1.0.0:
|
|
764
|
+
version "1.0.1"
|
|
765
|
+
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
|
|
766
|
+
dependencies:
|
|
767
|
+
path-is-inside "^1.0.1"
|
|
768
|
+
|
|
769
|
+
is-promise@^2.1.0:
|
|
770
|
+
version "2.1.0"
|
|
771
|
+
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
|
|
772
|
+
|
|
773
|
+
is-resolvable@^1.0.0:
|
|
774
|
+
version "1.1.0"
|
|
775
|
+
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
|
776
|
+
|
|
777
|
+
is-typedarray@~1.0.0:
|
|
778
|
+
version "1.0.0"
|
|
779
|
+
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
|
|
780
|
+
|
|
781
|
+
isarray@~1.0.0:
|
|
782
|
+
version "1.0.0"
|
|
783
|
+
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
|
784
|
+
|
|
785
|
+
isexe@^2.0.0:
|
|
786
|
+
version "2.0.0"
|
|
787
|
+
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
|
788
|
+
|
|
789
|
+
isstream@~0.1.2:
|
|
790
|
+
version "0.1.2"
|
|
791
|
+
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
|
792
|
+
|
|
793
|
+
istanbul@^0.4.5:
|
|
794
|
+
version "0.4.5"
|
|
795
|
+
resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b"
|
|
796
|
+
dependencies:
|
|
797
|
+
abbrev "1.0.x"
|
|
798
|
+
async "1.x"
|
|
799
|
+
escodegen "1.8.x"
|
|
800
|
+
esprima "2.7.x"
|
|
801
|
+
glob "^5.0.15"
|
|
802
|
+
handlebars "^4.0.1"
|
|
803
|
+
js-yaml "3.x"
|
|
804
|
+
mkdirp "0.5.x"
|
|
805
|
+
nopt "3.x"
|
|
806
|
+
once "1.x"
|
|
807
|
+
resolve "1.1.x"
|
|
808
|
+
supports-color "^3.1.0"
|
|
809
|
+
which "^1.1.1"
|
|
810
|
+
wordwrap "^1.0.0"
|
|
811
|
+
|
|
812
|
+
js-tokens@^3.0.2:
|
|
813
|
+
version "3.0.2"
|
|
814
|
+
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
|
815
|
+
|
|
816
|
+
js-yaml@3.x, js-yaml@^3.6.1, js-yaml@^3.9.1:
|
|
817
|
+
version "3.12.0"
|
|
818
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1"
|
|
819
|
+
dependencies:
|
|
820
|
+
argparse "^1.0.7"
|
|
821
|
+
esprima "^4.0.0"
|
|
822
|
+
|
|
823
|
+
jsbn@~0.1.0:
|
|
824
|
+
version "0.1.1"
|
|
825
|
+
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
|
826
|
+
|
|
827
|
+
json-schema-traverse@^0.3.0:
|
|
828
|
+
version "0.3.1"
|
|
829
|
+
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
|
|
830
|
+
|
|
831
|
+
json-schema@0.2.3:
|
|
832
|
+
version "0.2.3"
|
|
833
|
+
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
|
|
834
|
+
|
|
835
|
+
json-stable-stringify-without-jsonify@^1.0.1:
|
|
836
|
+
version "1.0.1"
|
|
837
|
+
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
|
|
838
|
+
|
|
839
|
+
json-stringify-safe@~5.0.1:
|
|
840
|
+
version "5.0.1"
|
|
841
|
+
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
|
|
842
|
+
|
|
843
|
+
jsprim@^1.2.2:
|
|
844
|
+
version "1.4.1"
|
|
845
|
+
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
|
|
846
|
+
dependencies:
|
|
847
|
+
assert-plus "1.0.0"
|
|
848
|
+
extsprintf "1.3.0"
|
|
849
|
+
json-schema "0.2.3"
|
|
850
|
+
verror "1.10.0"
|
|
851
|
+
|
|
852
|
+
kind-of@^3.0.2:
|
|
853
|
+
version "3.2.2"
|
|
854
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
|
|
855
|
+
dependencies:
|
|
856
|
+
is-buffer "^1.1.5"
|
|
857
|
+
|
|
858
|
+
lazy-cache@^1.0.3:
|
|
859
|
+
version "1.0.4"
|
|
860
|
+
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
|
|
861
|
+
|
|
862
|
+
lcov-parse@^0.0.10:
|
|
863
|
+
version "0.0.10"
|
|
864
|
+
resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3"
|
|
865
|
+
|
|
866
|
+
levn@^0.3.0, levn@~0.3.0:
|
|
867
|
+
version "0.3.0"
|
|
868
|
+
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
|
869
|
+
dependencies:
|
|
870
|
+
prelude-ls "~1.1.2"
|
|
871
|
+
type-check "~0.3.2"
|
|
872
|
+
|
|
873
|
+
lodash@^4.17.4, lodash@^4.3.0:
|
|
874
|
+
version "4.17.10"
|
|
875
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
|
|
876
|
+
|
|
877
|
+
log-driver@^1.2.5:
|
|
878
|
+
version "1.2.7"
|
|
879
|
+
resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
|
|
880
|
+
|
|
881
|
+
longest@^1.0.1:
|
|
882
|
+
version "1.0.1"
|
|
883
|
+
resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
|
|
884
|
+
|
|
885
|
+
lru-cache@^4.0.1:
|
|
886
|
+
version "4.1.3"
|
|
887
|
+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c"
|
|
888
|
+
dependencies:
|
|
889
|
+
pseudomap "^1.0.2"
|
|
890
|
+
yallist "^2.1.2"
|
|
891
|
+
|
|
892
|
+
mime-db@~1.33.0:
|
|
893
|
+
version "1.33.0"
|
|
894
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
|
|
895
|
+
|
|
896
|
+
mime-types@^2.1.12, mime-types@~2.1.17:
|
|
897
|
+
version "2.1.18"
|
|
898
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
|
|
899
|
+
dependencies:
|
|
900
|
+
mime-db "~1.33.0"
|
|
901
|
+
|
|
902
|
+
mimic-fn@^1.0.0:
|
|
903
|
+
version "1.2.0"
|
|
904
|
+
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
|
|
905
|
+
|
|
906
|
+
"minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4:
|
|
907
|
+
version "3.0.4"
|
|
908
|
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
|
909
|
+
dependencies:
|
|
910
|
+
brace-expansion "^1.1.7"
|
|
911
|
+
|
|
912
|
+
minimist@0.0.8:
|
|
913
|
+
version "0.0.8"
|
|
914
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
|
915
|
+
|
|
916
|
+
minimist@^1.2.0:
|
|
917
|
+
version "1.2.0"
|
|
918
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
|
919
|
+
|
|
920
|
+
minimist@~0.0.1:
|
|
921
|
+
version "0.0.10"
|
|
922
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
|
|
923
|
+
|
|
924
|
+
mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@^0.5.1:
|
|
925
|
+
version "0.5.1"
|
|
926
|
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
|
927
|
+
dependencies:
|
|
928
|
+
minimist "0.0.8"
|
|
929
|
+
|
|
930
|
+
mocha@^5.2.0:
|
|
931
|
+
version "5.2.0"
|
|
932
|
+
resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz#6d8ae508f59167f940f2b5b3c4a612ae50c90ae6"
|
|
933
|
+
dependencies:
|
|
934
|
+
browser-stdout "1.3.1"
|
|
935
|
+
commander "2.15.1"
|
|
936
|
+
debug "3.1.0"
|
|
937
|
+
diff "3.5.0"
|
|
938
|
+
escape-string-regexp "1.0.5"
|
|
939
|
+
glob "7.1.2"
|
|
940
|
+
growl "1.10.5"
|
|
941
|
+
he "1.1.1"
|
|
942
|
+
minimatch "3.0.4"
|
|
943
|
+
mkdirp "0.5.1"
|
|
944
|
+
supports-color "5.4.0"
|
|
945
|
+
|
|
946
|
+
ms@2.0.0:
|
|
947
|
+
version "2.0.0"
|
|
948
|
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
|
949
|
+
|
|
950
|
+
mute-stream@0.0.7:
|
|
951
|
+
version "0.0.7"
|
|
952
|
+
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
|
|
953
|
+
|
|
954
|
+
natural-compare@^1.4.0:
|
|
955
|
+
version "1.4.0"
|
|
956
|
+
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
|
957
|
+
|
|
958
|
+
nopt@3.x:
|
|
959
|
+
version "3.0.6"
|
|
960
|
+
resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
|
|
961
|
+
dependencies:
|
|
962
|
+
abbrev "1"
|
|
963
|
+
|
|
964
|
+
oauth-sign@~0.8.2:
|
|
965
|
+
version "0.8.2"
|
|
966
|
+
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
|
|
967
|
+
|
|
968
|
+
object-assign@^4.0.1:
|
|
969
|
+
version "4.1.1"
|
|
970
|
+
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
|
971
|
+
|
|
972
|
+
once@1.x, once@^1.3.0:
|
|
973
|
+
version "1.4.0"
|
|
974
|
+
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
|
975
|
+
dependencies:
|
|
976
|
+
wrappy "1"
|
|
977
|
+
|
|
978
|
+
onetime@^2.0.0:
|
|
979
|
+
version "2.0.1"
|
|
980
|
+
resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
|
|
981
|
+
dependencies:
|
|
982
|
+
mimic-fn "^1.0.0"
|
|
983
|
+
|
|
984
|
+
optimist@^0.6.1:
|
|
985
|
+
version "0.6.1"
|
|
986
|
+
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
|
|
987
|
+
dependencies:
|
|
988
|
+
minimist "~0.0.1"
|
|
989
|
+
wordwrap "~0.0.2"
|
|
990
|
+
|
|
991
|
+
optionator@^0.8.1, optionator@^0.8.2:
|
|
992
|
+
version "0.8.2"
|
|
993
|
+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
|
|
994
|
+
dependencies:
|
|
995
|
+
deep-is "~0.1.3"
|
|
996
|
+
fast-levenshtein "~2.0.4"
|
|
997
|
+
levn "~0.3.0"
|
|
998
|
+
prelude-ls "~1.1.2"
|
|
999
|
+
type-check "~0.3.2"
|
|
1000
|
+
wordwrap "~1.0.0"
|
|
1001
|
+
|
|
1002
|
+
os-tmpdir@~1.0.2:
|
|
1003
|
+
version "1.0.2"
|
|
1004
|
+
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
|
1005
|
+
|
|
1006
|
+
path-is-absolute@^1.0.0:
|
|
1007
|
+
version "1.0.1"
|
|
1008
|
+
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
|
1009
|
+
|
|
1010
|
+
path-is-inside@^1.0.1, path-is-inside@^1.0.2:
|
|
1011
|
+
version "1.0.2"
|
|
1012
|
+
resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
|
|
1013
|
+
|
|
1014
|
+
performance-now@^2.1.0:
|
|
1015
|
+
version "2.1.0"
|
|
1016
|
+
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
|
1017
|
+
|
|
1018
|
+
pify@^2.0.0:
|
|
1019
|
+
version "2.3.0"
|
|
1020
|
+
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
|
1021
|
+
|
|
1022
|
+
pinkie-promise@^2.0.0:
|
|
1023
|
+
version "2.0.1"
|
|
1024
|
+
resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
|
|
1025
|
+
dependencies:
|
|
1026
|
+
pinkie "^2.0.0"
|
|
1027
|
+
|
|
1028
|
+
pinkie@^2.0.0:
|
|
1029
|
+
version "2.0.4"
|
|
1030
|
+
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
|
|
1031
|
+
|
|
1032
|
+
pluralize@^7.0.0:
|
|
1033
|
+
version "7.0.0"
|
|
1034
|
+
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
|
|
1035
|
+
|
|
1036
|
+
prelude-ls@~1.1.2:
|
|
1037
|
+
version "1.1.2"
|
|
1038
|
+
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
|
1039
|
+
|
|
1040
|
+
process-nextick-args@~2.0.0:
|
|
1041
|
+
version "2.0.0"
|
|
1042
|
+
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
|
|
1043
|
+
|
|
1044
|
+
progress@^2.0.0:
|
|
1045
|
+
version "2.0.0"
|
|
1046
|
+
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
|
|
1047
|
+
|
|
1048
|
+
pseudomap@^1.0.2:
|
|
1049
|
+
version "1.0.2"
|
|
1050
|
+
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
|
1051
|
+
|
|
1052
|
+
punycode@^1.4.1:
|
|
1053
|
+
version "1.4.1"
|
|
1054
|
+
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
|
|
1055
|
+
|
|
1056
|
+
qs@~6.5.1:
|
|
1057
|
+
version "6.5.2"
|
|
1058
|
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
|
|
1059
|
+
|
|
1060
|
+
readable-stream@^2.2.2:
|
|
1061
|
+
version "2.3.6"
|
|
1062
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
|
|
1063
|
+
dependencies:
|
|
1064
|
+
core-util-is "~1.0.0"
|
|
1065
|
+
inherits "~2.0.3"
|
|
1066
|
+
isarray "~1.0.0"
|
|
1067
|
+
process-nextick-args "~2.0.0"
|
|
1068
|
+
safe-buffer "~5.1.1"
|
|
1069
|
+
string_decoder "~1.1.1"
|
|
1070
|
+
util-deprecate "~1.0.1"
|
|
1071
|
+
|
|
1072
|
+
regexpp@^1.0.1:
|
|
1073
|
+
version "1.1.0"
|
|
1074
|
+
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab"
|
|
1075
|
+
|
|
1076
|
+
repeat-string@^1.5.2:
|
|
1077
|
+
version "1.6.1"
|
|
1078
|
+
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
|
1079
|
+
|
|
1080
|
+
request@^2.79.0:
|
|
1081
|
+
version "2.87.0"
|
|
1082
|
+
resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e"
|
|
1083
|
+
dependencies:
|
|
1084
|
+
aws-sign2 "~0.7.0"
|
|
1085
|
+
aws4 "^1.6.0"
|
|
1086
|
+
caseless "~0.12.0"
|
|
1087
|
+
combined-stream "~1.0.5"
|
|
1088
|
+
extend "~3.0.1"
|
|
1089
|
+
forever-agent "~0.6.1"
|
|
1090
|
+
form-data "~2.3.1"
|
|
1091
|
+
har-validator "~5.0.3"
|
|
1092
|
+
http-signature "~1.2.0"
|
|
1093
|
+
is-typedarray "~1.0.0"
|
|
1094
|
+
isstream "~0.1.2"
|
|
1095
|
+
json-stringify-safe "~5.0.1"
|
|
1096
|
+
mime-types "~2.1.17"
|
|
1097
|
+
oauth-sign "~0.8.2"
|
|
1098
|
+
performance-now "^2.1.0"
|
|
1099
|
+
qs "~6.5.1"
|
|
1100
|
+
safe-buffer "^5.1.1"
|
|
1101
|
+
tough-cookie "~2.3.3"
|
|
1102
|
+
tunnel-agent "^0.6.0"
|
|
1103
|
+
uuid "^3.1.0"
|
|
1104
|
+
|
|
1105
|
+
require-uncached@^1.0.3:
|
|
1106
|
+
version "1.0.3"
|
|
1107
|
+
resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
|
|
1108
|
+
dependencies:
|
|
1109
|
+
caller-path "^0.1.0"
|
|
1110
|
+
resolve-from "^1.0.0"
|
|
1111
|
+
|
|
1112
|
+
resolve-from@^1.0.0:
|
|
1113
|
+
version "1.0.1"
|
|
1114
|
+
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
|
|
1115
|
+
|
|
1116
|
+
resolve@1.1.x:
|
|
1117
|
+
version "1.1.7"
|
|
1118
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
|
1119
|
+
|
|
1120
|
+
restore-cursor@^2.0.0:
|
|
1121
|
+
version "2.0.0"
|
|
1122
|
+
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
|
1123
|
+
dependencies:
|
|
1124
|
+
onetime "^2.0.0"
|
|
1125
|
+
signal-exit "^3.0.2"
|
|
1126
|
+
|
|
1127
|
+
right-align@^0.1.1:
|
|
1128
|
+
version "0.1.3"
|
|
1129
|
+
resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
|
|
1130
|
+
dependencies:
|
|
1131
|
+
align-text "^0.1.1"
|
|
1132
|
+
|
|
1133
|
+
rimraf@^2.2.8:
|
|
1134
|
+
version "2.6.2"
|
|
1135
|
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
|
|
1136
|
+
dependencies:
|
|
1137
|
+
glob "^7.0.5"
|
|
1138
|
+
|
|
1139
|
+
run-async@^2.2.0:
|
|
1140
|
+
version "2.3.0"
|
|
1141
|
+
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
|
|
1142
|
+
dependencies:
|
|
1143
|
+
is-promise "^2.1.0"
|
|
1144
|
+
|
|
1145
|
+
rx-lite-aggregates@^4.0.8:
|
|
1146
|
+
version "4.0.8"
|
|
1147
|
+
resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
|
|
1148
|
+
dependencies:
|
|
1149
|
+
rx-lite "*"
|
|
1150
|
+
|
|
1151
|
+
rx-lite@*, rx-lite@^4.0.8:
|
|
1152
|
+
version "4.0.8"
|
|
1153
|
+
resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
|
|
1154
|
+
|
|
1155
|
+
safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
|
|
1156
|
+
version "5.1.2"
|
|
1157
|
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
|
1158
|
+
|
|
1159
|
+
"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2:
|
|
1160
|
+
version "2.1.2"
|
|
1161
|
+
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
|
1162
|
+
|
|
1163
|
+
semver@^5.3.0:
|
|
1164
|
+
version "5.5.0"
|
|
1165
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
|
|
1166
|
+
|
|
1167
|
+
shebang-command@^1.2.0:
|
|
1168
|
+
version "1.2.0"
|
|
1169
|
+
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
|
|
1170
|
+
dependencies:
|
|
1171
|
+
shebang-regex "^1.0.0"
|
|
1172
|
+
|
|
1173
|
+
shebang-regex@^1.0.0:
|
|
1174
|
+
version "1.0.0"
|
|
1175
|
+
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
|
|
1176
|
+
|
|
1177
|
+
should-equal@^2.0.0:
|
|
1178
|
+
version "2.0.0"
|
|
1179
|
+
resolved "https://registry.yarnpkg.com/should-equal/-/should-equal-2.0.0.tgz#6072cf83047360867e68e98b09d71143d04ee0c3"
|
|
1180
|
+
dependencies:
|
|
1181
|
+
should-type "^1.4.0"
|
|
1182
|
+
|
|
1183
|
+
should-format@^3.0.3:
|
|
1184
|
+
version "3.0.3"
|
|
1185
|
+
resolved "https://registry.yarnpkg.com/should-format/-/should-format-3.0.3.tgz#9bfc8f74fa39205c53d38c34d717303e277124f1"
|
|
1186
|
+
dependencies:
|
|
1187
|
+
should-type "^1.3.0"
|
|
1188
|
+
should-type-adaptors "^1.0.1"
|
|
1189
|
+
|
|
1190
|
+
should-type-adaptors@^1.0.1:
|
|
1191
|
+
version "1.1.0"
|
|
1192
|
+
resolved "https://registry.yarnpkg.com/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz#401e7f33b5533033944d5cd8bf2b65027792e27a"
|
|
1193
|
+
dependencies:
|
|
1194
|
+
should-type "^1.3.0"
|
|
1195
|
+
should-util "^1.0.0"
|
|
1196
|
+
|
|
1197
|
+
should-type@^1.3.0, should-type@^1.4.0:
|
|
1198
|
+
version "1.4.0"
|
|
1199
|
+
resolved "https://registry.yarnpkg.com/should-type/-/should-type-1.4.0.tgz#0756d8ce846dfd09843a6947719dfa0d4cff5cf3"
|
|
1200
|
+
|
|
1201
|
+
should-util@^1.0.0:
|
|
1202
|
+
version "1.0.0"
|
|
1203
|
+
resolved "https://registry.yarnpkg.com/should-util/-/should-util-1.0.0.tgz#c98cda374aa6b190df8ba87c9889c2b4db620063"
|
|
1204
|
+
|
|
1205
|
+
should@^13.2.1:
|
|
1206
|
+
version "13.2.1"
|
|
1207
|
+
resolved "https://registry.yarnpkg.com/should/-/should-13.2.1.tgz#84e6ebfbb145c79e0ae42307b25b3f62dcaf574e"
|
|
1208
|
+
dependencies:
|
|
1209
|
+
should-equal "^2.0.0"
|
|
1210
|
+
should-format "^3.0.3"
|
|
1211
|
+
should-type "^1.4.0"
|
|
1212
|
+
should-type-adaptors "^1.0.1"
|
|
1213
|
+
should-util "^1.0.0"
|
|
1214
|
+
|
|
1215
|
+
signal-exit@^3.0.2:
|
|
1216
|
+
version "3.0.2"
|
|
1217
|
+
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
|
1218
|
+
|
|
1219
|
+
slice-ansi@1.0.0:
|
|
1220
|
+
version "1.0.0"
|
|
1221
|
+
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
|
|
1222
|
+
dependencies:
|
|
1223
|
+
is-fullwidth-code-point "^2.0.0"
|
|
1224
|
+
|
|
1225
|
+
source-map@^0.4.4:
|
|
1226
|
+
version "0.4.4"
|
|
1227
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
|
|
1228
|
+
dependencies:
|
|
1229
|
+
amdefine ">=0.0.4"
|
|
1230
|
+
|
|
1231
|
+
source-map@~0.2.0:
|
|
1232
|
+
version "0.2.0"
|
|
1233
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d"
|
|
1234
|
+
dependencies:
|
|
1235
|
+
amdefine ">=0.0.4"
|
|
1236
|
+
|
|
1237
|
+
source-map@~0.5.1:
|
|
1238
|
+
version "0.5.7"
|
|
1239
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
|
1240
|
+
|
|
1241
|
+
sprintf-js@~1.0.2:
|
|
1242
|
+
version "1.0.3"
|
|
1243
|
+
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
|
1244
|
+
|
|
1245
|
+
sshpk@^1.7.0:
|
|
1246
|
+
version "1.14.2"
|
|
1247
|
+
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98"
|
|
1248
|
+
dependencies:
|
|
1249
|
+
asn1 "~0.2.3"
|
|
1250
|
+
assert-plus "^1.0.0"
|
|
1251
|
+
dashdash "^1.12.0"
|
|
1252
|
+
getpass "^0.1.1"
|
|
1253
|
+
safer-buffer "^2.0.2"
|
|
1254
|
+
optionalDependencies:
|
|
1255
|
+
bcrypt-pbkdf "^1.0.0"
|
|
1256
|
+
ecc-jsbn "~0.1.1"
|
|
1257
|
+
jsbn "~0.1.0"
|
|
1258
|
+
tweetnacl "~0.14.0"
|
|
1259
|
+
|
|
1260
|
+
string-width@^2.1.0, string-width@^2.1.1:
|
|
1261
|
+
version "2.1.1"
|
|
1262
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
|
|
1263
|
+
dependencies:
|
|
1264
|
+
is-fullwidth-code-point "^2.0.0"
|
|
1265
|
+
strip-ansi "^4.0.0"
|
|
1266
|
+
|
|
1267
|
+
string_decoder@~1.1.1:
|
|
1268
|
+
version "1.1.1"
|
|
1269
|
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
|
|
1270
|
+
dependencies:
|
|
1271
|
+
safe-buffer "~5.1.0"
|
|
1272
|
+
|
|
1273
|
+
strip-ansi@^3.0.0:
|
|
1274
|
+
version "3.0.1"
|
|
1275
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
|
|
1276
|
+
dependencies:
|
|
1277
|
+
ansi-regex "^2.0.0"
|
|
1278
|
+
|
|
1279
|
+
strip-ansi@^4.0.0:
|
|
1280
|
+
version "4.0.0"
|
|
1281
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
|
|
1282
|
+
dependencies:
|
|
1283
|
+
ansi-regex "^3.0.0"
|
|
1284
|
+
|
|
1285
|
+
strip-json-comments@~2.0.1:
|
|
1286
|
+
version "2.0.1"
|
|
1287
|
+
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
|
1288
|
+
|
|
1289
|
+
supports-color@5.4.0, supports-color@^5.3.0:
|
|
1290
|
+
version "5.4.0"
|
|
1291
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54"
|
|
1292
|
+
dependencies:
|
|
1293
|
+
has-flag "^3.0.0"
|
|
1294
|
+
|
|
1295
|
+
supports-color@^2.0.0:
|
|
1296
|
+
version "2.0.0"
|
|
1297
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
|
1298
|
+
|
|
1299
|
+
supports-color@^3.1.0:
|
|
1300
|
+
version "3.2.3"
|
|
1301
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
|
|
1302
|
+
dependencies:
|
|
1303
|
+
has-flag "^1.0.0"
|
|
1304
|
+
|
|
1305
|
+
table@4.0.2:
|
|
1306
|
+
version "4.0.2"
|
|
1307
|
+
resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
|
|
1308
|
+
dependencies:
|
|
1309
|
+
ajv "^5.2.3"
|
|
1310
|
+
ajv-keywords "^2.1.0"
|
|
1311
|
+
chalk "^2.1.0"
|
|
1312
|
+
lodash "^4.17.4"
|
|
1313
|
+
slice-ansi "1.0.0"
|
|
1314
|
+
string-width "^2.1.1"
|
|
1315
|
+
|
|
1316
|
+
text-table@~0.2.0:
|
|
1317
|
+
version "0.2.0"
|
|
1318
|
+
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
|
1319
|
+
|
|
1320
|
+
through@^2.3.6:
|
|
1321
|
+
version "2.3.8"
|
|
1322
|
+
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
|
1323
|
+
|
|
1324
|
+
tmp@^0.0.33:
|
|
1325
|
+
version "0.0.33"
|
|
1326
|
+
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
|
|
1327
|
+
dependencies:
|
|
1328
|
+
os-tmpdir "~1.0.2"
|
|
1329
|
+
|
|
1330
|
+
tough-cookie@~2.3.3:
|
|
1331
|
+
version "2.3.4"
|
|
1332
|
+
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
|
|
1333
|
+
dependencies:
|
|
1334
|
+
punycode "^1.4.1"
|
|
1335
|
+
|
|
1336
|
+
tunnel-agent@^0.6.0:
|
|
1337
|
+
version "0.6.0"
|
|
1338
|
+
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
|
|
1339
|
+
dependencies:
|
|
1340
|
+
safe-buffer "^5.0.1"
|
|
1341
|
+
|
|
1342
|
+
tweetnacl@^0.14.3, tweetnacl@~0.14.0:
|
|
1343
|
+
version "0.14.5"
|
|
1344
|
+
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
|
|
1345
|
+
|
|
1346
|
+
type-check@~0.3.2:
|
|
1347
|
+
version "0.3.2"
|
|
1348
|
+
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
|
|
1349
|
+
dependencies:
|
|
1350
|
+
prelude-ls "~1.1.2"
|
|
1351
|
+
|
|
1352
|
+
typedarray@^0.0.6:
|
|
1353
|
+
version "0.0.6"
|
|
1354
|
+
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
|
1355
|
+
|
|
1356
|
+
uglify-js@^2.6:
|
|
1357
|
+
version "2.8.29"
|
|
1358
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
|
|
1359
|
+
dependencies:
|
|
1360
|
+
source-map "~0.5.1"
|
|
1361
|
+
yargs "~3.10.0"
|
|
1362
|
+
optionalDependencies:
|
|
1363
|
+
uglify-to-browserify "~1.0.0"
|
|
1364
|
+
|
|
1365
|
+
uglify-to-browserify@~1.0.0:
|
|
1366
|
+
version "1.0.2"
|
|
1367
|
+
resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
|
|
1368
|
+
|
|
1369
|
+
util-deprecate@~1.0.1:
|
|
1370
|
+
version "1.0.2"
|
|
1371
|
+
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
|
1372
|
+
|
|
1373
|
+
uuid@^3.1.0:
|
|
1374
|
+
version "3.2.1"
|
|
1375
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
|
|
1376
|
+
|
|
1377
|
+
verror@1.10.0:
|
|
1378
|
+
version "1.10.0"
|
|
1379
|
+
resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
|
|
1380
|
+
dependencies:
|
|
1381
|
+
assert-plus "^1.0.0"
|
|
1382
|
+
core-util-is "1.0.2"
|
|
1383
|
+
extsprintf "^1.2.0"
|
|
1384
|
+
|
|
1385
|
+
which@^1.1.1, which@^1.2.9:
|
|
1386
|
+
version "1.3.1"
|
|
1387
|
+
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
|
1388
|
+
dependencies:
|
|
1389
|
+
isexe "^2.0.0"
|
|
1390
|
+
|
|
1391
|
+
window-size@0.1.0:
|
|
1392
|
+
version "0.1.0"
|
|
1393
|
+
resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
|
|
1394
|
+
|
|
1395
|
+
wordwrap@0.0.2:
|
|
1396
|
+
version "0.0.2"
|
|
1397
|
+
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
|
|
1398
|
+
|
|
1399
|
+
wordwrap@^1.0.0, wordwrap@~1.0.0:
|
|
1400
|
+
version "1.0.0"
|
|
1401
|
+
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
|
1402
|
+
|
|
1403
|
+
wordwrap@~0.0.2:
|
|
1404
|
+
version "0.0.3"
|
|
1405
|
+
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
|
|
1406
|
+
|
|
1407
|
+
wrappy@1:
|
|
1408
|
+
version "1.0.2"
|
|
1409
|
+
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
1410
|
+
|
|
1411
|
+
write@^0.2.1:
|
|
1412
|
+
version "0.2.1"
|
|
1413
|
+
resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
|
|
1414
|
+
dependencies:
|
|
1415
|
+
mkdirp "^0.5.1"
|
|
1416
|
+
|
|
1417
|
+
yallist@^2.1.2:
|
|
1418
|
+
version "2.1.2"
|
|
1419
|
+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
|
|
1420
|
+
|
|
1421
|
+
yargs@~3.10.0:
|
|
1422
|
+
version "3.10.0"
|
|
1423
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
|
|
1424
|
+
dependencies:
|
|
1425
|
+
camelcase "^1.0.2"
|
|
1426
|
+
cliui "^2.1.0"
|
|
1427
|
+
decamelize "^1.0.0"
|
|
1428
|
+
window-size "0.1.0"
|
|
1429
|
+
|
|
1430
|
+
Trace:
|
|
1431
|
+
Error: Command failed.
|
|
1432
|
+
Exit code: 1
|
|
1433
|
+
Command: sh
|
|
1434
|
+
Arguments: -c mocha --require coffeescript/register
|
|
1435
|
+
Directory: /src/qix-/node-is-arrayish
|
|
1436
|
+
Output:
|
|
1437
|
+
|
|
1438
|
+
at ProcessTermError.MessageError (/Users/junon/.yarn/lib/cli.js:186:110)
|
|
1439
|
+
at new ProcessTermError (/Users/junon/.yarn/lib/cli.js:226:113)
|
|
1440
|
+
at ChildProcess.<anonymous> (/Users/junon/.yarn/lib/cli.js:30281:17)
|
|
1441
|
+
at ChildProcess.emit (events.js:127:13)
|
|
1442
|
+
at maybeClose (internal/child_process.js:933:16)
|
|
1443
|
+
at Process.ChildProcess._handle.onexit (internal/child_process.js:220:5)
|