Commit a8778cf374960e131e93a7fdaffdf7c88c7321fb
1 parent
bb726764
Exists in
master
and in
1 other branch
修改Scheme弹出框逻辑
Showing
4 changed files
with
2294 additions
and
2429 deletions
Show diff stats
package.json
| @@ -9,26 +9,26 @@ | @@ -9,26 +9,26 @@ | ||
| 9 | "lib": "vue-cli-service build --target lib --name eagle-web-toolkit --dest lib packages/index.js" | 9 | "lib": "vue-cli-service build --target lib --name eagle-web-toolkit --dest lib packages/index.js" |
| 10 | }, | 10 | }, |
| 11 | "dependencies": { | 11 | "dependencies": { |
| 12 | - "axios": "^0.19.0", | ||
| 13 | - "core-js": "^3.3.3", | ||
| 14 | - "element-theme-chalk": "^2.13.0", | ||
| 15 | - "element-ui": "^2.12.0", | ||
| 16 | - "mockjs": "^1.0.1-beta3", | 12 | + "axios": "^0.19.2", |
| 13 | + "core-js": "^3.6.5", | ||
| 14 | + "element-theme-chalk": "^2.13.2", | ||
| 15 | + "element-ui": "^2.13.2", | ||
| 16 | + "mockjs": "^1.1.0", | ||
| 17 | "nprogress": "^0.2.0", | 17 | "nprogress": "^0.2.0", |
| 18 | - "vue": "^2.6.10", | ||
| 19 | - "vue-router": "^3.1.3", | ||
| 20 | - "vuex": "^3.1.1" | 18 | + "vue": "^2.6.11", |
| 19 | + "vue-router": "^3.3.4", | ||
| 20 | + "vuex": "^3.5.1" | ||
| 21 | }, | 21 | }, |
| 22 | "devDependencies": { | 22 | "devDependencies": { |
| 23 | - "@vue/cli-plugin-babel": "^4.0.4", | ||
| 24 | - "@vue/cli-service": "^4.0.4", | ||
| 25 | - "markdown-it": "^10.0.0", | ||
| 26 | - "markdown-it-anchor": "^5.2.5", | ||
| 27 | - "markdown-it-container": "^2.0.0", | ||
| 28 | - "sass": "^1.23.0", | ||
| 29 | - "sass-loader": "^8.0.0", | ||
| 30 | - "transliteration": "^2.1.7", | 23 | + "@vue/cli-plugin-babel": "^4.4.6", |
| 24 | + "@vue/cli-service": "^4.4.6", | ||
| 25 | + "markdown-it": "^11.0.0", | ||
| 26 | + "markdown-it-anchor": "^5.3.0", | ||
| 27 | + "markdown-it-container": "^3.0.0", | ||
| 28 | + "sass": "^1.26.10", | ||
| 29 | + "sass-loader": "^9.0.2", | ||
| 30 | + "transliteration": "^2.1.11", | ||
| 31 | "vue-markdown-loader": "^2.4.1", | 31 | "vue-markdown-loader": "^2.4.1", |
| 32 | - "vue-template-compiler": "^2.6.10" | 32 | + "vue-template-compiler": "^2.6.11" |
| 33 | } | 33 | } |
| 34 | } | 34 | } |
packages/scheme/index.vue
| @@ -82,7 +82,7 @@ | @@ -82,7 +82,7 @@ | ||
| 82 | <!-- 表格搜索栏插槽 --> | 82 | <!-- 表格搜索栏插槽 --> |
| 83 | <template v-if="option.showSearch !== false"> | 83 | <template v-if="option.showSearch !== false"> |
| 84 | <template v-if="$scopedSlots['search'] || $slots['search']"> | 84 | <template v-if="$scopedSlots['search'] || $slots['search']"> |
| 85 | - <slot name="search" v-bind="slotMethod" :handleSearch="handleSearch" :searching="tableLoading"></slot> | 85 | + <slot name="search" v-bind="_slotScope" :handleSearch="handleSearch" :searching="tableLoading"></slot> |
| 86 | </template> | 86 | </template> |
| 87 | <template v-else> | 87 | <template v-else> |
| 88 | <div class="eagle-scheme__card"> | 88 | <div class="eagle-scheme__card"> |
| @@ -90,8 +90,8 @@ | @@ -90,8 +90,8 @@ | ||
| 90 | <component :is="_searchComponent" :list="searchList || _searchList" v-model="searchModel" :span="searchProps.span || 6" :showNumber="searchProps.showNumber" :formProps="searchProps" @search="value => handleSearch(value, true)" :searching="tableLoading"> | 90 | <component :is="_searchComponent" :list="searchList || _searchList" v-model="searchModel" :span="searchProps.span || 6" :showNumber="searchProps.showNumber" :formProps="searchProps" @search="value => handleSearch(value, true)" :searching="tableLoading"> |
| 91 | <!-- 搜索表单项具名插槽 --> | 91 | <!-- 搜索表单项具名插槽 --> |
| 92 | <template v-for="item in searchList || _searchList"> | 92 | <template v-for="item in searchList || _searchList"> |
| 93 | - <slot v-if="$scopedSlots[`search-${item.key}`] || $slots[`search-${item.key}`]" :name="`search-${item.key}`" :slot="item.key" :model="searchModel"></slot> | ||
| 94 | - <slot v-else-if="$scopedSlots[`field-${item.key}`] || $slots[`field-${item.key}`]" :name="`field-${item.key}`" :slot="item.key" :model="searchModel"></slot> | 93 | + <slot v-if="$scopedSlots[`search-${item.key}`] || $slots[`search-${item.key}`]" :name="`search-${item.key}`" :slot="item.key" :model="searchModel" v-bind="_slotScope"></slot> |
| 94 | + <slot v-else-if="$scopedSlots[`field-${item.key}`] || $slots[`field-${item.key}`]" :name="`field-${item.key}`" :slot="item.key" :model="searchModel" v-bind="_slotScope"></slot> | ||
| 95 | </template> | 95 | </template> |
| 96 | </component> | 96 | </component> |
| 97 | </div> | 97 | </div> |
| @@ -99,13 +99,13 @@ | @@ -99,13 +99,13 @@ | ||
| 99 | </template> | 99 | </template> |
| 100 | <!-- 操作按钮栏 --> | 100 | <!-- 操作按钮栏 --> |
| 101 | <div v-if="option.showActionBar !== false" class="eagle-scheme__action" v-loading="tableLoading" element-loading-spinner="none" element-loading-background="rgba(255, 255, 255, 0.6)"> | 101 | <div v-if="option.showActionBar !== false" class="eagle-scheme__action" v-loading="tableLoading" element-loading-spinner="none" element-loading-background="rgba(255, 255, 255, 0.6)"> |
| 102 | - <slot v-if="$scopedSlots['action-bar'] || $slots['action-bar']" name="action-bar" v-bind="slotMethod" :model="formModel" :selection="tableSelection"></slot> | 102 | + <slot v-if="$scopedSlots['action-bar'] || $slots['action-bar']" name="action-bar" v-bind="_slotScope" :model="formModel" :selection="tableSelection"></slot> |
| 103 | <template v-else> | 103 | <template v-else> |
| 104 | <div class="eagle-scheme__action-left"> | 104 | <div class="eagle-scheme__action-left"> |
| 105 | - <slot v-if="$scopedSlots['action-btn-new'] || $slots['action-btn-new']" name="action-btn-new" v-bind="slotMethod" :model="formModel" :selection="tableSelection"></slot> | 105 | + <slot v-if="$scopedSlots['action-btn-new'] || $slots['action-btn-new']" name="action-btn-new" v-bind="_slotScope" :model="formModel" :selection="tableSelection"></slot> |
| 106 | <el-button v-else-if="option.showActionBtnNew !== false" class="eagle-scheme__action-btn" type="primary" size="small" @click="handleNew">{{ i18n('eagle.scheme.new') || '新增' }}</el-button> | 106 | <el-button v-else-if="option.showActionBtnNew !== false" class="eagle-scheme__action-btn" type="primary" size="small" @click="handleNew">{{ i18n('eagle.scheme.new') || '新增' }}</el-button> |
| 107 | <el-button v-if="hasSelectionSlot && option.showActionBtnDelete !== false" :disabled="tableSelection && tableSelection.length <= 0" class="eagle-scheme__action-btn" plain size="small" @click="handleDelete('more')">{{ i18n('eagle.scheme.delete') || '删除' }}</el-button> | 107 | <el-button v-if="hasSelectionSlot && option.showActionBtnDelete !== false" :disabled="tableSelection && tableSelection.length <= 0" class="eagle-scheme__action-btn" plain size="small" @click="handleDelete('more')">{{ i18n('eagle.scheme.delete') || '删除' }}</el-button> |
| 108 | - <slot v-if="$scopedSlots['action-button'] || $slots['action-button']" name="action-button" class="eagle-scheme__action-btn" :model="formModel" :selection="tableSelection" v-bind="slotMethod"></slot> | 108 | + <slot v-if="$scopedSlots['action-button'] || $slots['action-button']" name="action-button" class="eagle-scheme__action-btn" :model="formModel" :selection="tableSelection" v-bind="_slotScope"></slot> |
| 109 | <div v-if="hasSelectionSlot && tableSelection && tableSelection.length > 0 && option.showActionBtnDelete !== false" class="eagle-scheme__action-btn eagle-scheme__text-selection">{{ i18n('eagle.scheme.checked') || '已选中' }}<span class="eagle-scheme__text-selection-highlight">{{ tableSelection.length }}</span>{{ i18n('eagle.scheme.item') || '项' }}</div> | 109 | <div v-if="hasSelectionSlot && tableSelection && tableSelection.length > 0 && option.showActionBtnDelete !== false" class="eagle-scheme__action-btn eagle-scheme__text-selection">{{ i18n('eagle.scheme.checked') || '已选中' }}<span class="eagle-scheme__text-selection-highlight">{{ tableSelection.length }}</span>{{ i18n('eagle.scheme.item') || '项' }}</div> |
| 110 | </div> | 110 | </div> |
| 111 | <div v-if="option.dynamicColumn === true" class="eagle-scheme__action-right"> | 111 | <div v-if="option.dynamicColumn === true" class="eagle-scheme__action-right"> |
| @@ -123,7 +123,7 @@ | @@ -123,7 +123,7 @@ | ||
| 123 | </div> | 123 | </div> |
| 124 | <div class="eagle-scheme__table"> | 124 | <div class="eagle-scheme__table"> |
| 125 | <slot v-if="$scopedSlots['table'] || $slots['table']" name="table" | 125 | <slot v-if="$scopedSlots['table'] || $slots['table']" name="table" |
| 126 | - v-bind="{ ...slotMethod, list: _tableList, value: tableData, loading: tableLoading, | 126 | + v-bind="{ ..._slotScope, list: _tableList, value: tableData, loading: tableLoading, |
| 127 | tableProps: { border: true, 'row-key': 'id', ...tableProps }, | 127 | tableProps: { border: true, 'row-key': 'id', ...tableProps }, |
| 128 | tableEvents: { 'selection-change': handleTableSelectionChange, ...tableEvents } | 128 | tableEvents: { 'selection-change': handleTableSelectionChange, ...tableEvents } |
| 129 | }" | 129 | }" |
| @@ -138,15 +138,15 @@ | @@ -138,15 +138,15 @@ | ||
| 138 | ...tableEvents, | 138 | ...tableEvents, |
| 139 | }" | 139 | }" |
| 140 | > | 140 | > |
| 141 | - <slot v-bind="slotMethod"></slot> | 141 | + <slot v-bind="_slotScope"></slot> |
| 142 | <!-- 表格具名插槽 --> | 142 | <!-- 表格具名插槽 --> |
| 143 | <template v-for="(item, index) in tableList || _tableList"> | 143 | <template v-for="(item, index) in tableList || _tableList"> |
| 144 | - <slot v-if="$scopedSlots[`table-${item.key}`] || $slots[`table-${item.key}`]" :name="`table-${item.key}`" :slot="item.key" v-bind="slotMethod"></slot> | 144 | + <slot v-if="$scopedSlots[`table-${item.key}`] || $slots[`table-${item.key}`]" :name="`table-${item.key}`" :slot="item.key" v-bind="_slotScope"></slot> |
| 145 | <el-table-column v-else-if="$scopedSlots[`table-value-${item.key}`] || $slots[`table-value-${item.key}`]" :slot="item.key" :key="`column-${index}`" v-bind="item" :prop="item.agentKey || item.key" :min-width="item.minWidth || item['min-width'] || '120'"> | 145 | <el-table-column v-else-if="$scopedSlots[`table-value-${item.key}`] || $slots[`table-value-${item.key}`]" :slot="item.key" :key="`column-${index}`" v-bind="item" :prop="item.agentKey || item.key" :min-width="item.minWidth || item['min-width'] || '120'"> |
| 146 | - <slot slot-scope="{ row, column, $index }" :name="`table-value-${item.key}`" v-bind="{ ...item, ...slotMethod }" :row="row" :value="row[item.key]" :column="column" :index="$index"></slot> | 146 | + <slot slot-scope="{ row, column, $index }" :name="`table-value-${item.key}`" v-bind="{ ...item, ..._slotScope }" :row="row" :value="row[item.key]" :column="column" :index="$index"></slot> |
| 147 | </el-table-column> | 147 | </el-table-column> |
| 148 | <el-table-column v-else-if="$scopedSlots[`render-${item.key}`] || $slots[`render-${item.key}`]" :slot="item.key" :key="`render-${index}`" v-bind="item" :prop="item.agentKey || item.key" :min-width="item.minWidth || item['min-width'] || '120'"> | 148 | <el-table-column v-else-if="$scopedSlots[`render-${item.key}`] || $slots[`render-${item.key}`]" :slot="item.key" :key="`render-${index}`" v-bind="item" :prop="item.agentKey || item.key" :min-width="item.minWidth || item['min-width'] || '120'"> |
| 149 | - <slot slot-scope="{ row, column, $index }" :name="`render-${item.key}`" v-bind="{ ...item, ...slotMethod }" :row="row" :value="row[item.key]" :column="column" :index="$index"></slot> | 149 | + <slot slot-scope="{ row, column, $index }" :name="`render-${item.key}`" v-bind="{ ...item, ..._slotScope }" :row="row" :value="row[item.key]" :column="column" :index="$index"></slot> |
| 150 | </el-table-column> | 150 | </el-table-column> |
| 151 | </template> | 151 | </template> |
| 152 | <!-- 表格后置插槽 --> | 152 | <!-- 表格后置插槽 --> |
| @@ -155,7 +155,7 @@ | @@ -155,7 +155,7 @@ | ||
| 155 | </template> | 155 | </template> |
| 156 | <!-- 表格操作栏插槽 - 自定义 --> | 156 | <!-- 表格操作栏插槽 - 自定义 --> |
| 157 | <template v-if="$scopedSlots['table-operation'] || $slots['table-operation']"> | 157 | <template v-if="$scopedSlots['table-operation'] || $slots['table-operation']"> |
| 158 | - <slot name="table-operation" slot="$end" v-bind="slotMethod"></slot> | 158 | + <slot name="table-operation" slot="$end" v-bind="_slotScope"></slot> |
| 159 | </template> | 159 | </template> |
| 160 | <!-- 表格操作栏插槽 - 默认 --> | 160 | <!-- 表格操作栏插槽 - 默认 --> |
| 161 | <template v-else> | 161 | <template v-else> |
| @@ -174,15 +174,15 @@ | @@ -174,15 +174,15 @@ | ||
| 174 | <el-table-column slot="$end" prop="$operation" :label="i18n('eagle.scheme.operation') || '操作'" :min-width="option.operationWidth || 140" :fixed="option.operationFixed || 'right'"> | 174 | <el-table-column slot="$end" prop="$operation" :label="i18n('eagle.scheme.operation') || '操作'" :min-width="option.operationWidth || 140" :fixed="option.operationFixed || 'right'"> |
| 175 | <div class="eagle-scheme__table-operation" slot-scope="slotScope"> | 175 | <div class="eagle-scheme__table-operation" slot-scope="slotScope"> |
| 176 | <!-- 表格操作栏插槽 - 前置插槽 --> | 176 | <!-- 表格操作栏插槽 - 前置插槽 --> |
| 177 | - <slot v-if="$scopedSlots['table-operation-btn'] || $slots['table-operation-btn']" name="table-operation-btn" :slotScope="slotScope" v-bind="slotMethod"></slot> | 177 | + <slot v-if="$scopedSlots['table-operation-btn'] || $slots['table-operation-btn']" name="table-operation-btn" :slotScope="slotScope" v-bind="_slotScope"></slot> |
| 178 | <el-button v-if="option.showViewBtn !== false" class="eagle-scheme__table-btn" type="text" icon="el-icon-view" :title="i18n('eagle.scheme.detail') || '详情'" @click="handleView(slotScope)"></el-button> | 178 | <el-button v-if="option.showViewBtn !== false" class="eagle-scheme__table-btn" type="text" icon="el-icon-view" :title="i18n('eagle.scheme.detail') || '详情'" @click="handleView(slotScope)"></el-button> |
| 179 | - <slot v-if="$scopedSlots['table-operation-btn-edit'] || $slots['table-operation-btn-edit']" name="table-operation-btn-edit" :slotScope="slotScope" v-bind="slotMethod"></slot> | 179 | + <slot v-if="$scopedSlots['table-operation-btn-edit'] || $slots['table-operation-btn-edit']" name="table-operation-btn-edit" :slotScope="slotScope" v-bind="_slotScope"></slot> |
| 180 | <el-button v-else-if="option.showEditBtn !== false" class="eagle-scheme__table-btn" type="text" icon="el-icon-edit" :title="i18n('eagle.scheme.edit') || '编辑'" @click="handleEdit(slotScope)"></el-button> | 180 | <el-button v-else-if="option.showEditBtn !== false" class="eagle-scheme__table-btn" type="text" icon="el-icon-edit" :title="i18n('eagle.scheme.edit') || '编辑'" @click="handleEdit(slotScope)"></el-button> |
| 181 | <component v-if="option.showDeleteBtn !== false" :is="_confirmComponent" class="eagle-scheme__table-btn" :title="i18n('eagle.scheme.deleteConfirm') || '是否删除?'" @confirm="handleDelete('one', slotScope)"> | 181 | <component v-if="option.showDeleteBtn !== false" :is="_confirmComponent" class="eagle-scheme__table-btn" :title="i18n('eagle.scheme.deleteConfirm') || '是否删除?'" @confirm="handleDelete('one', slotScope)"> |
| 182 | <el-button type="text" icon="el-icon-delete" :title="i18n('eagle.scheme.delete') || '删除'"></el-button> | 182 | <el-button type="text" icon="el-icon-delete" :title="i18n('eagle.scheme.delete') || '删除'"></el-button> |
| 183 | </component> | 183 | </component> |
| 184 | <!-- 表格操作栏插槽 - 后置插槽 --> | 184 | <!-- 表格操作栏插槽 - 后置插槽 --> |
| 185 | - <slot v-if="$scopedSlots['table-operation-btn-append'] || $slots['table-operation-btn-append']" name="table-operation-btn-append" :slotScope="slotScope" v-bind="slotMethod"></slot> | 185 | + <slot v-if="$scopedSlots['table-operation-btn-append'] || $slots['table-operation-btn-append']" name="table-operation-btn-append" :slotScope="slotScope" v-bind="_slotScope"></slot> |
| 186 | </div> | 186 | </div> |
| 187 | </el-table-column> | 187 | </el-table-column> |
| 188 | </template> | 188 | </template> |
| @@ -196,37 +196,41 @@ | @@ -196,37 +196,41 @@ | ||
| 196 | </div> | 196 | </div> |
| 197 | <!-- 弹出框 --> | 197 | <!-- 弹出框 --> |
| 198 | <component :is="dialogComponent || 'el-dialog'" v-loading="dialogLoading" element-loading-background="rgba(255, 255, 255, 0.3)" | 198 | <component :is="dialogComponent || 'el-dialog'" v-loading="dialogLoading" element-loading-background="rgba(255, 255, 255, 0.3)" |
| 199 | - :custom-class="dialogProps['custom-class'] || 'eagle-scheme__dialog'" :title="dialogProps.title || dialogTitle" | ||
| 200 | - :visible.sync="dialogVisible" v-bind="{ width: '65%', size: dialogComponent === 'el-drawer' ? '50%' : undefined, ...dialogProps }" | 199 | + :custom-class="_dialogProps['custom-class'] || 'eagle-scheme__dialog'" :title="_dialogProps.title || dialogTitle" |
| 200 | + :visible.sync="dialogVisible" v-bind="{ width: '65%', size: dialogComponent === 'el-drawer' ? '50%' : undefined, ..._dialogProps }" | ||
| 201 | + @closed="onDialogClosed" | ||
| 202 | + @close="onDialogClose" | ||
| 201 | > | 203 | > |
| 202 | - <component :is="_formComponent" v-if="dialogType === 'dialog-form' && !$scopedSlots['dialog-form'] && !$slots['dialog-form']" | ||
| 203 | - ref="eagle-form" :list="formList || _formList" v-model="formModel" :params="{ formMode }" :span="formProps.span || 12" :formProps="formProps" | ||
| 204 | - @submit="handleSubmit" @cancel="handleCancel" :style="dialogComponent === 'el-drawer' ? 'padding: 0 50px 0 10px;' : undefined" | ||
| 205 | - > | ||
| 206 | - <!-- 表单分组具名插槽 --> | ||
| 207 | - <template v-for="key in formGroupSlotsKeys"> | ||
| 208 | - <slot v-if="$scopedSlots[`form-${key}`] || $slots[`form-${key}`]" :name="`form-${key}`" :slot="key" :model="formModel"></slot> | ||
| 209 | - </template> | ||
| 210 | - <!-- 表单项具名插槽 --> | ||
| 211 | - <template v-for="item in formList || _formList"> | ||
| 212 | - <slot v-if="$scopedSlots[`form-item-${item.key}`] || $slots[`form-item-${item.key}`]" :name="`form-item-${item.key}`" :slot="`item-${item.key}`" :model="formModel"></slot> | ||
| 213 | - <slot v-else-if="$scopedSlots[`field-${item.key}`] || $slots[`field-${item.key}`]" :name="`field-${item.key}`" :slot="`item-${item.key}`" :model="formModel"></slot> | ||
| 214 | - <slot v-if="$scopedSlots[`form-label-${item.key}`] || $slots[`form-label-${item.key}`]" :name="`form-label-${item.key}`" :slot="`label-${item.key}`" :model="formModel" v-bind="item"></slot> | ||
| 215 | - </template> | ||
| 216 | - </component> | ||
| 217 | - <component :is="_detailComponent" v-else-if="dialogType === 'dialog-view' && !$scopedSlots['dialog-view'] && !$slots['dialog-view']" v-model="formModel" :list="detailList || list" :span="detailProps.span || dialogComponent === 'el-drawer' ? 12 : 8" :formProps="detailProps"> | ||
| 218 | - <!-- 详情分组具名插槽 --> | ||
| 219 | - <template v-for="key in formGroupSlotsKeys"> | ||
| 220 | - <slot v-if="$scopedSlots[`view-${key}`] || $slots[`view-${key}`]" :name="`view-${key}`" :slot="key" :model="formModel"></slot> | ||
| 221 | - </template> | ||
| 222 | - <!-- 详情项具名插槽 --> | ||
| 223 | - <template v-for="item in detailList || list"> | ||
| 224 | - <slot v-if="$scopedSlots[`view-item-${item.key}`] || $slots[`view-item-${item.key}`]" :name="`view-item-${item.key}`" :slot="`item-${item.key}`" v-bind="{ ...item, ...slotMethod }" :model="formModel" :row="formModel" :value="formModel[item.key]"></slot> | ||
| 225 | - <slot v-else-if="$scopedSlots[`render-${item.key}`] || $slots[`render-${item.key}`]" :name="`render-${item.key}`" :slot="`item-${item.key}`" v-bind="{ ...item, ...slotMethod }" :model="formModel" :row="formModel" :value="formModel[item.key]"></slot> | ||
| 226 | - </template> | ||
| 227 | - </component> | ||
| 228 | - <!-- 自定义弹出框内容插槽 --> | ||
| 229 | - <slot v-else :name="dialogType" :row="tableCurrentRow" :model="formModel" :hideDialog="hideDialog"></slot> | 204 | + <template v-if="dialogRender"> |
| 205 | + <component :is="_formComponent" v-if="dialogType === 'form' && !$scopedSlots['dialog-form'] && !$slots['dialog-form']" | ||
| 206 | + ref="eagle-form" :list="formList || _formList" v-model="formModel" :params="{ formMode }" :span="formProps.span || 12" :formProps="formProps" | ||
| 207 | + @submit="handleSubmit" @cancel="handleCancel" :style="dialogComponent === 'el-drawer' ? 'padding: 0 50px 0 10px;' : undefined" | ||
| 208 | + > | ||
| 209 | + <!-- 表单分组具名插槽 --> | ||
| 210 | + <template v-for="key in formGroupSlotsKeys"> | ||
| 211 | + <slot v-if="$scopedSlots[`form-${key}`] || $slots[`form-${key}`]" :name="`form-${key}`" :slot="key" :model="formModel" v-bind="_slotScope"></slot> | ||
| 212 | + </template> | ||
| 213 | + <!-- 表单项具名插槽 --> | ||
| 214 | + <template v-for="item in formList || _formList"> | ||
| 215 | + <slot v-if="$scopedSlots[`form-item-${item.key}`] || $slots[`form-item-${item.key}`]" :name="`form-item-${item.key}`" :slot="`item-${item.key}`" :model="formModel" v-bind="_slotScope"></slot> | ||
| 216 | + <slot v-else-if="$scopedSlots[`field-${item.key}`] || $slots[`field-${item.key}`]" :name="`field-${item.key}`" :slot="`item-${item.key}`" :model="formModel" v-bind="_slotScope"></slot> | ||
| 217 | + <slot v-if="$scopedSlots[`form-label-${item.key}`] || $slots[`form-label-${item.key}`]" :name="`form-label-${item.key}`" :slot="`label-${item.key}`" :model="formModel" v-bind="{ ...item, ..._slotScope}"></slot> | ||
| 218 | + </template> | ||
| 219 | + </component> | ||
| 220 | + <component :is="_detailComponent" v-else-if="dialogType === 'view' && !$scopedSlots['dialog-view'] && !$slots['dialog-view']" v-model="formModel" :list="detailList || list" :span="detailProps.span || dialogComponent === 'el-drawer' ? 12 : 8" :formProps="detailProps"> | ||
| 221 | + <!-- 详情分组具名插槽 --> | ||
| 222 | + <template v-for="key in formGroupSlotsKeys"> | ||
| 223 | + <slot v-if="$scopedSlots[`view-${key}`] || $slots[`view-${key}`]" :name="`view-${key}`" :slot="key" :model="formModel" v-bind="_slotScope"></slot> | ||
| 224 | + </template> | ||
| 225 | + <!-- 详情项具名插槽 --> | ||
| 226 | + <template v-for="item in detailList || list"> | ||
| 227 | + <slot v-if="$scopedSlots[`view-item-${item.key}`] || $slots[`view-item-${item.key}`]" :name="`view-item-${item.key}`" :slot="`item-${item.key}`" v-bind="{ ...item, ..._slotScope }" :model="formModel" :row="formModel" :value="formModel[item.key]"></slot> | ||
| 228 | + <slot v-else-if="$scopedSlots[`render-${item.key}`] || $slots[`render-${item.key}`]" :name="`render-${item.key}`" :slot="`item-${item.key}`" v-bind="{ ...item, ..._slotScope }" :model="formModel" :row="formModel" :value="formModel[item.key]"></slot> | ||
| 229 | + </template> | ||
| 230 | + </component> | ||
| 231 | + <!-- 自定义弹出框内容插槽 --> | ||
| 232 | + <slot v-else :name="`dialog-${dialogType}`" :row="tableCurrentRow" :model="formModel" :closeDialog="closeDialog" v-bind="_slotScope"></slot> | ||
| 233 | + </template> | ||
| 230 | </component> | 234 | </component> |
| 231 | </div> | 235 | </div> |
| 232 | </template> | 236 | </template> |
| @@ -324,12 +328,16 @@ export default { | @@ -324,12 +328,16 @@ export default { | ||
| 324 | totalCount: 0, | 328 | totalCount: 0, |
| 325 | // 弹出框状态 | 329 | // 弹出框状态 |
| 326 | dialogVisible: false, | 330 | dialogVisible: false, |
| 331 | + // 弹出框渲染 | ||
| 332 | + dialogRender: true, | ||
| 327 | // 弹出框标题 | 333 | // 弹出框标题 |
| 328 | dialogTitle: '', | 334 | dialogTitle: '', |
| 329 | // 弹出框类型 | 335 | // 弹出框类型 |
| 330 | - dialogType: '', | 336 | + dialogType: 'none', |
| 331 | // 弹出框加载状态 | 337 | // 弹出框加载状态 |
| 332 | dialogLoading: false, | 338 | dialogLoading: false, |
| 339 | + // 弹出框Props调整 | ||
| 340 | + dialogPropsHack: {}, | ||
| 333 | // 表格数据 | 341 | // 表格数据 |
| 334 | tableData: [], | 342 | tableData: [], |
| 335 | // 表格选中项 | 343 | // 表格选中项 |
| @@ -392,17 +400,25 @@ export default { | @@ -392,17 +400,25 @@ export default { | ||
| 392 | return result; | 400 | return result; |
| 393 | }, | 401 | }, |
| 394 | // 插槽开放方法 | 402 | // 插槽开放方法 |
| 395 | - slotMethod() { | 403 | + _slotScope() { |
| 396 | return { | 404 | return { |
| 397 | handleNew: this.handleNew, | 405 | handleNew: this.handleNew, |
| 398 | handleView: this.handleView, | 406 | handleView: this.handleView, |
| 399 | handleEdit: this.handleEdit, | 407 | handleEdit: this.handleEdit, |
| 400 | handleDelete: this.handleDelete, | 408 | handleDelete: this.handleDelete, |
| 401 | - setDialog: this.setDialog, | 409 | + openDialog: this.openDialog, |
| 410 | + closeDialog: this.closeDialog, | ||
| 402 | searchModel: this.searchModel, | 411 | searchModel: this.searchModel, |
| 403 | formModel: this.formModel, | 412 | formModel: this.formModel, |
| 404 | } | 413 | } |
| 405 | - } | 414 | + }, |
| 415 | + // 弹出框参数 | ||
| 416 | + _dialogProps() { | ||
| 417 | + return { | ||
| 418 | + ...this.dialogProps, | ||
| 419 | + ...this.dialogPropsHack, | ||
| 420 | + }; | ||
| 421 | + }, | ||
| 406 | }, | 422 | }, |
| 407 | watch: { | 423 | watch: { |
| 408 | value(val) { | 424 | value(val) { |
| @@ -524,13 +540,11 @@ export default { | @@ -524,13 +540,11 @@ export default { | ||
| 524 | }, | 540 | }, |
| 525 | // 查看按钮 | 541 | // 查看按钮 |
| 526 | handleView({ row, $index }) { | 542 | handleView({ row, $index }) { |
| 527 | - this.dialogTitle = this.i18n('eagle.scheme.detail') || '详情'; | ||
| 528 | - this.dialogType = 'dialog-view'; | ||
| 529 | this.tableCurrentRow = { ...row, $index }; | 543 | this.tableCurrentRow = { ...row, $index }; |
| 530 | this.resetFormModel(); | 544 | this.resetFormModel(); |
| 531 | this.formMode = "view"; | 545 | this.formMode = "view"; |
| 532 | this.$emit('dialog-change', this.dialogType); | 546 | this.$emit('dialog-change', this.dialogType); |
| 533 | - this.showDialog(); | 547 | + this.openDialog({ title: this.i18n('eagle.scheme.detail') || '详情', type: 'view' }); |
| 534 | this.doDetail(row); | 548 | this.doDetail(row); |
| 535 | }, | 549 | }, |
| 536 | // 查询单项数据详情 | 550 | // 查询单项数据详情 |
| @@ -581,23 +595,17 @@ export default { | @@ -581,23 +595,17 @@ export default { | ||
| 581 | }, | 595 | }, |
| 582 | // 新增按钮 | 596 | // 新增按钮 |
| 583 | handleNew({ row }) { | 597 | handleNew({ row }) { |
| 584 | - this.dialogTitle = this.i18n('eagle.scheme.new') || '新增'; | ||
| 585 | - this.dialogType = 'dialog-form'; | ||
| 586 | this.tableCurrentRow = row; | 598 | this.tableCurrentRow = row; |
| 587 | this.resetFormModel(); | 599 | this.resetFormModel(); |
| 588 | this.formMode = "new"; | 600 | this.formMode = "new"; |
| 589 | - this.$emit('dialog-change', this.dialogType); | ||
| 590 | - this.showDialog(); | 601 | + this.openDialog({ title: this.i18n('eagle.scheme.new') || '新增', type: 'form' }); |
| 591 | }, | 602 | }, |
| 592 | // 编辑按钮 | 603 | // 编辑按钮 |
| 593 | async handleEdit({ row, $index }) { | 604 | async handleEdit({ row, $index }) { |
| 594 | - this.dialogTitle = this.i18n('eagle.scheme.edit') || '编辑'; | ||
| 595 | - this.dialogType = 'dialog-form'; | ||
| 596 | this.tableCurrentRow = { ...row, $index }; | 605 | this.tableCurrentRow = { ...row, $index }; |
| 597 | this.resetFormModel(); | 606 | this.resetFormModel(); |
| 598 | this.formMode = "edit"; | 607 | this.formMode = "edit"; |
| 599 | - this.$emit('dialog-change', this.dialogType); | ||
| 600 | - this.showDialog(); | 608 | + this.openDialog({ title: this.i18n('eagle.scheme.edit') || '编辑', type: 'form' }); |
| 601 | this.doGet(row); | 609 | this.doGet(row); |
| 602 | }, | 610 | }, |
| 603 | // 查询单项数据 | 611 | // 查询单项数据 |
| @@ -671,7 +679,7 @@ export default { | @@ -671,7 +679,7 @@ export default { | ||
| 671 | try { | 679 | try { |
| 672 | const success = await this.option.deleteAPI(param, selection); | 680 | const success = await this.option.deleteAPI(param, selection); |
| 673 | if (success) { | 681 | if (success) { |
| 674 | - this.hideDialog(); | 682 | + this.closeDialog(); |
| 675 | this.handleSearch(); | 683 | this.handleSearch(); |
| 676 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.deleteSuccess') || '删除成功', type: 'success' }); } | 684 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.deleteSuccess') || '删除成功', type: 'success' }); } |
| 677 | } | 685 | } |
| @@ -690,7 +698,7 @@ export default { | @@ -690,7 +698,7 @@ export default { | ||
| 690 | if (responseFilter) { | 698 | if (responseFilter) { |
| 691 | responseFilter(response).then((success) => { | 699 | responseFilter(response).then((success) => { |
| 692 | if (success) { | 700 | if (success) { |
| 693 | - this.hideDialog(); | 701 | + this.closeDialog(); |
| 694 | this.handleSearch(); | 702 | this.handleSearch(); |
| 695 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '删除成功', type: 'success' }); } | 703 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '删除成功', type: 'success' }); } |
| 696 | } | 704 | } |
| @@ -698,7 +706,7 @@ export default { | @@ -698,7 +706,7 @@ export default { | ||
| 698 | } else { | 706 | } else { |
| 699 | const { code } = response || {}; | 707 | const { code } = response || {}; |
| 700 | if (`${code}` === '0') { | 708 | if (`${code}` === '0') { |
| 701 | - this.hideDialog(); | 709 | + this.closeDialog(); |
| 702 | this.handleSearch(); | 710 | this.handleSearch(); |
| 703 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.editSuccess') || '删除成功', type: 'success' }); } | 711 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.editSuccess') || '删除成功', type: 'success' }); } |
| 704 | } | 712 | } |
| @@ -712,7 +720,7 @@ export default { | @@ -712,7 +720,7 @@ export default { | ||
| 712 | selection.forEach(slt => { | 720 | selection.forEach(slt => { |
| 713 | this.tableDataStatic = this.tableDataStatic.filter(item => item['$pk'] !== slt['$pk']); | 721 | this.tableDataStatic = this.tableDataStatic.filter(item => item['$pk'] !== slt['$pk']); |
| 714 | }); | 722 | }); |
| 715 | - this.hideDialog(); | 723 | + this.closeDialog(); |
| 716 | this.handleSearch(); | 724 | this.handleSearch(); |
| 717 | } | 725 | } |
| 718 | }, | 726 | }, |
| @@ -754,7 +762,7 @@ export default { | @@ -754,7 +762,7 @@ export default { | ||
| 754 | } else if (this.formMode === 'edit') { | 762 | } else if (this.formMode === 'edit') { |
| 755 | this.doEditSubmit(param); | 763 | this.doEditSubmit(param); |
| 756 | } else { | 764 | } else { |
| 757 | - this.hideDialog(); | 765 | + this.closeDialog(); |
| 758 | this.handleSearch(); | 766 | this.handleSearch(); |
| 759 | } | 767 | } |
| 760 | }, | 768 | }, |
| @@ -766,7 +774,7 @@ export default { | @@ -766,7 +774,7 @@ export default { | ||
| 766 | try { | 774 | try { |
| 767 | const success = await this.option.newAPI(param); | 775 | const success = await this.option.newAPI(param); |
| 768 | if (success) { | 776 | if (success) { |
| 769 | - this.hideDialog(); | 777 | + this.closeDialog(); |
| 770 | this.handleSearch(); | 778 | this.handleSearch(); |
| 771 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '提交成功', type: 'success' }); } | 779 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '提交成功', type: 'success' }); } |
| 772 | } | 780 | } |
| @@ -786,7 +794,7 @@ export default { | @@ -786,7 +794,7 @@ export default { | ||
| 786 | if (responseFilter) { | 794 | if (responseFilter) { |
| 787 | responseFilter(response).then((success) => { | 795 | responseFilter(response).then((success) => { |
| 788 | if (success) { | 796 | if (success) { |
| 789 | - this.hideDialog(); | 797 | + this.closeDialog(); |
| 790 | this.handleSearch(); | 798 | this.handleSearch(); |
| 791 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '提交成功', type: 'success' }); } | 799 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '提交成功', type: 'success' }); } |
| 792 | } | 800 | } |
| @@ -794,7 +802,7 @@ export default { | @@ -794,7 +802,7 @@ export default { | ||
| 794 | } else { | 802 | } else { |
| 795 | const { code } = response || {}; | 803 | const { code } = response || {}; |
| 796 | if (`${code}` === '0') { | 804 | if (`${code}` === '0') { |
| 797 | - this.hideDialog(); | 805 | + this.closeDialog(); |
| 798 | this.handleSearch(); | 806 | this.handleSearch(); |
| 799 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '提交成功', type: 'success' }); } | 807 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '提交成功', type: 'success' }); } |
| 800 | } | 808 | } |
| @@ -806,7 +814,7 @@ export default { | @@ -806,7 +814,7 @@ export default { | ||
| 806 | } else { | 814 | } else { |
| 807 | this.tableDataStatic.unshift({ ...param, $pk: param.id || getUUID() }); | 815 | this.tableDataStatic.unshift({ ...param, $pk: param.id || getUUID() }); |
| 808 | this.totalCount = this.tableDataStatic.length; | 816 | this.totalCount = this.tableDataStatic.length; |
| 809 | - this.hideDialog(); | 817 | + this.closeDialog(); |
| 810 | this.handleSearch(); | 818 | this.handleSearch(); |
| 811 | } | 819 | } |
| 812 | }, | 820 | }, |
| @@ -817,7 +825,7 @@ export default { | @@ -817,7 +825,7 @@ export default { | ||
| 817 | try { | 825 | try { |
| 818 | const success = await this.option.editAPI(param); | 826 | const success = await this.option.editAPI(param); |
| 819 | if (success) { | 827 | if (success) { |
| 820 | - this.hideDialog(); | 828 | + this.closeDialog(); |
| 821 | this.handleSearch(); | 829 | this.handleSearch(); |
| 822 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.editSuccess') || '编辑成功', type: 'success' }); } | 830 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.editSuccess') || '编辑成功', type: 'success' }); } |
| 823 | } | 831 | } |
| @@ -834,7 +842,7 @@ export default { | @@ -834,7 +842,7 @@ export default { | ||
| 834 | if (responseFilter) { | 842 | if (responseFilter) { |
| 835 | responseFilter(response).then((success) => { | 843 | responseFilter(response).then((success) => { |
| 836 | if (success) { | 844 | if (success) { |
| 837 | - this.hideDialog(); | 845 | + this.closeDialog(); |
| 838 | this.handleSearch(); | 846 | this.handleSearch(); |
| 839 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '编辑成功', type: 'success' }); } | 847 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.submitSuccess') || '编辑成功', type: 'success' }); } |
| 840 | } | 848 | } |
| @@ -842,7 +850,7 @@ export default { | @@ -842,7 +850,7 @@ export default { | ||
| 842 | } else { | 850 | } else { |
| 843 | const { code } = response || {}; | 851 | const { code } = response || {}; |
| 844 | if (`${code}` === '0') { | 852 | if (`${code}` === '0') { |
| 845 | - this.hideDialog(); | 853 | + this.closeDialog(); |
| 846 | this.handleSearch(); | 854 | this.handleSearch(); |
| 847 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.editSuccess') || '编辑成功', type: 'success' }); } | 855 | if (this.$message) { this.$message({ message: this.i18n('eagle.scheme.editSuccess') || '编辑成功', type: 'success' }); } |
| 848 | } | 856 | } |
| @@ -853,44 +861,52 @@ export default { | @@ -853,44 +861,52 @@ export default { | ||
| 853 | }); | 861 | }); |
| 854 | } else { | 862 | } else { |
| 855 | this.$set(this.tableDataStatic, this.tableDataStatic.findIndex(item => item['$pk'] === param['$pk']), { ...param, $pk: param['$pk'] || getUUID() }); | 863 | this.$set(this.tableDataStatic, this.tableDataStatic.findIndex(item => item['$pk'] === param['$pk']), { ...param, $pk: param['$pk'] || getUUID() }); |
| 856 | - this.hideDialog(); | 864 | + this.closeDialog(); |
| 857 | this.handleSearch(); | 865 | this.handleSearch(); |
| 858 | } | 866 | } |
| 859 | }, | 867 | }, |
| 860 | // 表单取消 | 868 | // 表单取消 |
| 861 | handleCancel() { | 869 | handleCancel() { |
| 862 | - this.hideDialog(); | 870 | + this.closeDialog(); |
| 863 | }, | 871 | }, |
| 864 | // 表格选择 | 872 | // 表格选择 |
| 865 | handleTableSelectionChange(selection) { | 873 | handleTableSelectionChange(selection) { |
| 866 | this.tableSelection = selection; | 874 | this.tableSelection = selection; |
| 867 | this.$emit('selection', selection); | 875 | this.$emit('selection', selection); |
| 868 | }, | 876 | }, |
| 869 | - // 显示弹出框 | ||
| 870 | - showDialog() { | ||
| 871 | - this.dialogVisible = true; | ||
| 872 | - }, | ||
| 873 | // 隐藏弹出框 | 877 | // 隐藏弹出框 |
| 874 | - hideDialog() { | 878 | + closeDialog() { |
| 875 | this.dialogVisible = false; | 879 | this.dialogVisible = false; |
| 880 | + }, | ||
| 881 | + // 弹出框关闭 | ||
| 882 | + onDialogClose() { | ||
| 883 | + this.dialogType = 'none'; | ||
| 884 | + this.dialogRender = false; | ||
| 876 | this.tableSelection = []; | 885 | this.tableSelection = []; |
| 877 | this.tableLoading = false; | 886 | this.tableLoading = false; |
| 878 | this.tableCurrentRow = null; | 887 | this.tableCurrentRow = null; |
| 879 | - this.formModel = {}; | ||
| 880 | this.dialogTitle = ''; | 888 | this.dialogTitle = ''; |
| 881 | this.dialogType = ''; | 889 | this.dialogType = ''; |
| 890 | + this.$emit('dialog-change', 'none'); | ||
| 891 | + }, | ||
| 892 | + // 弹出框关闭动画结束 | ||
| 893 | + onDialogClosed() { | ||
| 894 | + this.formModel = {}; | ||
| 895 | + this.dialogPropsHack = {}; | ||
| 882 | }, | 896 | }, |
| 883 | // 设置弹出框模式 | 897 | // 设置弹出框模式 |
| 884 | - setDialog({ title, type, model }) { | ||
| 885 | - this.dialogTitle = title; | 898 | + openDialog({ title, type, config, model }) { |
| 899 | + this.dialogVisible = true; | ||
| 900 | + this.dialogRender = true; | ||
| 886 | this.dialogType = type; | 901 | this.dialogType = type; |
| 902 | + this.dialogTitle = title; | ||
| 903 | + this.dialogPropsHack = config || {}; | ||
| 887 | this.$emit('dialog-change', type); | 904 | this.$emit('dialog-change', type); |
| 888 | if (model) { | 905 | if (model) { |
| 889 | Object.keys(model).forEach(key => { | 906 | Object.keys(model).forEach(key => { |
| 890 | this.formModel[key] = model[key]; | 907 | this.formModel[key] = model[key]; |
| 891 | }); | 908 | }); |
| 892 | } | 909 | } |
| 893 | - this.dialogVisible = true; | ||
| 894 | } | 910 | } |
| 895 | } | 911 | } |
| 896 | }; | 912 | }; |
vue.config.js
| @@ -12,7 +12,7 @@ module.exports = { | @@ -12,7 +12,7 @@ module.exports = { | ||
| 12 | css: { | 12 | css: { |
| 13 | loaderOptions: { | 13 | loaderOptions: { |
| 14 | sass: { | 14 | sass: { |
| 15 | - prependData: '@import "@/styles/variables.scss";@import "@/styles/theme-change.scss";', | 15 | + additionalData: '@import "@/styles/variables.scss";@import "@/styles/theme-change.scss";', |
| 16 | }, | 16 | }, |
| 17 | }, | 17 | }, |
| 18 | }, | 18 | }, |
yarn.lock
| @@ -2,727 +2,852 @@ | @@ -2,727 +2,852 @@ | ||
| 2 | # yarn lockfile v1 | 2 | # yarn lockfile v1 |
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": | ||
| 6 | - version "7.5.5" | ||
| 7 | - resolved "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" | ||
| 8 | - integrity sha1-vAeC9tafe31JUxIZaZuYj2aaj50= | ||
| 9 | - dependencies: | ||
| 10 | - "@babel/highlight" "^7.0.0" | ||
| 11 | - | ||
| 12 | -"@babel/core@^7.4.5": | ||
| 13 | - version "7.6.4" | ||
| 14 | - resolved "https://registry.npm.taobao.org/@babel/core/download/@babel/core-7.6.4.tgz#6ebd9fe00925f6c3e177bb726a188b5f578088ff" | ||
| 15 | - integrity sha1-br2f4Akl9sPhd7tyahiLX1eAiP8= | ||
| 16 | - dependencies: | ||
| 17 | - "@babel/code-frame" "^7.5.5" | ||
| 18 | - "@babel/generator" "^7.6.4" | ||
| 19 | - "@babel/helpers" "^7.6.2" | ||
| 20 | - "@babel/parser" "^7.6.4" | ||
| 21 | - "@babel/template" "^7.6.0" | ||
| 22 | - "@babel/traverse" "^7.6.3" | ||
| 23 | - "@babel/types" "^7.6.3" | ||
| 24 | - convert-source-map "^1.1.0" | 5 | +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": |
| 6 | + version "7.10.4" | ||
| 7 | + resolved "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" | ||
| 8 | + integrity sha1-Fo2ho26Q2miujUnA8bSMfGJJITo= | ||
| 9 | + dependencies: | ||
| 10 | + "@babel/highlight" "^7.10.4" | ||
| 11 | + | ||
| 12 | +"@babel/compat-data@^7.10.4": | ||
| 13 | + version "7.10.4" | ||
| 14 | + resolved "https://registry.npm.taobao.org/@babel/compat-data/download/@babel/compat-data-7.10.4.tgz?cache=0&sync_timestamp=1593521090485&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcompat-data%2Fdownload%2F%40babel%2Fcompat-data-7.10.4.tgz#706a6484ee6f910b719b696a9194f8da7d7ac241" | ||
| 15 | + integrity sha1-cGpkhO5vkQtxm2lqkZT42n16wkE= | ||
| 16 | + dependencies: | ||
| 17 | + browserslist "^4.12.0" | ||
| 18 | + invariant "^2.2.4" | ||
| 19 | + semver "^5.5.0" | ||
| 20 | + | ||
| 21 | +"@babel/core@^7.9.6": | ||
| 22 | + version "7.10.4" | ||
| 23 | + resolved "https://registry.npm.taobao.org/@babel/core/download/@babel/core-7.10.4.tgz?cache=0&sync_timestamp=1593521230897&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.10.4.tgz#780e8b83e496152f8dd7df63892b2e052bf1d51d" | ||
| 24 | + integrity sha1-eA6Lg+SWFS+N199jiSsuBSvx1R0= | ||
| 25 | + dependencies: | ||
| 26 | + "@babel/code-frame" "^7.10.4" | ||
| 27 | + "@babel/generator" "^7.10.4" | ||
| 28 | + "@babel/helper-module-transforms" "^7.10.4" | ||
| 29 | + "@babel/helpers" "^7.10.4" | ||
| 30 | + "@babel/parser" "^7.10.4" | ||
| 31 | + "@babel/template" "^7.10.4" | ||
| 32 | + "@babel/traverse" "^7.10.4" | ||
| 33 | + "@babel/types" "^7.10.4" | ||
| 34 | + convert-source-map "^1.7.0" | ||
| 25 | debug "^4.1.0" | 35 | debug "^4.1.0" |
| 26 | - json5 "^2.1.0" | 36 | + gensync "^1.0.0-beta.1" |
| 37 | + json5 "^2.1.2" | ||
| 27 | lodash "^4.17.13" | 38 | lodash "^4.17.13" |
| 28 | resolve "^1.3.2" | 39 | resolve "^1.3.2" |
| 29 | semver "^5.4.1" | 40 | semver "^5.4.1" |
| 30 | source-map "^0.5.0" | 41 | source-map "^0.5.0" |
| 31 | 42 | ||
| 32 | -"@babel/generator@^7.6.3", "@babel/generator@^7.6.4": | ||
| 33 | - version "7.6.4" | ||
| 34 | - resolved "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.6.4.tgz?cache=0&sync_timestamp=1570717961126&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.6.4.tgz#a4f8437287bf9671b07f483b76e3bb731bc97671" | ||
| 35 | - integrity sha1-pPhDcoe/lnGwf0g7duO7cxvJdnE= | 43 | +"@babel/generator@^7.10.4": |
| 44 | + version "7.10.4" | ||
| 45 | + resolved "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243" | ||
| 46 | + integrity sha1-5J7u2f4RS2L6WxgYVqQ6XjL18kM= | ||
| 36 | dependencies: | 47 | dependencies: |
| 37 | - "@babel/types" "^7.6.3" | 48 | + "@babel/types" "^7.10.4" |
| 38 | jsesc "^2.5.1" | 49 | jsesc "^2.5.1" |
| 39 | lodash "^4.17.13" | 50 | lodash "^4.17.13" |
| 40 | source-map "^0.5.0" | 51 | source-map "^0.5.0" |
| 41 | 52 | ||
| 42 | -"@babel/helper-annotate-as-pure@^7.0.0": | ||
| 43 | - version "7.0.0" | ||
| 44 | - resolved "https://registry.npm.taobao.org/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" | ||
| 45 | - integrity sha1-Mj053QtQ4Qx8Bsp9djjmhk2MXDI= | 53 | +"@babel/helper-annotate-as-pure@^7.10.4": |
| 54 | + version "7.10.4" | ||
| 55 | + resolved "https://registry.npm.taobao.org/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.10.4.tgz?cache=0&sync_timestamp=1593522926826&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" | ||
| 56 | + integrity sha1-W/DUlaP3V6w72ki1vzs7ownHK6M= | ||
| 46 | dependencies: | 57 | dependencies: |
| 47 | - "@babel/types" "^7.0.0" | 58 | + "@babel/types" "^7.10.4" |
| 48 | 59 | ||
| 49 | -"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": | ||
| 50 | - version "7.1.0" | ||
| 51 | - resolved "https://registry.npm.taobao.org/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" | ||
| 52 | - integrity sha1-a2lijf5Ah3mODE7Zjj1Kay+9L18= | 60 | +"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": |
| 61 | + version "7.10.4" | ||
| 62 | + resolved "https://registry.npm.taobao.org/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" | ||
| 63 | + integrity sha1-uwt18xv5jL+f8UPBrleLhydK4aM= | ||
| 53 | dependencies: | 64 | dependencies: |
| 54 | - "@babel/helper-explode-assignable-expression" "^7.1.0" | ||
| 55 | - "@babel/types" "^7.0.0" | ||
| 56 | - | ||
| 57 | -"@babel/helper-call-delegate@^7.4.4": | ||
| 58 | - version "7.4.4" | ||
| 59 | - resolved "https://registry.npm.taobao.org/@babel/helper-call-delegate/download/@babel/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" | ||
| 60 | - integrity sha1-h8H4yhmtVSpzanonscH8+LH/H0M= | ||
| 61 | - dependencies: | ||
| 62 | - "@babel/helper-hoist-variables" "^7.4.4" | ||
| 63 | - "@babel/traverse" "^7.4.4" | ||
| 64 | - "@babel/types" "^7.4.4" | 65 | + "@babel/helper-explode-assignable-expression" "^7.10.4" |
| 66 | + "@babel/types" "^7.10.4" | ||
| 65 | 67 | ||
| 66 | -"@babel/helper-create-class-features-plugin@^7.5.5", "@babel/helper-create-class-features-plugin@^7.6.0": | ||
| 67 | - version "7.6.0" | ||
| 68 | - resolved "https://registry.npm.taobao.org/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.6.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.6.0.tgz#769711acca889be371e9bc2eb68641d55218021f" | ||
| 69 | - integrity sha1-dpcRrMqIm+Nx6bwutoZB1VIYAh8= | 68 | +"@babel/helper-compilation-targets@^7.10.4", "@babel/helper-compilation-targets@^7.9.6": |
| 69 | + version "7.10.4" | ||
| 70 | + resolved "https://registry.npm.taobao.org/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.10.4.tgz?cache=0&sync_timestamp=1593521093775&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2" | ||
| 71 | + integrity sha1-gEro4/BDdmB8x5G51H1UAnYzK9I= | ||
| 70 | dependencies: | 72 | dependencies: |
| 71 | - "@babel/helper-function-name" "^7.1.0" | ||
| 72 | - "@babel/helper-member-expression-to-functions" "^7.5.5" | ||
| 73 | - "@babel/helper-optimise-call-expression" "^7.0.0" | ||
| 74 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 75 | - "@babel/helper-replace-supers" "^7.5.5" | ||
| 76 | - "@babel/helper-split-export-declaration" "^7.4.4" | 73 | + "@babel/compat-data" "^7.10.4" |
| 74 | + browserslist "^4.12.0" | ||
| 75 | + invariant "^2.2.4" | ||
| 76 | + levenary "^1.1.1" | ||
| 77 | + semver "^5.5.0" | ||
| 77 | 78 | ||
| 78 | -"@babel/helper-define-map@^7.5.5": | ||
| 79 | - version "7.5.5" | ||
| 80 | - resolved "https://registry.npm.taobao.org/@babel/helper-define-map/download/@babel/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369" | ||
| 81 | - integrity sha1-PewywgRvN+CbKMk+sLED/Sol02k= | ||
| 82 | - dependencies: | ||
| 83 | - "@babel/helper-function-name" "^7.1.0" | ||
| 84 | - "@babel/types" "^7.5.5" | 79 | +"@babel/helper-create-class-features-plugin@^7.10.4": |
| 80 | + version "7.10.4" | ||
| 81 | + resolved "https://registry.npm.taobao.org/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.10.4.tgz?cache=0&sync_timestamp=1593522864079&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.10.4.tgz#2d4015d0136bd314103a70d84a7183e4b344a355" | ||
| 82 | + integrity sha1-LUAV0BNr0xQQOnDYSnGD5LNEo1U= | ||
| 83 | + dependencies: | ||
| 84 | + "@babel/helper-function-name" "^7.10.4" | ||
| 85 | + "@babel/helper-member-expression-to-functions" "^7.10.4" | ||
| 86 | + "@babel/helper-optimise-call-expression" "^7.10.4" | ||
| 87 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 88 | + "@babel/helper-replace-supers" "^7.10.4" | ||
| 89 | + "@babel/helper-split-export-declaration" "^7.10.4" | ||
| 90 | + | ||
| 91 | +"@babel/helper-create-regexp-features-plugin@^7.10.4": | ||
| 92 | + version "7.10.4" | ||
| 93 | + resolved "https://registry.npm.taobao.org/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8" | ||
| 94 | + integrity sha1-/dYNiFJGWaC2lZwFeZJeQlcU87g= | ||
| 95 | + dependencies: | ||
| 96 | + "@babel/helper-annotate-as-pure" "^7.10.4" | ||
| 97 | + "@babel/helper-regex" "^7.10.4" | ||
| 98 | + regexpu-core "^4.7.0" | ||
| 99 | + | ||
| 100 | +"@babel/helper-define-map@^7.10.4": | ||
| 101 | + version "7.10.4" | ||
| 102 | + resolved "https://registry.npm.taobao.org/@babel/helper-define-map/download/@babel/helper-define-map-7.10.4.tgz#f037ad794264f729eda1889f4ee210b870999092" | ||
| 103 | + integrity sha1-8DeteUJk9yntoYifTuIQuHCZkJI= | ||
| 104 | + dependencies: | ||
| 105 | + "@babel/helper-function-name" "^7.10.4" | ||
| 106 | + "@babel/types" "^7.10.4" | ||
| 85 | lodash "^4.17.13" | 107 | lodash "^4.17.13" |
| 86 | 108 | ||
| 87 | -"@babel/helper-explode-assignable-expression@^7.1.0": | ||
| 88 | - version "7.1.0" | ||
| 89 | - resolved "https://registry.npm.taobao.org/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" | ||
| 90 | - integrity sha1-U3+hP28WdN90WwwA7I/k6ZaByPY= | 109 | +"@babel/helper-explode-assignable-expression@^7.10.4": |
| 110 | + version "7.10.4" | ||
| 111 | + resolved "https://registry.npm.taobao.org/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c" | ||
| 112 | + integrity sha1-QKHNkXv/Eoj2malKdbN6Gi29jHw= | ||
| 91 | dependencies: | 113 | dependencies: |
| 92 | - "@babel/traverse" "^7.1.0" | ||
| 93 | - "@babel/types" "^7.0.0" | 114 | + "@babel/traverse" "^7.10.4" |
| 115 | + "@babel/types" "^7.10.4" | ||
| 94 | 116 | ||
| 95 | -"@babel/helper-function-name@^7.1.0": | ||
| 96 | - version "7.1.0" | ||
| 97 | - resolved "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" | ||
| 98 | - integrity sha1-oM6wFoX3M1XUNgwSR/WCv6/I/1M= | 117 | +"@babel/helper-function-name@^7.10.4": |
| 118 | + version "7.10.4" | ||
| 119 | + resolved "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" | ||
| 120 | + integrity sha1-0tOyDFmtjEcRL6fSqUvAnV74Lxo= | ||
| 99 | dependencies: | 121 | dependencies: |
| 100 | - "@babel/helper-get-function-arity" "^7.0.0" | ||
| 101 | - "@babel/template" "^7.1.0" | ||
| 102 | - "@babel/types" "^7.0.0" | 122 | + "@babel/helper-get-function-arity" "^7.10.4" |
| 123 | + "@babel/template" "^7.10.4" | ||
| 124 | + "@babel/types" "^7.10.4" | ||
| 103 | 125 | ||
| 104 | -"@babel/helper-get-function-arity@^7.0.0": | ||
| 105 | - version "7.0.0" | ||
| 106 | - resolved "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" | ||
| 107 | - integrity sha1-g1ctQyDipGVyY3NBE8QoaLZOScM= | 126 | +"@babel/helper-get-function-arity@^7.10.4": |
| 127 | + version "7.10.4" | ||
| 128 | + resolved "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.10.4.tgz?cache=0&sync_timestamp=1593522926422&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" | ||
| 129 | + integrity sha1-mMHL6g4jMvM/mkZhuM4VBbLBm6I= | ||
| 108 | dependencies: | 130 | dependencies: |
| 109 | - "@babel/types" "^7.0.0" | 131 | + "@babel/types" "^7.10.4" |
| 110 | 132 | ||
| 111 | -"@babel/helper-hoist-variables@^7.4.4": | ||
| 112 | - version "7.4.4" | ||
| 113 | - resolved "https://registry.npm.taobao.org/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" | ||
| 114 | - integrity sha1-Api18lyMCcUxAtUqxKmPdz6yhQo= | 133 | +"@babel/helper-hoist-variables@^7.10.4": |
| 134 | + version "7.10.4" | ||
| 135 | + resolved "https://registry.npm.taobao.org/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.10.4.tgz?cache=0&sync_timestamp=1593522926518&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" | ||
| 136 | + integrity sha1-1JsAHR1aaMpeZgTdoBpil/fJOB4= | ||
| 115 | dependencies: | 137 | dependencies: |
| 116 | - "@babel/types" "^7.4.4" | 138 | + "@babel/types" "^7.10.4" |
| 117 | 139 | ||
| 118 | -"@babel/helper-member-expression-to-functions@^7.5.5": | ||
| 119 | - version "7.5.5" | ||
| 120 | - resolved "https://registry.npm.taobao.org/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590" | ||
| 121 | - integrity sha1-H7W47ERTqTxDnun+Ou6kqEt2tZA= | 140 | +"@babel/helper-member-expression-to-functions@^7.10.4": |
| 141 | + version "7.10.4" | ||
| 142 | + resolved "https://registry.npm.taobao.org/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.10.4.tgz?cache=0&sync_timestamp=1593522926997&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.10.4.tgz#7cd04b57dfcf82fce9aeae7d4e4452fa31b8c7c4" | ||
| 143 | + integrity sha1-fNBLV9/Pgvzprq59TkRS+jG4x8Q= | ||
| 122 | dependencies: | 144 | dependencies: |
| 123 | - "@babel/types" "^7.5.5" | 145 | + "@babel/types" "^7.10.4" |
| 124 | 146 | ||
| 125 | -"@babel/helper-module-imports@^7.0.0": | ||
| 126 | - version "7.0.0" | ||
| 127 | - resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" | ||
| 128 | - integrity sha1-lggbcRHkhtpNLNlxrRpP4hbMLj0= | 147 | +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.8.3": |
| 148 | + version "7.10.4" | ||
| 149 | + resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" | ||
| 150 | + integrity sha1-TFxUvgS9MWcKc4J5fXW5+i5bViA= | ||
| 129 | dependencies: | 151 | dependencies: |
| 130 | - "@babel/types" "^7.0.0" | 152 | + "@babel/types" "^7.10.4" |
| 131 | 153 | ||
| 132 | -"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": | ||
| 133 | - version "7.5.5" | ||
| 134 | - resolved "https://registry.npm.taobao.org/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.5.5.tgz#f84ff8a09038dcbca1fd4355661a500937165b4a" | ||
| 135 | - integrity sha1-+E/4oJA43Lyh/UNVZhpQCTcWW0o= | 154 | +"@babel/helper-module-transforms@^7.10.4": |
| 155 | + version "7.10.4" | ||
| 156 | + resolved "https://registry.npm.taobao.org/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.10.4.tgz#ca1f01fdb84e48c24d7506bb818c961f1da8805d" | ||
| 157 | + integrity sha1-yh8B/bhOSMJNdQa7gYyWHx2ogF0= | ||
| 136 | dependencies: | 158 | dependencies: |
| 137 | - "@babel/helper-module-imports" "^7.0.0" | ||
| 138 | - "@babel/helper-simple-access" "^7.1.0" | ||
| 139 | - "@babel/helper-split-export-declaration" "^7.4.4" | ||
| 140 | - "@babel/template" "^7.4.4" | ||
| 141 | - "@babel/types" "^7.5.5" | 159 | + "@babel/helper-module-imports" "^7.10.4" |
| 160 | + "@babel/helper-replace-supers" "^7.10.4" | ||
| 161 | + "@babel/helper-simple-access" "^7.10.4" | ||
| 162 | + "@babel/helper-split-export-declaration" "^7.10.4" | ||
| 163 | + "@babel/template" "^7.10.4" | ||
| 164 | + "@babel/types" "^7.10.4" | ||
| 142 | lodash "^4.17.13" | 165 | lodash "^4.17.13" |
| 143 | 166 | ||
| 144 | -"@babel/helper-optimise-call-expression@^7.0.0": | ||
| 145 | - version "7.0.0" | ||
| 146 | - resolved "https://registry.npm.taobao.org/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" | ||
| 147 | - integrity sha1-opIMVwKwc8Fd5REGIAqoytIEl9U= | 167 | +"@babel/helper-optimise-call-expression@^7.10.4": |
| 168 | + version "7.10.4" | ||
| 169 | + resolved "https://registry.npm.taobao.org/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.10.4.tgz?cache=0&sync_timestamp=1593522928231&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" | ||
| 170 | + integrity sha1-UNyWQT1ZT5lad5BZBbBYk813lnM= | ||
| 148 | dependencies: | 171 | dependencies: |
| 149 | - "@babel/types" "^7.0.0" | 172 | + "@babel/types" "^7.10.4" |
| 150 | 173 | ||
| 151 | -"@babel/helper-plugin-utils@^7.0.0": | ||
| 152 | - version "7.0.0" | ||
| 153 | - resolved "https://registry.npm.taobao.org/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" | ||
| 154 | - integrity sha1-u7P77phmHFaQNCN8wDlnupm08lA= | 174 | +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0": |
| 175 | + version "7.10.4" | ||
| 176 | + resolved "https://registry.npm.taobao.org/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.10.4.tgz?cache=0&sync_timestamp=1593521089859&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" | ||
| 177 | + integrity sha1-L3WoMSadT2d95JmG3/WZJ1M883U= | ||
| 155 | 178 | ||
| 156 | -"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": | ||
| 157 | - version "7.5.5" | ||
| 158 | - resolved "https://registry.npm.taobao.org/@babel/helper-regex/download/@babel/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351" | ||
| 159 | - integrity sha1-CqaCT3EAouDonBUnwjk2wVLKs1E= | 179 | +"@babel/helper-regex@^7.10.4": |
| 180 | + version "7.10.4" | ||
| 181 | + resolved "https://registry.npm.taobao.org/@babel/helper-regex/download/@babel/helper-regex-7.10.4.tgz?cache=0&sync_timestamp=1593521091742&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-regex%2Fdownload%2F%40babel%2Fhelper-regex-7.10.4.tgz#59b373daaf3458e5747dece71bbaf45f9676af6d" | ||
| 182 | + integrity sha1-WbNz2q80WOV0feznG7r0X5Z2r20= | ||
| 160 | dependencies: | 183 | dependencies: |
| 161 | lodash "^4.17.13" | 184 | lodash "^4.17.13" |
| 162 | 185 | ||
| 163 | -"@babel/helper-remap-async-to-generator@^7.1.0": | ||
| 164 | - version "7.1.0" | ||
| 165 | - resolved "https://registry.npm.taobao.org/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" | ||
| 166 | - integrity sha1-Nh2AghtvONp1vT8HheziCojF/n8= | ||
| 167 | - dependencies: | ||
| 168 | - "@babel/helper-annotate-as-pure" "^7.0.0" | ||
| 169 | - "@babel/helper-wrap-function" "^7.1.0" | ||
| 170 | - "@babel/template" "^7.1.0" | ||
| 171 | - "@babel/traverse" "^7.1.0" | ||
| 172 | - "@babel/types" "^7.0.0" | ||
| 173 | - | ||
| 174 | -"@babel/helper-replace-supers@^7.5.5": | ||
| 175 | - version "7.5.5" | ||
| 176 | - resolved "https://registry.npm.taobao.org/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" | ||
| 177 | - integrity sha1-+EzkPfAxIi0rrQaNJibLV5nDS8I= | ||
| 178 | - dependencies: | ||
| 179 | - "@babel/helper-member-expression-to-functions" "^7.5.5" | ||
| 180 | - "@babel/helper-optimise-call-expression" "^7.0.0" | ||
| 181 | - "@babel/traverse" "^7.5.5" | ||
| 182 | - "@babel/types" "^7.5.5" | ||
| 183 | - | ||
| 184 | -"@babel/helper-simple-access@^7.1.0": | ||
| 185 | - version "7.1.0" | ||
| 186 | - resolved "https://registry.npm.taobao.org/@babel/helper-simple-access/download/@babel/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" | ||
| 187 | - integrity sha1-Ze65VMjCRb6qToWdphiPOdceWFw= | ||
| 188 | - dependencies: | ||
| 189 | - "@babel/template" "^7.1.0" | ||
| 190 | - "@babel/types" "^7.0.0" | 186 | +"@babel/helper-remap-async-to-generator@^7.10.4": |
| 187 | + version "7.10.4" | ||
| 188 | + resolved "https://registry.npm.taobao.org/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.10.4.tgz?cache=0&sync_timestamp=1593521228698&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-remap-async-to-generator%2Fdownload%2F%40babel%2Fhelper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5" | ||
| 189 | + integrity sha1-/Oi+pOlpC76SMFbe0h5UtOi2jtU= | ||
| 190 | + dependencies: | ||
| 191 | + "@babel/helper-annotate-as-pure" "^7.10.4" | ||
| 192 | + "@babel/helper-wrap-function" "^7.10.4" | ||
| 193 | + "@babel/template" "^7.10.4" | ||
| 194 | + "@babel/traverse" "^7.10.4" | ||
| 195 | + "@babel/types" "^7.10.4" | ||
| 196 | + | ||
| 197 | +"@babel/helper-replace-supers@^7.10.4": | ||
| 198 | + version "7.10.4" | ||
| 199 | + resolved "https://registry.npm.taobao.org/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" | ||
| 200 | + integrity sha1-1YXNk4jqBuYDHkzUS2cTy+rZ5s8= | ||
| 201 | + dependencies: | ||
| 202 | + "@babel/helper-member-expression-to-functions" "^7.10.4" | ||
| 203 | + "@babel/helper-optimise-call-expression" "^7.10.4" | ||
| 204 | + "@babel/traverse" "^7.10.4" | ||
| 205 | + "@babel/types" "^7.10.4" | ||
| 206 | + | ||
| 207 | +"@babel/helper-simple-access@^7.10.4": | ||
| 208 | + version "7.10.4" | ||
| 209 | + resolved "https://registry.npm.taobao.org/@babel/helper-simple-access/download/@babel/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" | ||
| 210 | + integrity sha1-D1zNopRSd6KnotOoIeFTle3PNGE= | ||
| 211 | + dependencies: | ||
| 212 | + "@babel/template" "^7.10.4" | ||
| 213 | + "@babel/types" "^7.10.4" | ||
| 214 | + | ||
| 215 | +"@babel/helper-split-export-declaration@^7.10.4": | ||
| 216 | + version "7.10.4" | ||
| 217 | + resolved "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1" | ||
| 218 | + integrity sha1-LHBXbqo7VgmyTLmdsoiMw/xCUdE= | ||
| 219 | + dependencies: | ||
| 220 | + "@babel/types" "^7.10.4" | ||
| 221 | + | ||
| 222 | +"@babel/helper-validator-identifier@^7.10.4": | ||
| 223 | + version "7.10.4" | ||
| 224 | + resolved "https://registry.npm.taobao.org/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.10.4.tgz?cache=0&sync_timestamp=1593521090675&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" | ||
| 225 | + integrity sha1-p4x6clHgH2FlEtMbEK3PUq2l4NI= | ||
| 226 | + | ||
| 227 | +"@babel/helper-wrap-function@^7.10.4": | ||
| 228 | + version "7.10.4" | ||
| 229 | + resolved "https://registry.npm.taobao.org/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" | ||
| 230 | + integrity sha1-im9wHqsP8592W1oc/vQJmQ5iS4c= | ||
| 231 | + dependencies: | ||
| 232 | + "@babel/helper-function-name" "^7.10.4" | ||
| 233 | + "@babel/template" "^7.10.4" | ||
| 234 | + "@babel/traverse" "^7.10.4" | ||
| 235 | + "@babel/types" "^7.10.4" | ||
| 236 | + | ||
| 237 | +"@babel/helpers@^7.10.4": | ||
| 238 | + version "7.10.4" | ||
| 239 | + resolved "https://registry.npm.taobao.org/@babel/helpers/download/@babel/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" | ||
| 240 | + integrity sha1-Kr6w1yGv98Cpc3a54fb2XXpHUEQ= | ||
| 241 | + dependencies: | ||
| 242 | + "@babel/template" "^7.10.4" | ||
| 243 | + "@babel/traverse" "^7.10.4" | ||
| 244 | + "@babel/types" "^7.10.4" | ||
| 245 | + | ||
| 246 | +"@babel/highlight@^7.10.4": | ||
| 247 | + version "7.10.4" | ||
| 248 | + resolved "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.10.4.tgz?cache=0&sync_timestamp=1593521118780&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" | ||
| 249 | + integrity sha1-fRvf1ldTU4+r5sOFls23bZrGAUM= | ||
| 250 | + dependencies: | ||
| 251 | + "@babel/helper-validator-identifier" "^7.10.4" | ||
| 252 | + chalk "^2.0.0" | ||
| 253 | + js-tokens "^4.0.0" | ||
| 191 | 254 | ||
| 192 | -"@babel/helper-split-export-declaration@^7.4.4": | ||
| 193 | - version "7.4.4" | ||
| 194 | - resolved "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" | ||
| 195 | - integrity sha1-/5SJSjQL549T8GrwOLIFxJ2ZNnc= | ||
| 196 | - dependencies: | ||
| 197 | - "@babel/types" "^7.4.4" | 255 | +"@babel/parser@^7.10.4": |
| 256 | + version "7.10.4" | ||
| 257 | + resolved "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.10.4.tgz?cache=0&sync_timestamp=1593521090327&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.10.4.tgz#9eedf27e1998d87739fb5028a5120557c06a1a64" | ||
| 258 | + integrity sha1-nu3yfhmY2Hc5+1AopRIFV8BqGmQ= | ||
| 198 | 259 | ||
| 199 | -"@babel/helper-wrap-function@^7.1.0": | ||
| 200 | - version "7.2.0" | ||
| 201 | - resolved "https://registry.npm.taobao.org/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" | ||
| 202 | - integrity sha1-xOABJEV2nigVtVKW6tQ6lYVJ9vo= | 260 | +"@babel/plugin-proposal-async-generator-functions@^7.10.4": |
| 261 | + version "7.10.4" | ||
| 262 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.10.4.tgz?cache=0&sync_timestamp=1593521231856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-async-generator-functions%2Fdownload%2F%40babel%2Fplugin-proposal-async-generator-functions-7.10.4.tgz#4b65abb3d9bacc6c657aaa413e56696f9f170fc6" | ||
| 263 | + integrity sha1-S2Wrs9m6zGxleqpBPlZpb58XD8Y= | ||
| 203 | dependencies: | 264 | dependencies: |
| 204 | - "@babel/helper-function-name" "^7.1.0" | ||
| 205 | - "@babel/template" "^7.1.0" | ||
| 206 | - "@babel/traverse" "^7.1.0" | ||
| 207 | - "@babel/types" "^7.2.0" | 265 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 266 | + "@babel/helper-remap-async-to-generator" "^7.10.4" | ||
| 267 | + "@babel/plugin-syntax-async-generators" "^7.8.0" | ||
| 208 | 268 | ||
| 209 | -"@babel/helpers@^7.6.2": | ||
| 210 | - version "7.6.2" | ||
| 211 | - resolved "https://registry.npm.taobao.org/@babel/helpers/download/@babel/helpers-7.6.2.tgz#681ffe489ea4dcc55f23ce469e58e59c1c045153" | ||
| 212 | - integrity sha1-aB/+SJ6k3MVfI85GnljlnBwEUVM= | 269 | +"@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.8.3": |
| 270 | + version "7.10.4" | ||
| 271 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.10.4.tgz?cache=0&sync_timestamp=1593522874177&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-class-properties%2Fdownload%2F%40babel%2Fplugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" | ||
| 272 | + integrity sha1-ozv2Mto5ClnHqMVwBF0RFc13iAc= | ||
| 213 | dependencies: | 273 | dependencies: |
| 214 | - "@babel/template" "^7.6.0" | ||
| 215 | - "@babel/traverse" "^7.6.2" | ||
| 216 | - "@babel/types" "^7.6.0" | 274 | + "@babel/helper-create-class-features-plugin" "^7.10.4" |
| 275 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 217 | 276 | ||
| 218 | -"@babel/highlight@^7.0.0": | ||
| 219 | - version "7.5.0" | ||
| 220 | - resolved "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" | ||
| 221 | - integrity sha1-VtETEr2SSPphlZHQJHK+boyzJUA= | 277 | +"@babel/plugin-proposal-decorators@^7.8.3": |
| 278 | + version "7.10.4" | ||
| 279 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.10.4.tgz?cache=0&sync_timestamp=1593521279440&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-decorators%2Fdownload%2F%40babel%2Fplugin-proposal-decorators-7.10.4.tgz#fe20ef10cc73f386f70910fca48798041cd357c7" | ||
| 280 | + integrity sha1-/iDvEMxz84b3CRD8pIeYBBzTV8c= | ||
| 222 | dependencies: | 281 | dependencies: |
| 223 | - chalk "^2.0.0" | ||
| 224 | - esutils "^2.0.2" | ||
| 225 | - js-tokens "^4.0.0" | 282 | + "@babel/helper-create-class-features-plugin" "^7.10.4" |
| 283 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 284 | + "@babel/plugin-syntax-decorators" "^7.10.4" | ||
| 226 | 285 | ||
| 227 | -"@babel/parser@^7.6.0", "@babel/parser@^7.6.3", "@babel/parser@^7.6.4": | ||
| 228 | - version "7.6.4" | ||
| 229 | - resolved "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.6.4.tgz?cache=0&sync_timestamp=1570717961605&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.6.4.tgz#cb9b36a7482110282d5cb6dd424ec9262b473d81" | ||
| 230 | - integrity sha1-y5s2p0ghECgtXLbdQk7JJitHPYE= | ||
| 231 | - | ||
| 232 | -"@babel/plugin-proposal-async-generator-functions@^7.2.0": | ||
| 233 | - version "7.2.0" | ||
| 234 | - resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" | ||
| 235 | - integrity sha1-somzBmadzkrSCwJSiJoVdoydQX4= | 286 | +"@babel/plugin-proposal-dynamic-import@^7.10.4": |
| 287 | + version "7.10.4" | ||
| 288 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.10.4.tgz?cache=0&sync_timestamp=1593521093903&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-dynamic-import%2Fdownload%2F%40babel%2Fplugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" | ||
| 289 | + integrity sha1-uleibLmLN3QenVvKG4sN34KR8X4= | ||
| 236 | dependencies: | 290 | dependencies: |
| 237 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 238 | - "@babel/helper-remap-async-to-generator" "^7.1.0" | ||
| 239 | - "@babel/plugin-syntax-async-generators" "^7.2.0" | 291 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 292 | + "@babel/plugin-syntax-dynamic-import" "^7.8.0" | ||
| 240 | 293 | ||
| 241 | -"@babel/plugin-proposal-class-properties@^7.4.4": | ||
| 242 | - version "7.5.5" | ||
| 243 | - resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.5.5.tgz#a974cfae1e37c3110e71f3c6a2e48b8e71958cd4" | ||
| 244 | - integrity sha1-qXTPrh43wxEOcfPGouSLjnGVjNQ= | 294 | +"@babel/plugin-proposal-json-strings@^7.10.4": |
| 295 | + version "7.10.4" | ||
| 296 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.10.4.tgz?cache=0&sync_timestamp=1593521092651&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-json-strings%2Fdownload%2F%40babel%2Fplugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db" | ||
| 297 | + integrity sha1-WT5ZxjUoFgIzvTIbGuvgggwjQds= | ||
| 245 | dependencies: | 298 | dependencies: |
| 246 | - "@babel/helper-create-class-features-plugin" "^7.5.5" | ||
| 247 | - "@babel/helper-plugin-utils" "^7.0.0" | 299 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 300 | + "@babel/plugin-syntax-json-strings" "^7.8.0" | ||
| 248 | 301 | ||
| 249 | -"@babel/plugin-proposal-decorators@^7.4.4": | ||
| 250 | - version "7.6.0" | ||
| 251 | - resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.6.0.tgz#6659d2572a17d70abd68123e89a12a43d90aa30c" | ||
| 252 | - integrity sha1-ZlnSVyoX1wq9aBI+iaEqQ9kKoww= | 302 | +"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": |
| 303 | + version "7.10.4" | ||
| 304 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz?cache=0&sync_timestamp=1593521095740&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-nullish-coalescing-operator%2Fdownload%2F%40babel%2Fplugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" | ||
| 305 | + integrity sha1-AqfpYfwy5tWy2wZJ4Bv4Dd7n4Eo= | ||
| 253 | dependencies: | 306 | dependencies: |
| 254 | - "@babel/helper-create-class-features-plugin" "^7.6.0" | ||
| 255 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 256 | - "@babel/plugin-syntax-decorators" "^7.2.0" | 307 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 308 | + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" | ||
| 257 | 309 | ||
| 258 | -"@babel/plugin-proposal-dynamic-import@^7.5.0": | ||
| 259 | - version "7.5.0" | ||
| 260 | - resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506" | ||
| 261 | - integrity sha1-5TIgLbSDhyNpGxCme4zlCeOXxQY= | 310 | +"@babel/plugin-proposal-numeric-separator@^7.10.4": |
| 311 | + version "7.10.4" | ||
| 312 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06" | ||
| 313 | + integrity sha1-zhWQ/wplrRKXCmCdeIVemkwa7wY= | ||
| 262 | dependencies: | 314 | dependencies: |
| 263 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 264 | - "@babel/plugin-syntax-dynamic-import" "^7.2.0" | 315 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 316 | + "@babel/plugin-syntax-numeric-separator" "^7.10.4" | ||
| 265 | 317 | ||
| 266 | -"@babel/plugin-proposal-json-strings@^7.2.0": | ||
| 267 | - version "7.2.0" | ||
| 268 | - resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" | ||
| 269 | - integrity sha1-Vo7MRGxhSK5rJn8CVREwiR4p8xc= | 318 | +"@babel/plugin-proposal-object-rest-spread@^7.10.4": |
| 319 | + version "7.10.4" | ||
| 320 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.10.4.tgz#50129ac216b9a6a55b3853fdd923e74bf553a4c0" | ||
| 321 | + integrity sha1-UBKawha5pqVbOFP92SPnS/VTpMA= | ||
| 270 | dependencies: | 322 | dependencies: |
| 271 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 272 | - "@babel/plugin-syntax-json-strings" "^7.2.0" | 323 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 324 | + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" | ||
| 325 | + "@babel/plugin-transform-parameters" "^7.10.4" | ||
| 273 | 326 | ||
| 274 | -"@babel/plugin-proposal-object-rest-spread@^7.6.2": | ||
| 275 | - version "7.6.2" | ||
| 276 | - resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096" | ||
| 277 | - integrity sha1-j/zMjzplRen3iYi2v0/ogbiOgJY= | 327 | +"@babel/plugin-proposal-optional-catch-binding@^7.10.4": |
| 328 | + version "7.10.4" | ||
| 329 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.10.4.tgz?cache=0&sync_timestamp=1593521098655&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-optional-catch-binding%2Fdownload%2F%40babel%2Fplugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd" | ||
| 330 | + integrity sha1-Mck4MJ0kp4pJ1o/av/qoY3WFVN0= | ||
| 278 | dependencies: | 331 | dependencies: |
| 279 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 280 | - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" | 332 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 333 | + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" | ||
| 281 | 334 | ||
| 282 | -"@babel/plugin-proposal-optional-catch-binding@^7.2.0": | ||
| 283 | - version "7.2.0" | ||
| 284 | - resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" | ||
| 285 | - integrity sha1-E12B7baKCB5V5W7EhUHs6AZcOPU= | 335 | +"@babel/plugin-proposal-optional-chaining@^7.10.4": |
| 336 | + version "7.10.4" | ||
| 337 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.10.4.tgz?cache=0&sync_timestamp=1593522924461&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-optional-chaining%2Fdownload%2F%40babel%2Fplugin-proposal-optional-chaining-7.10.4.tgz#750f1255e930a1f82d8cdde45031f81a0d0adff7" | ||
| 338 | + integrity sha1-dQ8SVekwofgtjN3kUDH4Gg0K3/c= | ||
| 286 | dependencies: | 339 | dependencies: |
| 287 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 288 | - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" | 340 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 341 | + "@babel/plugin-syntax-optional-chaining" "^7.8.0" | ||
| 289 | 342 | ||
| 290 | -"@babel/plugin-proposal-unicode-property-regex@^7.6.2": | ||
| 291 | - version "7.6.2" | ||
| 292 | - resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-unicode-property-regex/download/@babel/plugin-proposal-unicode-property-regex-7.6.2.tgz#05413762894f41bfe42b9a5e80919bd575dcc802" | ||
| 293 | - integrity sha1-BUE3YolPQb/kK5pegJGb1XXcyAI= | 343 | +"@babel/plugin-proposal-private-methods@^7.10.4": |
| 344 | + version "7.10.4" | ||
| 345 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.10.4.tgz?cache=0&sync_timestamp=1593521235156&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-private-methods%2Fdownload%2F%40babel%2Fplugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" | ||
| 346 | + integrity sha1-sWDZcrj9ulx9ERoUX8jEIfwqaQk= | ||
| 294 | dependencies: | 347 | dependencies: |
| 295 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 296 | - "@babel/helper-regex" "^7.4.4" | ||
| 297 | - regexpu-core "^4.6.0" | 348 | + "@babel/helper-create-class-features-plugin" "^7.10.4" |
| 349 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 298 | 350 | ||
| 299 | -"@babel/plugin-syntax-async-generators@^7.2.0": | ||
| 300 | - version "7.2.0" | ||
| 301 | - resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" | ||
| 302 | - integrity sha1-aeHw2zTG9aDPfiszI78VmnbIy38= | 351 | +"@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": |
| 352 | + version "7.10.4" | ||
| 353 | + resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-unicode-property-regex/download/@babel/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d" | ||
| 354 | + integrity sha1-RIPNpTBBzjQTt/4vAAImZd36p10= | ||
| 303 | dependencies: | 355 | dependencies: |
| 304 | - "@babel/helper-plugin-utils" "^7.0.0" | 356 | + "@babel/helper-create-regexp-features-plugin" "^7.10.4" |
| 357 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 305 | 358 | ||
| 306 | -"@babel/plugin-syntax-decorators@^7.2.0": | ||
| 307 | - version "7.2.0" | ||
| 308 | - resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-decorators/download/@babel/plugin-syntax-decorators-7.2.0.tgz#c50b1b957dcc69e4b1127b65e1c33eef61570c1b" | ||
| 309 | - integrity sha1-xQsblX3MaeSxEntl4cM+72FXDBs= | 359 | +"@babel/plugin-syntax-async-generators@^7.8.0": |
| 360 | + version "7.8.4" | ||
| 361 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" | ||
| 362 | + integrity sha1-qYP7Gusuw/btBCohD2QOkOeG/g0= | ||
| 310 | dependencies: | 363 | dependencies: |
| 311 | - "@babel/helper-plugin-utils" "^7.0.0" | 364 | + "@babel/helper-plugin-utils" "^7.8.0" |
| 312 | 365 | ||
| 313 | -"@babel/plugin-syntax-dynamic-import@^7.0.0", "@babel/plugin-syntax-dynamic-import@^7.2.0": | ||
| 314 | - version "7.2.0" | ||
| 315 | - resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" | ||
| 316 | - integrity sha1-acFZ/69JmBIhYa2OvF5tH1XfhhI= | 366 | +"@babel/plugin-syntax-class-properties@^7.10.4": |
| 367 | + version "7.10.4" | ||
| 368 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.10.4.tgz?cache=0&sync_timestamp=1593521094537&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-class-properties%2Fdownload%2F%40babel%2Fplugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" | ||
| 369 | + integrity sha1-ZkTmoLqlWmH54yMfbJ7rbuRsEkw= | ||
| 317 | dependencies: | 370 | dependencies: |
| 318 | - "@babel/helper-plugin-utils" "^7.0.0" | 371 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 319 | 372 | ||
| 320 | -"@babel/plugin-syntax-json-strings@^7.2.0": | ||
| 321 | - version "7.2.0" | ||
| 322 | - resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" | ||
| 323 | - integrity sha1-cr0T9v/h0lk4Ep0qGGsR/WKVFHA= | 373 | +"@babel/plugin-syntax-decorators@^7.10.4": |
| 374 | + version "7.10.4" | ||
| 375 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-decorators/download/@babel/plugin-syntax-decorators-7.10.4.tgz?cache=0&sync_timestamp=1593522820650&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-decorators%2Fdownload%2F%40babel%2Fplugin-syntax-decorators-7.10.4.tgz#6853085b2c429f9d322d02f5a635018cdeb2360c" | ||
| 376 | + integrity sha1-aFMIWyxCn50yLQL1pjUBjN6yNgw= | ||
| 324 | dependencies: | 377 | dependencies: |
| 325 | - "@babel/helper-plugin-utils" "^7.0.0" | 378 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 326 | 379 | ||
| 327 | -"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.2.0": | ||
| 328 | - version "7.2.0" | ||
| 329 | - resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" | ||
| 330 | - integrity sha1-C4WjtLx830zEuL8jYzW5B8oi58c= | 380 | +"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": |
| 381 | + version "7.8.3" | ||
| 382 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" | ||
| 383 | + integrity sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM= | ||
| 331 | dependencies: | 384 | dependencies: |
| 332 | - "@babel/helper-plugin-utils" "^7.0.0" | 385 | + "@babel/helper-plugin-utils" "^7.8.0" |
| 333 | 386 | ||
| 334 | -"@babel/plugin-syntax-object-rest-spread@^7.2.0": | ||
| 335 | - version "7.2.0" | ||
| 336 | - resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" | ||
| 337 | - integrity sha1-O3o+czUQxX6CC5FCpleayLDfrS4= | 387 | +"@babel/plugin-syntax-json-strings@^7.8.0": |
| 388 | + version "7.8.3" | ||
| 389 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" | ||
| 390 | + integrity sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo= | ||
| 338 | dependencies: | 391 | dependencies: |
| 339 | - "@babel/helper-plugin-utils" "^7.0.0" | 392 | + "@babel/helper-plugin-utils" "^7.8.0" |
| 340 | 393 | ||
| 341 | -"@babel/plugin-syntax-optional-catch-binding@^7.2.0": | ||
| 342 | - version "7.2.0" | ||
| 343 | - resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" | ||
| 344 | - integrity sha1-qUAT1u2okI3+akd+f57ahWVuz1w= | 394 | +"@babel/plugin-syntax-jsx@^7.2.0", "@babel/plugin-syntax-jsx@^7.8.3": |
| 395 | + version "7.10.4" | ||
| 396 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.10.4.tgz?cache=0&sync_timestamp=1593522976735&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" | ||
| 397 | + integrity sha1-Oauq48v3EMQ3PYQpSE5rohNAFmw= | ||
| 345 | dependencies: | 398 | dependencies: |
| 346 | - "@babel/helper-plugin-utils" "^7.0.0" | 399 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 347 | 400 | ||
| 348 | -"@babel/plugin-transform-arrow-functions@^7.2.0": | ||
| 349 | - version "7.2.0" | ||
| 350 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" | ||
| 351 | - integrity sha1-mur75Nb/xlY7+Pg3IJFijwB3lVA= | 401 | +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": |
| 402 | + version "7.8.3" | ||
| 403 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz?cache=0&sync_timestamp=1578952518069&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-nullish-coalescing-operator%2Fdownload%2F%40babel%2Fplugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" | ||
| 404 | + integrity sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak= | ||
| 352 | dependencies: | 405 | dependencies: |
| 353 | - "@babel/helper-plugin-utils" "^7.0.0" | 406 | + "@babel/helper-plugin-utils" "^7.8.0" |
| 354 | 407 | ||
| 355 | -"@babel/plugin-transform-async-to-generator@^7.5.0": | ||
| 356 | - version "7.5.0" | ||
| 357 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-async-to-generator/download/@babel/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e" | ||
| 358 | - integrity sha1-iaOEigFmYjtbxIEWS1k2q5R+iH4= | 408 | +"@babel/plugin-syntax-numeric-separator@^7.10.4": |
| 409 | + version "7.10.4" | ||
| 410 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz?cache=0&sync_timestamp=1593521791666&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-numeric-separator%2Fdownload%2F%40babel%2Fplugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" | ||
| 411 | + integrity sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c= | ||
| 359 | dependencies: | 412 | dependencies: |
| 360 | - "@babel/helper-module-imports" "^7.0.0" | ||
| 361 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 362 | - "@babel/helper-remap-async-to-generator" "^7.1.0" | 413 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 363 | 414 | ||
| 364 | -"@babel/plugin-transform-block-scoped-functions@^7.2.0": | ||
| 365 | - version "7.2.0" | ||
| 366 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" | ||
| 367 | - integrity sha1-XTzBHo1d3XUqpkyRSNDbbLef0ZA= | 415 | +"@babel/plugin-syntax-object-rest-spread@^7.8.0": |
| 416 | + version "7.8.3" | ||
| 417 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz?cache=0&sync_timestamp=1578950070697&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-object-rest-spread%2Fdownload%2F%40babel%2Fplugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" | ||
| 418 | + integrity sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE= | ||
| 368 | dependencies: | 419 | dependencies: |
| 369 | - "@babel/helper-plugin-utils" "^7.0.0" | 420 | + "@babel/helper-plugin-utils" "^7.8.0" |
| 370 | 421 | ||
| 371 | -"@babel/plugin-transform-block-scoping@^7.6.3": | ||
| 372 | - version "7.6.3" | ||
| 373 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.6.3.tgz#6e854e51fbbaa84351b15d4ddafe342f3a5d542a" | ||
| 374 | - integrity sha1-boVOUfu6qENRsV1N2v40LzpdVCo= | 422 | +"@babel/plugin-syntax-optional-catch-binding@^7.8.0": |
| 423 | + version "7.8.3" | ||
| 424 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" | ||
| 425 | + integrity sha1-YRGiZbz7Ag6579D9/X0mQCue1sE= | ||
| 375 | dependencies: | 426 | dependencies: |
| 376 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 377 | - lodash "^4.17.13" | 427 | + "@babel/helper-plugin-utils" "^7.8.0" |
| 378 | 428 | ||
| 379 | -"@babel/plugin-transform-classes@^7.5.5": | ||
| 380 | - version "7.5.5" | ||
| 381 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" | ||
| 382 | - integrity sha1-0JQpnZvWgKFKKg7a44MFrWD7Tek= | 429 | +"@babel/plugin-syntax-optional-chaining@^7.8.0": |
| 430 | + version "7.8.3" | ||
| 431 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz?cache=0&sync_timestamp=1578952519472&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-optional-chaining%2Fdownload%2F%40babel%2Fplugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" | ||
| 432 | + integrity sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io= | ||
| 383 | dependencies: | 433 | dependencies: |
| 384 | - "@babel/helper-annotate-as-pure" "^7.0.0" | ||
| 385 | - "@babel/helper-define-map" "^7.5.5" | ||
| 386 | - "@babel/helper-function-name" "^7.1.0" | ||
| 387 | - "@babel/helper-optimise-call-expression" "^7.0.0" | ||
| 388 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 389 | - "@babel/helper-replace-supers" "^7.5.5" | ||
| 390 | - "@babel/helper-split-export-declaration" "^7.4.4" | ||
| 391 | - globals "^11.1.0" | 434 | + "@babel/helper-plugin-utils" "^7.8.0" |
| 392 | 435 | ||
| 393 | -"@babel/plugin-transform-computed-properties@^7.2.0": | ||
| 394 | - version "7.2.0" | ||
| 395 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" | ||
| 396 | - integrity sha1-g6ffamWIZbHI9kHVEMbzryICFto= | 436 | +"@babel/plugin-syntax-top-level-await@^7.10.4": |
| 437 | + version "7.10.4" | ||
| 438 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.10.4.tgz?cache=0&sync_timestamp=1593521242737&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-top-level-await%2Fdownload%2F%40babel%2Fplugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d" | ||
| 439 | + integrity sha1-S764kXtU/PdoNk4KgfVg4zo+9X0= | ||
| 397 | dependencies: | 440 | dependencies: |
| 398 | - "@babel/helper-plugin-utils" "^7.0.0" | 441 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 399 | 442 | ||
| 400 | -"@babel/plugin-transform-destructuring@^7.6.0": | ||
| 401 | - version "7.6.0" | ||
| 402 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.6.0.tgz#44bbe08b57f4480094d57d9ffbcd96d309075ba6" | ||
| 403 | - integrity sha1-RLvgi1f0SACU1X2f+82W0wkHW6Y= | 443 | +"@babel/plugin-transform-arrow-functions@^7.10.4": |
| 444 | + version "7.10.4" | ||
| 445 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" | ||
| 446 | + integrity sha1-4ilg135pfHT0HFAdRNc9v4pqZM0= | ||
| 404 | dependencies: | 447 | dependencies: |
| 405 | - "@babel/helper-plugin-utils" "^7.0.0" | 448 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 406 | 449 | ||
| 407 | -"@babel/plugin-transform-dotall-regex@^7.6.2": | ||
| 408 | - version "7.6.2" | ||
| 409 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.6.2.tgz#44abb948b88f0199a627024e1508acaf8dc9b2f9" | ||
| 410 | - integrity sha1-RKu5SLiPAZmmJwJOFQisr43Jsvk= | 450 | +"@babel/plugin-transform-async-to-generator@^7.10.4": |
| 451 | + version "7.10.4" | ||
| 452 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-async-to-generator/download/@babel/plugin-transform-async-to-generator-7.10.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-async-to-generator%2Fdownload%2F%40babel%2Fplugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37" | ||
| 453 | + integrity sha1-QaUBfknrbzzak5KlHu8pQFskWjc= | ||
| 411 | dependencies: | 454 | dependencies: |
| 412 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 413 | - "@babel/helper-regex" "^7.4.4" | ||
| 414 | - regexpu-core "^4.6.0" | 455 | + "@babel/helper-module-imports" "^7.10.4" |
| 456 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 457 | + "@babel/helper-remap-async-to-generator" "^7.10.4" | ||
| 415 | 458 | ||
| 416 | -"@babel/plugin-transform-duplicate-keys@^7.5.0": | ||
| 417 | - version "7.5.0" | ||
| 418 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853" | ||
| 419 | - integrity sha1-xdv1EGv4TN9pEiLAl0wSsd+TGFM= | 459 | +"@babel/plugin-transform-block-scoped-functions@^7.10.4": |
| 460 | + version "7.10.4" | ||
| 461 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.10.4.tgz?cache=0&sync_timestamp=1593521867144&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-block-scoped-functions%2Fdownload%2F%40babel%2Fplugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8" | ||
| 462 | + integrity sha1-GvpZV0T3XkOpGvc7DZmOz+Trwug= | ||
| 420 | dependencies: | 463 | dependencies: |
| 421 | - "@babel/helper-plugin-utils" "^7.0.0" | 464 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 422 | 465 | ||
| 423 | -"@babel/plugin-transform-exponentiation-operator@^7.2.0": | ||
| 424 | - version "7.2.0" | ||
| 425 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" | ||
| 426 | - integrity sha1-pjhoKJ5bQAf3BU1GSRr1FDV2YAg= | 466 | +"@babel/plugin-transform-block-scoping@^7.10.4": |
| 467 | + version "7.10.4" | ||
| 468 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.10.4.tgz?cache=0&sync_timestamp=1593522924836&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-block-scoping%2Fdownload%2F%40babel%2Fplugin-transform-block-scoping-7.10.4.tgz#a670d1364bb5019a621b9ea2001482876d734787" | ||
| 469 | + integrity sha1-pnDRNku1AZpiG56iABSCh21zR4c= | ||
| 427 | dependencies: | 470 | dependencies: |
| 428 | - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" | ||
| 429 | - "@babel/helper-plugin-utils" "^7.0.0" | 471 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 472 | + lodash "^4.17.13" | ||
| 430 | 473 | ||
| 431 | -"@babel/plugin-transform-for-of@^7.4.4": | ||
| 432 | - version "7.4.4" | ||
| 433 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" | ||
| 434 | - integrity sha1-Amf8c14kyAi6FzhmxsTRRA/DxVY= | ||
| 435 | - dependencies: | ||
| 436 | - "@babel/helper-plugin-utils" "^7.0.0" | 474 | +"@babel/plugin-transform-classes@^7.10.4": |
| 475 | + version "7.10.4" | ||
| 476 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.10.4.tgz?cache=0&sync_timestamp=1593521236444&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-classes%2Fdownload%2F%40babel%2Fplugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" | ||
| 477 | + integrity sha1-QFE2rys+IYvEoZJiKLyRerGgrcc= | ||
| 478 | + dependencies: | ||
| 479 | + "@babel/helper-annotate-as-pure" "^7.10.4" | ||
| 480 | + "@babel/helper-define-map" "^7.10.4" | ||
| 481 | + "@babel/helper-function-name" "^7.10.4" | ||
| 482 | + "@babel/helper-optimise-call-expression" "^7.10.4" | ||
| 483 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 484 | + "@babel/helper-replace-supers" "^7.10.4" | ||
| 485 | + "@babel/helper-split-export-declaration" "^7.10.4" | ||
| 486 | + globals "^11.1.0" | ||
| 437 | 487 | ||
| 438 | -"@babel/plugin-transform-function-name@^7.4.4": | ||
| 439 | - version "7.4.4" | ||
| 440 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" | ||
| 441 | - integrity sha1-4UNhFquwYQwiWQlISHVKxSMJIq0= | 488 | +"@babel/plugin-transform-computed-properties@^7.10.4": |
| 489 | + version "7.10.4" | ||
| 490 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb" | ||
| 491 | + integrity sha1-ne2DqBboLe0o1S1LTsvdgQzfwOs= | ||
| 442 | dependencies: | 492 | dependencies: |
| 443 | - "@babel/helper-function-name" "^7.1.0" | ||
| 444 | - "@babel/helper-plugin-utils" "^7.0.0" | 493 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 445 | 494 | ||
| 446 | -"@babel/plugin-transform-literals@^7.2.0": | ||
| 447 | - version "7.2.0" | ||
| 448 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" | ||
| 449 | - integrity sha1-aQNT6B+SZ9rU/Yz9d+r6hqulPqE= | 495 | +"@babel/plugin-transform-destructuring@^7.10.4": |
| 496 | + version "7.10.4" | ||
| 497 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" | ||
| 498 | + integrity sha1-cN3Ss9G+qD0BUJ6bsl3bOnT8heU= | ||
| 450 | dependencies: | 499 | dependencies: |
| 451 | - "@babel/helper-plugin-utils" "^7.0.0" | 500 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 452 | 501 | ||
| 453 | -"@babel/plugin-transform-member-expression-literals@^7.2.0": | ||
| 454 | - version "7.2.0" | ||
| 455 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" | ||
| 456 | - integrity sha1-+hCqXFiiy2r88sn/qMtNiz1Imi0= | 502 | +"@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4": |
| 503 | + version "7.10.4" | ||
| 504 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee" | ||
| 505 | + integrity sha1-RpwgYhBcHragQOr0+sS0iAeDle4= | ||
| 457 | dependencies: | 506 | dependencies: |
| 458 | - "@babel/helper-plugin-utils" "^7.0.0" | 507 | + "@babel/helper-create-regexp-features-plugin" "^7.10.4" |
| 508 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 459 | 509 | ||
| 460 | -"@babel/plugin-transform-modules-amd@^7.5.0": | ||
| 461 | - version "7.5.0" | ||
| 462 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91" | ||
| 463 | - integrity sha1-7wBDXUbaCllhqnKKHS7P8GPk+5E= | 510 | +"@babel/plugin-transform-duplicate-keys@^7.10.4": |
| 511 | + version "7.10.4" | ||
| 512 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47" | ||
| 513 | + integrity sha1-aX5Qyf7hQ4D+hD0fMGspVhdDHkc= | ||
| 464 | dependencies: | 514 | dependencies: |
| 465 | - "@babel/helper-module-transforms" "^7.1.0" | ||
| 466 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 467 | - babel-plugin-dynamic-import-node "^2.3.0" | 515 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 468 | 516 | ||
| 469 | -"@babel/plugin-transform-modules-commonjs@^7.6.0": | ||
| 470 | - version "7.6.0" | ||
| 471 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.6.0.tgz#39dfe957de4420445f1fcf88b68a2e4aa4515486" | ||
| 472 | - integrity sha1-Od/pV95EIERfH8+ItoouSqRRVIY= | 517 | +"@babel/plugin-transform-exponentiation-operator@^7.10.4": |
| 518 | + version "7.10.4" | ||
| 519 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.10.4.tgz?cache=0&sync_timestamp=1593521230232&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-exponentiation-operator%2Fdownload%2F%40babel%2Fplugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e" | ||
| 520 | + integrity sha1-WuM4xX+M9AAb2zVgeuZrktZlry4= | ||
| 473 | dependencies: | 521 | dependencies: |
| 474 | - "@babel/helper-module-transforms" "^7.4.4" | ||
| 475 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 476 | - "@babel/helper-simple-access" "^7.1.0" | ||
| 477 | - babel-plugin-dynamic-import-node "^2.3.0" | 522 | + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" |
| 523 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 478 | 524 | ||
| 479 | -"@babel/plugin-transform-modules-systemjs@^7.5.0": | ||
| 480 | - version "7.5.0" | ||
| 481 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249" | ||
| 482 | - integrity sha1-51JmoT75QgLbKgYgl3dW9R1S0kk= | 525 | +"@babel/plugin-transform-for-of@^7.10.4": |
| 526 | + version "7.10.4" | ||
| 527 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" | ||
| 528 | + integrity sha1-wIiS6IGdOl2ykDGxFa9RHbv+uuk= | ||
| 483 | dependencies: | 529 | dependencies: |
| 484 | - "@babel/helper-hoist-variables" "^7.4.4" | ||
| 485 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 486 | - babel-plugin-dynamic-import-node "^2.3.0" | 530 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 487 | 531 | ||
| 488 | -"@babel/plugin-transform-modules-umd@^7.2.0": | ||
| 489 | - version "7.2.0" | ||
| 490 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" | ||
| 491 | - integrity sha1-dnjOdRafCHe46yI1U4wHQmjdAa4= | 532 | +"@babel/plugin-transform-function-name@^7.10.4": |
| 533 | + version "7.10.4" | ||
| 534 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7" | ||
| 535 | + integrity sha1-akZ4gOD8ljhRS6NpERgR3b4mRLc= | ||
| 492 | dependencies: | 536 | dependencies: |
| 493 | - "@babel/helper-module-transforms" "^7.1.0" | ||
| 494 | - "@babel/helper-plugin-utils" "^7.0.0" | 537 | + "@babel/helper-function-name" "^7.10.4" |
| 538 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 495 | 539 | ||
| 496 | -"@babel/plugin-transform-named-capturing-groups-regex@^7.6.3": | ||
| 497 | - version "7.6.3" | ||
| 498 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.6.3.tgz#aaa6e409dd4fb2e50b6e2a91f7e3a3149dbce0cf" | ||
| 499 | - integrity sha1-qqbkCd1PsuULbiqR9+OjFJ284M8= | 540 | +"@babel/plugin-transform-literals@^7.10.4": |
| 541 | + version "7.10.4" | ||
| 542 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.10.4.tgz?cache=0&sync_timestamp=1593522494432&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-literals%2Fdownload%2F%40babel%2Fplugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c" | ||
| 543 | + integrity sha1-n0K6CEEQChNfInEtDjkcRi9XHzw= | ||
| 500 | dependencies: | 544 | dependencies: |
| 501 | - regexpu-core "^4.6.0" | 545 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 502 | 546 | ||
| 503 | -"@babel/plugin-transform-new-target@^7.4.4": | ||
| 504 | - version "7.4.4" | ||
| 505 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" | ||
| 506 | - integrity sha1-GNEgQ4sMye6VpH8scryXaPvtYKU= | 547 | +"@babel/plugin-transform-member-expression-literals@^7.10.4": |
| 548 | + version "7.10.4" | ||
| 549 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.10.4.tgz?cache=0&sync_timestamp=1593522925001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-member-expression-literals%2Fdownload%2F%40babel%2Fplugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7" | ||
| 550 | + integrity sha1-sexE/PGVr8uNssYs2OVRyIG6+Lc= | ||
| 507 | dependencies: | 551 | dependencies: |
| 508 | - "@babel/helper-plugin-utils" "^7.0.0" | 552 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 509 | 553 | ||
| 510 | -"@babel/plugin-transform-object-super@^7.5.5": | ||
| 511 | - version "7.5.5" | ||
| 512 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9" | ||
| 513 | - integrity sha1-xwAh34NAc8ZethO4Z5zEo4HRqfk= | 554 | +"@babel/plugin-transform-modules-amd@^7.10.4": |
| 555 | + version "7.10.4" | ||
| 556 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.10.4.tgz#cb407c68b862e4c1d13a2fc738c7ec5ed75fc520" | ||
| 557 | + integrity sha1-y0B8aLhi5MHROi/HOMfsXtdfxSA= | ||
| 514 | dependencies: | 558 | dependencies: |
| 515 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 516 | - "@babel/helper-replace-supers" "^7.5.5" | 559 | + "@babel/helper-module-transforms" "^7.10.4" |
| 560 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 561 | + babel-plugin-dynamic-import-node "^2.3.3" | ||
| 517 | 562 | ||
| 518 | -"@babel/plugin-transform-parameters@^7.4.4": | ||
| 519 | - version "7.4.4" | ||
| 520 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" | ||
| 521 | - integrity sha1-dVbPA/MYvScZ/kySLS2Ai+VXHhY= | 563 | +"@babel/plugin-transform-modules-commonjs@^7.10.4": |
| 564 | + version "7.10.4" | ||
| 565 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0" | ||
| 566 | + integrity sha1-ZmZ8Pu2h6/eJbUHx8WsXEFovvKA= | ||
| 522 | dependencies: | 567 | dependencies: |
| 523 | - "@babel/helper-call-delegate" "^7.4.4" | ||
| 524 | - "@babel/helper-get-function-arity" "^7.0.0" | ||
| 525 | - "@babel/helper-plugin-utils" "^7.0.0" | 568 | + "@babel/helper-module-transforms" "^7.10.4" |
| 569 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 570 | + "@babel/helper-simple-access" "^7.10.4" | ||
| 571 | + babel-plugin-dynamic-import-node "^2.3.3" | ||
| 526 | 572 | ||
| 527 | -"@babel/plugin-transform-property-literals@^7.2.0": | ||
| 528 | - version "7.2.0" | ||
| 529 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" | ||
| 530 | - integrity sha1-A+M/ZT9bJcTrVyyYuUhQVbOJ6QU= | 573 | +"@babel/plugin-transform-modules-systemjs@^7.10.4": |
| 574 | + version "7.10.4" | ||
| 575 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.10.4.tgz#8f576afd943ac2f789b35ded0a6312f929c633f9" | ||
| 576 | + integrity sha1-j1dq/ZQ6wveJs13tCmMS+SnGM/k= | ||
| 531 | dependencies: | 577 | dependencies: |
| 532 | - "@babel/helper-plugin-utils" "^7.0.0" | 578 | + "@babel/helper-hoist-variables" "^7.10.4" |
| 579 | + "@babel/helper-module-transforms" "^7.10.4" | ||
| 580 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 581 | + babel-plugin-dynamic-import-node "^2.3.3" | ||
| 533 | 582 | ||
| 534 | -"@babel/plugin-transform-regenerator@^7.4.5": | ||
| 535 | - version "7.4.5" | ||
| 536 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" | ||
| 537 | - integrity sha1-Yp3IJRLFXO4BNB+ye9/LIQNUaA8= | 583 | +"@babel/plugin-transform-modules-umd@^7.10.4": |
| 584 | + version "7.10.4" | ||
| 585 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e" | ||
| 586 | + integrity sha1-moSB/oG4JGVLOgtl2j34nz0hg54= | ||
| 538 | dependencies: | 587 | dependencies: |
| 539 | - regenerator-transform "^0.14.0" | 588 | + "@babel/helper-module-transforms" "^7.10.4" |
| 589 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 540 | 590 | ||
| 541 | -"@babel/plugin-transform-reserved-words@^7.2.0": | ||
| 542 | - version "7.2.0" | ||
| 543 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" | ||
| 544 | - integrity sha1-R5Kvh8mYpJNnWX0H/t8CY20uFjQ= | 591 | +"@babel/plugin-transform-named-capturing-groups-regex@^7.10.4": |
| 592 | + version "7.10.4" | ||
| 593 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6" | ||
| 594 | + integrity sha1-eLTZeIELbzvPA/njGPL8DtQa7LY= | ||
| 545 | dependencies: | 595 | dependencies: |
| 546 | - "@babel/helper-plugin-utils" "^7.0.0" | 596 | + "@babel/helper-create-regexp-features-plugin" "^7.10.4" |
| 547 | 597 | ||
| 548 | -"@babel/plugin-transform-runtime@^7.4.3": | ||
| 549 | - version "7.6.2" | ||
| 550 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-runtime/download/@babel/plugin-transform-runtime-7.6.2.tgz#2669f67c1fae0ae8d8bf696e4263ad52cb98b6f8" | ||
| 551 | - integrity sha1-Jmn2fB+uCujYv2luQmOtUsuYtvg= | 598 | +"@babel/plugin-transform-new-target@^7.10.4": |
| 599 | + version "7.10.4" | ||
| 600 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888" | ||
| 601 | + integrity sha1-kJfXU8t7Aky3OBo7LlLpUTqcaIg= | ||
| 552 | dependencies: | 602 | dependencies: |
| 553 | - "@babel/helper-module-imports" "^7.0.0" | ||
| 554 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 555 | - resolve "^1.8.1" | ||
| 556 | - semver "^5.5.1" | 603 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 557 | 604 | ||
| 558 | -"@babel/plugin-transform-shorthand-properties@^7.2.0": | ||
| 559 | - version "7.2.0" | ||
| 560 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" | ||
| 561 | - integrity sha1-YzOu4vjW7n4oYVRXKYk0o7RhmPA= | 605 | +"@babel/plugin-transform-object-super@^7.10.4": |
| 606 | + version "7.10.4" | ||
| 607 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894" | ||
| 608 | + integrity sha1-1xRsTROUM+emUm+IjGZ+MUoJOJQ= | ||
| 562 | dependencies: | 609 | dependencies: |
| 563 | - "@babel/helper-plugin-utils" "^7.0.0" | 610 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 611 | + "@babel/helper-replace-supers" "^7.10.4" | ||
| 564 | 612 | ||
| 565 | -"@babel/plugin-transform-spread@^7.6.2": | ||
| 566 | - version "7.6.2" | ||
| 567 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.6.2.tgz#fc77cf798b24b10c46e1b51b1b88c2bf661bb8dd" | ||
| 568 | - integrity sha1-/HfPeYsksQxG4bUbG4jCv2YbuN0= | 613 | +"@babel/plugin-transform-parameters@^7.10.4": |
| 614 | + version "7.10.4" | ||
| 615 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.10.4.tgz#7b4d137c87ea7adc2a0f3ebf53266871daa6fced" | ||
| 616 | + integrity sha1-e00TfIfqetwqDz6/UyZocdqm/O0= | ||
| 569 | dependencies: | 617 | dependencies: |
| 570 | - "@babel/helper-plugin-utils" "^7.0.0" | 618 | + "@babel/helper-get-function-arity" "^7.10.4" |
| 619 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 571 | 620 | ||
| 572 | -"@babel/plugin-transform-sticky-regex@^7.2.0": | ||
| 573 | - version "7.2.0" | ||
| 574 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" | ||
| 575 | - integrity sha1-oeRUtZlVYKnB4NU338FQYf0mh+E= | 621 | +"@babel/plugin-transform-property-literals@^7.10.4": |
| 622 | + version "7.10.4" | ||
| 623 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.10.4.tgz?cache=0&sync_timestamp=1593522925254&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-property-literals%2Fdownload%2F%40babel%2Fplugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0" | ||
| 624 | + integrity sha1-9v5UtlkDUimHhbg+3YFdIUxC48A= | ||
| 576 | dependencies: | 625 | dependencies: |
| 577 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 578 | - "@babel/helper-regex" "^7.0.0" | 626 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 579 | 627 | ||
| 580 | -"@babel/plugin-transform-template-literals@^7.4.4": | ||
| 581 | - version "7.4.4" | ||
| 582 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" | ||
| 583 | - integrity sha1-nSj+p7vOY3+3YSoHUJidgyHUvLA= | 628 | +"@babel/plugin-transform-regenerator@^7.10.4": |
| 629 | + version "7.10.4" | ||
| 630 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.10.4.tgz?cache=0&sync_timestamp=1593521089707&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-regenerator%2Fdownload%2F%40babel%2Fplugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63" | ||
| 631 | + integrity sha1-IBXlnYOQdOdoON4hWdtCGWb9i2M= | ||
| 584 | dependencies: | 632 | dependencies: |
| 585 | - "@babel/helper-annotate-as-pure" "^7.0.0" | ||
| 586 | - "@babel/helper-plugin-utils" "^7.0.0" | 633 | + regenerator-transform "^0.14.2" |
| 587 | 634 | ||
| 588 | -"@babel/plugin-transform-typeof-symbol@^7.2.0": | ||
| 589 | - version "7.2.0" | ||
| 590 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-typeof-symbol/download/@babel/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" | ||
| 591 | - integrity sha1-EX0rzsL79ktLWdH5gZiUaC0p8rI= | 635 | +"@babel/plugin-transform-reserved-words@^7.10.4": |
| 636 | + version "7.10.4" | ||
| 637 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.10.4.tgz?cache=0&sync_timestamp=1593522924889&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-reserved-words%2Fdownload%2F%40babel%2Fplugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd" | ||
| 638 | + integrity sha1-jyaCvNzvntMn4bCGFYXXAT+KVN0= | ||
| 592 | dependencies: | 639 | dependencies: |
| 593 | - "@babel/helper-plugin-utils" "^7.0.0" | 640 | + "@babel/helper-plugin-utils" "^7.10.4" |
| 594 | 641 | ||
| 595 | -"@babel/plugin-transform-unicode-regex@^7.6.2": | ||
| 596 | - version "7.6.2" | ||
| 597 | - resolved "https://registry.npm.taobao.org/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.6.2.tgz#b692aad888a7e8d8b1b214be6b9dc03d5031f698" | ||
| 598 | - integrity sha1-tpKq2Iin6NixshS+a53APVAx9pg= | 642 | +"@babel/plugin-transform-runtime@^7.9.6": |
| 643 | + version "7.10.4" | ||
| 644 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-runtime/download/@babel/plugin-transform-runtime-7.10.4.tgz#594fb53453ea1b6f0779cceb48ce0718a447feb7" | ||
| 645 | + integrity sha1-WU+1NFPqG28HeczrSM4HGKRH/rc= | ||
| 599 | dependencies: | 646 | dependencies: |
| 600 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 601 | - "@babel/helper-regex" "^7.4.4" | ||
| 602 | - regexpu-core "^4.6.0" | 647 | + "@babel/helper-module-imports" "^7.10.4" |
| 648 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 649 | + resolve "^1.8.1" | ||
| 650 | + semver "^5.5.1" | ||
| 603 | 651 | ||
| 604 | -"@babel/preset-env@^7.4.5": | ||
| 605 | - version "7.6.3" | ||
| 606 | - resolved "https://registry.npm.taobao.org/@babel/preset-env/download/@babel/preset-env-7.6.3.tgz#9e1bf05a2e2d687036d24c40e4639dc46cef2271" | ||
| 607 | - integrity sha1-nhvwWi4taHA20kxA5GOdxGzvInE= | ||
| 608 | - dependencies: | ||
| 609 | - "@babel/helper-module-imports" "^7.0.0" | ||
| 610 | - "@babel/helper-plugin-utils" "^7.0.0" | ||
| 611 | - "@babel/plugin-proposal-async-generator-functions" "^7.2.0" | ||
| 612 | - "@babel/plugin-proposal-dynamic-import" "^7.5.0" | ||
| 613 | - "@babel/plugin-proposal-json-strings" "^7.2.0" | ||
| 614 | - "@babel/plugin-proposal-object-rest-spread" "^7.6.2" | ||
| 615 | - "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" | ||
| 616 | - "@babel/plugin-proposal-unicode-property-regex" "^7.6.2" | ||
| 617 | - "@babel/plugin-syntax-async-generators" "^7.2.0" | ||
| 618 | - "@babel/plugin-syntax-dynamic-import" "^7.2.0" | ||
| 619 | - "@babel/plugin-syntax-json-strings" "^7.2.0" | ||
| 620 | - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" | ||
| 621 | - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" | ||
| 622 | - "@babel/plugin-transform-arrow-functions" "^7.2.0" | ||
| 623 | - "@babel/plugin-transform-async-to-generator" "^7.5.0" | ||
| 624 | - "@babel/plugin-transform-block-scoped-functions" "^7.2.0" | ||
| 625 | - "@babel/plugin-transform-block-scoping" "^7.6.3" | ||
| 626 | - "@babel/plugin-transform-classes" "^7.5.5" | ||
| 627 | - "@babel/plugin-transform-computed-properties" "^7.2.0" | ||
| 628 | - "@babel/plugin-transform-destructuring" "^7.6.0" | ||
| 629 | - "@babel/plugin-transform-dotall-regex" "^7.6.2" | ||
| 630 | - "@babel/plugin-transform-duplicate-keys" "^7.5.0" | ||
| 631 | - "@babel/plugin-transform-exponentiation-operator" "^7.2.0" | ||
| 632 | - "@babel/plugin-transform-for-of" "^7.4.4" | ||
| 633 | - "@babel/plugin-transform-function-name" "^7.4.4" | ||
| 634 | - "@babel/plugin-transform-literals" "^7.2.0" | ||
| 635 | - "@babel/plugin-transform-member-expression-literals" "^7.2.0" | ||
| 636 | - "@babel/plugin-transform-modules-amd" "^7.5.0" | ||
| 637 | - "@babel/plugin-transform-modules-commonjs" "^7.6.0" | ||
| 638 | - "@babel/plugin-transform-modules-systemjs" "^7.5.0" | ||
| 639 | - "@babel/plugin-transform-modules-umd" "^7.2.0" | ||
| 640 | - "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.3" | ||
| 641 | - "@babel/plugin-transform-new-target" "^7.4.4" | ||
| 642 | - "@babel/plugin-transform-object-super" "^7.5.5" | ||
| 643 | - "@babel/plugin-transform-parameters" "^7.4.4" | ||
| 644 | - "@babel/plugin-transform-property-literals" "^7.2.0" | ||
| 645 | - "@babel/plugin-transform-regenerator" "^7.4.5" | ||
| 646 | - "@babel/plugin-transform-reserved-words" "^7.2.0" | ||
| 647 | - "@babel/plugin-transform-shorthand-properties" "^7.2.0" | ||
| 648 | - "@babel/plugin-transform-spread" "^7.6.2" | ||
| 649 | - "@babel/plugin-transform-sticky-regex" "^7.2.0" | ||
| 650 | - "@babel/plugin-transform-template-literals" "^7.4.4" | ||
| 651 | - "@babel/plugin-transform-typeof-symbol" "^7.2.0" | ||
| 652 | - "@babel/plugin-transform-unicode-regex" "^7.6.2" | ||
| 653 | - "@babel/types" "^7.6.3" | ||
| 654 | - browserslist "^4.6.0" | ||
| 655 | - core-js-compat "^3.1.1" | 652 | +"@babel/plugin-transform-shorthand-properties@^7.10.4": |
| 653 | + version "7.10.4" | ||
| 654 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.10.4.tgz?cache=0&sync_timestamp=1593522925435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-shorthand-properties%2Fdownload%2F%40babel%2Fplugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" | ||
| 655 | + integrity sha1-n9Jexc3VVbt/Rz5ebuHJce7eTdY= | ||
| 656 | + dependencies: | ||
| 657 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 658 | + | ||
| 659 | +"@babel/plugin-transform-spread@^7.10.4": | ||
| 660 | + version "7.10.4" | ||
| 661 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.10.4.tgz?cache=0&sync_timestamp=1593522927458&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-spread%2Fdownload%2F%40babel%2Fplugin-transform-spread-7.10.4.tgz#4e2c85ea0d6abaee1b24dcfbbae426fe8d674cff" | ||
| 662 | + integrity sha1-TiyF6g1quu4bJNz7uuQm/o1nTP8= | ||
| 663 | + dependencies: | ||
| 664 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 665 | + | ||
| 666 | +"@babel/plugin-transform-sticky-regex@^7.10.4": | ||
| 667 | + version "7.10.4" | ||
| 668 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.10.4.tgz?cache=0&sync_timestamp=1593522926947&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-sticky-regex%2Fdownload%2F%40babel%2Fplugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d" | ||
| 669 | + integrity sha1-jziJ7oZXWBEwop2cyR18c7fEoo0= | ||
| 670 | + dependencies: | ||
| 671 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 672 | + "@babel/helper-regex" "^7.10.4" | ||
| 673 | + | ||
| 674 | +"@babel/plugin-transform-template-literals@^7.10.4": | ||
| 675 | + version "7.10.4" | ||
| 676 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.10.4.tgz#e6375407b30fcb7fcfdbba3bb98ef3e9d36df7bc" | ||
| 677 | + integrity sha1-5jdUB7MPy3/P27o7uY7z6dNt97w= | ||
| 678 | + dependencies: | ||
| 679 | + "@babel/helper-annotate-as-pure" "^7.10.4" | ||
| 680 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 681 | + | ||
| 682 | +"@babel/plugin-transform-typeof-symbol@^7.10.4": | ||
| 683 | + version "7.10.4" | ||
| 684 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-typeof-symbol/download/@babel/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc" | ||
| 685 | + integrity sha1-lQnxp+7DHE7b/+E3wWzDP/C8W/w= | ||
| 686 | + dependencies: | ||
| 687 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 688 | + | ||
| 689 | +"@babel/plugin-transform-unicode-escapes@^7.10.4": | ||
| 690 | + version "7.10.4" | ||
| 691 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007" | ||
| 692 | + integrity sha1-/q5SM5HHZR3awRXa4KnQaFeJIAc= | ||
| 693 | + dependencies: | ||
| 694 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 695 | + | ||
| 696 | +"@babel/plugin-transform-unicode-regex@^7.10.4": | ||
| 697 | + version "7.10.4" | ||
| 698 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8" | ||
| 699 | + integrity sha1-5W1x+SgvrG2wnIJ0IFVXbV5tgKg= | ||
| 700 | + dependencies: | ||
| 701 | + "@babel/helper-create-regexp-features-plugin" "^7.10.4" | ||
| 702 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 703 | + | ||
| 704 | +"@babel/preset-env@^7.9.6": | ||
| 705 | + version "7.10.4" | ||
| 706 | + resolved "https://registry.npm.taobao.org/@babel/preset-env/download/@babel/preset-env-7.10.4.tgz?cache=0&sync_timestamp=1593521234560&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fpreset-env%2Fdownload%2F%40babel%2Fpreset-env-7.10.4.tgz#fbf57f9a803afd97f4f32e4f798bb62e4b2bef5f" | ||
| 707 | + integrity sha1-+/V/moA6/Zf08y5PeYu2Lksr718= | ||
| 708 | + dependencies: | ||
| 709 | + "@babel/compat-data" "^7.10.4" | ||
| 710 | + "@babel/helper-compilation-targets" "^7.10.4" | ||
| 711 | + "@babel/helper-module-imports" "^7.10.4" | ||
| 712 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 713 | + "@babel/plugin-proposal-async-generator-functions" "^7.10.4" | ||
| 714 | + "@babel/plugin-proposal-class-properties" "^7.10.4" | ||
| 715 | + "@babel/plugin-proposal-dynamic-import" "^7.10.4" | ||
| 716 | + "@babel/plugin-proposal-json-strings" "^7.10.4" | ||
| 717 | + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" | ||
| 718 | + "@babel/plugin-proposal-numeric-separator" "^7.10.4" | ||
| 719 | + "@babel/plugin-proposal-object-rest-spread" "^7.10.4" | ||
| 720 | + "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" | ||
| 721 | + "@babel/plugin-proposal-optional-chaining" "^7.10.4" | ||
| 722 | + "@babel/plugin-proposal-private-methods" "^7.10.4" | ||
| 723 | + "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" | ||
| 724 | + "@babel/plugin-syntax-async-generators" "^7.8.0" | ||
| 725 | + "@babel/plugin-syntax-class-properties" "^7.10.4" | ||
| 726 | + "@babel/plugin-syntax-dynamic-import" "^7.8.0" | ||
| 727 | + "@babel/plugin-syntax-json-strings" "^7.8.0" | ||
| 728 | + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" | ||
| 729 | + "@babel/plugin-syntax-numeric-separator" "^7.10.4" | ||
| 730 | + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" | ||
| 731 | + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" | ||
| 732 | + "@babel/plugin-syntax-optional-chaining" "^7.8.0" | ||
| 733 | + "@babel/plugin-syntax-top-level-await" "^7.10.4" | ||
| 734 | + "@babel/plugin-transform-arrow-functions" "^7.10.4" | ||
| 735 | + "@babel/plugin-transform-async-to-generator" "^7.10.4" | ||
| 736 | + "@babel/plugin-transform-block-scoped-functions" "^7.10.4" | ||
| 737 | + "@babel/plugin-transform-block-scoping" "^7.10.4" | ||
| 738 | + "@babel/plugin-transform-classes" "^7.10.4" | ||
| 739 | + "@babel/plugin-transform-computed-properties" "^7.10.4" | ||
| 740 | + "@babel/plugin-transform-destructuring" "^7.10.4" | ||
| 741 | + "@babel/plugin-transform-dotall-regex" "^7.10.4" | ||
| 742 | + "@babel/plugin-transform-duplicate-keys" "^7.10.4" | ||
| 743 | + "@babel/plugin-transform-exponentiation-operator" "^7.10.4" | ||
| 744 | + "@babel/plugin-transform-for-of" "^7.10.4" | ||
| 745 | + "@babel/plugin-transform-function-name" "^7.10.4" | ||
| 746 | + "@babel/plugin-transform-literals" "^7.10.4" | ||
| 747 | + "@babel/plugin-transform-member-expression-literals" "^7.10.4" | ||
| 748 | + "@babel/plugin-transform-modules-amd" "^7.10.4" | ||
| 749 | + "@babel/plugin-transform-modules-commonjs" "^7.10.4" | ||
| 750 | + "@babel/plugin-transform-modules-systemjs" "^7.10.4" | ||
| 751 | + "@babel/plugin-transform-modules-umd" "^7.10.4" | ||
| 752 | + "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" | ||
| 753 | + "@babel/plugin-transform-new-target" "^7.10.4" | ||
| 754 | + "@babel/plugin-transform-object-super" "^7.10.4" | ||
| 755 | + "@babel/plugin-transform-parameters" "^7.10.4" | ||
| 756 | + "@babel/plugin-transform-property-literals" "^7.10.4" | ||
| 757 | + "@babel/plugin-transform-regenerator" "^7.10.4" | ||
| 758 | + "@babel/plugin-transform-reserved-words" "^7.10.4" | ||
| 759 | + "@babel/plugin-transform-shorthand-properties" "^7.10.4" | ||
| 760 | + "@babel/plugin-transform-spread" "^7.10.4" | ||
| 761 | + "@babel/plugin-transform-sticky-regex" "^7.10.4" | ||
| 762 | + "@babel/plugin-transform-template-literals" "^7.10.4" | ||
| 763 | + "@babel/plugin-transform-typeof-symbol" "^7.10.4" | ||
| 764 | + "@babel/plugin-transform-unicode-escapes" "^7.10.4" | ||
| 765 | + "@babel/plugin-transform-unicode-regex" "^7.10.4" | ||
| 766 | + "@babel/preset-modules" "^0.1.3" | ||
| 767 | + "@babel/types" "^7.10.4" | ||
| 768 | + browserslist "^4.12.0" | ||
| 769 | + core-js-compat "^3.6.2" | ||
| 656 | invariant "^2.2.2" | 770 | invariant "^2.2.2" |
| 657 | - js-levenshtein "^1.1.3" | 771 | + levenary "^1.1.1" |
| 658 | semver "^5.5.0" | 772 | semver "^5.5.0" |
| 659 | 773 | ||
| 660 | -"@babel/runtime-corejs3@^7.4.5": | ||
| 661 | - version "7.6.3" | ||
| 662 | - resolved "https://registry.npm.taobao.org/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.6.3.tgz#a2b2b7ceea6ecb37ff822d293a312f1f00c29b84" | ||
| 663 | - integrity sha1-orK3zupuyzf/gi0pOjEvHwDCm4Q= | ||
| 664 | - dependencies: | ||
| 665 | - core-js-pure "^3.0.0" | ||
| 666 | - regenerator-runtime "^0.13.2" | ||
| 667 | - | ||
| 668 | -"@babel/runtime@^7.4.5": | ||
| 669 | - version "7.6.3" | ||
| 670 | - resolved "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.6.3.tgz#935122c74c73d2240cafd32ddb5fc2a6cd35cf1f" | ||
| 671 | - integrity sha1-k1Eix0xz0iQMr9Mt21/Cps01zx8= | 774 | +"@babel/preset-modules@^0.1.3": |
| 775 | + version "0.1.3" | ||
| 776 | + resolved "https://registry.npm.taobao.org/@babel/preset-modules/download/@babel/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" | ||
| 777 | + integrity sha1-EyQrU7XvjIg8PPfd3VWzbOgPvHI= | ||
| 672 | dependencies: | 778 | dependencies: |
| 673 | - regenerator-runtime "^0.13.2" | 779 | + "@babel/helper-plugin-utils" "^7.0.0" |
| 780 | + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" | ||
| 781 | + "@babel/plugin-transform-dotall-regex" "^7.4.4" | ||
| 782 | + "@babel/types" "^7.4.4" | ||
| 783 | + esutils "^2.0.2" | ||
| 674 | 784 | ||
| 675 | -"@babel/template@^7.1.0", "@babel/template@^7.4.4", "@babel/template@^7.6.0": | ||
| 676 | - version "7.6.0" | ||
| 677 | - resolved "https://registry.npm.taobao.org/@babel/template/download/@babel/template-7.6.0.tgz#7f0159c7f5012230dad64cca42ec9bdb5c9536e6" | ||
| 678 | - integrity sha1-fwFZx/UBIjDa1kzKQuyb21yVNuY= | 785 | +"@babel/runtime-corejs3@^7.8.3": |
| 786 | + version "7.10.4" | ||
| 787 | + resolved "https://registry.npm.taobao.org/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.10.4.tgz?cache=0&sync_timestamp=1593522949657&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fruntime-corejs3%2Fdownload%2F%40babel%2Fruntime-corejs3-7.10.4.tgz#f29fc1990307c4c57b10dbd6ce667b27159d9e0d" | ||
| 788 | + integrity sha1-8p/BmQMHxMV7ENvWzmZ7JxWdng0= | ||
| 679 | dependencies: | 789 | dependencies: |
| 680 | - "@babel/code-frame" "^7.0.0" | ||
| 681 | - "@babel/parser" "^7.6.0" | ||
| 682 | - "@babel/types" "^7.6.0" | ||
| 683 | - | ||
| 684 | -"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5", "@babel/traverse@^7.6.2", "@babel/traverse@^7.6.3": | ||
| 685 | - version "7.6.3" | ||
| 686 | - resolved "https://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.6.3.tgz#66d7dba146b086703c0fb10dd588b7364cec47f9" | ||
| 687 | - integrity sha1-ZtfboUawhnA8D7EN1Yi3NkzsR/k= | ||
| 688 | - dependencies: | ||
| 689 | - "@babel/code-frame" "^7.5.5" | ||
| 690 | - "@babel/generator" "^7.6.3" | ||
| 691 | - "@babel/helper-function-name" "^7.1.0" | ||
| 692 | - "@babel/helper-split-export-declaration" "^7.4.4" | ||
| 693 | - "@babel/parser" "^7.6.3" | ||
| 694 | - "@babel/types" "^7.6.3" | 790 | + core-js-pure "^3.0.0" |
| 791 | + regenerator-runtime "^0.13.4" | ||
| 792 | + | ||
| 793 | +"@babel/runtime@^7.8.4", "@babel/runtime@^7.9.6": | ||
| 794 | + version "7.10.4" | ||
| 795 | + resolved "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.10.4.tgz?cache=0&sync_timestamp=1593521075387&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.10.4.tgz#a6724f1a6b8d2f6ea5236dbfe58c7d7ea9c5eb99" | ||
| 796 | + integrity sha1-pnJPGmuNL26lI22/5Yx9fqnF65k= | ||
| 797 | + dependencies: | ||
| 798 | + regenerator-runtime "^0.13.4" | ||
| 799 | + | ||
| 800 | +"@babel/template@^7.10.4": | ||
| 801 | + version "7.10.4" | ||
| 802 | + resolved "https://registry.npm.taobao.org/@babel/template/download/@babel/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" | ||
| 803 | + integrity sha1-MlGZbEIA68cdGo/EBfupQPNrong= | ||
| 804 | + dependencies: | ||
| 805 | + "@babel/code-frame" "^7.10.4" | ||
| 806 | + "@babel/parser" "^7.10.4" | ||
| 807 | + "@babel/types" "^7.10.4" | ||
| 808 | + | ||
| 809 | +"@babel/traverse@^7.10.4": | ||
| 810 | + version "7.10.4" | ||
| 811 | + resolved "https://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818" | ||
| 812 | + integrity sha1-5kLlOVo7CcyVyOdKJ0MrSEtpeBg= | ||
| 813 | + dependencies: | ||
| 814 | + "@babel/code-frame" "^7.10.4" | ||
| 815 | + "@babel/generator" "^7.10.4" | ||
| 816 | + "@babel/helper-function-name" "^7.10.4" | ||
| 817 | + "@babel/helper-split-export-declaration" "^7.10.4" | ||
| 818 | + "@babel/parser" "^7.10.4" | ||
| 819 | + "@babel/types" "^7.10.4" | ||
| 695 | debug "^4.1.0" | 820 | debug "^4.1.0" |
| 696 | globals "^11.1.0" | 821 | globals "^11.1.0" |
| 697 | lodash "^4.17.13" | 822 | lodash "^4.17.13" |
| 698 | 823 | ||
| 699 | -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.6.0", "@babel/types@^7.6.3": | ||
| 700 | - version "7.6.3" | ||
| 701 | - resolved "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.6.3.tgz#3f07d96f854f98e2fbd45c64b0cb942d11e8ba09" | ||
| 702 | - integrity sha1-PwfZb4VPmOL71FxksMuULRHougk= | 824 | +"@babel/types@^7.10.4", "@babel/types@^7.4.4": |
| 825 | + version "7.10.4" | ||
| 826 | + resolved "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.10.4.tgz?cache=0&sync_timestamp=1593521094123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.10.4.tgz#369517188352e18219981efd156bfdb199fff1ee" | ||
| 827 | + integrity sha1-NpUXGINS4YIZmB79FWv9sZn/8e4= | ||
| 703 | dependencies: | 828 | dependencies: |
| 704 | - esutils "^2.0.2" | 829 | + "@babel/helper-validator-identifier" "^7.10.4" |
| 705 | lodash "^4.17.13" | 830 | lodash "^4.17.13" |
| 706 | to-fast-properties "^2.0.0" | 831 | to-fast-properties "^2.0.0" |
| 707 | 832 | ||
| 708 | "@hapi/address@2.x.x": | 833 | "@hapi/address@2.x.x": |
| 709 | - version "2.1.2" | ||
| 710 | - resolved "https://registry.npm.taobao.org/@hapi/address/download/@hapi/address-2.1.2.tgz?cache=0&sync_timestamp=1571200737472&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40hapi%2Faddress%2Fdownload%2F%40hapi%2Faddress-2.1.2.tgz#1c794cd6dbf2354d1eb1ef10e0303f573e1c7222" | ||
| 711 | - integrity sha1-HHlM1tvyNU0ese8Q4DA/Vz4cciI= | 834 | + version "2.1.4" |
| 835 | + resolved "https://registry.npm.taobao.org/@hapi/address/download/@hapi/address-2.1.4.tgz?cache=0&sync_timestamp=1593996468210&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40hapi%2Faddress%2Fdownload%2F%40hapi%2Faddress-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" | ||
| 836 | + integrity sha1-XWftQ/P9QaadS5/3tW58DR0KgeU= | ||
| 712 | 837 | ||
| 713 | "@hapi/bourne@1.x.x": | 838 | "@hapi/bourne@1.x.x": |
| 714 | version "1.3.2" | 839 | version "1.3.2" |
| 715 | - resolved "https://registry.npm.taobao.org/@hapi/bourne/download/@hapi/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a" | 840 | + resolved "https://registry.npm.taobao.org/@hapi/bourne/download/@hapi/bourne-1.3.2.tgz?cache=0&sync_timestamp=1593915150444&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40hapi%2Fbourne%2Fdownload%2F%40hapi%2Fbourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a" |
| 716 | integrity sha1-CnCVreoGckPOMoPhtWuKj0U7JCo= | 841 | integrity sha1-CnCVreoGckPOMoPhtWuKj0U7JCo= |
| 717 | 842 | ||
| 718 | "@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0": | 843 | "@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0": |
| 719 | - version "8.3.2" | ||
| 720 | - resolved "https://registry.npm.taobao.org/@hapi/hoek/download/@hapi/hoek-8.3.2.tgz#91e7188edebc5d876f0b91a860f555ff06f0782b" | ||
| 721 | - integrity sha1-kecYjt68XYdvC5GoYPVV/wbweCs= | 844 | + version "8.5.1" |
| 845 | + resolved "https://registry.npm.taobao.org/@hapi/hoek/download/@hapi/hoek-8.5.1.tgz?cache=0&sync_timestamp=1593915910245&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40hapi%2Fhoek%2Fdownload%2F%40hapi%2Fhoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06" | ||
| 846 | + integrity sha1-/elgZMpEbeyMVajC8TCVewcMbgY= | ||
| 722 | 847 | ||
| 723 | "@hapi/joi@^15.0.1": | 848 | "@hapi/joi@^15.0.1": |
| 724 | version "15.1.1" | 849 | version "15.1.1" |
| 725 | - resolved "https://registry.npm.taobao.org/@hapi/joi/download/@hapi/joi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7" | 850 | + resolved "https://registry.npm.taobao.org/@hapi/joi/download/@hapi/joi-15.1.1.tgz?cache=0&sync_timestamp=1593915960126&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40hapi%2Fjoi%2Fdownload%2F%40hapi%2Fjoi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7" |
| 726 | integrity sha1-xnW4pxKW8Cgz+NbSQ7NMV7jOGdc= | 851 | integrity sha1-xnW4pxKW8Cgz+NbSQ7NMV7jOGdc= |
| 727 | dependencies: | 852 | dependencies: |
| 728 | "@hapi/address" "2.x.x" | 853 | "@hapi/address" "2.x.x" |
| @@ -732,7 +857,7 @@ | @@ -732,7 +857,7 @@ | ||
| 732 | 857 | ||
| 733 | "@hapi/topo@3.x.x": | 858 | "@hapi/topo@3.x.x": |
| 734 | version "3.1.6" | 859 | version "3.1.6" |
| 735 | - resolved "https://registry.npm.taobao.org/@hapi/topo/download/@hapi/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29" | 860 | + resolved "https://registry.npm.taobao.org/@hapi/topo/download/@hapi/topo-3.1.6.tgz?cache=0&sync_timestamp=1593916080558&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40hapi%2Ftopo%2Fdownload%2F%40hapi%2Ftopo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29" |
| 736 | integrity sha1-aNk1+j6uf91asNf5U/MgXYsr/Ck= | 861 | integrity sha1-aNk1+j6uf91asNf5U/MgXYsr/Ck= |
| 737 | dependencies: | 862 | dependencies: |
| 738 | "@hapi/hoek" "^8.3.0" | 863 | "@hapi/hoek" "^8.3.0" |
| @@ -768,29 +893,38 @@ | @@ -768,29 +893,38 @@ | ||
| 768 | error-stack-parser "^2.0.0" | 893 | error-stack-parser "^2.0.0" |
| 769 | string-width "^2.0.0" | 894 | string-width "^2.0.0" |
| 770 | 895 | ||
| 771 | -"@types/events@*": | ||
| 772 | - version "3.0.0" | ||
| 773 | - resolved "https://registry.npm.taobao.org/@types/events/download/@types/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" | ||
| 774 | - integrity sha1-KGLz9Yqaf3w+eNefEw3U1xwlwqc= | 896 | +"@soda/get-current-script@^1.0.0": |
| 897 | + version "1.0.2" | ||
| 898 | + resolved "https://registry.npm.taobao.org/@soda/get-current-script/download/@soda/get-current-script-1.0.2.tgz?cache=0&sync_timestamp=1592273074614&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40soda%2Fget-current-script%2Fdownload%2F%40soda%2Fget-current-script-1.0.2.tgz#a53515db25d8038374381b73af20bb4f2e508d87" | ||
| 899 | + integrity sha1-pTUV2yXYA4N0OBtzryC7Ty5QjYc= | ||
| 900 | + | ||
| 901 | +"@types/color-name@^1.1.1": | ||
| 902 | + version "1.1.1" | ||
| 903 | + resolved "https://registry.npm.taobao.org/@types/color-name/download/@types/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" | ||
| 904 | + integrity sha1-HBJhu+qhCoBVu8XYq4S3sq/IRqA= | ||
| 775 | 905 | ||
| 776 | "@types/glob@^7.1.1": | 906 | "@types/glob@^7.1.1": |
| 777 | - version "7.1.1" | ||
| 778 | - resolved "https://registry.npm.taobao.org/@types/glob/download/@types/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" | ||
| 779 | - integrity sha1-qlmhxuP7xCHgfM0xqUTDDrpSFXU= | 907 | + version "7.1.3" |
| 908 | + resolved "https://registry.npm.taobao.org/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1594078364548&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183" | ||
| 909 | + integrity sha1-5rqA82t9qtLGhazZJmOC5omFwYM= | ||
| 780 | dependencies: | 910 | dependencies: |
| 781 | - "@types/events" "*" | ||
| 782 | "@types/minimatch" "*" | 911 | "@types/minimatch" "*" |
| 783 | "@types/node" "*" | 912 | "@types/node" "*" |
| 784 | 913 | ||
| 914 | +"@types/json-schema@^7.0.4": | ||
| 915 | + version "7.0.5" | ||
| 916 | + resolved "https://registry.npm.taobao.org/@types/json-schema/download/@types/json-schema-7.0.5.tgz?cache=0&sync_timestamp=1591720921048&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fjson-schema%2Fdownload%2F%40types%2Fjson-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" | ||
| 917 | + integrity sha1-3M5EMOZLRDuolF8CkPtWStW6xt0= | ||
| 918 | + | ||
| 785 | "@types/minimatch@*": | 919 | "@types/minimatch@*": |
| 786 | version "3.0.3" | 920 | version "3.0.3" |
| 787 | resolved "https://registry.npm.taobao.org/@types/minimatch/download/@types/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" | 921 | resolved "https://registry.npm.taobao.org/@types/minimatch/download/@types/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" |
| 788 | integrity sha1-PcoOPzOyAPx9ETnAzZbBJoyt/Z0= | 922 | integrity sha1-PcoOPzOyAPx9ETnAzZbBJoyt/Z0= |
| 789 | 923 | ||
| 790 | "@types/node@*": | 924 | "@types/node@*": |
| 791 | - version "12.11.2" | ||
| 792 | - resolved "https://registry.npm.taobao.org/@types/node/download/@types/node-12.11.2.tgz#75ba3beda30d690b89a5089ca1c6e8e386150b76" | ||
| 793 | - integrity sha1-dbo77aMNaQuJpQicocbo44YVC3Y= | 925 | + version "14.0.21" |
| 926 | + resolved "https://registry.npm.taobao.org/@types/node/download/@types/node-14.0.21.tgz?cache=0&sync_timestamp=1594385451405&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-14.0.21.tgz#c84005e3f43b7e19a7374d47d5c411039da59231" | ||
| 927 | + integrity sha1-yEAF4/Q7fhmnN01H1cQRA52lkjE= | ||
| 794 | 928 | ||
| 795 | "@types/normalize-package-data@^2.4.0": | 929 | "@types/normalize-package-data@^2.4.0": |
| 796 | version "2.4.0" | 930 | version "2.4.0" |
| @@ -798,19 +932,19 @@ | @@ -798,19 +932,19 @@ | ||
| 798 | integrity sha1-5IbQ2XOW15vu3QpuM/RTT/a0lz4= | 932 | integrity sha1-5IbQ2XOW15vu3QpuM/RTT/a0lz4= |
| 799 | 933 | ||
| 800 | "@types/q@^1.5.1": | 934 | "@types/q@^1.5.1": |
| 801 | - version "1.5.2" | ||
| 802 | - resolved "https://registry.npm.taobao.org/@types/q/download/@types/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" | ||
| 803 | - integrity sha1-aQoUdbhPKohP0HzXl8APXzE1bqg= | 935 | + version "1.5.4" |
| 936 | + resolved "https://registry.npm.taobao.org/@types/q/download/@types/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" | ||
| 937 | + integrity sha1-FZJUFOCtLNdlv+9YhC9+JqesyyQ= | ||
| 804 | 938 | ||
| 805 | "@vue/babel-helper-vue-jsx-merge-props@^1.0.0": | 939 | "@vue/babel-helper-vue-jsx-merge-props@^1.0.0": |
| 806 | version "1.0.0" | 940 | version "1.0.0" |
| 807 | resolved "https://registry.npm.taobao.org/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.0.0.tgz#048fe579958da408fb7a8b2a3ec050b50a661040" | 941 | resolved "https://registry.npm.taobao.org/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.0.0.tgz#048fe579958da408fb7a8b2a3ec050b50a661040" |
| 808 | integrity sha1-BI/leZWNpAj7eosqPsBQtQpmEEA= | 942 | integrity sha1-BI/leZWNpAj7eosqPsBQtQpmEEA= |
| 809 | 943 | ||
| 810 | -"@vue/babel-plugin-transform-vue-jsx@^1.0.0": | ||
| 811 | - version "1.0.0" | ||
| 812 | - resolved "https://registry.npm.taobao.org/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.0.0.tgz#ebcbf39c312c94114c8c4f407ee4f6c97aa45432" | ||
| 813 | - integrity sha1-68vznDEslBFMjE9AfuT2yXqkVDI= | 944 | +"@vue/babel-plugin-transform-vue-jsx@^1.1.2": |
| 945 | + version "1.1.2" | ||
| 946 | + resolved "https://registry.npm.taobao.org/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.1.2.tgz#c0a3e6efc022e75e4247b448a8fc6b86f03e91c0" | ||
| 947 | + integrity sha1-wKPm78Ai515CR7RIqPxrhvA+kcA= | ||
| 814 | dependencies: | 948 | dependencies: |
| 815 | "@babel/helper-module-imports" "^7.0.0" | 949 | "@babel/helper-module-imports" "^7.0.0" |
| 816 | "@babel/plugin-syntax-jsx" "^7.2.0" | 950 | "@babel/plugin-syntax-jsx" "^7.2.0" |
| @@ -819,196 +953,195 @@ | @@ -819,196 +953,195 @@ | ||
| 819 | lodash.kebabcase "^4.1.1" | 953 | lodash.kebabcase "^4.1.1" |
| 820 | svg-tags "^1.0.0" | 954 | svg-tags "^1.0.0" |
| 821 | 955 | ||
| 822 | -"@vue/babel-preset-app@^4.0.4": | ||
| 823 | - version "4.0.4" | ||
| 824 | - resolved "https://registry.npm.taobao.org/@vue/babel-preset-app/download/@vue/babel-preset-app-4.0.4.tgz#e691839565175855033d5fcb8441487d98980467" | ||
| 825 | - integrity sha1-5pGDlWUXWFUDPV/LhEFIfZiYBGc= | ||
| 826 | - dependencies: | ||
| 827 | - "@babel/helper-module-imports" "^7.0.0" | ||
| 828 | - "@babel/plugin-proposal-class-properties" "^7.4.4" | ||
| 829 | - "@babel/plugin-proposal-decorators" "^7.4.4" | ||
| 830 | - "@babel/plugin-syntax-dynamic-import" "^7.0.0" | ||
| 831 | - "@babel/plugin-syntax-jsx" "^7.0.0" | ||
| 832 | - "@babel/plugin-transform-runtime" "^7.4.3" | ||
| 833 | - "@babel/preset-env" "^7.4.5" | ||
| 834 | - "@babel/runtime" "^7.4.5" | ||
| 835 | - "@babel/runtime-corejs3" "^7.4.5" | ||
| 836 | - "@vue/babel-preset-jsx" "^1.0.0" | ||
| 837 | - babel-plugin-dynamic-import-node "^2.2.0" | ||
| 838 | - babel-plugin-module-resolver "^3.2.0" | ||
| 839 | - core-js "^3.1.2" | ||
| 840 | - core-js-compat "^3.1.2" | ||
| 841 | - | ||
| 842 | -"@vue/babel-preset-jsx@^1.0.0": | ||
| 843 | - version "1.1.1" | ||
| 844 | - resolved "https://registry.npm.taobao.org/@vue/babel-preset-jsx/download/@vue/babel-preset-jsx-1.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fbabel-preset-jsx%2Fdownload%2F%40vue%2Fbabel-preset-jsx-1.1.1.tgz#3a74642ca0ecea10aae13649df5ff70f9d24a6f5" | ||
| 845 | - integrity sha1-OnRkLKDs6hCq4TZJ31/3D50kpvU= | 956 | +"@vue/babel-preset-app@^4.4.6": |
| 957 | + version "4.4.6" | ||
| 958 | + resolved "https://registry.npm.taobao.org/@vue/babel-preset-app/download/@vue/babel-preset-app-4.4.6.tgz#92aef916e83f1abe0a2ed1e9e2cef5b332f958c4" | ||
| 959 | + integrity sha1-kq75Fug/Gr4KLtHp4s71szL5WMQ= | ||
| 960 | + dependencies: | ||
| 961 | + "@babel/core" "^7.9.6" | ||
| 962 | + "@babel/helper-compilation-targets" "^7.9.6" | ||
| 963 | + "@babel/helper-module-imports" "^7.8.3" | ||
| 964 | + "@babel/plugin-proposal-class-properties" "^7.8.3" | ||
| 965 | + "@babel/plugin-proposal-decorators" "^7.8.3" | ||
| 966 | + "@babel/plugin-syntax-dynamic-import" "^7.8.3" | ||
| 967 | + "@babel/plugin-syntax-jsx" "^7.8.3" | ||
| 968 | + "@babel/plugin-transform-runtime" "^7.9.6" | ||
| 969 | + "@babel/preset-env" "^7.9.6" | ||
| 970 | + "@babel/runtime" "^7.9.6" | ||
| 971 | + "@vue/babel-preset-jsx" "^1.1.2" | ||
| 972 | + babel-plugin-dynamic-import-node "^2.3.3" | ||
| 973 | + core-js "^3.6.5" | ||
| 974 | + core-js-compat "^3.6.5" | ||
| 975 | + semver "^6.1.0" | ||
| 976 | + | ||
| 977 | +"@vue/babel-preset-jsx@^1.1.2": | ||
| 978 | + version "1.1.2" | ||
| 979 | + resolved "https://registry.npm.taobao.org/@vue/babel-preset-jsx/download/@vue/babel-preset-jsx-1.1.2.tgz#2e169eb4c204ea37ca66c2ea85a880bfc99d4f20" | ||
| 980 | + integrity sha1-LhaetMIE6jfKZsLqhaiAv8mdTyA= | ||
| 846 | dependencies: | 981 | dependencies: |
| 847 | "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" | 982 | "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" |
| 848 | - "@vue/babel-plugin-transform-vue-jsx" "^1.0.0" | ||
| 849 | - "@vue/babel-sugar-functional-vue" "^1.0.0" | ||
| 850 | - "@vue/babel-sugar-inject-h" "^1.0.0" | ||
| 851 | - "@vue/babel-sugar-v-model" "^1.1.1" | ||
| 852 | - "@vue/babel-sugar-v-on" "^1.1.0" | 983 | + "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" |
| 984 | + "@vue/babel-sugar-functional-vue" "^1.1.2" | ||
| 985 | + "@vue/babel-sugar-inject-h" "^1.1.2" | ||
| 986 | + "@vue/babel-sugar-v-model" "^1.1.2" | ||
| 987 | + "@vue/babel-sugar-v-on" "^1.1.2" | ||
| 853 | 988 | ||
| 854 | -"@vue/babel-sugar-functional-vue@^1.0.0": | ||
| 855 | - version "1.0.0" | ||
| 856 | - resolved "https://registry.npm.taobao.org/@vue/babel-sugar-functional-vue/download/@vue/babel-sugar-functional-vue-1.0.0.tgz#17e2c4ca27b74b244da3b923240ec91d10048cb3" | ||
| 857 | - integrity sha1-F+LEyie3SyRNo7kjJA7JHRAEjLM= | 989 | +"@vue/babel-sugar-functional-vue@^1.1.2": |
| 990 | + version "1.1.2" | ||
| 991 | + resolved "https://registry.npm.taobao.org/@vue/babel-sugar-functional-vue/download/@vue/babel-sugar-functional-vue-1.1.2.tgz#f7e24fba09e6f1ee70104560a8808057555f1a9a" | ||
| 992 | + integrity sha1-9+JPugnm8e5wEEVgqICAV1VfGpo= | ||
| 858 | dependencies: | 993 | dependencies: |
| 859 | "@babel/plugin-syntax-jsx" "^7.2.0" | 994 | "@babel/plugin-syntax-jsx" "^7.2.0" |
| 860 | 995 | ||
| 861 | -"@vue/babel-sugar-inject-h@^1.0.0": | ||
| 862 | - version "1.0.0" | ||
| 863 | - resolved "https://registry.npm.taobao.org/@vue/babel-sugar-inject-h/download/@vue/babel-sugar-inject-h-1.0.0.tgz#e5efb6c5b5b7988dc03831af6d133bf7bcde6347" | ||
| 864 | - integrity sha1-5e+2xbW3mI3AODGvbRM797zeY0c= | 996 | +"@vue/babel-sugar-inject-h@^1.1.2": |
| 997 | + version "1.1.2" | ||
| 998 | + resolved "https://registry.npm.taobao.org/@vue/babel-sugar-inject-h/download/@vue/babel-sugar-inject-h-1.1.2.tgz#8a5276b6d8e2ed16ffc8078aad94236274e6edf0" | ||
| 999 | + integrity sha1-ilJ2ttji7Rb/yAeKrZQjYnTm7fA= | ||
| 865 | dependencies: | 1000 | dependencies: |
| 866 | "@babel/plugin-syntax-jsx" "^7.2.0" | 1001 | "@babel/plugin-syntax-jsx" "^7.2.0" |
| 867 | 1002 | ||
| 868 | -"@vue/babel-sugar-v-model@^1.1.1": | ||
| 869 | - version "1.1.1" | ||
| 870 | - resolved "https://registry.npm.taobao.org/@vue/babel-sugar-v-model/download/@vue/babel-sugar-v-model-1.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fbabel-sugar-v-model%2Fdownload%2F%40vue%2Fbabel-sugar-v-model-1.1.1.tgz#a0f0750fcee20769805a20178299eebd4babf25a" | ||
| 871 | - integrity sha1-oPB1D87iB2mAWiAXgpnuvUur8lo= | 1003 | +"@vue/babel-sugar-v-model@^1.1.2": |
| 1004 | + version "1.1.2" | ||
| 1005 | + resolved "https://registry.npm.taobao.org/@vue/babel-sugar-v-model/download/@vue/babel-sugar-v-model-1.1.2.tgz#1ff6fd1b800223fc9cb1e84dceb5e52d737a8192" | ||
| 1006 | + integrity sha1-H/b9G4ACI/ycsehNzrXlLXN6gZI= | ||
| 872 | dependencies: | 1007 | dependencies: |
| 873 | "@babel/plugin-syntax-jsx" "^7.2.0" | 1008 | "@babel/plugin-syntax-jsx" "^7.2.0" |
| 874 | "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" | 1009 | "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" |
| 875 | - "@vue/babel-plugin-transform-vue-jsx" "^1.0.0" | 1010 | + "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" |
| 876 | camelcase "^5.0.0" | 1011 | camelcase "^5.0.0" |
| 877 | html-tags "^2.0.0" | 1012 | html-tags "^2.0.0" |
| 878 | svg-tags "^1.0.0" | 1013 | svg-tags "^1.0.0" |
| 879 | 1014 | ||
| 880 | -"@vue/babel-sugar-v-on@^1.1.0": | ||
| 881 | - version "1.1.0" | ||
| 882 | - resolved "https://registry.npm.taobao.org/@vue/babel-sugar-v-on/download/@vue/babel-sugar-v-on-1.1.0.tgz#1f2b35eeeabb87eaf8925931f4d34fd8e6404a45" | ||
| 883 | - integrity sha1-Hys17uq7h+r4klkx9NNP2OZASkU= | 1015 | +"@vue/babel-sugar-v-on@^1.1.2": |
| 1016 | + version "1.1.2" | ||
| 1017 | + resolved "https://registry.npm.taobao.org/@vue/babel-sugar-v-on/download/@vue/babel-sugar-v-on-1.1.2.tgz#b2ef99b8f2fab09fbead25aad70ef42e1cf5b13b" | ||
| 1018 | + integrity sha1-su+ZuPL6sJ++rSWq1w70Lhz1sTs= | ||
| 884 | dependencies: | 1019 | dependencies: |
| 885 | "@babel/plugin-syntax-jsx" "^7.2.0" | 1020 | "@babel/plugin-syntax-jsx" "^7.2.0" |
| 886 | - "@vue/babel-plugin-transform-vue-jsx" "^1.0.0" | 1021 | + "@vue/babel-plugin-transform-vue-jsx" "^1.1.2" |
| 887 | camelcase "^5.0.0" | 1022 | camelcase "^5.0.0" |
| 888 | 1023 | ||
| 889 | -"@vue/cli-overlay@^4.0.4": | ||
| 890 | - version "4.0.4" | ||
| 891 | - resolved "https://registry.npm.taobao.org/@vue/cli-overlay/download/@vue/cli-overlay-4.0.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-overlay%2Fdownload%2F%40vue%2Fcli-overlay-4.0.4.tgz#c9bdf34b24c80597c8d5b2968ac36bff1ba6d570" | ||
| 892 | - integrity sha1-yb3zSyTIBZfI1bKWisNr/xum1XA= | 1024 | +"@vue/cli-overlay@^4.4.6": |
| 1025 | + version "4.4.6" | ||
| 1026 | + resolved "https://registry.npm.taobao.org/@vue/cli-overlay/download/@vue/cli-overlay-4.4.6.tgz?cache=0&sync_timestamp=1592976467643&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-overlay%2Fdownload%2F%40vue%2Fcli-overlay-4.4.6.tgz#58f996066d8c0a0a45ad4b5c6f3f213f9945a9ba" | ||
| 1027 | + integrity sha1-WPmWBm2MCgpFrUtcbz8hP5lFqbo= | ||
| 893 | 1028 | ||
| 894 | -"@vue/cli-plugin-babel@^4.0.4": | ||
| 895 | - version "4.0.4" | ||
| 896 | - resolved "https://registry.npm.taobao.org/@vue/cli-plugin-babel/download/@vue/cli-plugin-babel-4.0.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-plugin-babel%2Fdownload%2F%40vue%2Fcli-plugin-babel-4.0.4.tgz#7541689eb86467e22a041c69c83fda17193c7cf3" | ||
| 897 | - integrity sha1-dUFonrhkZ+IqBBxpyD/aFxk8fPM= | 1029 | +"@vue/cli-plugin-babel@^4.4.6": |
| 1030 | + version "4.4.6" | ||
| 1031 | + resolved "https://registry.npm.taobao.org/@vue/cli-plugin-babel/download/@vue/cli-plugin-babel-4.4.6.tgz#d5d750d4f74900c00836e19c164193650df26f3b" | ||
| 1032 | + integrity sha1-1ddQ1PdJAMAINuGcFkGTZQ3ybzs= | ||
| 898 | dependencies: | 1033 | dependencies: |
| 899 | - "@babel/core" "^7.4.5" | ||
| 900 | - "@vue/babel-preset-app" "^4.0.4" | ||
| 901 | - "@vue/cli-shared-utils" "^4.0.4" | ||
| 902 | - babel-loader "^8.0.6" | 1034 | + "@babel/core" "^7.9.6" |
| 1035 | + "@vue/babel-preset-app" "^4.4.6" | ||
| 1036 | + "@vue/cli-shared-utils" "^4.4.6" | ||
| 1037 | + babel-loader "^8.1.0" | ||
| 1038 | + cache-loader "^4.1.0" | ||
| 1039 | + thread-loader "^2.1.3" | ||
| 903 | webpack "^4.0.0" | 1040 | webpack "^4.0.0" |
| 904 | 1041 | ||
| 905 | -"@vue/cli-plugin-router@^4.0.4": | ||
| 906 | - version "4.0.4" | ||
| 907 | - resolved "https://registry.npm.taobao.org/@vue/cli-plugin-router/download/@vue/cli-plugin-router-4.0.4.tgz?cache=0&sync_timestamp=1571385144615&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-plugin-router%2Fdownload%2F%40vue%2Fcli-plugin-router-4.0.4.tgz#e1010d3844519baad517f6050541711f6157942a" | ||
| 908 | - integrity sha1-4QENOERRm6rVF/YFBUFxH2FXlCo= | 1042 | +"@vue/cli-plugin-router@^4.4.6": |
| 1043 | + version "4.4.6" | ||
| 1044 | + resolved "https://registry.npm.taobao.org/@vue/cli-plugin-router/download/@vue/cli-plugin-router-4.4.6.tgz#db5bb1c92afd2046376e4faa90270d6363d4b9b8" | ||
| 1045 | + integrity sha1-21uxySr9IEY3bk+qkCcNY2PUubg= | ||
| 909 | dependencies: | 1046 | dependencies: |
| 910 | - "@vue/cli-shared-utils" "^4.0.4" | 1047 | + "@vue/cli-shared-utils" "^4.4.6" |
| 911 | 1048 | ||
| 912 | -"@vue/cli-plugin-vuex@^4.0.4": | ||
| 913 | - version "4.0.4" | ||
| 914 | - resolved "https://registry.npm.taobao.org/@vue/cli-plugin-vuex/download/@vue/cli-plugin-vuex-4.0.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-plugin-vuex%2Fdownload%2F%40vue%2Fcli-plugin-vuex-4.0.4.tgz#b5c9df4d8523ac496809f177b8baed7f7b7983af" | ||
| 915 | - integrity sha1-tcnfTYUjrEloCfF3uLrtf3t5g68= | 1049 | +"@vue/cli-plugin-vuex@^4.4.6": |
| 1050 | + version "4.4.6" | ||
| 1051 | + resolved "https://registry.npm.taobao.org/@vue/cli-plugin-vuex/download/@vue/cli-plugin-vuex-4.4.6.tgz#44b596f0d5236e0a2ce1aa4757bda5207c230be0" | ||
| 1052 | + integrity sha1-RLWW8NUjbgos4apHV72lIHwjC+A= | ||
| 916 | 1053 | ||
| 917 | -"@vue/cli-service@^4.0.4": | ||
| 918 | - version "4.0.4" | ||
| 919 | - resolved "https://registry.npm.taobao.org/@vue/cli-service/download/@vue/cli-service-4.0.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-service%2Fdownload%2F%40vue%2Fcli-service-4.0.4.tgz#3feb64637d6e26c739583a5f34852f06acf3c94b" | ||
| 920 | - integrity sha1-P+tkY31uJsc5WDpfNIUvBqzzyUs= | 1054 | +"@vue/cli-service@^4.4.6": |
| 1055 | + version "4.4.6" | ||
| 1056 | + resolved "https://registry.npm.taobao.org/@vue/cli-service/download/@vue/cli-service-4.4.6.tgz?cache=0&sync_timestamp=1592976472856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-service%2Fdownload%2F%40vue%2Fcli-service-4.4.6.tgz#83ca058d081eb145bbc1ae2fe8069d2d9ddf7e18" | ||
| 1057 | + integrity sha1-g8oFjQgesUW7wa4v6AadLZ3ffhg= | ||
| 921 | dependencies: | 1058 | dependencies: |
| 922 | "@intervolga/optimize-cssnano-plugin" "^1.0.5" | 1059 | "@intervolga/optimize-cssnano-plugin" "^1.0.5" |
| 923 | "@soda/friendly-errors-webpack-plugin" "^1.7.1" | 1060 | "@soda/friendly-errors-webpack-plugin" "^1.7.1" |
| 924 | - "@vue/cli-overlay" "^4.0.4" | ||
| 925 | - "@vue/cli-plugin-router" "^4.0.4" | ||
| 926 | - "@vue/cli-plugin-vuex" "^4.0.4" | ||
| 927 | - "@vue/cli-shared-utils" "^4.0.4" | ||
| 928 | - "@vue/component-compiler-utils" "^3.0.0" | 1061 | + "@soda/get-current-script" "^1.0.0" |
| 1062 | + "@vue/cli-overlay" "^4.4.6" | ||
| 1063 | + "@vue/cli-plugin-router" "^4.4.6" | ||
| 1064 | + "@vue/cli-plugin-vuex" "^4.4.6" | ||
| 1065 | + "@vue/cli-shared-utils" "^4.4.6" | ||
| 1066 | + "@vue/component-compiler-utils" "^3.1.2" | ||
| 929 | "@vue/preload-webpack-plugin" "^1.1.0" | 1067 | "@vue/preload-webpack-plugin" "^1.1.0" |
| 930 | "@vue/web-component-wrapper" "^1.2.0" | 1068 | "@vue/web-component-wrapper" "^1.2.0" |
| 931 | - acorn "^6.1.1" | ||
| 932 | - acorn-walk "^6.1.1" | ||
| 933 | - address "^1.1.0" | ||
| 934 | - autoprefixer "^9.5.1" | ||
| 935 | - browserslist "^4.6.0" | 1069 | + acorn "^7.2.0" |
| 1070 | + acorn-walk "^7.1.1" | ||
| 1071 | + address "^1.1.2" | ||
| 1072 | + autoprefixer "^9.8.0" | ||
| 1073 | + browserslist "^4.12.0" | ||
| 936 | cache-loader "^4.1.0" | 1074 | cache-loader "^4.1.0" |
| 937 | - case-sensitive-paths-webpack-plugin "^2.2.0" | ||
| 938 | - chalk "^2.4.2" | ||
| 939 | - cli-highlight "^2.1.1" | ||
| 940 | - clipboardy "^2.0.0" | ||
| 941 | - cliui "^5.0.0" | ||
| 942 | - copy-webpack-plugin "^5.0.3" | ||
| 943 | - css-loader "^3.1.0" | 1075 | + case-sensitive-paths-webpack-plugin "^2.3.0" |
| 1076 | + cli-highlight "^2.1.4" | ||
| 1077 | + clipboardy "^2.3.0" | ||
| 1078 | + cliui "^6.0.0" | ||
| 1079 | + copy-webpack-plugin "^5.1.1" | ||
| 1080 | + css-loader "^3.5.3" | ||
| 944 | cssnano "^4.1.10" | 1081 | cssnano "^4.1.10" |
| 945 | - current-script-polyfill "^1.0.0" | ||
| 946 | debug "^4.1.1" | 1082 | debug "^4.1.1" |
| 947 | - default-gateway "^5.0.2" | ||
| 948 | - dotenv "^8.0.0" | 1083 | + default-gateway "^5.0.5" |
| 1084 | + dotenv "^8.2.0" | ||
| 949 | dotenv-expand "^5.1.0" | 1085 | dotenv-expand "^5.1.0" |
| 950 | - file-loader "^4.1.0" | 1086 | + file-loader "^4.2.0" |
| 951 | fs-extra "^7.0.1" | 1087 | fs-extra "^7.0.1" |
| 952 | globby "^9.2.0" | 1088 | globby "^9.2.0" |
| 953 | - hash-sum "^1.0.2" | 1089 | + hash-sum "^2.0.0" |
| 954 | html-webpack-plugin "^3.2.0" | 1090 | html-webpack-plugin "^3.2.0" |
| 955 | launch-editor-middleware "^2.2.1" | 1091 | launch-editor-middleware "^2.2.1" |
| 956 | lodash.defaultsdeep "^4.6.1" | 1092 | lodash.defaultsdeep "^4.6.1" |
| 957 | lodash.mapvalues "^4.6.0" | 1093 | lodash.mapvalues "^4.6.0" |
| 958 | lodash.transform "^4.6.0" | 1094 | lodash.transform "^4.6.0" |
| 959 | - mini-css-extract-plugin "^0.8.0" | ||
| 960 | - minimist "^1.2.0" | ||
| 961 | - ora "^3.4.0" | ||
| 962 | - portfinder "^1.0.20" | 1095 | + mini-css-extract-plugin "^0.9.0" |
| 1096 | + minimist "^1.2.5" | ||
| 1097 | + pnp-webpack-plugin "^1.6.4" | ||
| 1098 | + portfinder "^1.0.26" | ||
| 963 | postcss-loader "^3.0.0" | 1099 | postcss-loader "^3.0.0" |
| 964 | - read-pkg "^5.1.1" | ||
| 965 | - semver "^6.1.0" | ||
| 966 | - slash "^3.0.0" | ||
| 967 | - source-map-url "^0.4.0" | ||
| 968 | - ssri "^6.0.1" | ||
| 969 | - string.prototype.padend "^3.0.0" | ||
| 970 | - terser-webpack-plugin "^2.1.2" | ||
| 971 | - thread-loader "^2.1.2" | ||
| 972 | - url-loader "^2.1.0" | ||
| 973 | - vue-loader "^15.7.0" | 1100 | + ssri "^7.1.0" |
| 1101 | + terser-webpack-plugin "^2.3.6" | ||
| 1102 | + thread-loader "^2.1.3" | ||
| 1103 | + url-loader "^2.2.0" | ||
| 1104 | + vue-loader "^15.9.2" | ||
| 1105 | + vue-style-loader "^4.1.2" | ||
| 974 | webpack "^4.0.0" | 1106 | webpack "^4.0.0" |
| 975 | - webpack-bundle-analyzer "^3.3.2" | ||
| 976 | - webpack-chain "^6.0.0" | ||
| 977 | - webpack-dev-server "^3.4.1" | ||
| 978 | - webpack-merge "^4.2.1" | 1107 | + webpack-bundle-analyzer "^3.8.0" |
| 1108 | + webpack-chain "^6.4.0" | ||
| 1109 | + webpack-dev-server "^3.11.0" | ||
| 1110 | + webpack-merge "^4.2.2" | ||
| 979 | 1111 | ||
| 980 | -"@vue/cli-shared-utils@^4.0.4": | ||
| 981 | - version "4.0.4" | ||
| 982 | - resolved "https://registry.npm.taobao.org/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.0.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-shared-utils%2Fdownload%2F%40vue%2Fcli-shared-utils-4.0.4.tgz#ef94325c3954eaac60ca4af9a6de355131ae6e3f" | ||
| 983 | - integrity sha1-75QyXDlU6qxgykr5pt41UTGubj8= | 1112 | +"@vue/cli-shared-utils@^4.4.6": |
| 1113 | + version "4.4.6" | ||
| 1114 | + resolved "https://registry.npm.taobao.org/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.4.6.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcli-shared-utils%2Fdownload%2F%40vue%2Fcli-shared-utils-4.4.6.tgz#0ec59880920736c6dd79079ac0b5ceac29fa55e1" | ||
| 1115 | + integrity sha1-DsWYgJIHNsbdeQeawLXOrCn6VeE= | ||
| 984 | dependencies: | 1116 | dependencies: |
| 985 | "@hapi/joi" "^15.0.1" | 1117 | "@hapi/joi" "^15.0.1" |
| 986 | - chalk "^2.4.1" | 1118 | + chalk "^2.4.2" |
| 987 | execa "^1.0.0" | 1119 | execa "^1.0.0" |
| 988 | launch-editor "^2.2.1" | 1120 | launch-editor "^2.2.1" |
| 989 | lru-cache "^5.1.1" | 1121 | lru-cache "^5.1.1" |
| 990 | node-ipc "^9.1.1" | 1122 | node-ipc "^9.1.1" |
| 991 | open "^6.3.0" | 1123 | open "^6.3.0" |
| 992 | ora "^3.4.0" | 1124 | ora "^3.4.0" |
| 993 | - request "^2.87.0" | ||
| 994 | - request-promise-native "^1.0.7" | 1125 | + read-pkg "^5.1.1" |
| 1126 | + request "^2.88.2" | ||
| 995 | semver "^6.1.0" | 1127 | semver "^6.1.0" |
| 996 | - string.prototype.padstart "^3.0.0" | 1128 | + strip-ansi "^6.0.0" |
| 997 | 1129 | ||
| 998 | -"@vue/component-compiler-utils@^3.0.0": | ||
| 999 | - version "3.0.0" | ||
| 1000 | - resolved "https://registry.npm.taobao.org/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.0.0.tgz#d16fa26b836c06df5baaeb45f3d80afc47e35634" | ||
| 1001 | - integrity sha1-0W+ia4NsBt9bqutF89gK/EfjVjQ= | 1130 | +"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.1.2": |
| 1131 | + version "3.1.2" | ||
| 1132 | + resolved "https://registry.npm.taobao.org/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.1.2.tgz?cache=0&sync_timestamp=1586331511241&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vue%2Fcomponent-compiler-utils%2Fdownload%2F%40vue%2Fcomponent-compiler-utils-3.1.2.tgz#8213a5ff3202f9f2137fe55370f9e8b9656081c3" | ||
| 1133 | + integrity sha1-ghOl/zIC+fITf+VTcPnouWVggcM= | ||
| 1002 | dependencies: | 1134 | dependencies: |
| 1003 | consolidate "^0.15.1" | 1135 | consolidate "^0.15.1" |
| 1004 | hash-sum "^1.0.2" | 1136 | hash-sum "^1.0.2" |
| 1005 | lru-cache "^4.1.2" | 1137 | lru-cache "^4.1.2" |
| 1006 | merge-source-map "^1.1.0" | 1138 | merge-source-map "^1.1.0" |
| 1007 | postcss "^7.0.14" | 1139 | postcss "^7.0.14" |
| 1008 | - postcss-selector-parser "^5.0.0" | ||
| 1009 | - prettier "1.16.3" | 1140 | + postcss-selector-parser "^6.0.2" |
| 1010 | source-map "~0.6.1" | 1141 | source-map "~0.6.1" |
| 1011 | vue-template-es2015-compiler "^1.9.0" | 1142 | vue-template-es2015-compiler "^1.9.0" |
| 1143 | + optionalDependencies: | ||
| 1144 | + prettier "^1.18.2" | ||
| 1012 | 1145 | ||
| 1013 | "@vue/preload-webpack-plugin@^1.1.0": | 1146 | "@vue/preload-webpack-plugin@^1.1.0": |
| 1014 | version "1.1.1" | 1147 | version "1.1.1" |
| @@ -1020,150 +1153,149 @@ | @@ -1020,150 +1153,149 @@ | ||
| 1020 | resolved "https://registry.npm.taobao.org/@vue/web-component-wrapper/download/@vue/web-component-wrapper-1.2.0.tgz#bb0e46f1585a7e289b4ee6067dcc5a6ae62f1dd1" | 1153 | resolved "https://registry.npm.taobao.org/@vue/web-component-wrapper/download/@vue/web-component-wrapper-1.2.0.tgz#bb0e46f1585a7e289b4ee6067dcc5a6ae62f1dd1" |
| 1021 | integrity sha1-uw5G8VhafiibTuYGfcxaauYvHdE= | 1154 | integrity sha1-uw5G8VhafiibTuYGfcxaauYvHdE= |
| 1022 | 1155 | ||
| 1023 | -"@webassemblyjs/ast@1.8.5": | ||
| 1024 | - version "1.8.5" | ||
| 1025 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/ast/download/@webassemblyjs/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" | ||
| 1026 | - integrity sha1-UbHF/mV2o0lTv0slPfnw1JDZ41k= | 1156 | +"@webassemblyjs/ast@1.9.0": |
| 1157 | + version "1.9.0" | ||
| 1158 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fast%2Fdownload%2F%40webassemblyjs%2Fast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" | ||
| 1159 | + integrity sha1-vYUGBLQEJFmlpBzX0zjL7Wle2WQ= | ||
| 1027 | dependencies: | 1160 | dependencies: |
| 1028 | - "@webassemblyjs/helper-module-context" "1.8.5" | ||
| 1029 | - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" | ||
| 1030 | - "@webassemblyjs/wast-parser" "1.8.5" | 1161 | + "@webassemblyjs/helper-module-context" "1.9.0" |
| 1162 | + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" | ||
| 1163 | + "@webassemblyjs/wast-parser" "1.9.0" | ||
| 1031 | 1164 | ||
| 1032 | -"@webassemblyjs/floating-point-hex-parser@1.8.5": | ||
| 1033 | - version "1.8.5" | ||
| 1034 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" | ||
| 1035 | - integrity sha1-G6kmopI2E+3OSW/VsC6M6KX0lyE= | 1165 | +"@webassemblyjs/floating-point-hex-parser@1.9.0": |
| 1166 | + version "1.9.0" | ||
| 1167 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Ffloating-point-hex-parser%2Fdownload%2F%40webassemblyjs%2Ffloating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4" | ||
| 1168 | + integrity sha1-PD07Jxvd/ITesA9xNEQ4MR1S/7Q= | ||
| 1036 | 1169 | ||
| 1037 | -"@webassemblyjs/helper-api-error@1.8.5": | ||
| 1038 | - version "1.8.5" | ||
| 1039 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" | ||
| 1040 | - integrity sha1-xJ2tIvZFInxe22EL25aX8aq3Ifc= | 1170 | +"@webassemblyjs/helper-api-error@1.9.0": |
| 1171 | + version "1.9.0" | ||
| 1172 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2" | ||
| 1173 | + integrity sha1-ID9nbjM7lsnaLuqzzO8zxFkotqI= | ||
| 1041 | 1174 | ||
| 1042 | -"@webassemblyjs/helper-buffer@1.8.5": | ||
| 1043 | - version "1.8.5" | ||
| 1044 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" | ||
| 1045 | - integrity sha1-/qk+Qphj3V5DOFVfQikjhaZT8gQ= | 1175 | +"@webassemblyjs/helper-buffer@1.9.0": |
| 1176 | + version "1.9.0" | ||
| 1177 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fhelper-buffer%2Fdownload%2F%40webassemblyjs%2Fhelper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00" | ||
| 1178 | + integrity sha1-oUQtJpxf6yP8vJ73WdrDVH8p3gA= | ||
| 1046 | 1179 | ||
| 1047 | -"@webassemblyjs/helper-code-frame@1.8.5": | ||
| 1048 | - version "1.8.5" | ||
| 1049 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-code-frame/download/@webassemblyjs/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" | ||
| 1050 | - integrity sha1-mnQP9I4/qjAisd/1RCPfmqKTwl4= | 1180 | +"@webassemblyjs/helper-code-frame@1.9.0": |
| 1181 | + version "1.9.0" | ||
| 1182 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-code-frame/download/@webassemblyjs/helper-code-frame-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fhelper-code-frame%2Fdownload%2F%40webassemblyjs%2Fhelper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27" | ||
| 1183 | + integrity sha1-ZH+Iks0gQ6gqwMjF51w28dkVnyc= | ||
| 1051 | dependencies: | 1184 | dependencies: |
| 1052 | - "@webassemblyjs/wast-printer" "1.8.5" | 1185 | + "@webassemblyjs/wast-printer" "1.9.0" |
| 1053 | 1186 | ||
| 1054 | -"@webassemblyjs/helper-fsm@1.8.5": | ||
| 1055 | - version "1.8.5" | ||
| 1056 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-fsm/download/@webassemblyjs/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" | ||
| 1057 | - integrity sha1-ugt9Oz9+RzPaYFnJMyJ12GBwJFI= | 1187 | +"@webassemblyjs/helper-fsm@1.9.0": |
| 1188 | + version "1.9.0" | ||
| 1189 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-fsm/download/@webassemblyjs/helper-fsm-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fhelper-fsm%2Fdownload%2F%40webassemblyjs%2Fhelper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8" | ||
| 1190 | + integrity sha1-wFJWtxJEIUZx9LCOwQitY7cO3bg= | ||
| 1058 | 1191 | ||
| 1059 | -"@webassemblyjs/helper-module-context@1.8.5": | ||
| 1060 | - version "1.8.5" | ||
| 1061 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" | ||
| 1062 | - integrity sha1-3vS5knsBAdyMu9jR7bW3ucguskU= | 1192 | +"@webassemblyjs/helper-module-context@1.9.0": |
| 1193 | + version "1.9.0" | ||
| 1194 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fhelper-module-context%2Fdownload%2F%40webassemblyjs%2Fhelper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07" | ||
| 1195 | + integrity sha1-JdiIS3aDmHGgimxvgGw5ee9xLwc= | ||
| 1063 | dependencies: | 1196 | dependencies: |
| 1064 | - "@webassemblyjs/ast" "1.8.5" | ||
| 1065 | - mamacro "^0.0.3" | 1197 | + "@webassemblyjs/ast" "1.9.0" |
| 1066 | 1198 | ||
| 1067 | -"@webassemblyjs/helper-wasm-bytecode@1.8.5": | ||
| 1068 | - version "1.8.5" | ||
| 1069 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" | ||
| 1070 | - integrity sha1-U3p1Dt31weky83RCBlUckcG5PmE= | 1199 | +"@webassemblyjs/helper-wasm-bytecode@1.9.0": |
| 1200 | + version "1.9.0" | ||
| 1201 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fhelper-wasm-bytecode%2Fdownload%2F%40webassemblyjs%2Fhelper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790" | ||
| 1202 | + integrity sha1-T+2L6sm4wU+MWLcNEk1UndH+V5A= | ||
| 1071 | 1203 | ||
| 1072 | -"@webassemblyjs/helper-wasm-section@1.8.5": | ||
| 1073 | - version "1.8.5" | ||
| 1074 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-wasm-section/download/@webassemblyjs/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" | ||
| 1075 | - integrity sha1-dMpqa8vhnlCjtrRihH5pUD5r/L8= | 1204 | +"@webassemblyjs/helper-wasm-section@1.9.0": |
| 1205 | + version "1.9.0" | ||
| 1206 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/helper-wasm-section/download/@webassemblyjs/helper-wasm-section-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fhelper-wasm-section%2Fdownload%2F%40webassemblyjs%2Fhelper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346" | ||
| 1207 | + integrity sha1-WkE41aYpK6GLBMWuSXF+QWeWU0Y= | ||
| 1076 | dependencies: | 1208 | dependencies: |
| 1077 | - "@webassemblyjs/ast" "1.8.5" | ||
| 1078 | - "@webassemblyjs/helper-buffer" "1.8.5" | ||
| 1079 | - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" | ||
| 1080 | - "@webassemblyjs/wasm-gen" "1.8.5" | 1209 | + "@webassemblyjs/ast" "1.9.0" |
| 1210 | + "@webassemblyjs/helper-buffer" "1.9.0" | ||
| 1211 | + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" | ||
| 1212 | + "@webassemblyjs/wasm-gen" "1.9.0" | ||
| 1081 | 1213 | ||
| 1082 | -"@webassemblyjs/ieee754@1.8.5": | ||
| 1083 | - version "1.8.5" | ||
| 1084 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" | ||
| 1085 | - integrity sha1-cSMp2+8kDza/V70ve4+5v0FUQh4= | 1214 | +"@webassemblyjs/ieee754@1.9.0": |
| 1215 | + version "1.9.0" | ||
| 1216 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fieee754%2Fdownload%2F%40webassemblyjs%2Fieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4" | ||
| 1217 | + integrity sha1-Fceg+6roP7JhQ7us9tbfFwKtOeQ= | ||
| 1086 | dependencies: | 1218 | dependencies: |
| 1087 | "@xtuc/ieee754" "^1.2.0" | 1219 | "@xtuc/ieee754" "^1.2.0" |
| 1088 | 1220 | ||
| 1089 | -"@webassemblyjs/leb128@1.8.5": | ||
| 1090 | - version "1.8.5" | ||
| 1091 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" | ||
| 1092 | - integrity sha1-BE7es06mefPgTNT9mCTV41dnrhA= | 1221 | +"@webassemblyjs/leb128@1.9.0": |
| 1222 | + version "1.9.0" | ||
| 1223 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fleb128%2Fdownload%2F%40webassemblyjs%2Fleb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95" | ||
| 1224 | + integrity sha1-8Zygt2ptxVYjoJz/p2noOPoeHJU= | ||
| 1093 | dependencies: | 1225 | dependencies: |
| 1094 | "@xtuc/long" "4.2.2" | 1226 | "@xtuc/long" "4.2.2" |
| 1095 | 1227 | ||
| 1096 | -"@webassemblyjs/utf8@1.8.5": | ||
| 1097 | - version "1.8.5" | ||
| 1098 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" | ||
| 1099 | - integrity sha1-qL87XY/+mGx8Hjc8y9wqCRXwztw= | 1228 | +"@webassemblyjs/utf8@1.9.0": |
| 1229 | + version "1.9.0" | ||
| 1230 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Futf8%2Fdownload%2F%40webassemblyjs%2Futf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab" | ||
| 1231 | + integrity sha1-BNM7Y2945qaBMifoJAL3Y3tiKas= | ||
| 1100 | 1232 | ||
| 1101 | -"@webassemblyjs/wasm-edit@1.8.5": | ||
| 1102 | - version "1.8.5" | ||
| 1103 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" | ||
| 1104 | - integrity sha1-li2hKqWswcExyBxCMpkcgs5W4Bo= | ||
| 1105 | - dependencies: | ||
| 1106 | - "@webassemblyjs/ast" "1.8.5" | ||
| 1107 | - "@webassemblyjs/helper-buffer" "1.8.5" | ||
| 1108 | - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" | ||
| 1109 | - "@webassemblyjs/helper-wasm-section" "1.8.5" | ||
| 1110 | - "@webassemblyjs/wasm-gen" "1.8.5" | ||
| 1111 | - "@webassemblyjs/wasm-opt" "1.8.5" | ||
| 1112 | - "@webassemblyjs/wasm-parser" "1.8.5" | ||
| 1113 | - "@webassemblyjs/wast-printer" "1.8.5" | ||
| 1114 | - | ||
| 1115 | -"@webassemblyjs/wasm-gen@1.8.5": | ||
| 1116 | - version "1.8.5" | ||
| 1117 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" | ||
| 1118 | - integrity sha1-VIQHZsLBAC62TtGr5yCt7XFPmLw= | 1233 | +"@webassemblyjs/wasm-edit@1.9.0": |
| 1234 | + version "1.9.0" | ||
| 1235 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fwasm-edit%2Fdownload%2F%40webassemblyjs%2Fwasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf" | ||
| 1236 | + integrity sha1-P+bXnT8PkiGDqoYALELdJWz+6c8= | ||
| 1237 | + dependencies: | ||
| 1238 | + "@webassemblyjs/ast" "1.9.0" | ||
| 1239 | + "@webassemblyjs/helper-buffer" "1.9.0" | ||
| 1240 | + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" | ||
| 1241 | + "@webassemblyjs/helper-wasm-section" "1.9.0" | ||
| 1242 | + "@webassemblyjs/wasm-gen" "1.9.0" | ||
| 1243 | + "@webassemblyjs/wasm-opt" "1.9.0" | ||
| 1244 | + "@webassemblyjs/wasm-parser" "1.9.0" | ||
| 1245 | + "@webassemblyjs/wast-printer" "1.9.0" | ||
| 1246 | + | ||
| 1247 | +"@webassemblyjs/wasm-gen@1.9.0": | ||
| 1248 | + version "1.9.0" | ||
| 1249 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fwasm-gen%2Fdownload%2F%40webassemblyjs%2Fwasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c" | ||
| 1250 | + integrity sha1-ULxw7Gje2OJ2OwGhQYv0NJGnpJw= | ||
| 1119 | dependencies: | 1251 | dependencies: |
| 1120 | - "@webassemblyjs/ast" "1.8.5" | ||
| 1121 | - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" | ||
| 1122 | - "@webassemblyjs/ieee754" "1.8.5" | ||
| 1123 | - "@webassemblyjs/leb128" "1.8.5" | ||
| 1124 | - "@webassemblyjs/utf8" "1.8.5" | 1252 | + "@webassemblyjs/ast" "1.9.0" |
| 1253 | + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" | ||
| 1254 | + "@webassemblyjs/ieee754" "1.9.0" | ||
| 1255 | + "@webassemblyjs/leb128" "1.9.0" | ||
| 1256 | + "@webassemblyjs/utf8" "1.9.0" | ||
| 1125 | 1257 | ||
| 1126 | -"@webassemblyjs/wasm-opt@1.8.5": | ||
| 1127 | - version "1.8.5" | ||
| 1128 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/wasm-opt/download/@webassemblyjs/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" | ||
| 1129 | - integrity sha1-sk2fa6UDlK8TSfUQr6j/y4pj0mQ= | 1258 | +"@webassemblyjs/wasm-opt@1.9.0": |
| 1259 | + version "1.9.0" | ||
| 1260 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/wasm-opt/download/@webassemblyjs/wasm-opt-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fwasm-opt%2Fdownload%2F%40webassemblyjs%2Fwasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61" | ||
| 1261 | + integrity sha1-IhEYHlsxMmRDzIES658LkChyGmE= | ||
| 1130 | dependencies: | 1262 | dependencies: |
| 1131 | - "@webassemblyjs/ast" "1.8.5" | ||
| 1132 | - "@webassemblyjs/helper-buffer" "1.8.5" | ||
| 1133 | - "@webassemblyjs/wasm-gen" "1.8.5" | ||
| 1134 | - "@webassemblyjs/wasm-parser" "1.8.5" | 1263 | + "@webassemblyjs/ast" "1.9.0" |
| 1264 | + "@webassemblyjs/helper-buffer" "1.9.0" | ||
| 1265 | + "@webassemblyjs/wasm-gen" "1.9.0" | ||
| 1266 | + "@webassemblyjs/wasm-parser" "1.9.0" | ||
| 1135 | 1267 | ||
| 1136 | -"@webassemblyjs/wasm-parser@1.8.5": | ||
| 1137 | - version "1.8.5" | ||
| 1138 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" | ||
| 1139 | - integrity sha1-IVdvDsiLkUJzV7hTY4NmjvfGa40= | 1268 | +"@webassemblyjs/wasm-parser@1.9.0": |
| 1269 | + version "1.9.0" | ||
| 1270 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fwasm-parser%2Fdownload%2F%40webassemblyjs%2Fwasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e" | ||
| 1271 | + integrity sha1-nUjkSCbfSmWYKUqmyHRp1kL/9l4= | ||
| 1140 | dependencies: | 1272 | dependencies: |
| 1141 | - "@webassemblyjs/ast" "1.8.5" | ||
| 1142 | - "@webassemblyjs/helper-api-error" "1.8.5" | ||
| 1143 | - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" | ||
| 1144 | - "@webassemblyjs/ieee754" "1.8.5" | ||
| 1145 | - "@webassemblyjs/leb128" "1.8.5" | ||
| 1146 | - "@webassemblyjs/utf8" "1.8.5" | 1273 | + "@webassemblyjs/ast" "1.9.0" |
| 1274 | + "@webassemblyjs/helper-api-error" "1.9.0" | ||
| 1275 | + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" | ||
| 1276 | + "@webassemblyjs/ieee754" "1.9.0" | ||
| 1277 | + "@webassemblyjs/leb128" "1.9.0" | ||
| 1278 | + "@webassemblyjs/utf8" "1.9.0" | ||
| 1147 | 1279 | ||
| 1148 | -"@webassemblyjs/wast-parser@1.8.5": | ||
| 1149 | - version "1.8.5" | ||
| 1150 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" | ||
| 1151 | - integrity sha1-4Q7s1ULQ5705T2gnxJ899tTu+4w= | ||
| 1152 | - dependencies: | ||
| 1153 | - "@webassemblyjs/ast" "1.8.5" | ||
| 1154 | - "@webassemblyjs/floating-point-hex-parser" "1.8.5" | ||
| 1155 | - "@webassemblyjs/helper-api-error" "1.8.5" | ||
| 1156 | - "@webassemblyjs/helper-code-frame" "1.8.5" | ||
| 1157 | - "@webassemblyjs/helper-fsm" "1.8.5" | 1280 | +"@webassemblyjs/wast-parser@1.9.0": |
| 1281 | + version "1.9.0" | ||
| 1282 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fwast-parser%2Fdownload%2F%40webassemblyjs%2Fwast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914" | ||
| 1283 | + integrity sha1-MDERXXmsW9JhVWzsw/qQo+9FGRQ= | ||
| 1284 | + dependencies: | ||
| 1285 | + "@webassemblyjs/ast" "1.9.0" | ||
| 1286 | + "@webassemblyjs/floating-point-hex-parser" "1.9.0" | ||
| 1287 | + "@webassemblyjs/helper-api-error" "1.9.0" | ||
| 1288 | + "@webassemblyjs/helper-code-frame" "1.9.0" | ||
| 1289 | + "@webassemblyjs/helper-fsm" "1.9.0" | ||
| 1158 | "@xtuc/long" "4.2.2" | 1290 | "@xtuc/long" "4.2.2" |
| 1159 | 1291 | ||
| 1160 | -"@webassemblyjs/wast-printer@1.8.5": | ||
| 1161 | - version "1.8.5" | ||
| 1162 | - resolved "https://registry.npm.taobao.org/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" | ||
| 1163 | - integrity sha1-EUu8SB/RDKDiOzVg+oEnSLC65bw= | 1292 | +"@webassemblyjs/wast-printer@1.9.0": |
| 1293 | + version "1.9.0" | ||
| 1294 | + resolved "https://registry.npm.taobao.org/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899" | ||
| 1295 | + integrity sha1-STXVTIX+9jewDOn1I3dFHQDUeJk= | ||
| 1164 | dependencies: | 1296 | dependencies: |
| 1165 | - "@webassemblyjs/ast" "1.8.5" | ||
| 1166 | - "@webassemblyjs/wast-parser" "1.8.5" | 1297 | + "@webassemblyjs/ast" "1.9.0" |
| 1298 | + "@webassemblyjs/wast-parser" "1.9.0" | ||
| 1167 | "@xtuc/long" "4.2.2" | 1299 | "@xtuc/long" "4.2.2" |
| 1168 | 1300 | ||
| 1169 | "@xtuc/ieee754@^1.2.0": | 1301 | "@xtuc/ieee754@^1.2.0": |
| @@ -1178,14 +1310,9 @@ | @@ -1178,14 +1310,9 @@ | ||
| 1178 | 1310 | ||
| 1179 | abab@^1.0.0: | 1311 | abab@^1.0.0: |
| 1180 | version "1.0.4" | 1312 | version "1.0.4" |
| 1181 | - resolved "https://registry.npm.taobao.org/abab/download/abab-1.0.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fabab%2Fdownload%2Fabab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" | 1313 | + resolved "https://registry.npm.taobao.org/abab/download/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" |
| 1182 | integrity sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4= | 1314 | integrity sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4= |
| 1183 | 1315 | ||
| 1184 | -abbrev@1: | ||
| 1185 | - version "1.1.1" | ||
| 1186 | - resolved "https://registry.npm.taobao.org/abbrev/download/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" | ||
| 1187 | - integrity sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg= | ||
| 1188 | - | ||
| 1189 | accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: | 1316 | accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: |
| 1190 | version "1.3.7" | 1317 | version "1.3.7" |
| 1191 | resolved "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" | 1318 | resolved "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" |
| @@ -1201,29 +1328,34 @@ acorn-globals@^1.0.4: | @@ -1201,29 +1328,34 @@ acorn-globals@^1.0.4: | ||
| 1201 | dependencies: | 1328 | dependencies: |
| 1202 | acorn "^2.1.0" | 1329 | acorn "^2.1.0" |
| 1203 | 1330 | ||
| 1204 | -acorn-walk@^6.1.1: | ||
| 1205 | - version "6.2.0" | ||
| 1206 | - resolved "https://registry.npm.taobao.org/acorn-walk/download/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" | ||
| 1207 | - integrity sha1-Ejy487hMIXHx9/slJhWxx4prGow= | 1331 | +acorn-walk@^7.1.1: |
| 1332 | + version "7.2.0" | ||
| 1333 | + resolved "https://registry.npm.taobao.org/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1592373525906&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" | ||
| 1334 | + integrity sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w= | ||
| 1208 | 1335 | ||
| 1209 | acorn@^2.1.0, acorn@^2.4.0: | 1336 | acorn@^2.1.0, acorn@^2.4.0: |
| 1210 | version "2.7.0" | 1337 | version "2.7.0" |
| 1211 | - resolved "https://registry.npm.taobao.org/acorn/download/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" | 1338 | + resolved "https://registry.npm.taobao.org/acorn/download/acorn-2.7.0.tgz?cache=0&sync_timestamp=1591869461226&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn%2Fdownload%2Facorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" |
| 1212 | integrity sha1-q259nYhqrKiwhbwzEreaGYQz8Oc= | 1339 | integrity sha1-q259nYhqrKiwhbwzEreaGYQz8Oc= |
| 1213 | 1340 | ||
| 1214 | -acorn@^6.0.7, acorn@^6.1.1, acorn@^6.2.1: | ||
| 1215 | - version "6.3.0" | ||
| 1216 | - resolved "https://registry.npm.taobao.org/acorn/download/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e" | ||
| 1217 | - integrity sha1-AIdQkRn/pPwKAEHR6TpBfmjLhW4= | 1341 | +acorn@^6.4.1: |
| 1342 | + version "6.4.1" | ||
| 1343 | + resolved "https://registry.npm.taobao.org/acorn/download/acorn-6.4.1.tgz?cache=0&sync_timestamp=1591869461226&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn%2Fdownload%2Facorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" | ||
| 1344 | + integrity sha1-Ux5Yuj9RudrLmmZGyk3r9bFMpHQ= | ||
| 1345 | + | ||
| 1346 | +acorn@^7.1.1, acorn@^7.2.0: | ||
| 1347 | + version "7.3.1" | ||
| 1348 | + resolved "https://registry.npm.taobao.org/acorn/download/acorn-7.3.1.tgz?cache=0&sync_timestamp=1591869461226&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn%2Fdownload%2Facorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" | ||
| 1349 | + integrity sha1-hQEHVNtTw/uvO56j4IOqXF0Uf/0= | ||
| 1218 | 1350 | ||
| 1219 | -address@^1.1.0: | 1351 | +address@^1.1.2: |
| 1220 | version "1.1.2" | 1352 | version "1.1.2" |
| 1221 | resolved "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" | 1353 | resolved "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" |
| 1222 | integrity sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY= | 1354 | integrity sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY= |
| 1223 | 1355 | ||
| 1224 | aggregate-error@^3.0.0: | 1356 | aggregate-error@^3.0.0: |
| 1225 | version "3.0.1" | 1357 | version "3.0.1" |
| 1226 | - resolved "https://registry.npm.taobao.org/aggregate-error/download/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" | 1358 | + resolved "https://registry.npm.taobao.org/aggregate-error/download/aggregate-error-3.0.1.tgz?cache=0&sync_timestamp=1570167911603&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Faggregate-error%2Fdownload%2Faggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" |
| 1227 | integrity sha1-2y/nJG5Tb0DZtUQqOeEX191qJOA= | 1359 | integrity sha1-2y/nJG5Tb0DZtUQqOeEX191qJOA= |
| 1228 | dependencies: | 1360 | dependencies: |
| 1229 | clean-stack "^2.0.0" | 1361 | clean-stack "^2.0.0" |
| @@ -1235,16 +1367,16 @@ ajv-errors@^1.0.0: | @@ -1235,16 +1367,16 @@ ajv-errors@^1.0.0: | ||
| 1235 | integrity sha1-81mGrOuRr63sQQL72FAUlQzvpk0= | 1367 | integrity sha1-81mGrOuRr63sQQL72FAUlQzvpk0= |
| 1236 | 1368 | ||
| 1237 | ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: | 1369 | ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: |
| 1238 | - version "3.4.1" | ||
| 1239 | - resolved "https://registry.npm.taobao.org/ajv-keywords/download/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" | ||
| 1240 | - integrity sha1-75FuJxxkrBIXH9g4TqrmsjRYVNo= | 1370 | + version "3.5.1" |
| 1371 | + resolved "https://registry.npm.taobao.org/ajv-keywords/download/ajv-keywords-3.5.1.tgz?cache=0&sync_timestamp=1594153326427&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fajv-keywords%2Fdownload%2Fajv-keywords-3.5.1.tgz#b83ca89c5d42d69031f424cad49aada0236c6957" | ||
| 1372 | + integrity sha1-uDyonF1C1pAx9CTK1JqtoCNsaVc= | ||
| 1241 | 1373 | ||
| 1242 | -ajv@^6.1.0, ajv@^6.10.2, ajv@^6.5.5: | ||
| 1243 | - version "6.10.2" | ||
| 1244 | - resolved "https://registry.npm.taobao.org/ajv/download/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" | ||
| 1245 | - integrity sha1-086gTWsBeyiUrWkED+yLYj60vVI= | 1374 | +ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.5.5: |
| 1375 | + version "6.12.3" | ||
| 1376 | + resolved "https://registry.npm.taobao.org/ajv/download/ajv-6.12.3.tgz?cache=0&sync_timestamp=1593876862902&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fajv%2Fdownload%2Fajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" | ||
| 1377 | + integrity sha1-GMWvOKER3etPJpe9eNaKvByr1wY= | ||
| 1246 | dependencies: | 1378 | dependencies: |
| 1247 | - fast-deep-equal "^2.0.1" | 1379 | + fast-deep-equal "^3.1.1" |
| 1248 | fast-json-stable-stringify "^2.0.0" | 1380 | fast-json-stable-stringify "^2.0.0" |
| 1249 | json-schema-traverse "^0.4.1" | 1381 | json-schema-traverse "^0.4.1" |
| 1250 | uri-js "^4.2.2" | 1382 | uri-js "^4.2.2" |
| @@ -1279,6 +1411,11 @@ ansi-regex@^4.1.0: | @@ -1279,6 +1411,11 @@ ansi-regex@^4.1.0: | ||
| 1279 | resolved "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" | 1411 | resolved "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" |
| 1280 | integrity sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc= | 1412 | integrity sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc= |
| 1281 | 1413 | ||
| 1414 | +ansi-regex@^5.0.0: | ||
| 1415 | + version "5.0.0" | ||
| 1416 | + resolved "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" | ||
| 1417 | + integrity sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U= | ||
| 1418 | + | ||
| 1282 | ansi-styles@^2.2.1: | 1419 | ansi-styles@^2.2.1: |
| 1283 | version "2.2.1" | 1420 | version "2.2.1" |
| 1284 | resolved "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" | 1421 | resolved "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" |
| @@ -1291,6 +1428,14 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: | @@ -1291,6 +1428,14 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: | ||
| 1291 | dependencies: | 1428 | dependencies: |
| 1292 | color-convert "^1.9.0" | 1429 | color-convert "^1.9.0" |
| 1293 | 1430 | ||
| 1431 | +ansi-styles@^4.0.0, ansi-styles@^4.1.0: | ||
| 1432 | + version "4.2.1" | ||
| 1433 | + resolved "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" | ||
| 1434 | + integrity sha1-kK51xCTQCNJiTFvynq0xd+v881k= | ||
| 1435 | + dependencies: | ||
| 1436 | + "@types/color-name" "^1.1.1" | ||
| 1437 | + color-convert "^2.0.1" | ||
| 1438 | + | ||
| 1294 | any-promise@^1.0.0: | 1439 | any-promise@^1.0.0: |
| 1295 | version "1.3.0" | 1440 | version "1.3.0" |
| 1296 | resolved "https://registry.npm.taobao.org/any-promise/download/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" | 1441 | resolved "https://registry.npm.taobao.org/any-promise/download/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" |
| @@ -1312,23 +1457,15 @@ anymatch@~3.1.1: | @@ -1312,23 +1457,15 @@ anymatch@~3.1.1: | ||
| 1312 | normalize-path "^3.0.0" | 1457 | normalize-path "^3.0.0" |
| 1313 | picomatch "^2.0.4" | 1458 | picomatch "^2.0.4" |
| 1314 | 1459 | ||
| 1315 | -aproba@^1.0.3, aproba@^1.1.1: | 1460 | +aproba@^1.1.1: |
| 1316 | version "1.2.0" | 1461 | version "1.2.0" |
| 1317 | resolved "https://registry.npm.taobao.org/aproba/download/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" | 1462 | resolved "https://registry.npm.taobao.org/aproba/download/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" |
| 1318 | integrity sha1-aALmJk79GMeQobDVF/DyYnvyyUo= | 1463 | integrity sha1-aALmJk79GMeQobDVF/DyYnvyyUo= |
| 1319 | 1464 | ||
| 1320 | arch@^2.1.1: | 1465 | arch@^2.1.1: |
| 1321 | - version "2.1.1" | ||
| 1322 | - resolved "https://registry.npm.taobao.org/arch/download/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e" | ||
| 1323 | - integrity sha1-j1wnMao1owkpIhuwZA7tZRdeyE4= | ||
| 1324 | - | ||
| 1325 | -are-we-there-yet@~1.1.2: | ||
| 1326 | - version "1.1.5" | ||
| 1327 | - resolved "https://registry.npm.taobao.org/are-we-there-yet/download/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" | ||
| 1328 | - integrity sha1-SzXClE8GKov82mZBB2A1D+nd/CE= | ||
| 1329 | - dependencies: | ||
| 1330 | - delegates "^1.0.0" | ||
| 1331 | - readable-stream "^2.0.6" | 1466 | + version "2.1.2" |
| 1467 | + resolved "https://registry.npm.taobao.org/arch/download/arch-2.1.2.tgz?cache=0&sync_timestamp=1589130903544&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farch%2Fdownload%2Farch-2.1.2.tgz#0c52bbe7344bb4fa260c443d2cbad9c00ff2f0bf" | ||
| 1468 | + integrity sha1-DFK75zRLtPomDEQ9LLrZwA/y8L8= | ||
| 1332 | 1469 | ||
| 1333 | argparse@^1.0.7: | 1470 | argparse@^1.0.7: |
| 1334 | version "1.0.10" | 1471 | version "1.0.10" |
| @@ -1354,12 +1491,12 @@ arr-union@^3.1.0: | @@ -1354,12 +1491,12 @@ arr-union@^3.1.0: | ||
| 1354 | 1491 | ||
| 1355 | array-flatten@1.1.1: | 1492 | array-flatten@1.1.1: |
| 1356 | version "1.1.1" | 1493 | version "1.1.1" |
| 1357 | - resolved "https://registry.npm.taobao.org/array-flatten/download/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" | 1494 | + resolved "https://registry.npm.taobao.org/array-flatten/download/array-flatten-1.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray-flatten%2Fdownload%2Farray-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" |
| 1358 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= | 1495 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= |
| 1359 | 1496 | ||
| 1360 | array-flatten@^2.1.0: | 1497 | array-flatten@^2.1.0: |
| 1361 | version "2.1.2" | 1498 | version "2.1.2" |
| 1362 | - resolved "https://registry.npm.taobao.org/array-flatten/download/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" | 1499 | + resolved "https://registry.npm.taobao.org/array-flatten/download/array-flatten-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray-flatten%2Fdownload%2Farray-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" |
| 1363 | integrity sha1-JO+AoowaiTYX4hSbDG0NeIKTsJk= | 1500 | integrity sha1-JO+AoowaiTYX4hSbDG0NeIKTsJk= |
| 1364 | 1501 | ||
| 1365 | array-union@^1.0.1, array-union@^1.0.2: | 1502 | array-union@^1.0.1, array-union@^1.0.2: |
| @@ -1420,7 +1557,7 @@ async-each@^1.0.1: | @@ -1420,7 +1557,7 @@ async-each@^1.0.1: | ||
| 1420 | 1557 | ||
| 1421 | async-limiter@~1.0.0: | 1558 | async-limiter@~1.0.0: |
| 1422 | version "1.0.1" | 1559 | version "1.0.1" |
| 1423 | - resolved "https://registry.npm.taobao.org/async-limiter/download/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" | 1560 | + resolved "https://registry.npm.taobao.org/async-limiter/download/async-limiter-1.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fasync-limiter%2Fdownload%2Fasync-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" |
| 1424 | integrity sha1-3TeelPDbgxCwgpH51kwyCXZmF/0= | 1561 | integrity sha1-3TeelPDbgxCwgpH51kwyCXZmF/0= |
| 1425 | 1562 | ||
| 1426 | async-validator@~1.8.1: | 1563 | async-validator@~1.8.1: |
| @@ -1432,7 +1569,7 @@ async-validator@~1.8.1: | @@ -1432,7 +1569,7 @@ async-validator@~1.8.1: | ||
| 1432 | 1569 | ||
| 1433 | async@^2.6.2: | 1570 | async@^2.6.2: |
| 1434 | version "2.6.3" | 1571 | version "2.6.3" |
| 1435 | - resolved "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" | 1572 | + resolved "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz?cache=0&sync_timestamp=1582540512270&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fasync%2Fdownload%2Fasync-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" |
| 1436 | integrity sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8= | 1573 | integrity sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8= |
| 1437 | dependencies: | 1574 | dependencies: |
| 1438 | lodash "^4.17.14" | 1575 | lodash "^4.17.14" |
| @@ -1442,23 +1579,23 @@ asynckit@^0.4.0: | @@ -1442,23 +1579,23 @@ asynckit@^0.4.0: | ||
| 1442 | resolved "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" | 1579 | resolved "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" |
| 1443 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= | 1580 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= |
| 1444 | 1581 | ||
| 1445 | -atob@^2.1.1: | 1582 | +atob@^2.1.2: |
| 1446 | version "2.1.2" | 1583 | version "2.1.2" |
| 1447 | resolved "https://registry.npm.taobao.org/atob/download/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" | 1584 | resolved "https://registry.npm.taobao.org/atob/download/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" |
| 1448 | integrity sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k= | 1585 | integrity sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k= |
| 1449 | 1586 | ||
| 1450 | -autoprefixer@^9.5.1: | ||
| 1451 | - version "9.6.5" | ||
| 1452 | - resolved "https://registry.npm.taobao.org/autoprefixer/download/autoprefixer-9.6.5.tgz?cache=0&sync_timestamp=1571039940822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fautoprefixer%2Fdownload%2Fautoprefixer-9.6.5.tgz#98f4afe7e93cccf323287515d426019619775e5e" | ||
| 1453 | - integrity sha1-mPSv5+k8zPMjKHUV1CYBlhl3Xl4= | 1587 | +autoprefixer@^9.8.0: |
| 1588 | + version "9.8.4" | ||
| 1589 | + resolved "https://registry.npm.taobao.org/autoprefixer/download/autoprefixer-9.8.4.tgz?cache=0&sync_timestamp=1592967925372&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fautoprefixer%2Fdownload%2Fautoprefixer-9.8.4.tgz#736f1012673a70fa3464671d78d41abd54512863" | ||
| 1590 | + integrity sha1-c28QEmc6cPo0ZGcdeNQavVRRKGM= | ||
| 1454 | dependencies: | 1591 | dependencies: |
| 1455 | - browserslist "^4.7.0" | ||
| 1456 | - caniuse-lite "^1.0.30000999" | ||
| 1457 | - chalk "^2.4.2" | 1592 | + browserslist "^4.12.0" |
| 1593 | + caniuse-lite "^1.0.30001087" | ||
| 1594 | + colorette "^1.2.0" | ||
| 1458 | normalize-range "^0.1.2" | 1595 | normalize-range "^0.1.2" |
| 1459 | num2fraction "^1.2.2" | 1596 | num2fraction "^1.2.2" |
| 1460 | - postcss "^7.0.18" | ||
| 1461 | - postcss-value-parser "^4.0.2" | 1597 | + postcss "^7.0.32" |
| 1598 | + postcss-value-parser "^4.1.0" | ||
| 1462 | 1599 | ||
| 1463 | aws-sign2@~0.7.0: | 1600 | aws-sign2@~0.7.0: |
| 1464 | version "0.7.0" | 1601 | version "0.7.0" |
| @@ -1466,54 +1603,43 @@ aws-sign2@~0.7.0: | @@ -1466,54 +1603,43 @@ aws-sign2@~0.7.0: | ||
| 1466 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= | 1603 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= |
| 1467 | 1604 | ||
| 1468 | aws4@^1.8.0: | 1605 | aws4@^1.8.0: |
| 1469 | - version "1.8.0" | ||
| 1470 | - resolved "https://registry.npm.taobao.org/aws4/download/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" | ||
| 1471 | - integrity sha1-8OAD2cqef1nHpQiUXXsu+aBKVC8= | 1606 | + version "1.10.0" |
| 1607 | + resolved "https://registry.npm.taobao.org/aws4/download/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2" | ||
| 1608 | + integrity sha1-oXs6jqgRBg501H0wYSJACtRJeuI= | ||
| 1472 | 1609 | ||
| 1473 | -axios@^0.19.0: | ||
| 1474 | - version "0.19.0" | ||
| 1475 | - resolved "https://registry.npm.taobao.org/axios/download/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8" | ||
| 1476 | - integrity sha1-jgm/89kSLhM/e4EByPvdAO09Krg= | 1610 | +axios@^0.19.2: |
| 1611 | + version "0.19.2" | ||
| 1612 | + resolved "https://registry.npm.taobao.org/axios/download/axios-0.19.2.tgz#3ea36c5d8818d0d5f8a8a97a6d36b86cdc00cb27" | ||
| 1613 | + integrity sha1-PqNsXYgY0NX4qKl6bTa4bNwAyyc= | ||
| 1477 | dependencies: | 1614 | dependencies: |
| 1478 | follow-redirects "1.5.10" | 1615 | follow-redirects "1.5.10" |
| 1479 | - is-buffer "^2.0.2" | ||
| 1480 | 1616 | ||
| 1481 | babel-helper-vue-jsx-merge-props@^2.0.0: | 1617 | babel-helper-vue-jsx-merge-props@^2.0.0: |
| 1482 | version "2.0.3" | 1618 | version "2.0.3" |
| 1483 | resolved "https://registry.npm.taobao.org/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz#22aebd3b33902328e513293a8e4992b384f9f1b6" | 1619 | resolved "https://registry.npm.taobao.org/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz#22aebd3b33902328e513293a8e4992b384f9f1b6" |
| 1484 | integrity sha1-Iq69OzOQIyjlEyk6jkmSs4T58bY= | 1620 | integrity sha1-Iq69OzOQIyjlEyk6jkmSs4T58bY= |
| 1485 | 1621 | ||
| 1486 | -babel-loader@^8.0.6: | ||
| 1487 | - version "8.0.6" | ||
| 1488 | - resolved "https://registry.npm.taobao.org/babel-loader/download/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb" | ||
| 1489 | - integrity sha1-4zvbbzYrA/S7FBoMIauHxQG3Dfs= | 1622 | +babel-loader@^8.1.0: |
| 1623 | + version "8.1.0" | ||
| 1624 | + resolved "https://registry.npm.taobao.org/babel-loader/download/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3" | ||
| 1625 | + integrity sha1-xhHVESvVIJq+i5+oTD5NolJ18cM= | ||
| 1490 | dependencies: | 1626 | dependencies: |
| 1491 | - find-cache-dir "^2.0.0" | ||
| 1492 | - loader-utils "^1.0.2" | ||
| 1493 | - mkdirp "^0.5.1" | 1627 | + find-cache-dir "^2.1.0" |
| 1628 | + loader-utils "^1.4.0" | ||
| 1629 | + mkdirp "^0.5.3" | ||
| 1494 | pify "^4.0.1" | 1630 | pify "^4.0.1" |
| 1631 | + schema-utils "^2.6.5" | ||
| 1495 | 1632 | ||
| 1496 | -babel-plugin-dynamic-import-node@^2.2.0, babel-plugin-dynamic-import-node@^2.3.0: | ||
| 1497 | - version "2.3.0" | ||
| 1498 | - resolved "https://registry.npm.taobao.org/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" | ||
| 1499 | - integrity sha1-8A9Qe9qjw+P/bn5emNkKesq5b38= | 1633 | +babel-plugin-dynamic-import-node@^2.3.3: |
| 1634 | + version "2.3.3" | ||
| 1635 | + resolved "https://registry.npm.taobao.org/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" | ||
| 1636 | + integrity sha1-hP2hnJduxcbe/vV/lCez3vZuF6M= | ||
| 1500 | dependencies: | 1637 | dependencies: |
| 1501 | object.assign "^4.1.0" | 1638 | object.assign "^4.1.0" |
| 1502 | 1639 | ||
| 1503 | -babel-plugin-module-resolver@^3.2.0: | ||
| 1504 | - version "3.2.0" | ||
| 1505 | - resolved "https://registry.npm.taobao.org/babel-plugin-module-resolver/download/babel-plugin-module-resolver-3.2.0.tgz#ddfa5e301e3b9aa12d852a9979f18b37881ff5a7" | ||
| 1506 | - integrity sha1-3fpeMB47mqEthSqZefGLN4gf9ac= | ||
| 1507 | - dependencies: | ||
| 1508 | - find-babel-config "^1.1.0" | ||
| 1509 | - glob "^7.1.2" | ||
| 1510 | - pkg-up "^2.0.0" | ||
| 1511 | - reselect "^3.0.1" | ||
| 1512 | - resolve "^1.4.0" | ||
| 1513 | - | ||
| 1514 | babel-runtime@6.x: | 1640 | babel-runtime@6.x: |
| 1515 | version "6.26.0" | 1641 | version "6.26.0" |
| 1516 | - resolved "https://registry.npm.taobao.org/babel-runtime/download/babel-runtime-6.26.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-runtime%2Fdownload%2Fbabel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" | 1642 | + resolved "https://registry.npm.taobao.org/babel-runtime/download/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" |
| 1517 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= | 1643 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= |
| 1518 | dependencies: | 1644 | dependencies: |
| 1519 | core-js "^2.4.0" | 1645 | core-js "^2.4.0" |
| @@ -1556,7 +1682,7 @@ bcrypt-pbkdf@^1.0.0: | @@ -1556,7 +1682,7 @@ bcrypt-pbkdf@^1.0.0: | ||
| 1556 | 1682 | ||
| 1557 | bfj@^6.1.1: | 1683 | bfj@^6.1.1: |
| 1558 | version "6.1.2" | 1684 | version "6.1.2" |
| 1559 | - resolved "https://registry.npm.taobao.org/bfj/download/bfj-6.1.2.tgz#325c861a822bcb358a41c78a33b8e6e2086dde7f" | 1685 | + resolved "https://registry.npm.taobao.org/bfj/download/bfj-6.1.2.tgz?cache=0&sync_timestamp=1577112700192&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbfj%2Fdownload%2Fbfj-6.1.2.tgz#325c861a822bcb358a41c78a33b8e6e2086dde7f" |
| 1560 | integrity sha1-MlyGGoIryzWKQceKM7jm4ght3n8= | 1686 | integrity sha1-MlyGGoIryzWKQceKM7jm4ght3n8= |
| 1561 | dependencies: | 1687 | dependencies: |
| 1562 | bluebird "^3.5.5" | 1688 | bluebird "^3.5.5" |
| @@ -1576,23 +1702,35 @@ big.js@^5.2.2: | @@ -1576,23 +1702,35 @@ big.js@^5.2.2: | ||
| 1576 | 1702 | ||
| 1577 | binary-extensions@^1.0.0: | 1703 | binary-extensions@^1.0.0: |
| 1578 | version "1.13.1" | 1704 | version "1.13.1" |
| 1579 | - resolved "https://registry.npm.taobao.org/binary-extensions/download/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" | 1705 | + resolved "https://registry.npm.taobao.org/binary-extensions/download/binary-extensions-1.13.1.tgz?cache=0&sync_timestamp=1593261363626&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbinary-extensions%2Fdownload%2Fbinary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" |
| 1580 | integrity sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U= | 1706 | integrity sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U= |
| 1581 | 1707 | ||
| 1582 | binary-extensions@^2.0.0: | 1708 | binary-extensions@^2.0.0: |
| 1583 | - version "2.0.0" | ||
| 1584 | - resolved "https://registry.npm.taobao.org/binary-extensions/download/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" | ||
| 1585 | - integrity sha1-I8DfFPaogHf1+YbA0WfsA8PVU3w= | 1709 | + version "2.1.0" |
| 1710 | + resolved "https://registry.npm.taobao.org/binary-extensions/download/binary-extensions-2.1.0.tgz?cache=0&sync_timestamp=1593261363626&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbinary-extensions%2Fdownload%2Fbinary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" | ||
| 1711 | + integrity sha1-MPpAyef+B9vIlWeM0ocCTeokHdk= | ||
| 1712 | + | ||
| 1713 | +bindings@^1.5.0: | ||
| 1714 | + version "1.5.0" | ||
| 1715 | + resolved "https://registry.npm.taobao.org/bindings/download/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" | ||
| 1716 | + integrity sha1-EDU8npRTNLwFEabZCzj7x8nFBN8= | ||
| 1717 | + dependencies: | ||
| 1718 | + file-uri-to-path "1.0.0" | ||
| 1586 | 1719 | ||
| 1587 | bluebird@^3.1.1, bluebird@^3.5.5: | 1720 | bluebird@^3.1.1, bluebird@^3.5.5: |
| 1588 | - version "3.7.1" | ||
| 1589 | - resolved "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.1.tgz?cache=0&sync_timestamp=1571131768722&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbluebird%2Fdownload%2Fbluebird-3.7.1.tgz#df70e302b471d7473489acf26a93d63b53f874de" | ||
| 1590 | - integrity sha1-33DjArRx10c0iazyapPWO1P4dN4= | 1721 | + version "3.7.2" |
| 1722 | + resolved "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" | ||
| 1723 | + integrity sha1-nyKcFb4nJFT/qXOs4NvueaGww28= | ||
| 1591 | 1724 | ||
| 1592 | -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: | ||
| 1593 | - version "4.11.8" | ||
| 1594 | - resolved "https://registry.npm.taobao.org/bn.js/download/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" | ||
| 1595 | - integrity sha1-LN4J617jQfSEdGuwMJsyU7GxRC8= | 1725 | +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: |
| 1726 | + version "4.11.9" | ||
| 1727 | + resolved "https://registry.npm.taobao.org/bn.js/download/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" | ||
| 1728 | + integrity sha1-JtVWgpRY+dHoH8SJUkk9C6NQeCg= | ||
| 1729 | + | ||
| 1730 | +bn.js@^5.1.1: | ||
| 1731 | + version "5.1.2" | ||
| 1732 | + resolved "https://registry.npm.taobao.org/bn.js/download/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" | ||
| 1733 | + integrity sha1-yWhpAtPJoncp9DqxD515wgBNp7A= | ||
| 1596 | 1734 | ||
| 1597 | body-parser@1.19.0: | 1735 | body-parser@1.19.0: |
| 1598 | version "1.19.0" | 1736 | version "1.19.0" |
| @@ -1694,7 +1832,7 @@ browserify-des@^1.0.0: | @@ -1694,7 +1832,7 @@ browserify-des@^1.0.0: | ||
| 1694 | inherits "^2.0.1" | 1832 | inherits "^2.0.1" |
| 1695 | safe-buffer "^5.1.2" | 1833 | safe-buffer "^5.1.2" |
| 1696 | 1834 | ||
| 1697 | -browserify-rsa@^4.0.0: | 1835 | +browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: |
| 1698 | version "4.0.1" | 1836 | version "4.0.1" |
| 1699 | resolved "https://registry.npm.taobao.org/browserify-rsa/download/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" | 1837 | resolved "https://registry.npm.taobao.org/browserify-rsa/download/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" |
| 1700 | integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= | 1838 | integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= |
| @@ -1703,17 +1841,19 @@ browserify-rsa@^4.0.0: | @@ -1703,17 +1841,19 @@ browserify-rsa@^4.0.0: | ||
| 1703 | randombytes "^2.0.1" | 1841 | randombytes "^2.0.1" |
| 1704 | 1842 | ||
| 1705 | browserify-sign@^4.0.0: | 1843 | browserify-sign@^4.0.0: |
| 1706 | - version "4.0.4" | ||
| 1707 | - resolved "https://registry.npm.taobao.org/browserify-sign/download/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" | ||
| 1708 | - integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= | ||
| 1709 | - dependencies: | ||
| 1710 | - bn.js "^4.1.1" | ||
| 1711 | - browserify-rsa "^4.0.0" | ||
| 1712 | - create-hash "^1.1.0" | ||
| 1713 | - create-hmac "^1.1.2" | ||
| 1714 | - elliptic "^6.0.0" | ||
| 1715 | - inherits "^2.0.1" | ||
| 1716 | - parse-asn1 "^5.0.0" | 1844 | + version "4.2.0" |
| 1845 | + resolved "https://registry.npm.taobao.org/browserify-sign/download/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" | ||
| 1846 | + integrity sha1-VF0LGwfmssmSEQgr8bEsznoLDhE= | ||
| 1847 | + dependencies: | ||
| 1848 | + bn.js "^5.1.1" | ||
| 1849 | + browserify-rsa "^4.0.1" | ||
| 1850 | + create-hash "^1.2.0" | ||
| 1851 | + create-hmac "^1.1.7" | ||
| 1852 | + elliptic "^6.5.2" | ||
| 1853 | + inherits "^2.0.4" | ||
| 1854 | + parse-asn1 "^5.1.5" | ||
| 1855 | + readable-stream "^3.6.0" | ||
| 1856 | + safe-buffer "^5.2.0" | ||
| 1717 | 1857 | ||
| 1718 | browserify-zlib@^0.2.0: | 1858 | browserify-zlib@^0.2.0: |
| 1719 | version "0.2.0" | 1859 | version "0.2.0" |
| @@ -1722,14 +1862,15 @@ browserify-zlib@^0.2.0: | @@ -1722,14 +1862,15 @@ browserify-zlib@^0.2.0: | ||
| 1722 | dependencies: | 1862 | dependencies: |
| 1723 | pako "~1.0.5" | 1863 | pako "~1.0.5" |
| 1724 | 1864 | ||
| 1725 | -browserslist@^4.0.0, browserslist@^4.6.0, browserslist@^4.7.0, browserslist@^4.7.1: | ||
| 1726 | - version "4.7.1" | ||
| 1727 | - resolved "https://registry.npm.taobao.org/browserslist/download/browserslist-4.7.1.tgz#bd400d1aea56538580e8c4d5f1c54ac11b5ab468" | ||
| 1728 | - integrity sha1-vUANGupWU4WA6MTV8cVKwRtatGg= | 1865 | +browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5: |
| 1866 | + version "4.13.0" | ||
| 1867 | + resolved "https://registry.npm.taobao.org/browserslist/download/browserslist-4.13.0.tgz?cache=0&sync_timestamp=1593912354155&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d" | ||
| 1868 | + integrity sha1-QlVsugEeGwondbYRy6ao7KGOlA0= | ||
| 1729 | dependencies: | 1869 | dependencies: |
| 1730 | - caniuse-lite "^1.0.30000999" | ||
| 1731 | - electron-to-chromium "^1.3.284" | ||
| 1732 | - node-releases "^1.1.36" | 1870 | + caniuse-lite "^1.0.30001093" |
| 1871 | + electron-to-chromium "^1.3.488" | ||
| 1872 | + escalade "^3.0.1" | ||
| 1873 | + node-releases "^1.1.58" | ||
| 1733 | 1874 | ||
| 1734 | buffer-from@^1.0.0: | 1875 | buffer-from@^1.0.0: |
| 1735 | version "1.1.1" | 1876 | version "1.1.1" |
| @@ -1752,9 +1893,9 @@ buffer-xor@^1.0.3: | @@ -1752,9 +1893,9 @@ buffer-xor@^1.0.3: | ||
| 1752 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= | 1893 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= |
| 1753 | 1894 | ||
| 1754 | buffer@^4.3.0: | 1895 | buffer@^4.3.0: |
| 1755 | - version "4.9.1" | ||
| 1756 | - resolved "https://registry.npm.taobao.org/buffer/download/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" | ||
| 1757 | - integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= | 1896 | + version "4.9.2" |
| 1897 | + resolved "https://registry.npm.taobao.org/buffer/download/buffer-4.9.2.tgz?cache=0&sync_timestamp=1588706716358&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbuffer%2Fdownload%2Fbuffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" | ||
| 1898 | + integrity sha1-Iw6tNEACmIZEhBqwJEr4xEu+Pvg= | ||
| 1758 | dependencies: | 1899 | dependencies: |
| 1759 | base64-js "^1.0.2" | 1900 | base64-js "^1.0.2" |
| 1760 | ieee754 "^1.1.4" | 1901 | ieee754 "^1.1.4" |
| @@ -1775,30 +1916,10 @@ bytes@3.1.0: | @@ -1775,30 +1916,10 @@ bytes@3.1.0: | ||
| 1775 | resolved "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" | 1916 | resolved "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" |
| 1776 | integrity sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY= | 1917 | integrity sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY= |
| 1777 | 1918 | ||
| 1778 | -cacache@^11.3.3: | ||
| 1779 | - version "11.3.3" | ||
| 1780 | - resolved "https://registry.npm.taobao.org/cacache/download/cacache-11.3.3.tgz#8bd29df8c6a718a6ebd2d010da4d7972ae3bbadc" | ||
| 1781 | - integrity sha1-i9Kd+ManGKbr0tAQ2k15cq47utw= | ||
| 1782 | - dependencies: | ||
| 1783 | - bluebird "^3.5.5" | ||
| 1784 | - chownr "^1.1.1" | ||
| 1785 | - figgy-pudding "^3.5.1" | ||
| 1786 | - glob "^7.1.4" | ||
| 1787 | - graceful-fs "^4.1.15" | ||
| 1788 | - lru-cache "^5.1.1" | ||
| 1789 | - mississippi "^3.0.0" | ||
| 1790 | - mkdirp "^0.5.1" | ||
| 1791 | - move-concurrently "^1.0.1" | ||
| 1792 | - promise-inflight "^1.0.1" | ||
| 1793 | - rimraf "^2.6.3" | ||
| 1794 | - ssri "^6.0.1" | ||
| 1795 | - unique-filename "^1.1.1" | ||
| 1796 | - y18n "^4.0.0" | ||
| 1797 | - | ||
| 1798 | -cacache@^12.0.2: | ||
| 1799 | - version "12.0.3" | ||
| 1800 | - resolved "https://registry.npm.taobao.org/cacache/download/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390" | ||
| 1801 | - integrity sha1-vpmruk4b9d9GHNWiwQcfxDJXM5A= | 1919 | +cacache@^12.0.2, cacache@^12.0.3: |
| 1920 | + version "12.0.4" | ||
| 1921 | + resolved "https://registry.npm.taobao.org/cacache/download/cacache-12.0.4.tgz?cache=0&sync_timestamp=1591142705598&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcacache%2Fdownload%2Fcacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" | ||
| 1922 | + integrity sha1-ZovL0QWutfHZL+JVcOyVJcj6pAw= | ||
| 1802 | dependencies: | 1923 | dependencies: |
| 1803 | bluebird "^3.5.5" | 1924 | bluebird "^3.5.5" |
| 1804 | chownr "^1.1.1" | 1925 | chownr "^1.1.1" |
| @@ -1818,7 +1939,7 @@ cacache@^12.0.2: | @@ -1818,7 +1939,7 @@ cacache@^12.0.2: | ||
| 1818 | 1939 | ||
| 1819 | cacache@^13.0.1: | 1940 | cacache@^13.0.1: |
| 1820 | version "13.0.1" | 1941 | version "13.0.1" |
| 1821 | - resolved "https://registry.npm.taobao.org/cacache/download/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c" | 1942 | + resolved "https://registry.npm.taobao.org/cacache/download/cacache-13.0.1.tgz?cache=0&sync_timestamp=1591142705598&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcacache%2Fdownload%2Fcacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c" |
| 1822 | integrity sha1-qAAMIWlwiQgvhSh6GuxuOCAkpxw= | 1943 | integrity sha1-qAAMIWlwiQgvhSh6GuxuOCAkpxw= |
| 1823 | dependencies: | 1944 | dependencies: |
| 1824 | chownr "^1.1.2" | 1945 | chownr "^1.1.2" |
| @@ -1914,15 +2035,15 @@ caniuse-api@^3.0.0: | @@ -1914,15 +2035,15 @@ caniuse-api@^3.0.0: | ||
| 1914 | lodash.memoize "^4.1.2" | 2035 | lodash.memoize "^4.1.2" |
| 1915 | lodash.uniq "^4.5.0" | 2036 | lodash.uniq "^4.5.0" |
| 1916 | 2037 | ||
| 1917 | -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000999: | ||
| 1918 | - version "1.0.30001002" | ||
| 1919 | - resolved "https://registry.npm.taobao.org/caniuse-lite/download/caniuse-lite-1.0.30001002.tgz?cache=0&sync_timestamp=1571639654767&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcaniuse-lite%2Fdownload%2Fcaniuse-lite-1.0.30001002.tgz#ba999a737b1abd5bf0fd47efe43a09b9cadbe9b0" | ||
| 1920 | - integrity sha1-upmac3savVvw/Ufv5DoJucrb6bA= | 2038 | +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001087, caniuse-lite@^1.0.30001093: |
| 2039 | + version "1.0.30001097" | ||
| 2040 | + resolved "https://registry.npm.taobao.org/caniuse-lite/download/caniuse-lite-1.0.30001097.tgz?cache=0&sync_timestamp=1594350330745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcaniuse-lite%2Fdownload%2Fcaniuse-lite-1.0.30001097.tgz#1129c40c9f5ee3282158da08fd915d301f4a9bd8" | ||
| 2041 | + integrity sha1-ESnEDJ9e4yghWNoI/ZFdMB9Km9g= | ||
| 1921 | 2042 | ||
| 1922 | -case-sensitive-paths-webpack-plugin@^2.2.0: | ||
| 1923 | - version "2.2.0" | ||
| 1924 | - resolved "https://registry.npm.taobao.org/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.2.0.tgz#3371ef6365ef9c25fa4b81c16ace0e9c7dc58c3e" | ||
| 1925 | - integrity sha1-M3HvY2XvnCX6S4HBas4OnH3FjD4= | 2043 | +case-sensitive-paths-webpack-plugin@^2.3.0: |
| 2044 | + version "2.3.0" | ||
| 2045 | + resolved "https://registry.npm.taobao.org/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7" | ||
| 2046 | + integrity sha1-I6xhPMmoVuT4j/i7c7u16YmCXPc= | ||
| 1926 | 2047 | ||
| 1927 | caseless@~0.12.0: | 2048 | caseless@~0.12.0: |
| 1928 | version "0.12.0" | 2049 | version "0.12.0" |
| @@ -1931,7 +2052,7 @@ caseless@~0.12.0: | @@ -1931,7 +2052,7 @@ caseless@~0.12.0: | ||
| 1931 | 2052 | ||
| 1932 | chalk@^1.1.3: | 2053 | chalk@^1.1.3: |
| 1933 | version "1.1.3" | 2054 | version "1.1.3" |
| 1934 | - resolved "https://registry.npm.taobao.org/chalk/download/chalk-1.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" | 2055 | + resolved "https://registry.npm.taobao.org/chalk/download/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" |
| 1935 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= | 2056 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= |
| 1936 | dependencies: | 2057 | dependencies: |
| 1937 | ansi-styles "^2.2.1" | 2058 | ansi-styles "^2.2.1" |
| @@ -1942,16 +2063,24 @@ chalk@^1.1.3: | @@ -1942,16 +2063,24 @@ chalk@^1.1.3: | ||
| 1942 | 2063 | ||
| 1943 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: | 2064 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: |
| 1944 | version "2.4.2" | 2065 | version "2.4.2" |
| 1945 | - resolved "https://registry.npm.taobao.org/chalk/download/chalk-2.4.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" | 2066 | + resolved "https://registry.npm.taobao.org/chalk/download/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" |
| 1946 | integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ= | 2067 | integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ= |
| 1947 | dependencies: | 2068 | dependencies: |
| 1948 | ansi-styles "^3.2.1" | 2069 | ansi-styles "^3.2.1" |
| 1949 | escape-string-regexp "^1.0.5" | 2070 | escape-string-regexp "^1.0.5" |
| 1950 | supports-color "^5.3.0" | 2071 | supports-color "^5.3.0" |
| 1951 | 2072 | ||
| 2073 | +chalk@^3.0.0: | ||
| 2074 | + version "3.0.0" | ||
| 2075 | + resolved "https://registry.npm.taobao.org/chalk/download/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" | ||
| 2076 | + integrity sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ= | ||
| 2077 | + dependencies: | ||
| 2078 | + ansi-styles "^4.1.0" | ||
| 2079 | + supports-color "^7.1.0" | ||
| 2080 | + | ||
| 1952 | check-types@^8.0.3: | 2081 | check-types@^8.0.3: |
| 1953 | version "8.0.3" | 2082 | version "8.0.3" |
| 1954 | - resolved "https://registry.npm.taobao.org/check-types/download/check-types-8.0.3.tgz?cache=0&sync_timestamp=1571636874740&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcheck-types%2Fdownload%2Fcheck-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552" | 2083 | + resolved "https://registry.npm.taobao.org/check-types/download/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552" |
| 1955 | integrity sha1-M1bMoZyIlUTy16le1JzlCKDs9VI= | 2084 | integrity sha1-M1bMoZyIlUTy16le1JzlCKDs9VI= |
| 1956 | 2085 | ||
| 1957 | cheerio@^0.20.0: | 2086 | cheerio@^0.20.0: |
| @@ -1967,10 +2096,10 @@ cheerio@^0.20.0: | @@ -1967,10 +2096,10 @@ cheerio@^0.20.0: | ||
| 1967 | optionalDependencies: | 2096 | optionalDependencies: |
| 1968 | jsdom "^7.0.2" | 2097 | jsdom "^7.0.2" |
| 1969 | 2098 | ||
| 1970 | -"chokidar@>=2.0.0 <4.0.0": | ||
| 1971 | - version "3.2.2" | ||
| 1972 | - resolved "https://registry.npm.taobao.org/chokidar/download/chokidar-3.2.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchokidar%2Fdownload%2Fchokidar-3.2.2.tgz#a433973350021e09f2b853a2287781022c0dc935" | ||
| 1973 | - integrity sha1-pDOXM1ACHgnyuFOiKHeBAiwNyTU= | 2099 | +"chokidar@>=2.0.0 <4.0.0", chokidar@^3.4.0: |
| 2100 | + version "3.4.0" | ||
| 2101 | + resolved "https://registry.npm.taobao.org/chokidar/download/chokidar-3.4.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchokidar%2Fdownload%2Fchokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" | ||
| 2102 | + integrity sha1-swYRQjzjdjV8dlubj5BLn7o8C+g= | ||
| 1974 | dependencies: | 2103 | dependencies: |
| 1975 | anymatch "~3.1.1" | 2104 | anymatch "~3.1.1" |
| 1976 | braces "~3.0.2" | 2105 | braces "~3.0.2" |
| @@ -1978,11 +2107,11 @@ cheerio@^0.20.0: | @@ -1978,11 +2107,11 @@ cheerio@^0.20.0: | ||
| 1978 | is-binary-path "~2.1.0" | 2107 | is-binary-path "~2.1.0" |
| 1979 | is-glob "~4.0.1" | 2108 | is-glob "~4.0.1" |
| 1980 | normalize-path "~3.0.0" | 2109 | normalize-path "~3.0.0" |
| 1981 | - readdirp "~3.2.0" | 2110 | + readdirp "~3.4.0" |
| 1982 | optionalDependencies: | 2111 | optionalDependencies: |
| 1983 | - fsevents "~2.1.1" | 2112 | + fsevents "~2.1.2" |
| 1984 | 2113 | ||
| 1985 | -chokidar@^2.0.2, chokidar@^2.1.8: | 2114 | +chokidar@^2.1.8: |
| 1986 | version "2.1.8" | 2115 | version "2.1.8" |
| 1987 | resolved "https://registry.npm.taobao.org/chokidar/download/chokidar-2.1.8.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchokidar%2Fdownload%2Fchokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" | 2116 | resolved "https://registry.npm.taobao.org/chokidar/download/chokidar-2.1.8.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchokidar%2Fdownload%2Fchokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" |
| 1988 | integrity sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc= | 2117 | integrity sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc= |
| @@ -2002,9 +2131,9 @@ chokidar@^2.0.2, chokidar@^2.1.8: | @@ -2002,9 +2131,9 @@ chokidar@^2.0.2, chokidar@^2.1.8: | ||
| 2002 | fsevents "^1.2.7" | 2131 | fsevents "^1.2.7" |
| 2003 | 2132 | ||
| 2004 | chownr@^1.1.1, chownr@^1.1.2: | 2133 | chownr@^1.1.1, chownr@^1.1.2: |
| 2005 | - version "1.1.3" | ||
| 2006 | - resolved "https://registry.npm.taobao.org/chownr/download/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142" | ||
| 2007 | - integrity sha1-Qtg31SOWiNVfMDADpQgjD6ZycUI= | 2134 | + version "1.1.4" |
| 2135 | + resolved "https://registry.npm.taobao.org/chownr/download/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" | ||
| 2136 | + integrity sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs= | ||
| 2008 | 2137 | ||
| 2009 | chrome-trace-event@^1.0.2: | 2138 | chrome-trace-event@^1.0.2: |
| 2010 | version "1.0.2" | 2139 | version "1.0.2" |
| @@ -2032,15 +2161,15 @@ class-utils@^0.3.5: | @@ -2032,15 +2161,15 @@ class-utils@^0.3.5: | ||
| 2032 | static-extend "^0.1.1" | 2161 | static-extend "^0.1.1" |
| 2033 | 2162 | ||
| 2034 | clean-css@4.2.x: | 2163 | clean-css@4.2.x: |
| 2035 | - version "4.2.1" | ||
| 2036 | - resolved "https://registry.npm.taobao.org/clean-css/download/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" | ||
| 2037 | - integrity sha1-LUEe92uFabbQyEBo2r6FsKpeXBc= | 2164 | + version "4.2.3" |
| 2165 | + resolved "https://registry.npm.taobao.org/clean-css/download/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" | ||
| 2166 | + integrity sha1-UHtd59l7SO5T2ErbAWD/YhY4D3g= | ||
| 2038 | dependencies: | 2167 | dependencies: |
| 2039 | source-map "~0.6.0" | 2168 | source-map "~0.6.0" |
| 2040 | 2169 | ||
| 2041 | clean-stack@^2.0.0: | 2170 | clean-stack@^2.0.0: |
| 2042 | version "2.2.0" | 2171 | version "2.2.0" |
| 2043 | - resolved "https://registry.npm.taobao.org/clean-stack/download/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" | 2172 | + resolved "https://registry.npm.taobao.org/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1592035267586&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" |
| 2044 | integrity sha1-7oRy27Ep5yezHooQpCfe6d/kAIs= | 2173 | integrity sha1-7oRy27Ep5yezHooQpCfe6d/kAIs= |
| 2045 | 2174 | ||
| 2046 | cli-cursor@^2.1.0: | 2175 | cli-cursor@^2.1.0: |
| @@ -2050,56 +2179,49 @@ cli-cursor@^2.1.0: | @@ -2050,56 +2179,49 @@ cli-cursor@^2.1.0: | ||
| 2050 | dependencies: | 2179 | dependencies: |
| 2051 | restore-cursor "^2.0.0" | 2180 | restore-cursor "^2.0.0" |
| 2052 | 2181 | ||
| 2053 | -cli-highlight@^2.1.1: | ||
| 2054 | - version "2.1.1" | ||
| 2055 | - resolved "https://registry.npm.taobao.org/cli-highlight/download/cli-highlight-2.1.1.tgz#2180223d51618b112f4509cf96e4a6c750b07e97" | ||
| 2056 | - integrity sha1-IYAiPVFhixEvRQnPluSmx1Cwfpc= | 2182 | +cli-highlight@^2.1.4: |
| 2183 | + version "2.1.4" | ||
| 2184 | + resolved "https://registry.npm.taobao.org/cli-highlight/download/cli-highlight-2.1.4.tgz#098cb642cf17f42adc1c1145e07f960ec4d7522b" | ||
| 2185 | + integrity sha1-CYy2Qs8X9CrcHBFF4H+WDsTXUis= | ||
| 2057 | dependencies: | 2186 | dependencies: |
| 2058 | - chalk "^2.3.0" | 2187 | + chalk "^3.0.0" |
| 2059 | highlight.js "^9.6.0" | 2188 | highlight.js "^9.6.0" |
| 2060 | mz "^2.4.0" | 2189 | mz "^2.4.0" |
| 2061 | - parse5 "^4.0.0" | ||
| 2062 | - yargs "^13.0.0" | 2190 | + parse5 "^5.1.1" |
| 2191 | + parse5-htmlparser2-tree-adapter "^5.1.1" | ||
| 2192 | + yargs "^15.0.0" | ||
| 2063 | 2193 | ||
| 2064 | cli-spinners@^2.0.0: | 2194 | cli-spinners@^2.0.0: |
| 2065 | - version "2.2.0" | ||
| 2066 | - resolved "https://registry.npm.taobao.org/cli-spinners/download/cli-spinners-2.2.0.tgz#e8b988d9206c692302d8ee834e7a85c0144d8f77" | ||
| 2067 | - integrity sha1-6LmI2SBsaSMC2O6DTnqFwBRNj3c= | 2195 | + version "2.3.0" |
| 2196 | + resolved "https://registry.npm.taobao.org/cli-spinners/download/cli-spinners-2.3.0.tgz?cache=0&sync_timestamp=1586157510340&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcli-spinners%2Fdownload%2Fcli-spinners-2.3.0.tgz#0632239a4b5aa4c958610142c34bb7a651fc8df5" | ||
| 2197 | + integrity sha1-BjIjmktapMlYYQFCw0u3plH8jfU= | ||
| 2068 | 2198 | ||
| 2069 | -clipboardy@^2.0.0: | ||
| 2070 | - version "2.1.0" | ||
| 2071 | - resolved "https://registry.npm.taobao.org/clipboardy/download/clipboardy-2.1.0.tgz#0123a0c8fac92f256dc56335e0bb8be97a4909a5" | ||
| 2072 | - integrity sha1-ASOgyPrJLyVtxWM14LuL6XpJCaU= | 2199 | +clipboardy@^2.3.0: |
| 2200 | + version "2.3.0" | ||
| 2201 | + resolved "https://registry.npm.taobao.org/clipboardy/download/clipboardy-2.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fclipboardy%2Fdownload%2Fclipboardy-2.3.0.tgz#3c2903650c68e46a91b388985bc2774287dba290" | ||
| 2202 | + integrity sha1-PCkDZQxo5GqRs4iYW8J3QofbopA= | ||
| 2073 | dependencies: | 2203 | dependencies: |
| 2074 | arch "^2.1.1" | 2204 | arch "^2.1.1" |
| 2075 | execa "^1.0.0" | 2205 | execa "^1.0.0" |
| 2076 | - | ||
| 2077 | -cliui@^4.0.0: | ||
| 2078 | - version "4.1.0" | ||
| 2079 | - resolved "https://registry.npm.taobao.org/cliui/download/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" | ||
| 2080 | - integrity sha1-NIQi2+gtgAswIu709qwQvy5NG0k= | ||
| 2081 | - dependencies: | ||
| 2082 | - string-width "^2.1.1" | ||
| 2083 | - strip-ansi "^4.0.0" | ||
| 2084 | - wrap-ansi "^2.0.0" | 2206 | + is-wsl "^2.1.1" |
| 2085 | 2207 | ||
| 2086 | cliui@^5.0.0: | 2208 | cliui@^5.0.0: |
| 2087 | version "5.0.0" | 2209 | version "5.0.0" |
| 2088 | - resolved "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" | 2210 | + resolved "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz?cache=0&sync_timestamp=1573942320052&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" |
| 2089 | integrity sha1-3u/P2y6AB4SqNPRvoI4GhRx7u8U= | 2211 | integrity sha1-3u/P2y6AB4SqNPRvoI4GhRx7u8U= |
| 2090 | dependencies: | 2212 | dependencies: |
| 2091 | string-width "^3.1.0" | 2213 | string-width "^3.1.0" |
| 2092 | strip-ansi "^5.2.0" | 2214 | strip-ansi "^5.2.0" |
| 2093 | wrap-ansi "^5.1.0" | 2215 | wrap-ansi "^5.1.0" |
| 2094 | 2216 | ||
| 2095 | -clone-deep@^4.0.1: | ||
| 2096 | - version "4.0.1" | ||
| 2097 | - resolved "https://registry.npm.taobao.org/clone-deep/download/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" | ||
| 2098 | - integrity sha1-wZ/Zvbv4WUK0/ZechNz31fB8I4c= | 2217 | +cliui@^6.0.0: |
| 2218 | + version "6.0.0" | ||
| 2219 | + resolved "https://registry.npm.taobao.org/cliui/download/cliui-6.0.0.tgz?cache=0&sync_timestamp=1573942320052&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" | ||
| 2220 | + integrity sha1-UR1wLAxOQcoVbX0OlgIfI+EyJbE= | ||
| 2099 | dependencies: | 2221 | dependencies: |
| 2100 | - is-plain-object "^2.0.4" | ||
| 2101 | - kind-of "^6.0.2" | ||
| 2102 | - shallow-clone "^3.0.0" | 2222 | + string-width "^4.2.0" |
| 2223 | + strip-ansi "^6.0.0" | ||
| 2224 | + wrap-ansi "^6.2.0" | ||
| 2103 | 2225 | ||
| 2104 | clone@^1.0.2: | 2226 | clone@^1.0.2: |
| 2105 | version "1.0.4" | 2227 | version "1.0.4" |
| @@ -2113,12 +2235,7 @@ coa@^2.0.2: | @@ -2113,12 +2235,7 @@ coa@^2.0.2: | ||
| 2113 | dependencies: | 2235 | dependencies: |
| 2114 | "@types/q" "^1.5.1" | 2236 | "@types/q" "^1.5.1" |
| 2115 | chalk "^2.4.1" | 2237 | chalk "^2.4.1" |
| 2116 | - q "^1.1.2" | ||
| 2117 | - | ||
| 2118 | -code-point-at@^1.0.0: | ||
| 2119 | - version "1.1.0" | ||
| 2120 | - resolved "https://registry.npm.taobao.org/code-point-at/download/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" | ||
| 2121 | - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= | 2238 | + q "^1.1.2" |
| 2122 | 2239 | ||
| 2123 | collection-visit@^1.0.0: | 2240 | collection-visit@^1.0.0: |
| 2124 | version "1.0.0" | 2241 | version "1.0.0" |
| @@ -2135,12 +2252,19 @@ color-convert@^1.9.0, color-convert@^1.9.1: | @@ -2135,12 +2252,19 @@ color-convert@^1.9.0, color-convert@^1.9.1: | ||
| 2135 | dependencies: | 2252 | dependencies: |
| 2136 | color-name "1.1.3" | 2253 | color-name "1.1.3" |
| 2137 | 2254 | ||
| 2255 | +color-convert@^2.0.1: | ||
| 2256 | + version "2.0.1" | ||
| 2257 | + resolved "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" | ||
| 2258 | + integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM= | ||
| 2259 | + dependencies: | ||
| 2260 | + color-name "~1.1.4" | ||
| 2261 | + | ||
| 2138 | color-name@1.1.3: | 2262 | color-name@1.1.3: |
| 2139 | version "1.1.3" | 2263 | version "1.1.3" |
| 2140 | resolved "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" | 2264 | resolved "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" |
| 2141 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= | 2265 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= |
| 2142 | 2266 | ||
| 2143 | -color-name@^1.0.0: | 2267 | +color-name@^1.0.0, color-name@~1.1.4: |
| 2144 | version "1.1.4" | 2268 | version "1.1.4" |
| 2145 | resolved "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" | 2269 | resolved "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" |
| 2146 | integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI= | 2270 | integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI= |
| @@ -2161,6 +2285,11 @@ color@^3.0.0: | @@ -2161,6 +2285,11 @@ color@^3.0.0: | ||
| 2161 | color-convert "^1.9.1" | 2285 | color-convert "^1.9.1" |
| 2162 | color-string "^1.5.2" | 2286 | color-string "^1.5.2" |
| 2163 | 2287 | ||
| 2288 | +colorette@^1.2.0: | ||
| 2289 | + version "1.2.1" | ||
| 2290 | + resolved "https://registry.npm.taobao.org/colorette/download/colorette-1.2.1.tgz?cache=0&sync_timestamp=1593955763917&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolorette%2Fdownload%2Fcolorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" | ||
| 2291 | + integrity sha1-TQuSEyXBT6+SYzCGpTbbbolWSxs= | ||
| 2292 | + | ||
| 2164 | combined-stream@^1.0.6, combined-stream@~1.0.6: | 2293 | combined-stream@^1.0.6, combined-stream@~1.0.6: |
| 2165 | version "1.0.8" | 2294 | version "1.0.8" |
| 2166 | resolved "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" | 2295 | resolved "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" |
| @@ -2169,23 +2298,23 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: | @@ -2169,23 +2298,23 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: | ||
| 2169 | delayed-stream "~1.0.0" | 2298 | delayed-stream "~1.0.0" |
| 2170 | 2299 | ||
| 2171 | commander@*: | 2300 | commander@*: |
| 2172 | - version "3.0.2" | ||
| 2173 | - resolved "https://registry.npm.taobao.org/commander/download/commander-3.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommander%2Fdownload%2Fcommander-3.0.2.tgz#6837c3fb677ad9933d1cfba42dd14d5117d6b39e" | ||
| 2174 | - integrity sha1-aDfD+2d62ZM9HPukLdFNURfWs54= | 2301 | + version "5.1.0" |
| 2302 | + resolved "https://registry.npm.taobao.org/commander/download/commander-5.1.0.tgz?cache=0&sync_timestamp=1592632028697&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommander%2Fdownload%2Fcommander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" | ||
| 2303 | + integrity sha1-Rqu9FlL44Fm92u+Zu9yyrZzxea4= | ||
| 2175 | 2304 | ||
| 2176 | commander@2.17.x: | 2305 | commander@2.17.x: |
| 2177 | version "2.17.1" | 2306 | version "2.17.1" |
| 2178 | - resolved "https://registry.npm.taobao.org/commander/download/commander-2.17.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommander%2Fdownload%2Fcommander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" | 2307 | + resolved "https://registry.npm.taobao.org/commander/download/commander-2.17.1.tgz?cache=0&sync_timestamp=1592632028697&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommander%2Fdownload%2Fcommander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" |
| 2179 | integrity sha1-vXerfebelCBc6sxy8XFtKfIKd78= | 2308 | integrity sha1-vXerfebelCBc6sxy8XFtKfIKd78= |
| 2180 | 2309 | ||
| 2181 | commander@^2.18.0, commander@^2.20.0: | 2310 | commander@^2.18.0, commander@^2.20.0: |
| 2182 | version "2.20.3" | 2311 | version "2.20.3" |
| 2183 | - resolved "https://registry.npm.taobao.org/commander/download/commander-2.20.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommander%2Fdownload%2Fcommander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" | 2312 | + resolved "https://registry.npm.taobao.org/commander/download/commander-2.20.3.tgz?cache=0&sync_timestamp=1592632028697&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommander%2Fdownload%2Fcommander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" |
| 2184 | integrity sha1-/UhehMA+tIgcIHIrpIA16FMa6zM= | 2313 | integrity sha1-/UhehMA+tIgcIHIrpIA16FMa6zM= |
| 2185 | 2314 | ||
| 2186 | commander@~2.19.0: | 2315 | commander@~2.19.0: |
| 2187 | version "2.19.0" | 2316 | version "2.19.0" |
| 2188 | - resolved "https://registry.npm.taobao.org/commander/download/commander-2.19.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommander%2Fdownload%2Fcommander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" | 2317 | + resolved "https://registry.npm.taobao.org/commander/download/commander-2.19.0.tgz?cache=0&sync_timestamp=1592632028697&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommander%2Fdownload%2Fcommander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" |
| 2189 | integrity sha1-9hmKqE5bg8RgVLlN3tv+1e6f8So= | 2318 | integrity sha1-9hmKqE5bg8RgVLlN3tv+1e6f8So= |
| 2190 | 2319 | ||
| 2191 | commondir@^1.0.1: | 2320 | commondir@^1.0.1: |
| @@ -2199,11 +2328,11 @@ component-emitter@^1.2.1: | @@ -2199,11 +2328,11 @@ component-emitter@^1.2.1: | ||
| 2199 | integrity sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A= | 2328 | integrity sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A= |
| 2200 | 2329 | ||
| 2201 | compressible@~2.0.16: | 2330 | compressible@~2.0.16: |
| 2202 | - version "2.0.17" | ||
| 2203 | - resolved "https://registry.npm.taobao.org/compressible/download/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" | ||
| 2204 | - integrity sha1-bowQihatWDhKl386SCyiC/8vOME= | 2331 | + version "2.0.18" |
| 2332 | + resolved "https://registry.npm.taobao.org/compressible/download/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" | ||
| 2333 | + integrity sha1-r1PMprBw1MPAdQ+9dyhqbXzEb7o= | ||
| 2205 | dependencies: | 2334 | dependencies: |
| 2206 | - mime-db ">= 1.40.0 < 2" | 2335 | + mime-db ">= 1.43.0 < 2" |
| 2207 | 2336 | ||
| 2208 | compression@^1.7.4: | 2337 | compression@^1.7.4: |
| 2209 | version "1.7.4" | 2338 | version "1.7.4" |
| @@ -2239,16 +2368,9 @@ connect-history-api-fallback@^1.6.0: | @@ -2239,16 +2368,9 @@ connect-history-api-fallback@^1.6.0: | ||
| 2239 | integrity sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w= | 2368 | integrity sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w= |
| 2240 | 2369 | ||
| 2241 | console-browserify@^1.1.0: | 2370 | console-browserify@^1.1.0: |
| 2242 | - version "1.1.0" | ||
| 2243 | - resolved "https://registry.npm.taobao.org/console-browserify/download/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" | ||
| 2244 | - integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= | ||
| 2245 | - dependencies: | ||
| 2246 | - date-now "^0.1.4" | ||
| 2247 | - | ||
| 2248 | -console-control-strings@^1.0.0, console-control-strings@~1.1.0: | ||
| 2249 | - version "1.1.0" | ||
| 2250 | - resolved "https://registry.npm.taobao.org/console-control-strings/download/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" | ||
| 2251 | - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= | 2371 | + version "1.2.0" |
| 2372 | + resolved "https://registry.npm.taobao.org/console-browserify/download/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" | ||
| 2373 | + integrity sha1-ZwY871fOts9Jk6KrOlWECujEkzY= | ||
| 2252 | 2374 | ||
| 2253 | consolidate@^0.15.1: | 2375 | consolidate@^0.15.1: |
| 2254 | version "0.15.1" | 2376 | version "0.15.1" |
| @@ -2274,10 +2396,10 @@ content-type@~1.0.4: | @@ -2274,10 +2396,10 @@ content-type@~1.0.4: | ||
| 2274 | resolved "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" | 2396 | resolved "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" |
| 2275 | integrity sha1-4TjMdeBAxyexlm/l5fjJruJW/js= | 2397 | integrity sha1-4TjMdeBAxyexlm/l5fjJruJW/js= |
| 2276 | 2398 | ||
| 2277 | -convert-source-map@^1.1.0: | ||
| 2278 | - version "1.6.0" | ||
| 2279 | - resolved "https://registry.npm.taobao.org/convert-source-map/download/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" | ||
| 2280 | - integrity sha1-UbU3qMQ+DwTewZk7/83VBOdYrCA= | 2399 | +convert-source-map@^1.7.0: |
| 2400 | + version "1.7.0" | ||
| 2401 | + resolved "https://registry.npm.taobao.org/convert-source-map/download/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" | ||
| 2402 | + integrity sha1-F6LLiC1/d9NJBYXizmxSRCSjpEI= | ||
| 2281 | dependencies: | 2403 | dependencies: |
| 2282 | safe-buffer "~5.1.1" | 2404 | safe-buffer "~5.1.1" |
| 2283 | 2405 | ||
| @@ -2288,7 +2410,7 @@ cookie-signature@1.0.6: | @@ -2288,7 +2410,7 @@ cookie-signature@1.0.6: | ||
| 2288 | 2410 | ||
| 2289 | cookie@0.4.0: | 2411 | cookie@0.4.0: |
| 2290 | version "0.4.0" | 2412 | version "0.4.0" |
| 2291 | - resolved "https://registry.npm.taobao.org/cookie/download/cookie-0.4.0.tgz?cache=0&sync_timestamp=1570621785421&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcookie%2Fdownload%2Fcookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" | 2413 | + resolved "https://registry.npm.taobao.org/cookie/download/cookie-0.4.0.tgz?cache=0&sync_timestamp=1587525873712&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcookie%2Fdownload%2Fcookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" |
| 2292 | integrity sha1-vrQ35wIrO21JAZ0IhmUwPr6cFLo= | 2414 | integrity sha1-vrQ35wIrO21JAZ0IhmUwPr6cFLo= |
| 2293 | 2415 | ||
| 2294 | copy-concurrently@^1.0.0: | 2416 | copy-concurrently@^1.0.0: |
| @@ -2308,12 +2430,12 @@ copy-descriptor@^0.1.0: | @@ -2308,12 +2430,12 @@ copy-descriptor@^0.1.0: | ||
| 2308 | resolved "https://registry.npm.taobao.org/copy-descriptor/download/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" | 2430 | resolved "https://registry.npm.taobao.org/copy-descriptor/download/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" |
| 2309 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= | 2431 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= |
| 2310 | 2432 | ||
| 2311 | -copy-webpack-plugin@^5.0.3: | ||
| 2312 | - version "5.0.4" | ||
| 2313 | - resolved "https://registry.npm.taobao.org/copy-webpack-plugin/download/copy-webpack-plugin-5.0.4.tgz#c78126f604e24f194c6ec2f43a64e232b5d43655" | ||
| 2314 | - integrity sha1-x4Em9gTiTxlMbsL0OmTiMrXUNlU= | 2433 | +copy-webpack-plugin@^5.1.1: |
| 2434 | + version "5.1.1" | ||
| 2435 | + resolved "https://registry.npm.taobao.org/copy-webpack-plugin/download/copy-webpack-plugin-5.1.1.tgz?cache=0&sync_timestamp=1593550572650&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcopy-webpack-plugin%2Fdownload%2Fcopy-webpack-plugin-5.1.1.tgz#5481a03dea1123d88a988c6ff8b78247214f0b88" | ||
| 2436 | + integrity sha1-VIGgPeoRI9iKmIxv+LeCRyFPC4g= | ||
| 2315 | dependencies: | 2437 | dependencies: |
| 2316 | - cacache "^11.3.3" | 2438 | + cacache "^12.0.3" |
| 2317 | find-cache-dir "^2.1.0" | 2439 | find-cache-dir "^2.1.0" |
| 2318 | glob-parent "^3.1.0" | 2440 | glob-parent "^3.1.0" |
| 2319 | globby "^7.1.1" | 2441 | globby "^7.1.1" |
| @@ -2321,33 +2443,33 @@ copy-webpack-plugin@^5.0.3: | @@ -2321,33 +2443,33 @@ copy-webpack-plugin@^5.0.3: | ||
| 2321 | loader-utils "^1.2.3" | 2443 | loader-utils "^1.2.3" |
| 2322 | minimatch "^3.0.4" | 2444 | minimatch "^3.0.4" |
| 2323 | normalize-path "^3.0.0" | 2445 | normalize-path "^3.0.0" |
| 2324 | - p-limit "^2.2.0" | 2446 | + p-limit "^2.2.1" |
| 2325 | schema-utils "^1.0.0" | 2447 | schema-utils "^1.0.0" |
| 2326 | - serialize-javascript "^1.7.0" | 2448 | + serialize-javascript "^2.1.2" |
| 2327 | webpack-log "^2.0.0" | 2449 | webpack-log "^2.0.0" |
| 2328 | 2450 | ||
| 2329 | -core-js-compat@^3.1.1, core-js-compat@^3.1.2: | ||
| 2330 | - version "3.3.3" | ||
| 2331 | - resolved "https://registry.npm.taobao.org/core-js-compat/download/core-js-compat-3.3.3.tgz#82642808cf484a35292b2f8e83ef9376884e760f" | ||
| 2332 | - integrity sha1-gmQoCM9ISjUpKy+Og++TdohOdg8= | 2451 | +core-js-compat@^3.6.2, core-js-compat@^3.6.5: |
| 2452 | + version "3.6.5" | ||
| 2453 | + resolved "https://registry.npm.taobao.org/core-js-compat/download/core-js-compat-3.6.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" | ||
| 2454 | + integrity sha1-KlHZpOJd/W5pAlGqgfmePAVIHxw= | ||
| 2333 | dependencies: | 2455 | dependencies: |
| 2334 | - browserslist "^4.7.1" | ||
| 2335 | - semver "^6.3.0" | 2456 | + browserslist "^4.8.5" |
| 2457 | + semver "7.0.0" | ||
| 2336 | 2458 | ||
| 2337 | core-js-pure@^3.0.0: | 2459 | core-js-pure@^3.0.0: |
| 2338 | - version "3.3.3" | ||
| 2339 | - resolved "https://registry.npm.taobao.org/core-js-pure/download/core-js-pure-3.3.3.tgz#c6a796e371782394ffb60d82ff67e0e073070093" | ||
| 2340 | - integrity sha1-xqeW43F4I5T/tg2C/2fg4HMHAJM= | 2460 | + version "3.6.5" |
| 2461 | + resolved "https://registry.npm.taobao.org/core-js-pure/download/core-js-pure-3.6.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js-pure%2Fdownload%2Fcore-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813" | ||
| 2462 | + integrity sha1-x5519eONvIWmYtke6lK4JW1TuBM= | ||
| 2341 | 2463 | ||
| 2342 | core-js@^2.4.0: | 2464 | core-js@^2.4.0: |
| 2343 | - version "2.6.10" | ||
| 2344 | - resolved "https://registry.npm.taobao.org/core-js/download/core-js-2.6.10.tgz#8a5b8391f8cc7013da703411ce5b585706300d7f" | ||
| 2345 | - integrity sha1-iluDkfjMcBPacDQRzltYVwYwDX8= | 2465 | + version "2.6.11" |
| 2466 | + resolved "https://registry.npm.taobao.org/core-js/download/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" | ||
| 2467 | + integrity sha1-OIMUafmSK97Y7iHJ3EaYXgOZMIw= | ||
| 2346 | 2468 | ||
| 2347 | -core-js@^3.1.2, core-js@^3.3.3: | ||
| 2348 | - version "3.3.3" | ||
| 2349 | - resolved "https://registry.npm.taobao.org/core-js/download/core-js-3.3.3.tgz#b7048d3c6c1a52b5fe55a729c1d4ccdffe0891bb" | ||
| 2350 | - integrity sha1-twSNPGwaUrX+VacpwdTM3/4Ikbs= | 2469 | +core-js@^3.6.5: |
| 2470 | + version "3.6.5" | ||
| 2471 | + resolved "https://registry.npm.taobao.org/core-js/download/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" | ||
| 2472 | + integrity sha1-c5XcJzrzf7LlDpvT2f6EEoUjHRo= | ||
| 2351 | 2473 | ||
| 2352 | core-util-is@1.0.2, core-util-is@~1.0.0: | 2474 | core-util-is@1.0.2, core-util-is@~1.0.0: |
| 2353 | version "1.0.2" | 2475 | version "1.0.2" |
| @@ -2372,7 +2494,7 @@ create-ecdh@^4.0.0: | @@ -2372,7 +2494,7 @@ create-ecdh@^4.0.0: | ||
| 2372 | bn.js "^4.1.0" | 2494 | bn.js "^4.1.0" |
| 2373 | elliptic "^6.0.0" | 2495 | elliptic "^6.0.0" |
| 2374 | 2496 | ||
| 2375 | -create-hash@^1.1.0, create-hash@^1.1.2: | 2497 | +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: |
| 2376 | version "1.2.0" | 2498 | version "1.2.0" |
| 2377 | resolved "https://registry.npm.taobao.org/create-hash/download/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" | 2499 | resolved "https://registry.npm.taobao.org/create-hash/download/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" |
| 2378 | integrity sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY= | 2500 | integrity sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY= |
| @@ -2383,7 +2505,7 @@ create-hash@^1.1.0, create-hash@^1.1.2: | @@ -2383,7 +2505,7 @@ create-hash@^1.1.0, create-hash@^1.1.2: | ||
| 2383 | ripemd160 "^2.0.1" | 2505 | ripemd160 "^2.0.1" |
| 2384 | sha.js "^2.4.0" | 2506 | sha.js "^2.4.0" |
| 2385 | 2507 | ||
| 2386 | -create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: | 2508 | +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: |
| 2387 | version "1.1.7" | 2509 | version "1.1.7" |
| 2388 | resolved "https://registry.npm.taobao.org/create-hmac/download/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" | 2510 | resolved "https://registry.npm.taobao.org/create-hmac/download/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" |
| 2389 | integrity sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8= | 2511 | integrity sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8= |
| @@ -2397,7 +2519,7 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: | @@ -2397,7 +2519,7 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: | ||
| 2397 | 2519 | ||
| 2398 | cross-spawn@^6.0.0: | 2520 | cross-spawn@^6.0.0: |
| 2399 | version "6.0.5" | 2521 | version "6.0.5" |
| 2400 | - resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" | 2522 | + resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-6.0.5.tgz?cache=0&sync_timestamp=1590421014780&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" |
| 2401 | integrity sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q= | 2523 | integrity sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q= |
| 2402 | dependencies: | 2524 | dependencies: |
| 2403 | nice-try "^1.0.4" | 2525 | nice-try "^1.0.4" |
| @@ -2407,9 +2529,9 @@ cross-spawn@^6.0.0: | @@ -2407,9 +2529,9 @@ cross-spawn@^6.0.0: | ||
| 2407 | which "^1.2.9" | 2529 | which "^1.2.9" |
| 2408 | 2530 | ||
| 2409 | cross-spawn@^7.0.0: | 2531 | cross-spawn@^7.0.0: |
| 2410 | - version "7.0.1" | ||
| 2411 | - resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14" | ||
| 2412 | - integrity sha1-CrVihuD3wk4VPQTMKqAn5DqaXRQ= | 2532 | + version "7.0.3" |
| 2533 | + resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-7.0.3.tgz?cache=0&sync_timestamp=1590421014780&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" | ||
| 2534 | + integrity sha1-9zqFudXUHQRVUcF34ogtSshXKKY= | ||
| 2413 | dependencies: | 2535 | dependencies: |
| 2414 | path-key "^3.1.0" | 2536 | path-key "^3.1.0" |
| 2415 | shebang-command "^2.0.0" | 2537 | shebang-command "^2.0.0" |
| @@ -2445,23 +2567,24 @@ css-declaration-sorter@^4.0.1: | @@ -2445,23 +2567,24 @@ css-declaration-sorter@^4.0.1: | ||
| 2445 | postcss "^7.0.1" | 2567 | postcss "^7.0.1" |
| 2446 | timsort "^0.3.0" | 2568 | timsort "^0.3.0" |
| 2447 | 2569 | ||
| 2448 | -css-loader@^3.1.0: | ||
| 2449 | - version "3.2.0" | ||
| 2450 | - resolved "https://registry.npm.taobao.org/css-loader/download/css-loader-3.2.0.tgz#bb570d89c194f763627fcf1f80059c6832d009b2" | ||
| 2451 | - integrity sha1-u1cNicGU92Nif88fgAWcaDLQCbI= | 2570 | +css-loader@^3.5.3: |
| 2571 | + version "3.6.0" | ||
| 2572 | + resolved "https://registry.npm.taobao.org/css-loader/download/css-loader-3.6.0.tgz?cache=0&sync_timestamp=1592056914630&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcss-loader%2Fdownload%2Fcss-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645" | ||
| 2573 | + integrity sha1-Lkssfm4tJ/jI8o9hv/zS5ske9kU= | ||
| 2452 | dependencies: | 2574 | dependencies: |
| 2453 | camelcase "^5.3.1" | 2575 | camelcase "^5.3.1" |
| 2454 | cssesc "^3.0.0" | 2576 | cssesc "^3.0.0" |
| 2455 | icss-utils "^4.1.1" | 2577 | icss-utils "^4.1.1" |
| 2456 | loader-utils "^1.2.3" | 2578 | loader-utils "^1.2.3" |
| 2457 | normalize-path "^3.0.0" | 2579 | normalize-path "^3.0.0" |
| 2458 | - postcss "^7.0.17" | 2580 | + postcss "^7.0.32" |
| 2459 | postcss-modules-extract-imports "^2.0.0" | 2581 | postcss-modules-extract-imports "^2.0.0" |
| 2460 | postcss-modules-local-by-default "^3.0.2" | 2582 | postcss-modules-local-by-default "^3.0.2" |
| 2461 | - postcss-modules-scope "^2.1.0" | 2583 | + postcss-modules-scope "^2.2.0" |
| 2462 | postcss-modules-values "^3.0.0" | 2584 | postcss-modules-values "^3.0.0" |
| 2463 | - postcss-value-parser "^4.0.0" | ||
| 2464 | - schema-utils "^2.0.0" | 2585 | + postcss-value-parser "^4.1.0" |
| 2586 | + schema-utils "^2.7.0" | ||
| 2587 | + semver "^6.3.0" | ||
| 2465 | 2588 | ||
| 2466 | css-select-base-adapter@^0.1.1: | 2589 | css-select-base-adapter@^0.1.1: |
| 2467 | version "0.1.1" | 2590 | version "0.1.1" |
| @@ -2470,7 +2593,7 @@ css-select-base-adapter@^0.1.1: | @@ -2470,7 +2593,7 @@ css-select-base-adapter@^0.1.1: | ||
| 2470 | 2593 | ||
| 2471 | css-select@^1.1.0, css-select@~1.2.0: | 2594 | css-select@^1.1.0, css-select@~1.2.0: |
| 2472 | version "1.2.0" | 2595 | version "1.2.0" |
| 2473 | - resolved "https://registry.npm.taobao.org/css-select/download/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" | 2596 | + resolved "https://registry.npm.taobao.org/css-select/download/css-select-1.2.0.tgz?cache=0&sync_timestamp=1573342118933&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcss-select%2Fdownload%2Fcss-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" |
| 2474 | integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= | 2597 | integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= |
| 2475 | dependencies: | 2598 | dependencies: |
| 2476 | boolbase "~1.0.0" | 2599 | boolbase "~1.0.0" |
| @@ -2479,45 +2602,40 @@ css-select@^1.1.0, css-select@~1.2.0: | @@ -2479,45 +2602,40 @@ css-select@^1.1.0, css-select@~1.2.0: | ||
| 2479 | nth-check "~1.0.1" | 2602 | nth-check "~1.0.1" |
| 2480 | 2603 | ||
| 2481 | css-select@^2.0.0: | 2604 | css-select@^2.0.0: |
| 2482 | - version "2.0.2" | ||
| 2483 | - resolved "https://registry.npm.taobao.org/css-select/download/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede" | ||
| 2484 | - integrity sha1-q0OGzsnh9miFVWSxfDcztDsqXt4= | 2605 | + version "2.1.0" |
| 2606 | + resolved "https://registry.npm.taobao.org/css-select/download/css-select-2.1.0.tgz?cache=0&sync_timestamp=1573342118933&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcss-select%2Fdownload%2Fcss-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" | ||
| 2607 | + integrity sha1-ajRlM1ZjWTSoG6ymjQJVQyEF2+8= | ||
| 2485 | dependencies: | 2608 | dependencies: |
| 2486 | boolbase "^1.0.0" | 2609 | boolbase "^1.0.0" |
| 2487 | - css-what "^2.1.2" | 2610 | + css-what "^3.2.1" |
| 2488 | domutils "^1.7.0" | 2611 | domutils "^1.7.0" |
| 2489 | nth-check "^1.0.2" | 2612 | nth-check "^1.0.2" |
| 2490 | 2613 | ||
| 2491 | -css-tree@1.0.0-alpha.29: | ||
| 2492 | - version "1.0.0-alpha.29" | ||
| 2493 | - resolved "https://registry.npm.taobao.org/css-tree/download/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" | ||
| 2494 | - integrity sha1-P6nU7zFCy9HDAedmTB81K9gvWjk= | ||
| 2495 | - dependencies: | ||
| 2496 | - mdn-data "~1.1.0" | ||
| 2497 | - source-map "^0.5.3" | ||
| 2498 | - | ||
| 2499 | -css-tree@1.0.0-alpha.33: | ||
| 2500 | - version "1.0.0-alpha.33" | ||
| 2501 | - resolved "https://registry.npm.taobao.org/css-tree/download/css-tree-1.0.0-alpha.33.tgz#970e20e5a91f7a378ddd0fc58d0b6c8d4f3be93e" | ||
| 2502 | - integrity sha1-lw4g5akfejeN3Q/FjQtsjU876T4= | 2614 | +css-tree@1.0.0-alpha.37: |
| 2615 | + version "1.0.0-alpha.37" | ||
| 2616 | + resolved "https://registry.npm.taobao.org/css-tree/download/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" | ||
| 2617 | + integrity sha1-mL69YsTB2flg7DQM+fdSLjBwmiI= | ||
| 2503 | dependencies: | 2618 | dependencies: |
| 2504 | mdn-data "2.0.4" | 2619 | mdn-data "2.0.4" |
| 2505 | - source-map "^0.5.3" | 2620 | + source-map "^0.6.1" |
| 2506 | 2621 | ||
| 2507 | -css-unit-converter@^1.1.1: | ||
| 2508 | - version "1.1.1" | ||
| 2509 | - resolved "https://registry.npm.taobao.org/css-unit-converter/download/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996" | ||
| 2510 | - integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY= | 2622 | +css-tree@1.0.0-alpha.39: |
| 2623 | + version "1.0.0-alpha.39" | ||
| 2624 | + resolved "https://registry.npm.taobao.org/css-tree/download/css-tree-1.0.0-alpha.39.tgz#2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb" | ||
| 2625 | + integrity sha1-K/8//huz93bPfu/ZHuXLp3oUnus= | ||
| 2626 | + dependencies: | ||
| 2627 | + mdn-data "2.0.6" | ||
| 2628 | + source-map "^0.6.1" | ||
| 2511 | 2629 | ||
| 2512 | -css-what@2.1, css-what@^2.1.2: | 2630 | +css-what@2.1: |
| 2513 | version "2.1.3" | 2631 | version "2.1.3" |
| 2514 | - resolved "https://registry.npm.taobao.org/css-what/download/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" | 2632 | + resolved "https://registry.npm.taobao.org/css-what/download/css-what-2.1.3.tgz?cache=0&sync_timestamp=1590961405812&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcss-what%2Fdownload%2Fcss-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" |
| 2515 | integrity sha1-ptdgRXM2X+dGhsPzEcVlE9iChfI= | 2633 | integrity sha1-ptdgRXM2X+dGhsPzEcVlE9iChfI= |
| 2516 | 2634 | ||
| 2517 | -cssesc@^2.0.0: | ||
| 2518 | - version "2.0.0" | ||
| 2519 | - resolved "https://registry.npm.taobao.org/cssesc/download/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" | ||
| 2520 | - integrity sha1-OxO9G7HLNuG8taTc0n9UxdyzVwM= | 2635 | +css-what@^3.2.1: |
| 2636 | + version "3.3.0" | ||
| 2637 | + resolved "https://registry.npm.taobao.org/css-what/download/css-what-3.3.0.tgz?cache=0&sync_timestamp=1590961405812&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcss-what%2Fdownload%2Fcss-what-3.3.0.tgz#10fec696a9ece2e591ac772d759aacabac38cd39" | ||
| 2638 | + integrity sha1-EP7Glqns4uWRrHctdZqsq6w4zTk= | ||
| 2521 | 2639 | ||
| 2522 | cssesc@^3.0.0: | 2640 | cssesc@^3.0.0: |
| 2523 | version "3.0.0" | 2641 | version "3.0.0" |
| @@ -2592,16 +2710,16 @@ cssnano@^4.0.0, cssnano@^4.1.10: | @@ -2592,16 +2710,16 @@ cssnano@^4.0.0, cssnano@^4.1.10: | ||
| 2592 | is-resolvable "^1.0.0" | 2710 | is-resolvable "^1.0.0" |
| 2593 | postcss "^7.0.0" | 2711 | postcss "^7.0.0" |
| 2594 | 2712 | ||
| 2595 | -csso@^3.5.1: | ||
| 2596 | - version "3.5.1" | ||
| 2597 | - resolved "https://registry.npm.taobao.org/csso/download/csso-3.5.1.tgz?cache=0&sync_timestamp=1571698002259&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcsso%2Fdownload%2Fcsso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b" | ||
| 2598 | - integrity sha1-e564vmFiiXPBsmHhadLwJACOdYs= | 2713 | +csso@^4.0.2: |
| 2714 | + version "4.0.3" | ||
| 2715 | + resolved "https://registry.npm.taobao.org/csso/download/csso-4.0.3.tgz?cache=0&sync_timestamp=1585052282901&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcsso%2Fdownload%2Fcsso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903" | ||
| 2716 | + integrity sha1-DZmF3IUsfMKyys+74QeQFNGo6QM= | ||
| 2599 | dependencies: | 2717 | dependencies: |
| 2600 | - css-tree "1.0.0-alpha.29" | 2718 | + css-tree "1.0.0-alpha.39" |
| 2601 | 2719 | ||
| 2602 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": | 2720 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": |
| 2603 | version "0.3.8" | 2721 | version "0.3.8" |
| 2604 | - resolved "https://registry.npm.taobao.org/cssom/download/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" | 2722 | + resolved "https://registry.npm.taobao.org/cssom/download/cssom-0.3.8.tgz?cache=0&sync_timestamp=1573719337707&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcssom%2Fdownload%2Fcssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" |
| 2605 | integrity sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o= | 2723 | integrity sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o= |
| 2606 | 2724 | ||
| 2607 | "cssstyle@>= 0.2.29 < 0.3.0": | 2725 | "cssstyle@>= 0.2.29 < 0.3.0": |
| @@ -2611,11 +2729,6 @@ cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": | @@ -2611,11 +2729,6 @@ cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": | ||
| 2611 | dependencies: | 2729 | dependencies: |
| 2612 | cssom "0.3.x" | 2730 | cssom "0.3.x" |
| 2613 | 2731 | ||
| 2614 | -current-script-polyfill@^1.0.0: | ||
| 2615 | - version "1.0.0" | ||
| 2616 | - resolved "https://registry.npm.taobao.org/current-script-polyfill/download/current-script-polyfill-1.0.0.tgz#f31cf7e4f3e218b0726e738ca92a02d3488ef615" | ||
| 2617 | - integrity sha1-8xz35PPiGLBybnOMqSoC00iO9hU= | ||
| 2618 | - | ||
| 2619 | cyclist@^1.0.1: | 2732 | cyclist@^1.0.1: |
| 2620 | version "1.0.1" | 2733 | version "1.0.1" |
| 2621 | resolved "https://registry.npm.taobao.org/cyclist/download/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" | 2734 | resolved "https://registry.npm.taobao.org/cyclist/download/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" |
| @@ -2628,11 +2741,6 @@ dashdash@^1.12.0: | @@ -2628,11 +2741,6 @@ dashdash@^1.12.0: | ||
| 2628 | dependencies: | 2741 | dependencies: |
| 2629 | assert-plus "^1.0.0" | 2742 | assert-plus "^1.0.0" |
| 2630 | 2743 | ||
| 2631 | -date-now@^0.1.4: | ||
| 2632 | - version "0.1.4" | ||
| 2633 | - resolved "https://registry.npm.taobao.org/date-now/download/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" | ||
| 2634 | - integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= | ||
| 2635 | - | ||
| 2636 | de-indent@^1.0.2: | 2744 | de-indent@^1.0.2: |
| 2637 | version "1.0.2" | 2745 | version "1.0.2" |
| 2638 | resolved "https://registry.npm.taobao.org/de-indent/download/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" | 2746 | resolved "https://registry.npm.taobao.org/de-indent/download/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" |
| @@ -2652,7 +2760,7 @@ debug@=3.1.0: | @@ -2652,7 +2760,7 @@ debug@=3.1.0: | ||
| 2652 | dependencies: | 2760 | dependencies: |
| 2653 | ms "2.0.0" | 2761 | ms "2.0.0" |
| 2654 | 2762 | ||
| 2655 | -debug@^3.0.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.6: | 2763 | +debug@^3.1.1, debug@^3.2.5: |
| 2656 | version "3.2.6" | 2764 | version "3.2.6" |
| 2657 | resolved "https://registry.npm.taobao.org/debug/download/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" | 2765 | resolved "https://registry.npm.taobao.org/debug/download/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" |
| 2658 | integrity sha1-6D0X3hbYp++3cX7b5fsQE17uYps= | 2766 | integrity sha1-6D0X3hbYp++3cX7b5fsQE17uYps= |
| @@ -2668,18 +2776,25 @@ debug@^4.1.0, debug@^4.1.1: | @@ -2668,18 +2776,25 @@ debug@^4.1.0, debug@^4.1.1: | ||
| 2668 | 2776 | ||
| 2669 | decamelize@^1.2.0: | 2777 | decamelize@^1.2.0: |
| 2670 | version "1.2.0" | 2778 | version "1.2.0" |
| 2671 | - resolved "https://registry.npm.taobao.org/decamelize/download/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" | 2779 | + resolved "https://registry.npm.taobao.org/decamelize/download/decamelize-1.2.0.tgz?cache=0&sync_timestamp=1580010393599&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdecamelize%2Fdownload%2Fdecamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" |
| 2672 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= | 2780 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= |
| 2673 | 2781 | ||
| 2782 | +decamelize@^3.2.0: | ||
| 2783 | + version "3.2.0" | ||
| 2784 | + resolved "https://registry.npm.taobao.org/decamelize/download/decamelize-3.2.0.tgz?cache=0&sync_timestamp=1580010393599&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdecamelize%2Fdownload%2Fdecamelize-3.2.0.tgz#84b8e8f4f8c579f938e35e2cc7024907e0090851" | ||
| 2785 | + integrity sha1-hLjo9PjFefk4414sxwJJB+AJCFE= | ||
| 2786 | + dependencies: | ||
| 2787 | + xregexp "^4.2.4" | ||
| 2788 | + | ||
| 2674 | decode-uri-component@^0.2.0: | 2789 | decode-uri-component@^0.2.0: |
| 2675 | version "0.2.0" | 2790 | version "0.2.0" |
| 2676 | resolved "https://registry.npm.taobao.org/decode-uri-component/download/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" | 2791 | resolved "https://registry.npm.taobao.org/decode-uri-component/download/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" |
| 2677 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= | 2792 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= |
| 2678 | 2793 | ||
| 2679 | deep-equal@^1.0.1: | 2794 | deep-equal@^1.0.1: |
| 2680 | - version "1.1.0" | ||
| 2681 | - resolved "https://registry.npm.taobao.org/deep-equal/download/deep-equal-1.1.0.tgz#3103cdf8ab6d32cf4a8df7865458f2b8d33f3745" | ||
| 2682 | - integrity sha1-MQPN+KttMs9KjfeGVFjyuNM/N0U= | 2795 | + version "1.1.1" |
| 2796 | + resolved "https://registry.npm.taobao.org/deep-equal/download/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" | ||
| 2797 | + integrity sha1-tcmMlCzv+vfLBR4k4UNKJaLmB2o= | ||
| 2683 | dependencies: | 2798 | dependencies: |
| 2684 | is-arguments "^1.0.4" | 2799 | is-arguments "^1.0.4" |
| 2685 | is-date-object "^1.0.1" | 2800 | is-date-object "^1.0.1" |
| @@ -2688,11 +2803,6 @@ deep-equal@^1.0.1: | @@ -2688,11 +2803,6 @@ deep-equal@^1.0.1: | ||
| 2688 | object-keys "^1.1.1" | 2803 | object-keys "^1.1.1" |
| 2689 | regexp.prototype.flags "^1.2.0" | 2804 | regexp.prototype.flags "^1.2.0" |
| 2690 | 2805 | ||
| 2691 | -deep-extend@^0.6.0: | ||
| 2692 | - version "0.6.0" | ||
| 2693 | - resolved "https://registry.npm.taobao.org/deep-extend/download/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" | ||
| 2694 | - integrity sha1-xPp8lUBKF6nD6Mp+FTcxK3NjMKw= | ||
| 2695 | - | ||
| 2696 | deep-is@~0.1.3: | 2806 | deep-is@~0.1.3: |
| 2697 | version "0.1.3" | 2807 | version "0.1.3" |
| 2698 | resolved "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" | 2808 | resolved "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" |
| @@ -2700,7 +2810,7 @@ deep-is@~0.1.3: | @@ -2700,7 +2810,7 @@ deep-is@~0.1.3: | ||
| 2700 | 2810 | ||
| 2701 | deepmerge@^1.2.0, deepmerge@^1.5.2: | 2811 | deepmerge@^1.2.0, deepmerge@^1.5.2: |
| 2702 | version "1.5.2" | 2812 | version "1.5.2" |
| 2703 | - resolved "https://registry.npm.taobao.org/deepmerge/download/deepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753" | 2813 | + resolved "https://registry.npm.taobao.org/deepmerge/download/deepmerge-1.5.2.tgz?cache=0&sync_timestamp=1572279720382&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdeepmerge%2Fdownload%2Fdeepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753" |
| 2704 | integrity sha1-EEmdhohEza1P7ghC34x/bwyVp1M= | 2814 | integrity sha1-EEmdhohEza1P7ghC34x/bwyVp1M= |
| 2705 | 2815 | ||
| 2706 | default-gateway@^4.2.0: | 2816 | default-gateway@^4.2.0: |
| @@ -2711,12 +2821,12 @@ default-gateway@^4.2.0: | @@ -2711,12 +2821,12 @@ default-gateway@^4.2.0: | ||
| 2711 | execa "^1.0.0" | 2821 | execa "^1.0.0" |
| 2712 | ip-regex "^2.1.0" | 2822 | ip-regex "^2.1.0" |
| 2713 | 2823 | ||
| 2714 | -default-gateway@^5.0.2: | ||
| 2715 | - version "5.0.4" | ||
| 2716 | - resolved "https://registry.npm.taobao.org/default-gateway/download/default-gateway-5.0.4.tgz#d10bf9ec1446b96acb977f88e62d59c7eefe5d01" | ||
| 2717 | - integrity sha1-0Qv57BRGuWrLl3+I5i1Zx+7+XQE= | 2824 | +default-gateway@^5.0.5: |
| 2825 | + version "5.0.5" | ||
| 2826 | + resolved "https://registry.npm.taobao.org/default-gateway/download/default-gateway-5.0.5.tgz#4fd6bd5d2855d39b34cc5a59505486e9aafc9b10" | ||
| 2827 | + integrity sha1-T9a9XShV05s0zFpZUFSG6ar8mxA= | ||
| 2718 | dependencies: | 2828 | dependencies: |
| 2719 | - execa "^3.0.0" | 2829 | + execa "^3.3.0" |
| 2720 | 2830 | ||
| 2721 | defaults@^1.0.3: | 2831 | defaults@^1.0.3: |
| 2722 | version "1.0.3" | 2832 | version "1.0.3" |
| @@ -2772,20 +2882,15 @@ delayed-stream@~1.0.0: | @@ -2772,20 +2882,15 @@ delayed-stream@~1.0.0: | ||
| 2772 | resolved "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" | 2882 | resolved "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" |
| 2773 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= | 2883 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= |
| 2774 | 2884 | ||
| 2775 | -delegates@^1.0.0: | ||
| 2776 | - version "1.0.0" | ||
| 2777 | - resolved "https://registry.npm.taobao.org/delegates/download/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" | ||
| 2778 | - integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= | ||
| 2779 | - | ||
| 2780 | depd@~1.1.2: | 2885 | depd@~1.1.2: |
| 2781 | version "1.1.2" | 2886 | version "1.1.2" |
| 2782 | resolved "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" | 2887 | resolved "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" |
| 2783 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= | 2888 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= |
| 2784 | 2889 | ||
| 2785 | des.js@^1.0.0: | 2890 | des.js@^1.0.0: |
| 2786 | - version "1.0.0" | ||
| 2787 | - resolved "https://registry.npm.taobao.org/des.js/download/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" | ||
| 2788 | - integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= | 2891 | + version "1.0.1" |
| 2892 | + resolved "https://registry.npm.taobao.org/des.js/download/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" | ||
| 2893 | + integrity sha1-U4IULhvcU/hdhtU+X0qn3rkeCEM= | ||
| 2789 | dependencies: | 2894 | dependencies: |
| 2790 | inherits "^2.0.1" | 2895 | inherits "^2.0.1" |
| 2791 | minimalistic-assert "^1.0.0" | 2896 | minimalistic-assert "^1.0.0" |
| @@ -2795,11 +2900,6 @@ destroy@~1.0.4: | @@ -2795,11 +2900,6 @@ destroy@~1.0.4: | ||
| 2795 | resolved "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" | 2900 | resolved "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" |
| 2796 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= | 2901 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= |
| 2797 | 2902 | ||
| 2798 | -detect-libc@^1.0.2: | ||
| 2799 | - version "1.0.3" | ||
| 2800 | - resolved "https://registry.npm.taobao.org/detect-libc/download/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" | ||
| 2801 | - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= | ||
| 2802 | - | ||
| 2803 | detect-node@^2.0.4: | 2903 | detect-node@^2.0.4: |
| 2804 | version "2.0.4" | 2904 | version "2.0.4" |
| 2805 | resolved "https://registry.npm.taobao.org/detect-node/download/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" | 2905 | resolved "https://registry.npm.taobao.org/detect-node/download/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" |
| @@ -2849,16 +2949,16 @@ dom-converter@^0.2: | @@ -2849,16 +2949,16 @@ dom-converter@^0.2: | ||
| 2849 | utila "~0.4" | 2949 | utila "~0.4" |
| 2850 | 2950 | ||
| 2851 | dom-serializer@0: | 2951 | dom-serializer@0: |
| 2852 | - version "0.2.1" | ||
| 2853 | - resolved "https://registry.npm.taobao.org/dom-serializer/download/dom-serializer-0.2.1.tgz#13650c850daffea35d8b626a4cfc4d3a17643fdb" | ||
| 2854 | - integrity sha1-E2UMhQ2v/qNdi2JqTPxNOhdkP9s= | 2952 | + version "0.2.2" |
| 2953 | + resolved "https://registry.npm.taobao.org/dom-serializer/download/dom-serializer-0.2.2.tgz?cache=0&sync_timestamp=1589067578490&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdom-serializer%2Fdownload%2Fdom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" | ||
| 2954 | + integrity sha1-GvuB9TNxcXXUeGVd68XjMtn5u1E= | ||
| 2855 | dependencies: | 2955 | dependencies: |
| 2856 | domelementtype "^2.0.1" | 2956 | domelementtype "^2.0.1" |
| 2857 | entities "^2.0.0" | 2957 | entities "^2.0.0" |
| 2858 | 2958 | ||
| 2859 | dom-serializer@~0.1.0: | 2959 | dom-serializer@~0.1.0: |
| 2860 | version "0.1.1" | 2960 | version "0.1.1" |
| 2861 | - resolved "https://registry.npm.taobao.org/dom-serializer/download/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" | 2961 | + resolved "https://registry.npm.taobao.org/dom-serializer/download/dom-serializer-0.1.1.tgz?cache=0&sync_timestamp=1589067578490&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdom-serializer%2Fdownload%2Fdom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" |
| 2862 | integrity sha1-HsQFnihLq+027sKUHUqXChic58A= | 2962 | integrity sha1-HsQFnihLq+027sKUHUqXChic58A= |
| 2863 | dependencies: | 2963 | dependencies: |
| 2864 | domelementtype "^1.3.0" | 2964 | domelementtype "^1.3.0" |
| @@ -2866,7 +2966,7 @@ dom-serializer@~0.1.0: | @@ -2866,7 +2966,7 @@ dom-serializer@~0.1.0: | ||
| 2866 | 2966 | ||
| 2867 | domain-browser@^1.1.1: | 2967 | domain-browser@^1.1.1: |
| 2868 | version "1.2.0" | 2968 | version "1.2.0" |
| 2869 | - resolved "https://registry.npm.taobao.org/domain-browser/download/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" | 2969 | + resolved "https://registry.npm.taobao.org/domain-browser/download/domain-browser-1.2.0.tgz?cache=0&sync_timestamp=1593752811901&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdomain-browser%2Fdownload%2Fdomain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" |
| 2870 | integrity sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto= | 2970 | integrity sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto= |
| 2871 | 2971 | ||
| 2872 | domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: | 2972 | domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: |
| @@ -2895,7 +2995,7 @@ domhandler@^2.3.0: | @@ -2895,7 +2995,7 @@ domhandler@^2.3.0: | ||
| 2895 | 2995 | ||
| 2896 | domutils@1.5, domutils@1.5.1: | 2996 | domutils@1.5, domutils@1.5.1: |
| 2897 | version "1.5.1" | 2997 | version "1.5.1" |
| 2898 | - resolved "https://registry.npm.taobao.org/domutils/download/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" | 2998 | + resolved "https://registry.npm.taobao.org/domutils/download/domutils-1.5.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdomutils%2Fdownload%2Fdomutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" |
| 2899 | integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= | 2999 | integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= |
| 2900 | dependencies: | 3000 | dependencies: |
| 2901 | dom-serializer "0" | 3001 | dom-serializer "0" |
| @@ -2903,25 +3003,25 @@ domutils@1.5, domutils@1.5.1: | @@ -2903,25 +3003,25 @@ domutils@1.5, domutils@1.5.1: | ||
| 2903 | 3003 | ||
| 2904 | domutils@^1.5.1, domutils@^1.7.0: | 3004 | domutils@^1.5.1, domutils@^1.7.0: |
| 2905 | version "1.7.0" | 3005 | version "1.7.0" |
| 2906 | - resolved "https://registry.npm.taobao.org/domutils/download/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" | 3006 | + resolved "https://registry.npm.taobao.org/domutils/download/domutils-1.7.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdomutils%2Fdownload%2Fdomutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" |
| 2907 | integrity sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo= | 3007 | integrity sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo= |
| 2908 | dependencies: | 3008 | dependencies: |
| 2909 | dom-serializer "0" | 3009 | dom-serializer "0" |
| 2910 | domelementtype "1" | 3010 | domelementtype "1" |
| 2911 | 3011 | ||
| 2912 | -dot-prop@^4.1.1: | ||
| 2913 | - version "4.2.0" | ||
| 2914 | - resolved "https://registry.npm.taobao.org/dot-prop/download/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" | ||
| 2915 | - integrity sha1-HxngwuGqDjJ5fEl5nyg3rGr2nFc= | 3012 | +dot-prop@^5.2.0: |
| 3013 | + version "5.2.0" | ||
| 3014 | + resolved "https://registry.npm.taobao.org/dot-prop/download/dot-prop-5.2.0.tgz?cache=0&sync_timestamp=1572620767955&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdot-prop%2Fdownload%2Fdot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" | ||
| 3015 | + integrity sha1-w07MKVVtxF8fTCJpe29JBODMT8s= | ||
| 2916 | dependencies: | 3016 | dependencies: |
| 2917 | - is-obj "^1.0.0" | 3017 | + is-obj "^2.0.0" |
| 2918 | 3018 | ||
| 2919 | dotenv-expand@^5.1.0: | 3019 | dotenv-expand@^5.1.0: |
| 2920 | version "5.1.0" | 3020 | version "5.1.0" |
| 2921 | resolved "https://registry.npm.taobao.org/dotenv-expand/download/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" | 3021 | resolved "https://registry.npm.taobao.org/dotenv-expand/download/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" |
| 2922 | integrity sha1-P7rwIL/XlIhAcuomsel5HUWmKfA= | 3022 | integrity sha1-P7rwIL/XlIhAcuomsel5HUWmKfA= |
| 2923 | 3023 | ||
| 2924 | -dotenv@^8.0.0: | 3024 | +dotenv@^8.2.0: |
| 2925 | version "8.2.0" | 3025 | version "8.2.0" |
| 2926 | resolved "https://registry.npm.taobao.org/dotenv/download/dotenv-8.2.0.tgz?cache=0&sync_timestamp=1571190782798&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdotenv%2Fdownload%2Fdotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" | 3026 | resolved "https://registry.npm.taobao.org/dotenv/download/dotenv-8.2.0.tgz?cache=0&sync_timestamp=1571190782798&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdotenv%2Fdownload%2Fdotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" |
| 2927 | integrity sha1-l+YZJZradQ7qPk6j4mvO6lQksWo= | 3027 | integrity sha1-l+YZJZradQ7qPk6j4mvO6lQksWo= |
| @@ -2960,24 +3060,24 @@ ee-first@1.1.1: | @@ -2960,24 +3060,24 @@ ee-first@1.1.1: | ||
| 2960 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= | 3060 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= |
| 2961 | 3061 | ||
| 2962 | ejs@^2.6.1: | 3062 | ejs@^2.6.1: |
| 2963 | - version "2.7.1" | ||
| 2964 | - resolved "https://registry.npm.taobao.org/ejs/download/ejs-2.7.1.tgz#5b5ab57f718b79d4aca9254457afecd36fa80228" | ||
| 2965 | - integrity sha1-W1q1f3GLedSsqSVEV6/s02+oAig= | 3063 | + version "2.7.4" |
| 3064 | + resolved "https://registry.npm.taobao.org/ejs/download/ejs-2.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fejs%2Fdownload%2Fejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" | ||
| 3065 | + integrity sha1-SGYSh1c9zFPjZsehrlLDoSDuybo= | ||
| 2966 | 3066 | ||
| 2967 | -electron-to-chromium@^1.3.284: | ||
| 2968 | - version "1.3.291" | ||
| 2969 | - resolved "https://registry.npm.taobao.org/electron-to-chromium/download/electron-to-chromium-1.3.291.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.291.tgz#30b3560e24636eceab2394a3d4a6c228bef3376c" | ||
| 2970 | - integrity sha1-MLNWDiRjbs6rI5Sj1KbCKL7zN2w= | 3067 | +electron-to-chromium@^1.3.488: |
| 3068 | + version "1.3.496" | ||
| 3069 | + resolved "https://registry.npm.taobao.org/electron-to-chromium/download/electron-to-chromium-1.3.496.tgz#3f43d32930481d82ad3663d79658e7c59a58af0b" | ||
| 3070 | + integrity sha1-P0PTKTBIHYKtNmPXlljnxZpYrws= | ||
| 2971 | 3071 | ||
| 2972 | -element-theme-chalk@^2.13.0: | ||
| 2973 | - version "2.13.0" | ||
| 2974 | - resolved "https://registry.npm.taobao.org/element-theme-chalk/download/element-theme-chalk-2.13.0.tgz#2ee1aea38c31a37df55886001021a054b076b356" | ||
| 2975 | - integrity sha1-LuGuo4wxo331WIYAECGgVLB2s1Y= | 3072 | +element-theme-chalk@^2.13.2: |
| 3073 | + version "2.13.2" | ||
| 3074 | + resolved "https://registry.npm.taobao.org/element-theme-chalk/download/element-theme-chalk-2.13.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Felement-theme-chalk%2Fdownload%2Felement-theme-chalk-2.13.2.tgz#27488b5a4b6cb46c5a41a0fadc5d46102be146a1" | ||
| 3075 | + integrity sha1-J0iLWktstGxaQaD63F1GECvhRqE= | ||
| 2976 | 3076 | ||
| 2977 | -element-ui@^2.12.0: | ||
| 2978 | - version "2.12.0" | ||
| 2979 | - resolved "https://registry.npm.taobao.org/element-ui/download/element-ui-2.12.0.tgz#a893bc11ae4f7dbb7e9d541606f23e643f131ee4" | ||
| 2980 | - integrity sha1-qJO8Ea5Pfbt+nVQWBvI+ZD8THuQ= | 3077 | +element-ui@^2.13.2: |
| 3078 | + version "2.13.2" | ||
| 3079 | + resolved "https://registry.npm.taobao.org/element-ui/download/element-ui-2.13.2.tgz?cache=0&sync_timestamp=1589795164194&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Felement-ui%2Fdownload%2Felement-ui-2.13.2.tgz#582bf47aaaaaafe23ea1958fae217a687ad06447" | ||
| 3080 | + integrity sha1-WCv0eqqqr+I+oZWPriF6aHrQZEc= | ||
| 2981 | dependencies: | 3081 | dependencies: |
| 2982 | async-validator "~1.8.1" | 3082 | async-validator "~1.8.1" |
| 2983 | babel-helper-vue-jsx-merge-props "^2.0.0" | 3083 | babel-helper-vue-jsx-merge-props "^2.0.0" |
| @@ -2986,10 +3086,10 @@ element-ui@^2.12.0: | @@ -2986,10 +3086,10 @@ element-ui@^2.12.0: | ||
| 2986 | resize-observer-polyfill "^1.5.0" | 3086 | resize-observer-polyfill "^1.5.0" |
| 2987 | throttle-debounce "^1.0.1" | 3087 | throttle-debounce "^1.0.1" |
| 2988 | 3088 | ||
| 2989 | -elliptic@^6.0.0: | ||
| 2990 | - version "6.5.1" | ||
| 2991 | - resolved "https://registry.npm.taobao.org/elliptic/download/elliptic-6.5.1.tgz#c380f5f909bf1b9b4428d028cd18d3b0efd6b52b" | ||
| 2992 | - integrity sha1-w4D1+Qm/G5tEKNAozRjTsO/WtSs= | 3089 | +elliptic@^6.0.0, elliptic@^6.5.2: |
| 3090 | + version "6.5.3" | ||
| 3091 | + resolved "https://registry.npm.taobao.org/elliptic/download/elliptic-6.5.3.tgz?cache=0&sync_timestamp=1592492820150&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Felliptic%2Fdownload%2Felliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" | ||
| 3092 | + integrity sha1-y1nrLv2vc6C9eMzXAVpirW4Pk9Y= | ||
| 2993 | dependencies: | 3093 | dependencies: |
| 2994 | bn.js "^4.4.0" | 3094 | bn.js "^4.4.0" |
| 2995 | brorand "^1.0.1" | 3095 | brorand "^1.0.1" |
| @@ -3004,11 +3104,21 @@ emoji-regex@^7.0.1: | @@ -3004,11 +3104,21 @@ emoji-regex@^7.0.1: | ||
| 3004 | resolved "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" | 3104 | resolved "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" |
| 3005 | integrity sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY= | 3105 | integrity sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY= |
| 3006 | 3106 | ||
| 3107 | +emoji-regex@^8.0.0: | ||
| 3108 | + version "8.0.0" | ||
| 3109 | + resolved "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" | ||
| 3110 | + integrity sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc= | ||
| 3111 | + | ||
| 3007 | emojis-list@^2.0.0: | 3112 | emojis-list@^2.0.0: |
| 3008 | version "2.1.0" | 3113 | version "2.1.0" |
| 3009 | resolved "https://registry.npm.taobao.org/emojis-list/download/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" | 3114 | resolved "https://registry.npm.taobao.org/emojis-list/download/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" |
| 3010 | integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= | 3115 | integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= |
| 3011 | 3116 | ||
| 3117 | +emojis-list@^3.0.0: | ||
| 3118 | + version "3.0.0" | ||
| 3119 | + resolved "https://registry.npm.taobao.org/emojis-list/download/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" | ||
| 3120 | + integrity sha1-VXBmIEatKeLpFucariYKvf9Pang= | ||
| 3121 | + | ||
| 3012 | encodeurl@~1.0.2: | 3122 | encodeurl@~1.0.2: |
| 3013 | version "1.0.2" | 3123 | version "1.0.2" |
| 3014 | resolved "https://registry.npm.taobao.org/encodeurl/download/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" | 3124 | resolved "https://registry.npm.taobao.org/encodeurl/download/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" |
| @@ -3016,15 +3126,15 @@ encodeurl@~1.0.2: | @@ -3016,15 +3126,15 @@ encodeurl@~1.0.2: | ||
| 3016 | 3126 | ||
| 3017 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: | 3127 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: |
| 3018 | version "1.4.4" | 3128 | version "1.4.4" |
| 3019 | - resolved "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz?cache=0&sync_timestamp=1569416272686&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fend-of-stream%2Fdownload%2Fend-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" | 3129 | + resolved "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" |
| 3020 | integrity sha1-WuZKX0UFe682JuwU2gyl5LJDHrA= | 3130 | integrity sha1-WuZKX0UFe682JuwU2gyl5LJDHrA= |
| 3021 | dependencies: | 3131 | dependencies: |
| 3022 | once "^1.4.0" | 3132 | once "^1.4.0" |
| 3023 | 3133 | ||
| 3024 | enhanced-resolve@^4.1.0: | 3134 | enhanced-resolve@^4.1.0: |
| 3025 | - version "4.1.1" | ||
| 3026 | - resolved "https://registry.npm.taobao.org/enhanced-resolve/download/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" | ||
| 3027 | - integrity sha1-KTfiuAZs0P584JkKmPDXGjUYn2Y= | 3135 | + version "4.2.0" |
| 3136 | + resolved "https://registry.npm.taobao.org/enhanced-resolve/download/enhanced-resolve-4.2.0.tgz#5d43bda4a0fd447cb0ebbe71bef8deff8805ad0d" | ||
| 3137 | + integrity sha1-XUO9pKD9RHyw675xvvje/4gFrQ0= | ||
| 3028 | dependencies: | 3138 | dependencies: |
| 3029 | graceful-fs "^4.1.2" | 3139 | graceful-fs "^4.1.2" |
| 3030 | memory-fs "^0.5.0" | 3140 | memory-fs "^0.5.0" |
| @@ -3032,18 +3142,18 @@ enhanced-resolve@^4.1.0: | @@ -3032,18 +3142,18 @@ enhanced-resolve@^4.1.0: | ||
| 3032 | 3142 | ||
| 3033 | entities@1.0: | 3143 | entities@1.0: |
| 3034 | version "1.0.0" | 3144 | version "1.0.0" |
| 3035 | - resolved "https://registry.npm.taobao.org/entities/download/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" | 3145 | + resolved "https://registry.npm.taobao.org/entities/download/entities-1.0.0.tgz?cache=0&sync_timestamp=1591227405887&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fentities%2Fdownload%2Fentities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" |
| 3036 | integrity sha1-sph6o4ITR/zeZCsk/fyeT7cSvyY= | 3146 | integrity sha1-sph6o4ITR/zeZCsk/fyeT7cSvyY= |
| 3037 | 3147 | ||
| 3038 | entities@^1.1.1, entities@~1.1.1: | 3148 | entities@^1.1.1, entities@~1.1.1: |
| 3039 | version "1.1.2" | 3149 | version "1.1.2" |
| 3040 | - resolved "https://registry.npm.taobao.org/entities/download/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" | 3150 | + resolved "https://registry.npm.taobao.org/entities/download/entities-1.1.2.tgz?cache=0&sync_timestamp=1591227405887&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fentities%2Fdownload%2Fentities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" |
| 3041 | integrity sha1-vfpzUplmTfr9NFKe1PhSKidf6lY= | 3151 | integrity sha1-vfpzUplmTfr9NFKe1PhSKidf6lY= |
| 3042 | 3152 | ||
| 3043 | entities@^2.0.0, entities@~2.0.0: | 3153 | entities@^2.0.0, entities@~2.0.0: |
| 3044 | - version "2.0.0" | ||
| 3045 | - resolved "https://registry.npm.taobao.org/entities/download/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" | ||
| 3046 | - integrity sha1-aNYITKsbB5dnVA2A5Wo5tCPkq/Q= | 3154 | + version "2.0.3" |
| 3155 | + resolved "https://registry.npm.taobao.org/entities/download/entities-2.0.3.tgz?cache=0&sync_timestamp=1591227405887&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fentities%2Fdownload%2Fentities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" | ||
| 3156 | + integrity sha1-XEh+V0Krk8Fau12iJ1m4WQ7AO38= | ||
| 3047 | 3157 | ||
| 3048 | errno@^0.1.3, errno@~0.1.7: | 3158 | errno@^0.1.3, errno@~0.1.7: |
| 3049 | version "0.1.7" | 3159 | version "0.1.7" |
| @@ -3060,37 +3170,43 @@ error-ex@^1.3.1: | @@ -3060,37 +3170,43 @@ error-ex@^1.3.1: | ||
| 3060 | is-arrayish "^0.2.1" | 3170 | is-arrayish "^0.2.1" |
| 3061 | 3171 | ||
| 3062 | error-stack-parser@^2.0.0: | 3172 | error-stack-parser@^2.0.0: |
| 3063 | - version "2.0.4" | ||
| 3064 | - resolved "https://registry.npm.taobao.org/error-stack-parser/download/error-stack-parser-2.0.4.tgz#a757397dc5d9de973ac9a5d7d4e8ade7cfae9101" | ||
| 3065 | - integrity sha1-p1c5fcXZ3pc6yaXX1Oit58+ukQE= | 3173 | + version "2.0.6" |
| 3174 | + resolved "https://registry.npm.taobao.org/error-stack-parser/download/error-stack-parser-2.0.6.tgz#5a99a707bd7a4c58a797902d48d82803ede6aad8" | ||
| 3175 | + integrity sha1-WpmnB716TFinl5AtSNgoA+3mqtg= | ||
| 3066 | dependencies: | 3176 | dependencies: |
| 3067 | - stackframe "^1.1.0" | 3177 | + stackframe "^1.1.1" |
| 3068 | 3178 | ||
| 3069 | -es-abstract@^1.12.0, es-abstract@^1.4.3, es-abstract@^1.5.1: | ||
| 3070 | - version "1.16.0" | ||
| 3071 | - resolved "https://registry.npm.taobao.org/es-abstract/download/es-abstract-1.16.0.tgz#d3a26dc9c3283ac9750dca569586e976d9dcc06d" | ||
| 3072 | - integrity sha1-06JtycMoOsl1DcpWlYbpdtncwG0= | 3179 | +es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5: |
| 3180 | + version "1.17.6" | ||
| 3181 | + resolved "https://registry.npm.taobao.org/es-abstract/download/es-abstract-1.17.6.tgz?cache=0&sync_timestamp=1592109139084&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fes-abstract%2Fdownload%2Fes-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" | ||
| 3182 | + integrity sha1-kUIHFweFeyysx7iey2cDFsPi1So= | ||
| 3073 | dependencies: | 3183 | dependencies: |
| 3074 | - es-to-primitive "^1.2.0" | 3184 | + es-to-primitive "^1.2.1" |
| 3075 | function-bind "^1.1.1" | 3185 | function-bind "^1.1.1" |
| 3076 | has "^1.0.3" | 3186 | has "^1.0.3" |
| 3077 | - has-symbols "^1.0.0" | ||
| 3078 | - is-callable "^1.1.4" | ||
| 3079 | - is-regex "^1.0.4" | ||
| 3080 | - object-inspect "^1.6.0" | 3187 | + has-symbols "^1.0.1" |
| 3188 | + is-callable "^1.2.0" | ||
| 3189 | + is-regex "^1.1.0" | ||
| 3190 | + object-inspect "^1.7.0" | ||
| 3081 | object-keys "^1.1.1" | 3191 | object-keys "^1.1.1" |
| 3082 | - string.prototype.trimleft "^2.1.0" | ||
| 3083 | - string.prototype.trimright "^2.1.0" | 3192 | + object.assign "^4.1.0" |
| 3193 | + string.prototype.trimend "^1.0.1" | ||
| 3194 | + string.prototype.trimstart "^1.0.1" | ||
| 3084 | 3195 | ||
| 3085 | -es-to-primitive@^1.2.0: | ||
| 3086 | - version "1.2.0" | ||
| 3087 | - resolved "https://registry.npm.taobao.org/es-to-primitive/download/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" | ||
| 3088 | - integrity sha1-7fckeAM0VujdqO8J4ArZZQcH83c= | 3196 | +es-to-primitive@^1.2.1: |
| 3197 | + version "1.2.1" | ||
| 3198 | + resolved "https://registry.npm.taobao.org/es-to-primitive/download/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" | ||
| 3199 | + integrity sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo= | ||
| 3089 | dependencies: | 3200 | dependencies: |
| 3090 | is-callable "^1.1.4" | 3201 | is-callable "^1.1.4" |
| 3091 | is-date-object "^1.0.1" | 3202 | is-date-object "^1.0.1" |
| 3092 | is-symbol "^1.0.2" | 3203 | is-symbol "^1.0.2" |
| 3093 | 3204 | ||
| 3205 | +escalade@^3.0.1: | ||
| 3206 | + version "3.0.1" | ||
| 3207 | + resolved "https://registry.npm.taobao.org/escalade/download/escalade-3.0.1.tgz#52568a77443f6927cd0ab9c73129137533c965ed" | ||
| 3208 | + integrity sha1-UlaKd0Q/aSfNCrnHMSkTdTPJZe0= | ||
| 3209 | + | ||
| 3094 | escape-html@~1.0.3: | 3210 | escape-html@~1.0.3: |
| 3095 | version "1.0.3" | 3211 | version "1.0.3" |
| 3096 | resolved "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" | 3212 | resolved "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" |
| @@ -3098,15 +3214,15 @@ escape-html@~1.0.3: | @@ -3098,15 +3214,15 @@ escape-html@~1.0.3: | ||
| 3098 | 3214 | ||
| 3099 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: | 3215 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: |
| 3100 | version "1.0.5" | 3216 | version "1.0.5" |
| 3101 | - resolved "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | 3217 | + resolved "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz?cache=0&sync_timestamp=1587627107924&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" |
| 3102 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= | 3218 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= |
| 3103 | 3219 | ||
| 3104 | escodegen@^1.6.1: | 3220 | escodegen@^1.6.1: |
| 3105 | - version "1.12.0" | ||
| 3106 | - resolved "https://registry.npm.taobao.org/escodegen/download/escodegen-1.12.0.tgz#f763daf840af172bb3a2b6dd7219c0e17f7ff541" | ||
| 3107 | - integrity sha1-92Pa+ECvFyuzorbdchnA4X9/9UE= | 3221 | + version "1.14.3" |
| 3222 | + resolved "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz?cache=0&sync_timestamp=1592866436888&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescodegen%2Fdownload%2Fescodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" | ||
| 3223 | + integrity sha1-TnuB+6YVgdyXWC7XjKt/Do1j9QM= | ||
| 3108 | dependencies: | 3224 | dependencies: |
| 3109 | - esprima "^3.1.3" | 3225 | + esprima "^4.0.1" |
| 3110 | estraverse "^4.2.0" | 3226 | estraverse "^4.2.0" |
| 3111 | esutils "^2.0.2" | 3227 | esutils "^2.0.2" |
| 3112 | optionator "^0.8.1" | 3228 | optionator "^0.8.1" |
| @@ -3121,12 +3237,7 @@ eslint-scope@^4.0.3: | @@ -3121,12 +3237,7 @@ eslint-scope@^4.0.3: | ||
| 3121 | esrecurse "^4.1.0" | 3237 | esrecurse "^4.1.0" |
| 3122 | estraverse "^4.1.1" | 3238 | estraverse "^4.1.1" |
| 3123 | 3239 | ||
| 3124 | -esprima@^3.1.3: | ||
| 3125 | - version "3.1.3" | ||
| 3126 | - resolved "https://registry.npm.taobao.org/esprima/download/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" | ||
| 3127 | - integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= | ||
| 3128 | - | ||
| 3129 | -esprima@^4.0.0: | 3240 | +esprima@^4.0.0, esprima@^4.0.1: |
| 3130 | version "4.0.1" | 3241 | version "4.0.1" |
| 3131 | resolved "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" | 3242 | resolved "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" |
| 3132 | integrity sha1-E7BM2z5sXRnfkatph6hpVhmwqnE= | 3243 | integrity sha1-E7BM2z5sXRnfkatph6hpVhmwqnE= |
| @@ -3159,14 +3270,14 @@ event-pubsub@4.3.0: | @@ -3159,14 +3270,14 @@ event-pubsub@4.3.0: | ||
| 3159 | integrity sha1-9o2Ba8KfHsAsU53FjI3UDOcss24= | 3270 | integrity sha1-9o2Ba8KfHsAsU53FjI3UDOcss24= |
| 3160 | 3271 | ||
| 3161 | eventemitter3@^4.0.0: | 3272 | eventemitter3@^4.0.0: |
| 3162 | - version "4.0.0" | ||
| 3163 | - resolved "https://registry.npm.taobao.org/eventemitter3/download/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb" | ||
| 3164 | - integrity sha1-1lF2FjiH7lnzhtZMgmELaWpKdOs= | 3273 | + version "4.0.4" |
| 3274 | + resolved "https://registry.npm.taobao.org/eventemitter3/download/eventemitter3-4.0.4.tgz?cache=0&sync_timestamp=1589283112999&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feventemitter3%2Fdownload%2Feventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" | ||
| 3275 | + integrity sha1-tUY6zmNaCD0Bi9x8kXtMXxCoU4Q= | ||
| 3165 | 3276 | ||
| 3166 | events@^3.0.0: | 3277 | events@^3.0.0: |
| 3167 | - version "3.0.0" | ||
| 3168 | - resolved "https://registry.npm.taobao.org/events/download/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" | ||
| 3169 | - integrity sha1-mgoN+vYok9krh1uPJpjKQRSXPog= | 3278 | + version "3.1.0" |
| 3279 | + resolved "https://registry.npm.taobao.org/events/download/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" | ||
| 3280 | + integrity sha1-hCea8bNMt1qoi/X/KR9tC9mzGlk= | ||
| 3170 | 3281 | ||
| 3171 | eventsource@^1.0.7: | 3282 | eventsource@^1.0.7: |
| 3172 | version "1.0.7" | 3283 | version "1.0.7" |
| @@ -3185,7 +3296,7 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: | @@ -3185,7 +3296,7 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: | ||
| 3185 | 3296 | ||
| 3186 | execa@^1.0.0: | 3297 | execa@^1.0.0: |
| 3187 | version "1.0.0" | 3298 | version "1.0.0" |
| 3188 | - resolved "https://registry.npm.taobao.org/execa/download/execa-1.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" | 3299 | + resolved "https://registry.npm.taobao.org/execa/download/execa-1.0.0.tgz?cache=0&sync_timestamp=1594148635114&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" |
| 3189 | integrity sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg= | 3300 | integrity sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg= |
| 3190 | dependencies: | 3301 | dependencies: |
| 3191 | cross-spawn "^6.0.0" | 3302 | cross-spawn "^6.0.0" |
| @@ -3196,10 +3307,10 @@ execa@^1.0.0: | @@ -3196,10 +3307,10 @@ execa@^1.0.0: | ||
| 3196 | signal-exit "^3.0.0" | 3307 | signal-exit "^3.0.0" |
| 3197 | strip-eof "^1.0.0" | 3308 | strip-eof "^1.0.0" |
| 3198 | 3309 | ||
| 3199 | -execa@^3.0.0: | ||
| 3200 | - version "3.2.0" | ||
| 3201 | - resolved "https://registry.npm.taobao.org/execa/download/execa-3.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-3.2.0.tgz#18326b79c7ab7fbd6610fd900c1b9e95fa48f90a" | ||
| 3202 | - integrity sha1-GDJrecerf71mEP2QDBuelfpI+Qo= | 3310 | +execa@^3.3.0: |
| 3311 | + version "3.4.0" | ||
| 3312 | + resolved "https://registry.npm.taobao.org/execa/download/execa-3.4.0.tgz?cache=0&sync_timestamp=1594148635114&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89" | ||
| 3313 | + integrity sha1-wI7UVQ72XYWPrCaf/IVyRG8364k= | ||
| 3203 | dependencies: | 3314 | dependencies: |
| 3204 | cross-spawn "^7.0.0" | 3315 | cross-spawn "^7.0.0" |
| 3205 | get-stream "^5.0.0" | 3316 | get-stream "^5.0.0" |
| @@ -3227,7 +3338,7 @@ expand-brackets@^2.1.4: | @@ -3227,7 +3338,7 @@ expand-brackets@^2.1.4: | ||
| 3227 | 3338 | ||
| 3228 | express@^4.16.3, express@^4.17.1: | 3339 | express@^4.16.3, express@^4.17.1: |
| 3229 | version "4.17.1" | 3340 | version "4.17.1" |
| 3230 | - resolved "https://registry.npm.taobao.org/express/download/express-4.17.1.tgz?cache=0&sync_timestamp=1570621785910&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexpress%2Fdownload%2Fexpress-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" | 3341 | + resolved "https://registry.npm.taobao.org/express/download/express-4.17.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexpress%2Fdownload%2Fexpress-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" |
| 3231 | integrity sha1-RJH8OGBc9R+GKdOcK10Cb5ikwTQ= | 3342 | integrity sha1-RJH8OGBc9R+GKdOcK10Cb5ikwTQ= |
| 3232 | dependencies: | 3343 | dependencies: |
| 3233 | accepts "~1.3.7" | 3344 | accepts "~1.3.7" |
| @@ -3305,14 +3416,14 @@ extsprintf@^1.2.0: | @@ -3305,14 +3416,14 @@ extsprintf@^1.2.0: | ||
| 3305 | resolved "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" | 3416 | resolved "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" |
| 3306 | integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= | 3417 | integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= |
| 3307 | 3418 | ||
| 3308 | -fast-deep-equal@^2.0.1: | ||
| 3309 | - version "2.0.1" | ||
| 3310 | - resolved "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" | ||
| 3311 | - integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= | 3419 | +fast-deep-equal@^3.1.1: |
| 3420 | + version "3.1.3" | ||
| 3421 | + resolved "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz?cache=0&sync_timestamp=1591599659970&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-deep-equal%2Fdownload%2Ffast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" | ||
| 3422 | + integrity sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU= | ||
| 3312 | 3423 | ||
| 3313 | fast-glob@^2.2.6: | 3424 | fast-glob@^2.2.6: |
| 3314 | version "2.2.7" | 3425 | version "2.2.7" |
| 3315 | - resolved "https://registry.npm.taobao.org/fast-glob/download/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" | 3426 | + resolved "https://registry.npm.taobao.org/fast-glob/download/fast-glob-2.2.7.tgz?cache=0&sync_timestamp=1592290346558&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-glob%2Fdownload%2Ffast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" |
| 3316 | integrity sha1-aVOFfDr6R1//ku5gFdUtpwpM050= | 3427 | integrity sha1-aVOFfDr6R1//ku5gFdUtpwpM050= |
| 3317 | dependencies: | 3428 | dependencies: |
| 3318 | "@mrmlnc/readdir-enhanced" "^2.2.1" | 3429 | "@mrmlnc/readdir-enhanced" "^2.2.1" |
| @@ -3323,11 +3434,11 @@ fast-glob@^2.2.6: | @@ -3323,11 +3434,11 @@ fast-glob@^2.2.6: | ||
| 3323 | micromatch "^3.1.10" | 3434 | micromatch "^3.1.10" |
| 3324 | 3435 | ||
| 3325 | fast-json-stable-stringify@^2.0.0: | 3436 | fast-json-stable-stringify@^2.0.0: |
| 3326 | - version "2.0.0" | ||
| 3327 | - resolved "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" | ||
| 3328 | - integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= | 3437 | + version "2.1.0" |
| 3438 | + resolved "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz?cache=0&sync_timestamp=1576340291001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-json-stable-stringify%2Fdownload%2Ffast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" | ||
| 3439 | + integrity sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM= | ||
| 3329 | 3440 | ||
| 3330 | -fast-levenshtein@~2.0.4: | 3441 | +fast-levenshtein@~2.0.6: |
| 3331 | version "2.0.6" | 3442 | version "2.0.6" |
| 3332 | resolved "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" | 3443 | resolved "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" |
| 3333 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= | 3444 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= |
| @@ -3347,17 +3458,22 @@ faye-websocket@~0.11.1: | @@ -3347,17 +3458,22 @@ faye-websocket@~0.11.1: | ||
| 3347 | websocket-driver ">=0.5.1" | 3458 | websocket-driver ">=0.5.1" |
| 3348 | 3459 | ||
| 3349 | figgy-pudding@^3.5.1: | 3460 | figgy-pudding@^3.5.1: |
| 3350 | - version "3.5.1" | ||
| 3351 | - resolved "https://registry.npm.taobao.org/figgy-pudding/download/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" | ||
| 3352 | - integrity sha1-hiRwESkBxyeg5JWoB0S9W6odZ5A= | 3461 | + version "3.5.2" |
| 3462 | + resolved "https://registry.npm.taobao.org/figgy-pudding/download/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" | ||
| 3463 | + integrity sha1-tO7oFIq7Adzx0aw0Nn1Z4S+mHW4= | ||
| 3353 | 3464 | ||
| 3354 | -file-loader@^4.1.0: | ||
| 3355 | - version "4.2.0" | ||
| 3356 | - resolved "https://registry.npm.taobao.org/file-loader/download/file-loader-4.2.0.tgz#5fb124d2369d7075d70a9a5abecd12e60a95215e" | ||
| 3357 | - integrity sha1-X7Ek0jadcHXXCppavs0S5gqVIV4= | 3465 | +file-loader@^4.2.0: |
| 3466 | + version "4.3.0" | ||
| 3467 | + resolved "https://registry.npm.taobao.org/file-loader/download/file-loader-4.3.0.tgz#780f040f729b3d18019f20605f723e844b8a58af" | ||
| 3468 | + integrity sha1-eA8ED3KbPRgBnyBgX3I+hEuKWK8= | ||
| 3358 | dependencies: | 3469 | dependencies: |
| 3359 | loader-utils "^1.2.3" | 3470 | loader-utils "^1.2.3" |
| 3360 | - schema-utils "^2.0.0" | 3471 | + schema-utils "^2.5.0" |
| 3472 | + | ||
| 3473 | +file-uri-to-path@1.0.0: | ||
| 3474 | + version "1.0.0" | ||
| 3475 | + resolved "https://registry.npm.taobao.org/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" | ||
| 3476 | + integrity sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90= | ||
| 3361 | 3477 | ||
| 3362 | filesize@^3.6.1: | 3478 | filesize@^3.6.1: |
| 3363 | version "3.6.1" | 3479 | version "3.6.1" |
| @@ -3394,15 +3510,7 @@ finalhandler@~1.1.2: | @@ -3394,15 +3510,7 @@ finalhandler@~1.1.2: | ||
| 3394 | statuses "~1.5.0" | 3510 | statuses "~1.5.0" |
| 3395 | unpipe "~1.0.0" | 3511 | unpipe "~1.0.0" |
| 3396 | 3512 | ||
| 3397 | -find-babel-config@^1.1.0: | ||
| 3398 | - version "1.2.0" | ||
| 3399 | - resolved "https://registry.npm.taobao.org/find-babel-config/download/find-babel-config-1.2.0.tgz#a9b7b317eb5b9860cda9d54740a8c8337a2283a2" | ||
| 3400 | - integrity sha1-qbezF+tbmGDNqdVHQKjIM3oig6I= | ||
| 3401 | - dependencies: | ||
| 3402 | - json5 "^0.5.1" | ||
| 3403 | - path-exists "^3.0.0" | ||
| 3404 | - | ||
| 3405 | -find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: | 3513 | +find-cache-dir@^2.1.0: |
| 3406 | version "2.1.0" | 3514 | version "2.1.0" |
| 3407 | resolved "https://registry.npm.taobao.org/find-cache-dir/download/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" | 3515 | resolved "https://registry.npm.taobao.org/find-cache-dir/download/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" |
| 3408 | integrity sha1-jQ+UzRP+Q8bHwmGg2GEVypGMBfc= | 3516 | integrity sha1-jQ+UzRP+Q8bHwmGg2GEVypGMBfc= |
| @@ -3411,22 +3519,15 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: | @@ -3411,22 +3519,15 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: | ||
| 3411 | make-dir "^2.0.0" | 3519 | make-dir "^2.0.0" |
| 3412 | pkg-dir "^3.0.0" | 3520 | pkg-dir "^3.0.0" |
| 3413 | 3521 | ||
| 3414 | -find-cache-dir@^3.0.0: | ||
| 3415 | - version "3.0.0" | ||
| 3416 | - resolved "https://registry.npm.taobao.org/find-cache-dir/download/find-cache-dir-3.0.0.tgz#cd4b7dd97b7185b7e17dbfe2d6e4115ee3eeb8fc" | ||
| 3417 | - integrity sha1-zUt92Xtxhbfhfb/i1uQRXuPuuPw= | 3522 | +find-cache-dir@^3.0.0, find-cache-dir@^3.3.1: |
| 3523 | + version "3.3.1" | ||
| 3524 | + resolved "https://registry.npm.taobao.org/find-cache-dir/download/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" | ||
| 3525 | + integrity sha1-ibM/rUpGcNqpT4Vff74x1thP6IA= | ||
| 3418 | dependencies: | 3526 | dependencies: |
| 3419 | commondir "^1.0.1" | 3527 | commondir "^1.0.1" |
| 3420 | - make-dir "^3.0.0" | 3528 | + make-dir "^3.0.2" |
| 3421 | pkg-dir "^4.1.0" | 3529 | pkg-dir "^4.1.0" |
| 3422 | 3530 | ||
| 3423 | -find-up@^2.1.0: | ||
| 3424 | - version "2.1.0" | ||
| 3425 | - resolved "https://registry.npm.taobao.org/find-up/download/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" | ||
| 3426 | - integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= | ||
| 3427 | - dependencies: | ||
| 3428 | - locate-path "^2.0.0" | ||
| 3429 | - | ||
| 3430 | find-up@^3.0.0: | 3531 | find-up@^3.0.0: |
| 3431 | version "3.0.0" | 3532 | version "3.0.0" |
| 3432 | resolved "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" | 3533 | resolved "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" |
| @@ -3434,7 +3535,7 @@ find-up@^3.0.0: | @@ -3434,7 +3535,7 @@ find-up@^3.0.0: | ||
| 3434 | dependencies: | 3535 | dependencies: |
| 3435 | locate-path "^3.0.0" | 3536 | locate-path "^3.0.0" |
| 3436 | 3537 | ||
| 3437 | -find-up@^4.0.0: | 3538 | +find-up@^4.0.0, find-up@^4.1.0: |
| 3438 | version "4.1.0" | 3539 | version "4.1.0" |
| 3439 | resolved "https://registry.npm.taobao.org/find-up/download/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" | 3540 | resolved "https://registry.npm.taobao.org/find-up/download/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" |
| 3440 | integrity sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk= | 3541 | integrity sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk= |
| @@ -3452,17 +3553,15 @@ flush-write-stream@^1.0.0: | @@ -3452,17 +3553,15 @@ flush-write-stream@^1.0.0: | ||
| 3452 | 3553 | ||
| 3453 | follow-redirects@1.5.10: | 3554 | follow-redirects@1.5.10: |
| 3454 | version "1.5.10" | 3555 | version "1.5.10" |
| 3455 | - resolved "https://registry.npm.taobao.org/follow-redirects/download/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" | 3556 | + resolved "https://registry.npm.taobao.org/follow-redirects/download/follow-redirects-1.5.10.tgz?cache=0&sync_timestamp=1592518281721&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" |
| 3456 | integrity sha1-e3qfmuov3/NnhqlP9kPtB/T/Xio= | 3557 | integrity sha1-e3qfmuov3/NnhqlP9kPtB/T/Xio= |
| 3457 | dependencies: | 3558 | dependencies: |
| 3458 | debug "=3.1.0" | 3559 | debug "=3.1.0" |
| 3459 | 3560 | ||
| 3460 | follow-redirects@^1.0.0: | 3561 | follow-redirects@^1.0.0: |
| 3461 | - version "1.9.0" | ||
| 3462 | - resolved "https://registry.npm.taobao.org/follow-redirects/download/follow-redirects-1.9.0.tgz#8d5bcdc65b7108fe1508649c79c12d732dcedb4f" | ||
| 3463 | - integrity sha1-jVvNxltxCP4VCGScecEtcy3O208= | ||
| 3464 | - dependencies: | ||
| 3465 | - debug "^3.0.0" | 3562 | + version "1.12.1" |
| 3563 | + resolved "https://registry.npm.taobao.org/follow-redirects/download/follow-redirects-1.12.1.tgz?cache=0&sync_timestamp=1592518281721&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.12.1.tgz#de54a6205311b93d60398ebc01cf7015682312b6" | ||
| 3564 | + integrity sha1-3lSmIFMRuT1gOY68Ac9wFWgjErY= | ||
| 3466 | 3565 | ||
| 3467 | for-in@^1.0.2: | 3566 | for-in@^1.0.2: |
| 3468 | version "1.0.2" | 3567 | version "1.0.2" |
| @@ -3510,24 +3609,17 @@ from2@^2.1.0: | @@ -3510,24 +3609,17 @@ from2@^2.1.0: | ||
| 3510 | 3609 | ||
| 3511 | fs-extra@^7.0.1: | 3610 | fs-extra@^7.0.1: |
| 3512 | version "7.0.1" | 3611 | version "7.0.1" |
| 3513 | - resolved "https://registry.npm.taobao.org/fs-extra/download/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" | 3612 | + resolved "https://registry.npm.taobao.org/fs-extra/download/fs-extra-7.0.1.tgz?cache=0&sync_timestamp=1591231538901&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffs-extra%2Fdownload%2Ffs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" |
| 3514 | integrity sha1-TxicRKoSO4lfcigE9V6iPq3DSOk= | 3613 | integrity sha1-TxicRKoSO4lfcigE9V6iPq3DSOk= |
| 3515 | dependencies: | 3614 | dependencies: |
| 3516 | graceful-fs "^4.1.2" | 3615 | graceful-fs "^4.1.2" |
| 3517 | jsonfile "^4.0.0" | 3616 | jsonfile "^4.0.0" |
| 3518 | universalify "^0.1.0" | 3617 | universalify "^0.1.0" |
| 3519 | 3618 | ||
| 3520 | -fs-minipass@^1.2.5: | ||
| 3521 | - version "1.2.7" | ||
| 3522 | - resolved "https://registry.npm.taobao.org/fs-minipass/download/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" | ||
| 3523 | - integrity sha1-zP+FcIQef+QmVpPaiJNsVa7X98c= | ||
| 3524 | - dependencies: | ||
| 3525 | - minipass "^2.6.0" | ||
| 3526 | - | ||
| 3527 | fs-minipass@^2.0.0: | 3619 | fs-minipass@^2.0.0: |
| 3528 | - version "2.0.0" | ||
| 3529 | - resolved "https://registry.npm.taobao.org/fs-minipass/download/fs-minipass-2.0.0.tgz#a6415edab02fae4b9e9230bc87ee2e4472003cd1" | ||
| 3530 | - integrity sha1-pkFe2rAvrkuekjC8h+4uRHIAPNE= | 3620 | + version "2.1.0" |
| 3621 | + resolved "https://registry.npm.taobao.org/fs-minipass/download/fs-minipass-2.1.0.tgz?cache=0&sync_timestamp=1579628584498&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffs-minipass%2Fdownload%2Ffs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" | ||
| 3622 | + integrity sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs= | ||
| 3531 | dependencies: | 3623 | dependencies: |
| 3532 | minipass "^3.0.0" | 3624 | minipass "^3.0.0" |
| 3533 | 3625 | ||
| @@ -3547,41 +3639,27 @@ fs.realpath@^1.0.0: | @@ -3547,41 +3639,27 @@ fs.realpath@^1.0.0: | ||
| 3547 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= | 3639 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= |
| 3548 | 3640 | ||
| 3549 | fsevents@^1.2.7: | 3641 | fsevents@^1.2.7: |
| 3550 | - version "1.2.9" | ||
| 3551 | - resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-1.2.9.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffsevents%2Fdownload%2Ffsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" | ||
| 3552 | - integrity sha1-P17WZYPM1vQAtaANtvfoYTY+OI8= | 3642 | + version "1.2.13" |
| 3643 | + resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-1.2.13.tgz?cache=0&sync_timestamp=1588787369955&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffsevents%2Fdownload%2Ffsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" | ||
| 3644 | + integrity sha1-8yXLBFVZJCi88Rs4M3DvcOO/zDg= | ||
| 3553 | dependencies: | 3645 | dependencies: |
| 3646 | + bindings "^1.5.0" | ||
| 3554 | nan "^2.12.1" | 3647 | nan "^2.12.1" |
| 3555 | - node-pre-gyp "^0.12.0" | ||
| 3556 | 3648 | ||
| 3557 | -fsevents@~2.1.1: | ||
| 3558 | - version "2.1.1" | ||
| 3559 | - resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-2.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffsevents%2Fdownload%2Ffsevents-2.1.1.tgz#74c64e21df71721845d0c44fe54b7f56b82995a9" | ||
| 3560 | - integrity sha1-dMZOId9xchhF0MRP5Ut/Vrgplak= | 3649 | +fsevents@~2.1.2: |
| 3650 | + version "2.1.3" | ||
| 3651 | + resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-2.1.3.tgz?cache=0&sync_timestamp=1588787369955&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffsevents%2Fdownload%2Ffsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" | ||
| 3652 | + integrity sha1-+3OHA66NL5/pAMM4Nt3r7ouX8j4= | ||
| 3561 | 3653 | ||
| 3562 | -function-bind@^1.0.2, function-bind@^1.1.1: | 3654 | +function-bind@^1.1.1: |
| 3563 | version "1.1.1" | 3655 | version "1.1.1" |
| 3564 | resolved "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" | 3656 | resolved "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" |
| 3565 | integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0= | 3657 | integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0= |
| 3566 | 3658 | ||
| 3567 | -gauge@~2.7.3: | ||
| 3568 | - version "2.7.4" | ||
| 3569 | - resolved "https://registry.npm.taobao.org/gauge/download/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" | ||
| 3570 | - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= | ||
| 3571 | - dependencies: | ||
| 3572 | - aproba "^1.0.3" | ||
| 3573 | - console-control-strings "^1.0.0" | ||
| 3574 | - has-unicode "^2.0.0" | ||
| 3575 | - object-assign "^4.1.0" | ||
| 3576 | - signal-exit "^3.0.0" | ||
| 3577 | - string-width "^1.0.1" | ||
| 3578 | - strip-ansi "^3.0.1" | ||
| 3579 | - wide-align "^1.1.0" | ||
| 3580 | - | ||
| 3581 | -get-caller-file@^1.0.1: | ||
| 3582 | - version "1.0.3" | ||
| 3583 | - resolved "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" | ||
| 3584 | - integrity sha1-+Xj6TJDR3+f/LWvtoqUV5xO9z0o= | 3659 | +gensync@^1.0.0-beta.1: |
| 3660 | + version "1.0.0-beta.1" | ||
| 3661 | + resolved "https://registry.npm.taobao.org/gensync/download/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" | ||
| 3662 | + integrity sha1-WPQ2H/mH5f9uHnohCCeqNx6qwmk= | ||
| 3585 | 3663 | ||
| 3586 | get-caller-file@^2.0.1: | 3664 | get-caller-file@^2.0.1: |
| 3587 | version "2.0.5" | 3665 | version "2.0.5" |
| @@ -3623,9 +3701,9 @@ glob-parent@^3.1.0: | @@ -3623,9 +3701,9 @@ glob-parent@^3.1.0: | ||
| 3623 | path-dirname "^1.0.0" | 3701 | path-dirname "^1.0.0" |
| 3624 | 3702 | ||
| 3625 | glob-parent@~5.1.0: | 3703 | glob-parent@~5.1.0: |
| 3626 | - version "5.1.0" | ||
| 3627 | - resolved "https://registry.npm.taobao.org/glob-parent/download/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" | ||
| 3628 | - integrity sha1-X0wdHnSNMM1zrSlEs1d6gbCB6MI= | 3704 | + version "5.1.1" |
| 3705 | + resolved "https://registry.npm.taobao.org/glob-parent/download/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" | ||
| 3706 | + integrity sha1-tsHvQXxOVmPqSY8cRa+saRa7wik= | ||
| 3629 | dependencies: | 3707 | dependencies: |
| 3630 | is-glob "^4.0.1" | 3708 | is-glob "^4.0.1" |
| 3631 | 3709 | ||
| @@ -3635,9 +3713,9 @@ glob-to-regexp@^0.3.0: | @@ -3635,9 +3713,9 @@ glob-to-regexp@^0.3.0: | ||
| 3635 | integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= | 3713 | integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= |
| 3636 | 3714 | ||
| 3637 | glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: | 3715 | glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: |
| 3638 | - version "7.1.5" | ||
| 3639 | - resolved "https://registry.npm.taobao.org/glob/download/glob-7.1.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglob%2Fdownload%2Fglob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0" | ||
| 3640 | - integrity sha1-ZxTGm+4g88PmTE3ZBVU+UytAzcA= | 3716 | + version "7.1.6" |
| 3717 | + resolved "https://registry.npm.taobao.org/glob/download/glob-7.1.6.tgz?cache=0&sync_timestamp=1573203677246&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglob%2Fdownload%2Fglob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" | ||
| 3718 | + integrity sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY= | ||
| 3641 | dependencies: | 3719 | dependencies: |
| 3642 | fs.realpath "^1.0.0" | 3720 | fs.realpath "^1.0.0" |
| 3643 | inflight "^1.0.4" | 3721 | inflight "^1.0.4" |
| @@ -3653,7 +3731,7 @@ globals@^11.1.0: | @@ -3653,7 +3731,7 @@ globals@^11.1.0: | ||
| 3653 | 3731 | ||
| 3654 | globby@^6.1.0: | 3732 | globby@^6.1.0: |
| 3655 | version "6.1.0" | 3733 | version "6.1.0" |
| 3656 | - resolved "https://registry.npm.taobao.org/globby/download/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" | 3734 | + resolved "https://registry.npm.taobao.org/globby/download/globby-6.1.0.tgz?cache=0&sync_timestamp=1591083787584&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobby%2Fdownload%2Fglobby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" |
| 3657 | integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= | 3735 | integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= |
| 3658 | dependencies: | 3736 | dependencies: |
| 3659 | array-union "^1.0.1" | 3737 | array-union "^1.0.1" |
| @@ -3664,7 +3742,7 @@ globby@^6.1.0: | @@ -3664,7 +3742,7 @@ globby@^6.1.0: | ||
| 3664 | 3742 | ||
| 3665 | globby@^7.1.1: | 3743 | globby@^7.1.1: |
| 3666 | version "7.1.1" | 3744 | version "7.1.1" |
| 3667 | - resolved "https://registry.npm.taobao.org/globby/download/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" | 3745 | + resolved "https://registry.npm.taobao.org/globby/download/globby-7.1.1.tgz?cache=0&sync_timestamp=1591083787584&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobby%2Fdownload%2Fglobby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" |
| 3668 | integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA= | 3746 | integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA= |
| 3669 | dependencies: | 3747 | dependencies: |
| 3670 | array-union "^1.0.1" | 3748 | array-union "^1.0.1" |
| @@ -3676,7 +3754,7 @@ globby@^7.1.1: | @@ -3676,7 +3754,7 @@ globby@^7.1.1: | ||
| 3676 | 3754 | ||
| 3677 | globby@^9.2.0: | 3755 | globby@^9.2.0: |
| 3678 | version "9.2.0" | 3756 | version "9.2.0" |
| 3679 | - resolved "https://registry.npm.taobao.org/globby/download/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" | 3757 | + resolved "https://registry.npm.taobao.org/globby/download/globby-9.2.0.tgz?cache=0&sync_timestamp=1591083787584&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobby%2Fdownload%2Fglobby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" |
| 3680 | integrity sha1-/QKacGxwPSm90XD0tts6P3p8tj0= | 3758 | integrity sha1-/QKacGxwPSm90XD0tts6P3p8tj0= |
| 3681 | dependencies: | 3759 | dependencies: |
| 3682 | "@types/glob" "^7.1.1" | 3760 | "@types/glob" "^7.1.1" |
| @@ -3689,9 +3767,9 @@ globby@^9.2.0: | @@ -3689,9 +3767,9 @@ globby@^9.2.0: | ||
| 3689 | slash "^2.0.0" | 3767 | slash "^2.0.0" |
| 3690 | 3768 | ||
| 3691 | graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.2: | 3769 | graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.2: |
| 3692 | - version "4.2.2" | ||
| 3693 | - resolved "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" | ||
| 3694 | - integrity sha1-bwlSYF0BQMHP2xOO0AV3W5LWewI= | 3770 | + version "4.2.4" |
| 3771 | + resolved "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.4.tgz?cache=0&sync_timestamp=1588086924019&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fgraceful-fs%2Fdownload%2Fgraceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" | ||
| 3772 | + integrity sha1-Ila94U02MpWMRl68ltxGfKB6Kfs= | ||
| 3695 | 3773 | ||
| 3696 | gzip-size@^5.0.0: | 3774 | gzip-size@^5.0.0: |
| 3697 | version "5.1.1" | 3775 | version "5.1.1" |
| @@ -3702,16 +3780,16 @@ gzip-size@^5.0.0: | @@ -3702,16 +3780,16 @@ gzip-size@^5.0.0: | ||
| 3702 | pify "^4.0.1" | 3780 | pify "^4.0.1" |
| 3703 | 3781 | ||
| 3704 | handle-thing@^2.0.0: | 3782 | handle-thing@^2.0.0: |
| 3705 | - version "2.0.0" | ||
| 3706 | - resolved "https://registry.npm.taobao.org/handle-thing/download/handle-thing-2.0.0.tgz#0e039695ff50c93fc288557d696f3c1dc6776754" | ||
| 3707 | - integrity sha1-DgOWlf9QyT/CiFV9aW88HcZ3Z1Q= | 3783 | + version "2.0.1" |
| 3784 | + resolved "https://registry.npm.taobao.org/handle-thing/download/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" | ||
| 3785 | + integrity sha1-hX95zjWVgMNA1DCBzGSJcNC7I04= | ||
| 3708 | 3786 | ||
| 3709 | har-schema@^2.0.0: | 3787 | har-schema@^2.0.0: |
| 3710 | version "2.0.0" | 3788 | version "2.0.0" |
| 3711 | resolved "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" | 3789 | resolved "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" |
| 3712 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= | 3790 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= |
| 3713 | 3791 | ||
| 3714 | -har-validator@~5.1.0: | 3792 | +har-validator@~5.1.3: |
| 3715 | version "5.1.3" | 3793 | version "5.1.3" |
| 3716 | resolved "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" | 3794 | resolved "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" |
| 3717 | integrity sha1-HvievT5JllV2de7ZiTEQ3DUPoIA= | 3795 | integrity sha1-HvievT5JllV2de7ZiTEQ3DUPoIA= |
| @@ -3731,15 +3809,15 @@ has-flag@^3.0.0: | @@ -3731,15 +3809,15 @@ has-flag@^3.0.0: | ||
| 3731 | resolved "https://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" | 3809 | resolved "https://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" |
| 3732 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= | 3810 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= |
| 3733 | 3811 | ||
| 3734 | -has-symbols@^1.0.0: | ||
| 3735 | - version "1.0.0" | ||
| 3736 | - resolved "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" | ||
| 3737 | - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= | 3812 | +has-flag@^4.0.0: |
| 3813 | + version "4.0.0" | ||
| 3814 | + resolved "https://registry.npm.taobao.org/has-flag/download/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" | ||
| 3815 | + integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s= | ||
| 3738 | 3816 | ||
| 3739 | -has-unicode@^2.0.0: | ||
| 3740 | - version "2.0.1" | ||
| 3741 | - resolved "https://registry.npm.taobao.org/has-unicode/download/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" | ||
| 3742 | - integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= | 3817 | +has-symbols@^1.0.0, has-symbols@^1.0.1: |
| 3818 | + version "1.0.1" | ||
| 3819 | + resolved "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.1.tgz?cache=0&sync_timestamp=1573950719586&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhas-symbols%2Fdownload%2Fhas-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" | ||
| 3820 | + integrity sha1-n1IUdYpEGWxAbZvXbOv4HsLdMeg= | ||
| 3743 | 3821 | ||
| 3744 | has-value@^0.3.1: | 3822 | has-value@^0.3.1: |
| 3745 | version "0.3.1" | 3823 | version "0.3.1" |
| @@ -3772,7 +3850,7 @@ has-values@^1.0.0: | @@ -3772,7 +3850,7 @@ has-values@^1.0.0: | ||
| 3772 | is-number "^3.0.0" | 3850 | is-number "^3.0.0" |
| 3773 | kind-of "^4.0.0" | 3851 | kind-of "^4.0.0" |
| 3774 | 3852 | ||
| 3775 | -has@^1.0.0, has@^1.0.1, has@^1.0.3: | 3853 | +has@^1.0.0, has@^1.0.3: |
| 3776 | version "1.0.3" | 3854 | version "1.0.3" |
| 3777 | resolved "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" | 3855 | resolved "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" |
| 3778 | integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y= | 3856 | integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y= |
| @@ -3780,18 +3858,24 @@ has@^1.0.0, has@^1.0.1, has@^1.0.3: | @@ -3780,18 +3858,24 @@ has@^1.0.0, has@^1.0.1, has@^1.0.3: | ||
| 3780 | function-bind "^1.1.1" | 3858 | function-bind "^1.1.1" |
| 3781 | 3859 | ||
| 3782 | hash-base@^3.0.0: | 3860 | hash-base@^3.0.0: |
| 3783 | - version "3.0.4" | ||
| 3784 | - resolved "https://registry.npm.taobao.org/hash-base/download/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" | ||
| 3785 | - integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= | 3861 | + version "3.1.0" |
| 3862 | + resolved "https://registry.npm.taobao.org/hash-base/download/hash-base-3.1.0.tgz?cache=0&sync_timestamp=1588317988964&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhash-base%2Fdownload%2Fhash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" | ||
| 3863 | + integrity sha1-VcOB2eBuHSmXqIO0o/3f5/DTrzM= | ||
| 3786 | dependencies: | 3864 | dependencies: |
| 3787 | - inherits "^2.0.1" | ||
| 3788 | - safe-buffer "^5.0.1" | 3865 | + inherits "^2.0.4" |
| 3866 | + readable-stream "^3.6.0" | ||
| 3867 | + safe-buffer "^5.2.0" | ||
| 3789 | 3868 | ||
| 3790 | hash-sum@^1.0.2: | 3869 | hash-sum@^1.0.2: |
| 3791 | version "1.0.2" | 3870 | version "1.0.2" |
| 3792 | resolved "https://registry.npm.taobao.org/hash-sum/download/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" | 3871 | resolved "https://registry.npm.taobao.org/hash-sum/download/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" |
| 3793 | integrity sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ= | 3872 | integrity sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ= |
| 3794 | 3873 | ||
| 3874 | +hash-sum@^2.0.0: | ||
| 3875 | + version "2.0.0" | ||
| 3876 | + resolved "https://registry.npm.taobao.org/hash-sum/download/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" | ||
| 3877 | + integrity sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo= | ||
| 3878 | + | ||
| 3795 | hash.js@^1.0.0, hash.js@^1.0.3: | 3879 | hash.js@^1.0.0, hash.js@^1.0.3: |
| 3796 | version "1.1.7" | 3880 | version "1.1.7" |
| 3797 | resolved "https://registry.npm.taobao.org/hash.js/download/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" | 3881 | resolved "https://registry.npm.taobao.org/hash.js/download/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" |
| @@ -3811,9 +3895,9 @@ hex-color-regex@^1.1.0: | @@ -3811,9 +3895,9 @@ hex-color-regex@^1.1.0: | ||
| 3811 | integrity sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4= | 3895 | integrity sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4= |
| 3812 | 3896 | ||
| 3813 | highlight.js@^9.4.0, highlight.js@^9.6.0: | 3897 | highlight.js@^9.4.0, highlight.js@^9.6.0: |
| 3814 | - version "9.15.10" | ||
| 3815 | - resolved "https://registry.npm.taobao.org/highlight.js/download/highlight.js-9.15.10.tgz#7b18ed75c90348c045eef9ed08ca1319a2219ad2" | ||
| 3816 | - integrity sha1-exjtdckDSMBF7vntCMoTGaIhmtI= | 3898 | + version "9.18.1" |
| 3899 | + resolved "https://registry.npm.taobao.org/highlight.js/download/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c" | ||
| 3900 | + integrity sha1-7SGqAB/mJSuxCj121HVzxlOf4Tw= | ||
| 3817 | 3901 | ||
| 3818 | hmac-drbg@^1.0.0: | 3902 | hmac-drbg@^1.0.0: |
| 3819 | version "1.0.1" | 3903 | version "1.0.1" |
| @@ -3830,9 +3914,9 @@ hoopy@^0.1.4: | @@ -3830,9 +3914,9 @@ hoopy@^0.1.4: | ||
| 3830 | integrity sha1-YJIH1mEQADOpqUAq096mdzgcGx0= | 3914 | integrity sha1-YJIH1mEQADOpqUAq096mdzgcGx0= |
| 3831 | 3915 | ||
| 3832 | hosted-git-info@^2.1.4: | 3916 | hosted-git-info@^2.1.4: |
| 3833 | - version "2.8.5" | ||
| 3834 | - resolved "https://registry.npm.taobao.org/hosted-git-info/download/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" | ||
| 3835 | - integrity sha1-dZz88sTRVq3lmwst+r3cQqa5xww= | 3917 | + version "2.8.8" |
| 3918 | + resolved "https://registry.npm.taobao.org/hosted-git-info/download/hosted-git-info-2.8.8.tgz?cache=0&sync_timestamp=1583017392137&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhosted-git-info%2Fdownload%2Fhosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" | ||
| 3919 | + integrity sha1-dTm9S8Hg4KiVgVouAmJCCxKFhIg= | ||
| 3836 | 3920 | ||
| 3837 | hpack.js@^2.1.6: | 3921 | hpack.js@^2.1.6: |
| 3838 | version "2.1.6" | 3922 | version "2.1.6" |
| @@ -3859,10 +3943,10 @@ html-comment-regex@^1.1.0: | @@ -3859,10 +3943,10 @@ html-comment-regex@^1.1.0: | ||
| 3859 | resolved "https://registry.npm.taobao.org/html-comment-regex/download/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" | 3943 | resolved "https://registry.npm.taobao.org/html-comment-regex/download/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" |
| 3860 | integrity sha1-l9RoiutcgYhqNk+qDK0d2hTUM6c= | 3944 | integrity sha1-l9RoiutcgYhqNk+qDK0d2hTUM6c= |
| 3861 | 3945 | ||
| 3862 | -html-entities@^1.2.1: | ||
| 3863 | - version "1.2.1" | ||
| 3864 | - resolved "https://registry.npm.taobao.org/html-entities/download/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" | ||
| 3865 | - integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8= | 3946 | +html-entities@^1.3.1: |
| 3947 | + version "1.3.1" | ||
| 3948 | + resolved "https://registry.npm.taobao.org/html-entities/download/html-entities-1.3.1.tgz?cache=0&sync_timestamp=1586616580993&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhtml-entities%2Fdownload%2Fhtml-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44" | ||
| 3949 | + integrity sha1-+5oaS1sUxdq6gtPjTGrk/nAaDkQ= | ||
| 3866 | 3950 | ||
| 3867 | html-minifier@^3.2.3: | 3951 | html-minifier@^3.2.3: |
| 3868 | version "3.5.21" | 3952 | version "3.5.21" |
| @@ -3879,12 +3963,12 @@ html-minifier@^3.2.3: | @@ -3879,12 +3963,12 @@ html-minifier@^3.2.3: | ||
| 3879 | 3963 | ||
| 3880 | html-tags@^2.0.0: | 3964 | html-tags@^2.0.0: |
| 3881 | version "2.0.0" | 3965 | version "2.0.0" |
| 3882 | - resolved "https://registry.npm.taobao.org/html-tags/download/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" | 3966 | + resolved "https://registry.npm.taobao.org/html-tags/download/html-tags-2.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhtml-tags%2Fdownload%2Fhtml-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" |
| 3883 | integrity sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos= | 3967 | integrity sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos= |
| 3884 | 3968 | ||
| 3885 | html-webpack-plugin@^3.2.0: | 3969 | html-webpack-plugin@^3.2.0: |
| 3886 | version "3.2.0" | 3970 | version "3.2.0" |
| 3887 | - resolved "https://registry.npm.taobao.org/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz#b01abbd723acaaa7b37b6af4492ebda03d9dd37b" | 3971 | + resolved "https://registry.npm.taobao.org/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz?cache=0&sync_timestamp=1588268811144&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhtml-webpack-plugin%2Fdownload%2Fhtml-webpack-plugin-3.2.0.tgz#b01abbd723acaaa7b37b6af4492ebda03d9dd37b" |
| 3888 | integrity sha1-sBq71yOsqqeze2r0SS69oD2d03s= | 3972 | integrity sha1-sBq71yOsqqeze2r0SS69oD2d03s= |
| 3889 | dependencies: | 3973 | dependencies: |
| 3890 | html-minifier "^3.2.3" | 3974 | html-minifier "^3.2.3" |
| @@ -3925,7 +4009,7 @@ http-deceiver@^1.2.7: | @@ -3925,7 +4009,7 @@ http-deceiver@^1.2.7: | ||
| 3925 | 4009 | ||
| 3926 | http-errors@1.7.2: | 4010 | http-errors@1.7.2: |
| 3927 | version "1.7.2" | 4011 | version "1.7.2" |
| 3928 | - resolved "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" | 4012 | + resolved "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz?cache=0&sync_timestamp=1593407710477&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhttp-errors%2Fdownload%2Fhttp-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" |
| 3929 | integrity sha1-T1ApzxMjnzEDblsuVSkrz7zIXI8= | 4013 | integrity sha1-T1ApzxMjnzEDblsuVSkrz7zIXI8= |
| 3930 | dependencies: | 4014 | dependencies: |
| 3931 | depd "~1.1.2" | 4015 | depd "~1.1.2" |
| @@ -3936,7 +4020,7 @@ http-errors@1.7.2: | @@ -3936,7 +4020,7 @@ http-errors@1.7.2: | ||
| 3936 | 4020 | ||
| 3937 | http-errors@~1.6.2: | 4021 | http-errors@~1.6.2: |
| 3938 | version "1.6.3" | 4022 | version "1.6.3" |
| 3939 | - resolved "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" | 4023 | + resolved "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz?cache=0&sync_timestamp=1593407710477&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhttp-errors%2Fdownload%2Fhttp-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" |
| 3940 | integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= | 4024 | integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= |
| 3941 | dependencies: | 4025 | dependencies: |
| 3942 | depd "~1.1.2" | 4026 | depd "~1.1.2" |
| @@ -3946,7 +4030,7 @@ http-errors@~1.6.2: | @@ -3946,7 +4030,7 @@ http-errors@~1.6.2: | ||
| 3946 | 4030 | ||
| 3947 | http-errors@~1.7.2: | 4031 | http-errors@~1.7.2: |
| 3948 | version "1.7.3" | 4032 | version "1.7.3" |
| 3949 | - resolved "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" | 4033 | + resolved "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz?cache=0&sync_timestamp=1593407710477&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhttp-errors%2Fdownload%2Fhttp-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" |
| 3950 | integrity sha1-bGGeT5xgMIw4UZSYwU+7EKrOuwY= | 4034 | integrity sha1-bGGeT5xgMIw4UZSYwU+7EKrOuwY= |
| 3951 | dependencies: | 4035 | dependencies: |
| 3952 | depd "~1.1.2" | 4036 | depd "~1.1.2" |
| @@ -3955,10 +4039,10 @@ http-errors@~1.7.2: | @@ -3955,10 +4039,10 @@ http-errors@~1.7.2: | ||
| 3955 | statuses ">= 1.5.0 < 2" | 4039 | statuses ">= 1.5.0 < 2" |
| 3956 | toidentifier "1.0.0" | 4040 | toidentifier "1.0.0" |
| 3957 | 4041 | ||
| 3958 | -"http-parser-js@>=0.4.0 <0.4.11": | ||
| 3959 | - version "0.4.10" | ||
| 3960 | - resolved "https://registry.npm.taobao.org/http-parser-js/download/http-parser-js-0.4.10.tgz#92c9c1374c35085f75db359ec56cc257cbb93fa4" | ||
| 3961 | - integrity sha1-ksnBN0w1CF912zWexWzCV8u5P6Q= | 4042 | +http-parser-js@>=0.5.1: |
| 4043 | + version "0.5.2" | ||
| 4044 | + resolved "https://registry.npm.taobao.org/http-parser-js/download/http-parser-js-0.5.2.tgz#da2e31d237b393aae72ace43882dd7e270a8ff77" | ||
| 4045 | + integrity sha1-2i4x0jezk6rnKs5DiC3X4nCo/3c= | ||
| 3962 | 4046 | ||
| 3963 | http-proxy-middleware@0.19.1: | 4047 | http-proxy-middleware@0.19.1: |
| 3964 | version "0.19.1" | 4048 | version "0.19.1" |
| @@ -3971,9 +4055,9 @@ http-proxy-middleware@0.19.1: | @@ -3971,9 +4055,9 @@ http-proxy-middleware@0.19.1: | ||
| 3971 | micromatch "^3.1.10" | 4055 | micromatch "^3.1.10" |
| 3972 | 4056 | ||
| 3973 | http-proxy@^1.17.0: | 4057 | http-proxy@^1.17.0: |
| 3974 | - version "1.18.0" | ||
| 3975 | - resolved "https://registry.npm.taobao.org/http-proxy/download/http-proxy-1.18.0.tgz#dbe55f63e75a347db7f3d99974f2692a314a6a3a" | ||
| 3976 | - integrity sha1-2+VfY+daNH2389mZdPJpKjFKajo= | 4058 | + version "1.18.1" |
| 4059 | + resolved "https://registry.npm.taobao.org/http-proxy/download/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" | ||
| 4060 | + integrity sha1-QBVB8FNIhLv5UmAzTnL4juOXZUk= | ||
| 3977 | dependencies: | 4061 | dependencies: |
| 3978 | eventemitter3 "^4.0.0" | 4062 | eventemitter3 "^4.0.0" |
| 3979 | follow-redirects "^1.0.0" | 4063 | follow-redirects "^1.0.0" |
| @@ -3981,7 +4065,7 @@ http-proxy@^1.17.0: | @@ -3981,7 +4065,7 @@ http-proxy@^1.17.0: | ||
| 3981 | 4065 | ||
| 3982 | http-signature@~1.2.0: | 4066 | http-signature@~1.2.0: |
| 3983 | version "1.2.0" | 4067 | version "1.2.0" |
| 3984 | - resolved "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" | 4068 | + resolved "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz?cache=0&sync_timestamp=1585807954283&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhttp-signature%2Fdownload%2Fhttp-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" |
| 3985 | integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= | 4069 | integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= |
| 3986 | dependencies: | 4070 | dependencies: |
| 3987 | assert-plus "^1.0.0" | 4071 | assert-plus "^1.0.0" |
| @@ -3995,12 +4079,12 @@ https-browserify@^1.0.0: | @@ -3995,12 +4079,12 @@ https-browserify@^1.0.0: | ||
| 3995 | 4079 | ||
| 3996 | human-signals@^1.1.1: | 4080 | human-signals@^1.1.1: |
| 3997 | version "1.1.1" | 4081 | version "1.1.1" |
| 3998 | - resolved "https://registry.npm.taobao.org/human-signals/download/human-signals-1.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhuman-signals%2Fdownload%2Fhuman-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" | 4082 | + resolved "https://registry.npm.taobao.org/human-signals/download/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" |
| 3999 | integrity sha1-xbHNFPUK6uCatsWf5jujOV/k36M= | 4083 | integrity sha1-xbHNFPUK6uCatsWf5jujOV/k36M= |
| 4000 | 4084 | ||
| 4001 | -iconv-lite@0.4.24, iconv-lite@^0.4.4: | 4085 | +iconv-lite@0.4.24: |
| 4002 | version "0.4.24" | 4086 | version "0.4.24" |
| 4003 | - resolved "https://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | 4087 | + resolved "https://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.24.tgz?cache=0&sync_timestamp=1594184264130&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ficonv-lite%2Fdownload%2Ficonv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" |
| 4004 | integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs= | 4088 | integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs= |
| 4005 | dependencies: | 4089 | dependencies: |
| 4006 | safer-buffer ">= 2.1.2 < 3" | 4090 | safer-buffer ">= 2.1.2 < 3" |
| @@ -4022,21 +4106,14 @@ iferr@^0.1.5: | @@ -4022,21 +4106,14 @@ iferr@^0.1.5: | ||
| 4022 | resolved "https://registry.npm.taobao.org/iferr/download/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" | 4106 | resolved "https://registry.npm.taobao.org/iferr/download/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" |
| 4023 | integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= | 4107 | integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= |
| 4024 | 4108 | ||
| 4025 | -ignore-walk@^3.0.1: | ||
| 4026 | - version "3.0.3" | ||
| 4027 | - resolved "https://registry.npm.taobao.org/ignore-walk/download/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" | ||
| 4028 | - integrity sha1-AX4kRxhL/q3nwjjkrv3R6PlbHjc= | ||
| 4029 | - dependencies: | ||
| 4030 | - minimatch "^3.0.4" | ||
| 4031 | - | ||
| 4032 | ignore@^3.3.5: | 4109 | ignore@^3.3.5: |
| 4033 | version "3.3.10" | 4110 | version "3.3.10" |
| 4034 | - resolved "https://registry.npm.taobao.org/ignore/download/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" | 4111 | + resolved "https://registry.npm.taobao.org/ignore/download/ignore-3.3.10.tgz?cache=0&sync_timestamp=1590809289115&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fignore%2Fdownload%2Fignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" |
| 4035 | integrity sha1-Cpf7h2mG6AgcYxFg+PnziRV/AEM= | 4112 | integrity sha1-Cpf7h2mG6AgcYxFg+PnziRV/AEM= |
| 4036 | 4113 | ||
| 4037 | ignore@^4.0.3: | 4114 | ignore@^4.0.3: |
| 4038 | version "4.0.6" | 4115 | version "4.0.6" |
| 4039 | - resolved "https://registry.npm.taobao.org/ignore/download/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" | 4116 | + resolved "https://registry.npm.taobao.org/ignore/download/ignore-4.0.6.tgz?cache=0&sync_timestamp=1590809289115&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fignore%2Fdownload%2Fignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" |
| 4040 | integrity sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw= | 4117 | integrity sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw= |
| 4041 | 4118 | ||
| 4042 | import-cwd@^2.0.0: | 4119 | import-cwd@^2.0.0: |
| @@ -4097,7 +4174,7 @@ inflight@^1.0.4: | @@ -4097,7 +4174,7 @@ inflight@^1.0.4: | ||
| 4097 | once "^1.3.0" | 4174 | once "^1.3.0" |
| 4098 | wrappy "1" | 4175 | wrappy "1" |
| 4099 | 4176 | ||
| 4100 | -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: | 4177 | +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: |
| 4101 | version "2.0.4" | 4178 | version "2.0.4" |
| 4102 | resolved "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" | 4179 | resolved "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" |
| 4103 | integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w= | 4180 | integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w= |
| @@ -4112,31 +4189,21 @@ inherits@2.0.3: | @@ -4112,31 +4189,21 @@ inherits@2.0.3: | ||
| 4112 | resolved "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" | 4189 | resolved "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" |
| 4113 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= | 4190 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= |
| 4114 | 4191 | ||
| 4115 | -ini@~1.3.0: | ||
| 4116 | - version "1.3.5" | ||
| 4117 | - resolved "https://registry.npm.taobao.org/ini/download/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" | ||
| 4118 | - integrity sha1-7uJfVtscnsYIXgwid4CD9Zar+Sc= | ||
| 4119 | - | ||
| 4120 | internal-ip@^4.3.0: | 4192 | internal-ip@^4.3.0: |
| 4121 | version "4.3.0" | 4193 | version "4.3.0" |
| 4122 | - resolved "https://registry.npm.taobao.org/internal-ip/download/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" | 4194 | + resolved "https://registry.npm.taobao.org/internal-ip/download/internal-ip-4.3.0.tgz?cache=0&sync_timestamp=1584010513586&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Finternal-ip%2Fdownload%2Finternal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" |
| 4123 | integrity sha1-hFRSuq2dLKO2nGNaE3rLmg2tCQc= | 4195 | integrity sha1-hFRSuq2dLKO2nGNaE3rLmg2tCQc= |
| 4124 | dependencies: | 4196 | dependencies: |
| 4125 | default-gateway "^4.2.0" | 4197 | default-gateway "^4.2.0" |
| 4126 | ipaddr.js "^1.9.0" | 4198 | ipaddr.js "^1.9.0" |
| 4127 | 4199 | ||
| 4128 | -invariant@^2.2.2: | 4200 | +invariant@^2.2.2, invariant@^2.2.4: |
| 4129 | version "2.2.4" | 4201 | version "2.2.4" |
| 4130 | resolved "https://registry.npm.taobao.org/invariant/download/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" | 4202 | resolved "https://registry.npm.taobao.org/invariant/download/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" |
| 4131 | integrity sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY= | 4203 | integrity sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY= |
| 4132 | dependencies: | 4204 | dependencies: |
| 4133 | loose-envify "^1.0.0" | 4205 | loose-envify "^1.0.0" |
| 4134 | 4206 | ||
| 4135 | -invert-kv@^2.0.0: | ||
| 4136 | - version "2.0.0" | ||
| 4137 | - resolved "https://registry.npm.taobao.org/invert-kv/download/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" | ||
| 4138 | - integrity sha1-c5P1r6Weyf9fZ6J2INEcIm4+7AI= | ||
| 4139 | - | ||
| 4140 | ip-regex@^2.1.0: | 4207 | ip-regex@^2.1.0: |
| 4141 | version "2.1.0" | 4208 | version "2.1.0" |
| 4142 | resolved "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" | 4209 | resolved "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" |
| @@ -4147,12 +4214,7 @@ ip@^1.1.0, ip@^1.1.5: | @@ -4147,12 +4214,7 @@ ip@^1.1.0, ip@^1.1.5: | ||
| 4147 | resolved "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" | 4214 | resolved "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" |
| 4148 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= | 4215 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= |
| 4149 | 4216 | ||
| 4150 | -ipaddr.js@1.9.0: | ||
| 4151 | - version "1.9.0" | ||
| 4152 | - resolved "https://registry.npm.taobao.org/ipaddr.js/download/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" | ||
| 4153 | - integrity sha1-N9905DCg5HVQ/lSi3v4w2KzZX2U= | ||
| 4154 | - | ||
| 4155 | -ipaddr.js@^1.9.0: | 4217 | +ipaddr.js@1.9.1, ipaddr.js@^1.9.0: |
| 4156 | version "1.9.1" | 4218 | version "1.9.1" |
| 4157 | resolved "https://registry.npm.taobao.org/ipaddr.js/download/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" | 4219 | resolved "https://registry.npm.taobao.org/ipaddr.js/download/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" |
| 4158 | integrity sha1-v/OFQ+64mEglB5/zoqjmy9RngbM= | 4220 | integrity sha1-v/OFQ+64mEglB5/zoqjmy9RngbM= |
| @@ -4215,15 +4277,10 @@ is-buffer@^1.1.5: | @@ -4215,15 +4277,10 @@ is-buffer@^1.1.5: | ||
| 4215 | resolved "https://registry.npm.taobao.org/is-buffer/download/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" | 4277 | resolved "https://registry.npm.taobao.org/is-buffer/download/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" |
| 4216 | integrity sha1-76ouqdqg16suoTqXsritUf776L4= | 4278 | integrity sha1-76ouqdqg16suoTqXsritUf776L4= |
| 4217 | 4279 | ||
| 4218 | -is-buffer@^2.0.2: | ||
| 4219 | - version "2.0.4" | ||
| 4220 | - resolved "https://registry.npm.taobao.org/is-buffer/download/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" | ||
| 4221 | - integrity sha1-PlcvI8hBGlz9lVfISeNmXgspBiM= | ||
| 4222 | - | ||
| 4223 | -is-callable@^1.1.4: | ||
| 4224 | - version "1.1.4" | ||
| 4225 | - resolved "https://registry.npm.taobao.org/is-callable/download/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" | ||
| 4226 | - integrity sha1-HhrfIZ4e62hNaR+dagX/DTCiTXU= | 4280 | +is-callable@^1.1.4, is-callable@^1.2.0: |
| 4281 | + version "1.2.0" | ||
| 4282 | + resolved "https://registry.npm.taobao.org/is-callable/download/is-callable-1.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-callable%2Fdownload%2Fis-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" | ||
| 4283 | + integrity sha1-gzNlYLVKOONeOi33r9BFTWkUaLs= | ||
| 4227 | 4284 | ||
| 4228 | is-color-stop@^1.0.0: | 4285 | is-color-stop@^1.0.0: |
| 4229 | version "1.1.0" | 4286 | version "1.1.0" |
| @@ -4252,9 +4309,9 @@ is-data-descriptor@^1.0.0: | @@ -4252,9 +4309,9 @@ is-data-descriptor@^1.0.0: | ||
| 4252 | kind-of "^6.0.0" | 4309 | kind-of "^6.0.0" |
| 4253 | 4310 | ||
| 4254 | is-date-object@^1.0.1: | 4311 | is-date-object@^1.0.1: |
| 4255 | - version "1.0.1" | ||
| 4256 | - resolved "https://registry.npm.taobao.org/is-date-object/download/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" | ||
| 4257 | - integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= | 4312 | + version "1.0.2" |
| 4313 | + resolved "https://registry.npm.taobao.org/is-date-object/download/is-date-object-1.0.2.tgz?cache=0&sync_timestamp=1576730971871&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-date-object%2Fdownload%2Fis-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" | ||
| 4314 | + integrity sha1-vac28s2P0G0yhE53Q7+nSUw7/X4= | ||
| 4258 | 4315 | ||
| 4259 | is-descriptor@^0.1.0: | 4316 | is-descriptor@^0.1.0: |
| 4260 | version "0.1.6" | 4317 | version "0.1.6" |
| @@ -4279,6 +4336,11 @@ is-directory@^0.3.1: | @@ -4279,6 +4336,11 @@ is-directory@^0.3.1: | ||
| 4279 | resolved "https://registry.npm.taobao.org/is-directory/download/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" | 4336 | resolved "https://registry.npm.taobao.org/is-directory/download/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" |
| 4280 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= | 4337 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= |
| 4281 | 4338 | ||
| 4339 | +is-docker@^2.0.0: | ||
| 4340 | + version "2.0.0" | ||
| 4341 | + resolved "https://registry.npm.taobao.org/is-docker/download/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" | ||
| 4342 | + integrity sha1-LLDfDnXi0GT+GGTDfN6st7Lc8ls= | ||
| 4343 | + | ||
| 4282 | is-extendable@^0.1.0, is-extendable@^0.1.1: | 4344 | is-extendable@^0.1.0, is-extendable@^0.1.1: |
| 4283 | version "0.1.1" | 4345 | version "0.1.1" |
| 4284 | resolved "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" | 4346 | resolved "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" |
| @@ -4296,18 +4358,16 @@ is-extglob@^2.1.0, is-extglob@^2.1.1: | @@ -4296,18 +4358,16 @@ is-extglob@^2.1.0, is-extglob@^2.1.1: | ||
| 4296 | resolved "https://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" | 4358 | resolved "https://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" |
| 4297 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= | 4359 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= |
| 4298 | 4360 | ||
| 4299 | -is-fullwidth-code-point@^1.0.0: | ||
| 4300 | - version "1.0.0" | ||
| 4301 | - resolved "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" | ||
| 4302 | - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= | ||
| 4303 | - dependencies: | ||
| 4304 | - number-is-nan "^1.0.0" | ||
| 4305 | - | ||
| 4306 | is-fullwidth-code-point@^2.0.0: | 4361 | is-fullwidth-code-point@^2.0.0: |
| 4307 | version "2.0.0" | 4362 | version "2.0.0" |
| 4308 | resolved "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" | 4363 | resolved "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" |
| 4309 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= | 4364 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= |
| 4310 | 4365 | ||
| 4366 | +is-fullwidth-code-point@^3.0.0: | ||
| 4367 | + version "3.0.0" | ||
| 4368 | + resolved "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" | ||
| 4369 | + integrity sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0= | ||
| 4370 | + | ||
| 4311 | is-glob@^3.1.0: | 4371 | is-glob@^3.1.0: |
| 4312 | version "3.1.0" | 4372 | version "3.1.0" |
| 4313 | resolved "https://registry.npm.taobao.org/is-glob/download/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" | 4373 | resolved "https://registry.npm.taobao.org/is-glob/download/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" |
| @@ -4334,14 +4394,14 @@ is-number@^7.0.0: | @@ -4334,14 +4394,14 @@ is-number@^7.0.0: | ||
| 4334 | resolved "https://registry.npm.taobao.org/is-number/download/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" | 4394 | resolved "https://registry.npm.taobao.org/is-number/download/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" |
| 4335 | integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss= | 4395 | integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss= |
| 4336 | 4396 | ||
| 4337 | -is-obj@^1.0.0: | ||
| 4338 | - version "1.0.1" | ||
| 4339 | - resolved "https://registry.npm.taobao.org/is-obj/download/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" | ||
| 4340 | - integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= | 4397 | +is-obj@^2.0.0: |
| 4398 | + version "2.0.0" | ||
| 4399 | + resolved "https://registry.npm.taobao.org/is-obj/download/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" | ||
| 4400 | + integrity sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI= | ||
| 4341 | 4401 | ||
| 4342 | is-path-cwd@^2.0.0: | 4402 | is-path-cwd@^2.0.0: |
| 4343 | version "2.2.0" | 4403 | version "2.2.0" |
| 4344 | - resolved "https://registry.npm.taobao.org/is-path-cwd/download/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" | 4404 | + resolved "https://registry.npm.taobao.org/is-path-cwd/download/is-path-cwd-2.2.0.tgz?cache=0&sync_timestamp=1562347283002&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-path-cwd%2Fdownload%2Fis-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" |
| 4345 | integrity sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s= | 4405 | integrity sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s= |
| 4346 | 4406 | ||
| 4347 | is-path-in-cwd@^2.0.0: | 4407 | is-path-in-cwd@^2.0.0: |
| @@ -4353,7 +4413,7 @@ is-path-in-cwd@^2.0.0: | @@ -4353,7 +4413,7 @@ is-path-in-cwd@^2.0.0: | ||
| 4353 | 4413 | ||
| 4354 | is-path-inside@^2.1.0: | 4414 | is-path-inside@^2.1.0: |
| 4355 | version "2.1.0" | 4415 | version "2.1.0" |
| 4356 | - resolved "https://registry.npm.taobao.org/is-path-inside/download/is-path-inside-2.1.0.tgz?cache=0&sync_timestamp=1569835754259&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-path-inside%2Fdownload%2Fis-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" | 4416 | + resolved "https://registry.npm.taobao.org/is-path-inside/download/is-path-inside-2.1.0.tgz?cache=0&sync_timestamp=1569836695493&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-path-inside%2Fdownload%2Fis-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" |
| 4357 | integrity sha1-fJgQWH1lmkDSe8201WFuqwWUlLI= | 4417 | integrity sha1-fJgQWH1lmkDSe8201WFuqwWUlLI= |
| 4358 | dependencies: | 4418 | dependencies: |
| 4359 | path-is-inside "^1.0.2" | 4419 | path-is-inside "^1.0.2" |
| @@ -4370,12 +4430,12 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4: | @@ -4370,12 +4430,12 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4: | ||
| 4370 | dependencies: | 4430 | dependencies: |
| 4371 | isobject "^3.0.1" | 4431 | isobject "^3.0.1" |
| 4372 | 4432 | ||
| 4373 | -is-regex@^1.0.4: | ||
| 4374 | - version "1.0.4" | ||
| 4375 | - resolved "https://registry.npm.taobao.org/is-regex/download/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" | ||
| 4376 | - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= | 4433 | +is-regex@^1.0.4, is-regex@^1.1.0: |
| 4434 | + version "1.1.0" | ||
| 4435 | + resolved "https://registry.npm.taobao.org/is-regex/download/is-regex-1.1.0.tgz?cache=0&sync_timestamp=1591253463660&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-regex%2Fdownload%2Fis-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" | ||
| 4436 | + integrity sha1-7OOOOJ5JDfDcIcrqK9WW+Yf3Z/8= | ||
| 4377 | dependencies: | 4437 | dependencies: |
| 4378 | - has "^1.0.1" | 4438 | + has-symbols "^1.0.1" |
| 4379 | 4439 | ||
| 4380 | is-resolvable@^1.0.0: | 4440 | is-resolvable@^1.0.0: |
| 4381 | version "1.1.0" | 4441 | version "1.1.0" |
| @@ -4394,17 +4454,17 @@ is-stream@^2.0.0: | @@ -4394,17 +4454,17 @@ is-stream@^2.0.0: | ||
| 4394 | 4454 | ||
| 4395 | is-svg@^3.0.0: | 4455 | is-svg@^3.0.0: |
| 4396 | version "3.0.0" | 4456 | version "3.0.0" |
| 4397 | - resolved "https://registry.npm.taobao.org/is-svg/download/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" | 4457 | + resolved "https://registry.npm.taobao.org/is-svg/download/is-svg-3.0.0.tgz?cache=0&sync_timestamp=1579236224749&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-svg%2Fdownload%2Fis-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" |
| 4398 | integrity sha1-kyHb0pwhLlypnE+peUxxS8r6L3U= | 4458 | integrity sha1-kyHb0pwhLlypnE+peUxxS8r6L3U= |
| 4399 | dependencies: | 4459 | dependencies: |
| 4400 | html-comment-regex "^1.1.0" | 4460 | html-comment-regex "^1.1.0" |
| 4401 | 4461 | ||
| 4402 | is-symbol@^1.0.2: | 4462 | is-symbol@^1.0.2: |
| 4403 | - version "1.0.2" | ||
| 4404 | - resolved "https://registry.npm.taobao.org/is-symbol/download/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" | ||
| 4405 | - integrity sha1-oFX2rlcZLK7jKeeoYBGLSXqVDzg= | 4463 | + version "1.0.3" |
| 4464 | + resolved "https://registry.npm.taobao.org/is-symbol/download/is-symbol-1.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-symbol%2Fdownload%2Fis-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" | ||
| 4465 | + integrity sha1-OOEBS55jKb4N6dJKQU/XRB7GGTc= | ||
| 4406 | dependencies: | 4466 | dependencies: |
| 4407 | - has-symbols "^1.0.0" | 4467 | + has-symbols "^1.0.1" |
| 4408 | 4468 | ||
| 4409 | is-typedarray@~1.0.0: | 4469 | is-typedarray@~1.0.0: |
| 4410 | version "1.0.0" | 4470 | version "1.0.0" |
| @@ -4418,9 +4478,16 @@ is-windows@^1.0.2: | @@ -4418,9 +4478,16 @@ is-windows@^1.0.2: | ||
| 4418 | 4478 | ||
| 4419 | is-wsl@^1.1.0: | 4479 | is-wsl@^1.1.0: |
| 4420 | version "1.1.0" | 4480 | version "1.1.0" |
| 4421 | - resolved "https://registry.npm.taobao.org/is-wsl/download/is-wsl-1.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-wsl%2Fdownload%2Fis-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" | 4481 | + resolved "https://registry.npm.taobao.org/is-wsl/download/is-wsl-1.1.0.tgz?cache=0&sync_timestamp=1588494180082&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-wsl%2Fdownload%2Fis-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" |
| 4422 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= | 4482 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= |
| 4423 | 4483 | ||
| 4484 | +is-wsl@^2.1.1: | ||
| 4485 | + version "2.2.0" | ||
| 4486 | + resolved "https://registry.npm.taobao.org/is-wsl/download/is-wsl-2.2.0.tgz?cache=0&sync_timestamp=1588494180082&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-wsl%2Fdownload%2Fis-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" | ||
| 4487 | + integrity sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE= | ||
| 4488 | + dependencies: | ||
| 4489 | + is-docker "^2.0.0" | ||
| 4490 | + | ||
| 4424 | isarray@0.0.1: | 4491 | isarray@0.0.1: |
| 4425 | version "0.0.1" | 4492 | version "0.0.1" |
| 4426 | resolved "https://registry.npm.taobao.org/isarray/download/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" | 4493 | resolved "https://registry.npm.taobao.org/isarray/download/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" |
| @@ -4453,27 +4520,22 @@ isstream@~0.1.2: | @@ -4453,27 +4520,22 @@ isstream@~0.1.2: | ||
| 4453 | resolved "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" | 4520 | resolved "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" |
| 4454 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= | 4521 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= |
| 4455 | 4522 | ||
| 4456 | -javascript-stringify@^2.0.0: | ||
| 4457 | - version "2.0.0" | ||
| 4458 | - resolved "https://registry.npm.taobao.org/javascript-stringify/download/javascript-stringify-2.0.0.tgz#ef750216ae66504ffd670b68c8b8aa07bdf7b588" | ||
| 4459 | - integrity sha1-73UCFq5mUE/9ZwtoyLiqB733tYg= | 4523 | +javascript-stringify@^2.0.1: |
| 4524 | + version "2.0.1" | ||
| 4525 | + resolved "https://registry.npm.taobao.org/javascript-stringify/download/javascript-stringify-2.0.1.tgz?cache=0&sync_timestamp=1572948916758&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjavascript-stringify%2Fdownload%2Fjavascript-stringify-2.0.1.tgz#6ef358035310e35d667c675ed63d3eb7c1aa19e5" | ||
| 4526 | + integrity sha1-bvNYA1MQ411mfGde1j0+t8GqGeU= | ||
| 4460 | 4527 | ||
| 4461 | -jest-worker@^24.9.0: | ||
| 4462 | - version "24.9.0" | ||
| 4463 | - resolved "https://registry.npm.taobao.org/jest-worker/download/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" | ||
| 4464 | - integrity sha1-Xb/bWy0yLphWeJgjipaXvM5ns+U= | 4528 | +jest-worker@^25.4.0: |
| 4529 | + version "25.5.0" | ||
| 4530 | + resolved "https://registry.npm.taobao.org/jest-worker/download/jest-worker-25.5.0.tgz?cache=0&sync_timestamp=1592927131961&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-worker%2Fdownload%2Fjest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1" | ||
| 4531 | + integrity sha1-JhHQcbec6g9D7lej0RhZOsFUfbE= | ||
| 4465 | dependencies: | 4532 | dependencies: |
| 4466 | merge-stream "^2.0.0" | 4533 | merge-stream "^2.0.0" |
| 4467 | - supports-color "^6.1.0" | ||
| 4468 | - | ||
| 4469 | -js-levenshtein@^1.1.3: | ||
| 4470 | - version "1.1.6" | ||
| 4471 | - resolved "https://registry.npm.taobao.org/js-levenshtein/download/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" | ||
| 4472 | - integrity sha1-xs7ljrNVA3LfjeuF+tXOZs4B1Z0= | 4534 | + supports-color "^7.0.0" |
| 4473 | 4535 | ||
| 4474 | js-message@1.0.5: | 4536 | js-message@1.0.5: |
| 4475 | version "1.0.5" | 4537 | version "1.0.5" |
| 4476 | - resolved "https://registry.npm.taobao.org/js-message/download/js-message-1.0.5.tgz#2300d24b1af08e89dd095bc1a4c9c9cfcb892d15" | 4538 | + resolved "https://registry.npm.taobao.org/js-message/download/js-message-1.0.5.tgz?cache=0&sync_timestamp=1575284593568&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjs-message%2Fdownload%2Fjs-message-1.0.5.tgz#2300d24b1af08e89dd095bc1a4c9c9cfcb892d15" |
| 4477 | integrity sha1-IwDSSxrwjondCVvBpMnJz8uJLRU= | 4539 | integrity sha1-IwDSSxrwjondCVvBpMnJz8uJLRU= |
| 4478 | 4540 | ||
| 4479 | js-queue@2.0.0: | 4541 | js-queue@2.0.0: |
| @@ -4489,9 +4551,9 @@ js-queue@2.0.0: | @@ -4489,9 +4551,9 @@ js-queue@2.0.0: | ||
| 4489 | integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk= | 4551 | integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk= |
| 4490 | 4552 | ||
| 4491 | js-yaml@^3.13.1: | 4553 | js-yaml@^3.13.1: |
| 4492 | - version "3.13.1" | ||
| 4493 | - resolved "https://registry.npm.taobao.org/js-yaml/download/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" | ||
| 4494 | - integrity sha1-r/FRswv9+o5J4F2iLnQV6d+jeEc= | 4554 | + version "3.14.0" |
| 4555 | + resolved "https://registry.npm.taobao.org/js-yaml/download/js-yaml-3.14.0.tgz?cache=0&sync_timestamp=1590172122543&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjs-yaml%2Fdownload%2Fjs-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" | ||
| 4556 | + integrity sha1-p6NBcPJqIbsWJCTYray0ETpp5II= | ||
| 4495 | dependencies: | 4557 | dependencies: |
| 4496 | argparse "^1.0.7" | 4558 | argparse "^1.0.7" |
| 4497 | esprima "^4.0.0" | 4559 | esprima "^4.0.0" |
| @@ -4503,7 +4565,7 @@ jsbn@~0.1.0: | @@ -4503,7 +4565,7 @@ jsbn@~0.1.0: | ||
| 4503 | 4565 | ||
| 4504 | jsdom@^7.0.2: | 4566 | jsdom@^7.0.2: |
| 4505 | version "7.2.2" | 4567 | version "7.2.2" |
| 4506 | - resolved "https://registry.npm.taobao.org/jsdom/download/jsdom-7.2.2.tgz?cache=0&sync_timestamp=1571060462541&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsdom%2Fdownload%2Fjsdom-7.2.2.tgz#40b402770c2bda23469096bee91ab675e3b1fc6e" | 4568 | + resolved "https://registry.npm.taobao.org/jsdom/download/jsdom-7.2.2.tgz?cache=0&sync_timestamp=1594341306164&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsdom%2Fdownload%2Fjsdom-7.2.2.tgz#40b402770c2bda23469096bee91ab675e3b1fc6e" |
| 4507 | integrity sha1-QLQCdwwr2iNGkJa+6Rq2deOx/G4= | 4569 | integrity sha1-QLQCdwwr2iNGkJa+6Rq2deOx/G4= |
| 4508 | dependencies: | 4570 | dependencies: |
| 4509 | abab "^1.0.0" | 4571 | abab "^1.0.0" |
| @@ -4557,7 +4619,7 @@ json3@^3.3.2: | @@ -4557,7 +4619,7 @@ json3@^3.3.2: | ||
| 4557 | resolved "https://registry.npm.taobao.org/json3/download/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" | 4619 | resolved "https://registry.npm.taobao.org/json3/download/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" |
| 4558 | integrity sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E= | 4620 | integrity sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E= |
| 4559 | 4621 | ||
| 4560 | -json5@^0.5.0, json5@^0.5.1: | 4622 | +json5@^0.5.0: |
| 4561 | version "0.5.1" | 4623 | version "0.5.1" |
| 4562 | resolved "https://registry.npm.taobao.org/json5/download/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" | 4624 | resolved "https://registry.npm.taobao.org/json5/download/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" |
| 4563 | integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= | 4625 | integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= |
| @@ -4569,12 +4631,12 @@ json5@^1.0.1: | @@ -4569,12 +4631,12 @@ json5@^1.0.1: | ||
| 4569 | dependencies: | 4631 | dependencies: |
| 4570 | minimist "^1.2.0" | 4632 | minimist "^1.2.0" |
| 4571 | 4633 | ||
| 4572 | -json5@^2.1.0: | ||
| 4573 | - version "2.1.1" | ||
| 4574 | - resolved "https://registry.npm.taobao.org/json5/download/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" | ||
| 4575 | - integrity sha1-gbbLBOm6SW8ccAXQe0NoomOPkLY= | 4634 | +json5@^2.1.2: |
| 4635 | + version "2.1.3" | ||
| 4636 | + resolved "https://registry.npm.taobao.org/json5/download/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" | ||
| 4637 | + integrity sha1-ybD3+pIzv+WAf+ZvzzpWF+1ZfUM= | ||
| 4576 | dependencies: | 4638 | dependencies: |
| 4577 | - minimist "^1.2.0" | 4639 | + minimist "^1.2.5" |
| 4578 | 4640 | ||
| 4579 | jsonfile@^4.0.0: | 4641 | jsonfile@^4.0.0: |
| 4580 | version "4.0.0" | 4642 | version "4.0.0" |
| @@ -4618,9 +4680,14 @@ kind-of@^5.0.0: | @@ -4618,9 +4680,14 @@ kind-of@^5.0.0: | ||
| 4618 | integrity sha1-cpyR4thXt6QZofmqZWhcTDP1hF0= | 4680 | integrity sha1-cpyR4thXt6QZofmqZWhcTDP1hF0= |
| 4619 | 4681 | ||
| 4620 | kind-of@^6.0.0, kind-of@^6.0.2: | 4682 | kind-of@^6.0.0, kind-of@^6.0.2: |
| 4621 | - version "6.0.2" | ||
| 4622 | - resolved "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" | ||
| 4623 | - integrity sha1-ARRrNqYhjmTljzqNZt5df8b20FE= | 4683 | + version "6.0.3" |
| 4684 | + resolved "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" | ||
| 4685 | + integrity sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0= | ||
| 4686 | + | ||
| 4687 | +klona@^1.1.1: | ||
| 4688 | + version "1.1.2" | ||
| 4689 | + resolved "https://registry.npm.taobao.org/klona/download/klona-1.1.2.tgz?cache=0&sync_timestamp=1594031401487&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fklona%2Fdownload%2Fklona-1.1.2.tgz#a79e292518a5a5412ec8d097964bff1571a64db0" | ||
| 4690 | + integrity sha1-p54pJRilpUEuyNCXlkv/FXGmTbA= | ||
| 4624 | 4691 | ||
| 4625 | launch-editor-middleware@^2.2.1: | 4692 | launch-editor-middleware@^2.2.1: |
| 4626 | version "2.2.1" | 4693 | version "2.2.1" |
| @@ -4637,12 +4704,17 @@ launch-editor@^2.2.1: | @@ -4637,12 +4704,17 @@ launch-editor@^2.2.1: | ||
| 4637 | chalk "^2.3.0" | 4704 | chalk "^2.3.0" |
| 4638 | shell-quote "^1.6.1" | 4705 | shell-quote "^1.6.1" |
| 4639 | 4706 | ||
| 4640 | -lcid@^2.0.0: | ||
| 4641 | - version "2.0.0" | ||
| 4642 | - resolved "https://registry.npm.taobao.org/lcid/download/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" | ||
| 4643 | - integrity sha1-bvXS32DlL4LrIopMNz6NHzlyU88= | 4707 | +leven@^3.1.0: |
| 4708 | + version "3.1.0" | ||
| 4709 | + resolved "https://registry.npm.taobao.org/leven/download/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" | ||
| 4710 | + integrity sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I= | ||
| 4711 | + | ||
| 4712 | +levenary@^1.1.1: | ||
| 4713 | + version "1.1.1" | ||
| 4714 | + resolved "https://registry.npm.taobao.org/levenary/download/levenary-1.1.1.tgz?cache=0&sync_timestamp=1580182411097&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flevenary%2Fdownload%2Flevenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" | ||
| 4715 | + integrity sha1-hCqe6Y0gdap/ru2+MmeekgX0b3c= | ||
| 4644 | dependencies: | 4716 | dependencies: |
| 4645 | - invert-kv "^2.0.0" | 4717 | + leven "^3.1.0" |
| 4646 | 4718 | ||
| 4647 | levn@~0.3.0: | 4719 | levn@~0.3.0: |
| 4648 | version "0.3.0" | 4720 | version "0.3.0" |
| @@ -4664,14 +4736,21 @@ linkify-it@^2.0.0: | @@ -4664,14 +4736,21 @@ linkify-it@^2.0.0: | ||
| 4664 | dependencies: | 4736 | dependencies: |
| 4665 | uc.micro "^1.0.1" | 4737 | uc.micro "^1.0.1" |
| 4666 | 4738 | ||
| 4739 | +linkify-it@^3.0.1: | ||
| 4740 | + version "3.0.2" | ||
| 4741 | + resolved "https://registry.npm.taobao.org/linkify-it/download/linkify-it-3.0.2.tgz#f55eeb8bc1d3ae754049e124ab3bb56d97797fb8" | ||
| 4742 | + integrity sha1-9V7ri8HTrnVASeEkqzu1bZd5f7g= | ||
| 4743 | + dependencies: | ||
| 4744 | + uc.micro "^1.0.1" | ||
| 4745 | + | ||
| 4667 | loader-runner@^2.3.1, loader-runner@^2.4.0: | 4746 | loader-runner@^2.3.1, loader-runner@^2.4.0: |
| 4668 | version "2.4.0" | 4747 | version "2.4.0" |
| 4669 | - resolved "https://registry.npm.taobao.org/loader-runner/download/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" | 4748 | + resolved "https://registry.npm.taobao.org/loader-runner/download/loader-runner-2.4.0.tgz?cache=0&sync_timestamp=1593786200432&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floader-runner%2Fdownload%2Floader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" |
| 4670 | integrity sha1-7UcGa/5TTX6ExMe5mYwqdWB9k1c= | 4749 | integrity sha1-7UcGa/5TTX6ExMe5mYwqdWB9k1c= |
| 4671 | 4750 | ||
| 4672 | loader-utils@^0.2.16: | 4751 | loader-utils@^0.2.16: |
| 4673 | version "0.2.17" | 4752 | version "0.2.17" |
| 4674 | - resolved "https://registry.npm.taobao.org/loader-utils/download/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" | 4753 | + resolved "https://registry.npm.taobao.org/loader-utils/download/loader-utils-0.2.17.tgz?cache=0&sync_timestamp=1584445207623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floader-utils%2Fdownload%2Floader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" |
| 4675 | integrity sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g= | 4754 | integrity sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g= |
| 4676 | dependencies: | 4755 | dependencies: |
| 4677 | big.js "^3.1.3" | 4756 | big.js "^3.1.3" |
| @@ -4679,22 +4758,23 @@ loader-utils@^0.2.16: | @@ -4679,22 +4758,23 @@ loader-utils@^0.2.16: | ||
| 4679 | json5 "^0.5.0" | 4758 | json5 "^0.5.0" |
| 4680 | object-assign "^4.0.1" | 4759 | object-assign "^4.0.1" |
| 4681 | 4760 | ||
| 4682 | -loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3: | ||
| 4683 | - version "1.2.3" | ||
| 4684 | - resolved "https://registry.npm.taobao.org/loader-utils/download/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" | ||
| 4685 | - integrity sha1-H/XcaRHJ8KBiUxpMBLYJQGEIwsc= | 4761 | +loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: |
| 4762 | + version "1.4.0" | ||
| 4763 | + resolved "https://registry.npm.taobao.org/loader-utils/download/loader-utils-1.4.0.tgz?cache=0&sync_timestamp=1584445207623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floader-utils%2Fdownload%2Floader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" | ||
| 4764 | + integrity sha1-xXm140yzSxp07cbB+za/o3HVphM= | ||
| 4686 | dependencies: | 4765 | dependencies: |
| 4687 | big.js "^5.2.2" | 4766 | big.js "^5.2.2" |
| 4688 | - emojis-list "^2.0.0" | 4767 | + emojis-list "^3.0.0" |
| 4689 | json5 "^1.0.1" | 4768 | json5 "^1.0.1" |
| 4690 | 4769 | ||
| 4691 | -locate-path@^2.0.0: | 4770 | +loader-utils@^2.0.0: |
| 4692 | version "2.0.0" | 4771 | version "2.0.0" |
| 4693 | - resolved "https://registry.npm.taobao.org/locate-path/download/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" | ||
| 4694 | - integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= | 4772 | + resolved "https://registry.npm.taobao.org/loader-utils/download/loader-utils-2.0.0.tgz?cache=0&sync_timestamp=1584445207623&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floader-utils%2Fdownload%2Floader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" |
| 4773 | + integrity sha1-5MrOW4FtQloWa18JfhDNErNgZLA= | ||
| 4695 | dependencies: | 4774 | dependencies: |
| 4696 | - p-locate "^2.0.0" | ||
| 4697 | - path-exists "^3.0.0" | 4775 | + big.js "^5.2.2" |
| 4776 | + emojis-list "^3.0.0" | ||
| 4777 | + json5 "^2.1.2" | ||
| 4698 | 4778 | ||
| 4699 | locate-path@^3.0.0: | 4779 | locate-path@^3.0.0: |
| 4700 | version "3.0.0" | 4780 | version "3.0.0" |
| @@ -4742,9 +4822,9 @@ lodash.uniq@^4.5.0: | @@ -4742,9 +4822,9 @@ lodash.uniq@^4.5.0: | ||
| 4742 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= | 4822 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= |
| 4743 | 4823 | ||
| 4744 | lodash@^4.1.0, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.3: | 4824 | lodash@^4.1.0, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.3: |
| 4745 | - version "4.17.15" | ||
| 4746 | - resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" | ||
| 4747 | - integrity sha1-tEf2ZwoEVbv+7dETku/zMOoJdUg= | 4825 | + version "4.17.19" |
| 4826 | + resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.19.tgz?cache=0&sync_timestamp=1594226994263&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" | ||
| 4827 | + integrity sha1-5I3e2+MLMyF4PFtDAfvTU7weSks= | ||
| 4748 | 4828 | ||
| 4749 | log-symbols@^2.2.0: | 4829 | log-symbols@^2.2.0: |
| 4750 | version "2.2.0" | 4830 | version "2.2.0" |
| @@ -4753,10 +4833,10 @@ log-symbols@^2.2.0: | @@ -4753,10 +4833,10 @@ log-symbols@^2.2.0: | ||
| 4753 | dependencies: | 4833 | dependencies: |
| 4754 | chalk "^2.0.1" | 4834 | chalk "^2.0.1" |
| 4755 | 4835 | ||
| 4756 | -loglevel@^1.6.4: | ||
| 4757 | - version "1.6.4" | ||
| 4758 | - resolved "https://registry.npm.taobao.org/loglevel/download/loglevel-1.6.4.tgz#f408f4f006db8354d0577dcf6d33485b3cb90d56" | ||
| 4759 | - integrity sha1-9Aj08Abbg1TQV33PbTNIWzy5DVY= | 4836 | +loglevel@^1.6.8: |
| 4837 | + version "1.6.8" | ||
| 4838 | + resolved "https://registry.npm.taobao.org/loglevel/download/loglevel-1.6.8.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floglevel%2Fdownload%2Floglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171" | ||
| 4839 | + integrity sha1-iiX7ddCSIw7NRFcnDYC1TigBEXE= | ||
| 4760 | 4840 | ||
| 4761 | loose-envify@^1.0.0: | 4841 | loose-envify@^1.0.0: |
| 4762 | version "1.4.0" | 4842 | version "1.4.0" |
| @@ -4787,31 +4867,19 @@ lru-cache@^5.1.1: | @@ -4787,31 +4867,19 @@ lru-cache@^5.1.1: | ||
| 4787 | 4867 | ||
| 4788 | make-dir@^2.0.0: | 4868 | make-dir@^2.0.0: |
| 4789 | version "2.1.0" | 4869 | version "2.1.0" |
| 4790 | - resolved "https://registry.npm.taobao.org/make-dir/download/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" | 4870 | + resolved "https://registry.npm.taobao.org/make-dir/download/make-dir-2.1.0.tgz?cache=0&sync_timestamp=1587567875186&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmake-dir%2Fdownload%2Fmake-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" |
| 4791 | integrity sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU= | 4871 | integrity sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU= |
| 4792 | dependencies: | 4872 | dependencies: |
| 4793 | pify "^4.0.1" | 4873 | pify "^4.0.1" |
| 4794 | semver "^5.6.0" | 4874 | semver "^5.6.0" |
| 4795 | 4875 | ||
| 4796 | -make-dir@^3.0.0: | ||
| 4797 | - version "3.0.0" | ||
| 4798 | - resolved "https://registry.npm.taobao.org/make-dir/download/make-dir-3.0.0.tgz#1b5f39f6b9270ed33f9f054c5c0f84304989f801" | ||
| 4799 | - integrity sha1-G1859rknDtM/nwVMXA+EMEmJ+AE= | 4876 | +make-dir@^3.0.2: |
| 4877 | + version "3.1.0" | ||
| 4878 | + resolved "https://registry.npm.taobao.org/make-dir/download/make-dir-3.1.0.tgz?cache=0&sync_timestamp=1587567875186&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmake-dir%2Fdownload%2Fmake-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" | ||
| 4879 | + integrity sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8= | ||
| 4800 | dependencies: | 4880 | dependencies: |
| 4801 | semver "^6.0.0" | 4881 | semver "^6.0.0" |
| 4802 | 4882 | ||
| 4803 | -mamacro@^0.0.3: | ||
| 4804 | - version "0.0.3" | ||
| 4805 | - resolved "https://registry.npm.taobao.org/mamacro/download/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" | ||
| 4806 | - integrity sha1-rSyVdhl8nxq/MI0Hh4Zb2XWj8+Q= | ||
| 4807 | - | ||
| 4808 | -map-age-cleaner@^0.1.1: | ||
| 4809 | - version "0.1.3" | ||
| 4810 | - resolved "https://registry.npm.taobao.org/map-age-cleaner/download/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" | ||
| 4811 | - integrity sha1-fVg6cwZDTAVf5HSw9FB45uG0uSo= | ||
| 4812 | - dependencies: | ||
| 4813 | - p-defer "^1.0.0" | ||
| 4814 | - | ||
| 4815 | map-cache@^0.2.2: | 4883 | map-cache@^0.2.2: |
| 4816 | version "0.2.2" | 4884 | version "0.2.2" |
| 4817 | resolved "https://registry.npm.taobao.org/map-cache/download/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" | 4885 | resolved "https://registry.npm.taobao.org/map-cache/download/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" |
| @@ -4824,30 +4892,30 @@ map-visit@^1.0.0: | @@ -4824,30 +4892,30 @@ map-visit@^1.0.0: | ||
| 4824 | dependencies: | 4892 | dependencies: |
| 4825 | object-visit "^1.0.0" | 4893 | object-visit "^1.0.0" |
| 4826 | 4894 | ||
| 4827 | -markdown-it-anchor@^5.2.5: | ||
| 4828 | - version "5.2.5" | ||
| 4829 | - resolved "https://registry.npm.taobao.org/markdown-it-anchor/download/markdown-it-anchor-5.2.5.tgz?cache=0&sync_timestamp=1571233940292&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmarkdown-it-anchor%2Fdownload%2Fmarkdown-it-anchor-5.2.5.tgz#dbf13cfcdbffd16a510984f1263e1d479a47d27a" | ||
| 4830 | - integrity sha1-2/E8/Nv/0WpRCYTxJj4dR5pH0no= | 4895 | +markdown-it-anchor@^5.3.0: |
| 4896 | + version "5.3.0" | ||
| 4897 | + resolved "https://registry.npm.taobao.org/markdown-it-anchor/download/markdown-it-anchor-5.3.0.tgz#d549acd64856a8ecd1bea58365ef385effbac744" | ||
| 4898 | + integrity sha1-1Ums1khWqOzRvqWDZe84Xv+6x0Q= | ||
| 4831 | 4899 | ||
| 4832 | -markdown-it-container@^2.0.0: | ||
| 4833 | - version "2.0.0" | ||
| 4834 | - resolved "https://registry.npm.taobao.org/markdown-it-container/download/markdown-it-container-2.0.0.tgz#0019b43fd02eefece2f1960a2895fba81a404695" | ||
| 4835 | - integrity sha1-ABm0P9Au7+zi8ZYKKJX7qBpARpU= | 4900 | +markdown-it-container@^3.0.0: |
| 4901 | + version "3.0.0" | ||
| 4902 | + resolved "https://registry.npm.taobao.org/markdown-it-container/download/markdown-it-container-3.0.0.tgz#1d19b06040a020f9a827577bb7dbf67aa5de9a5b" | ||
| 4903 | + integrity sha1-HRmwYECgIPmoJ1d7t9v2eqXemls= | ||
| 4836 | 4904 | ||
| 4837 | -markdown-it@^10.0.0: | ||
| 4838 | - version "10.0.0" | ||
| 4839 | - resolved "https://registry.npm.taobao.org/markdown-it/download/markdown-it-10.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmarkdown-it%2Fdownload%2Fmarkdown-it-10.0.0.tgz#abfc64f141b1722d663402044e43927f1f50a8dc" | ||
| 4840 | - integrity sha1-q/xk8UGxci1mNAIETkOSfx9QqNw= | 4905 | +markdown-it@^11.0.0: |
| 4906 | + version "11.0.0" | ||
| 4907 | + resolved "https://registry.npm.taobao.org/markdown-it/download/markdown-it-11.0.0.tgz#dbfc30363e43d756ebc52c38586b91b90046b876" | ||
| 4908 | + integrity sha1-2/wwNj5D11brxSw4WGuRuQBGuHY= | ||
| 4841 | dependencies: | 4909 | dependencies: |
| 4842 | argparse "^1.0.7" | 4910 | argparse "^1.0.7" |
| 4843 | entities "~2.0.0" | 4911 | entities "~2.0.0" |
| 4844 | - linkify-it "^2.0.0" | 4912 | + linkify-it "^3.0.1" |
| 4845 | mdurl "^1.0.1" | 4913 | mdurl "^1.0.1" |
| 4846 | uc.micro "^1.0.5" | 4914 | uc.micro "^1.0.5" |
| 4847 | 4915 | ||
| 4848 | markdown-it@^8.4.0: | 4916 | markdown-it@^8.4.0: |
| 4849 | version "8.4.2" | 4917 | version "8.4.2" |
| 4850 | - resolved "https://registry.npm.taobao.org/markdown-it/download/markdown-it-8.4.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmarkdown-it%2Fdownload%2Fmarkdown-it-8.4.2.tgz#386f98998dc15a37722aa7722084f4020bdd9b54" | 4918 | + resolved "https://registry.npm.taobao.org/markdown-it/download/markdown-it-8.4.2.tgz#386f98998dc15a37722aa7722084f4020bdd9b54" |
| 4851 | integrity sha1-OG+YmY3BWjdyKqdyIIT0Agvdm1Q= | 4919 | integrity sha1-OG+YmY3BWjdyKqdyIIT0Agvdm1Q= |
| 4852 | dependencies: | 4920 | dependencies: |
| 4853 | argparse "^1.0.7" | 4921 | argparse "^1.0.7" |
| @@ -4867,13 +4935,13 @@ md5.js@^1.3.4: | @@ -4867,13 +4935,13 @@ md5.js@^1.3.4: | ||
| 4867 | 4935 | ||
| 4868 | mdn-data@2.0.4: | 4936 | mdn-data@2.0.4: |
| 4869 | version "2.0.4" | 4937 | version "2.0.4" |
| 4870 | - resolved "https://registry.npm.taobao.org/mdn-data/download/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" | 4938 | + resolved "https://registry.npm.taobao.org/mdn-data/download/mdn-data-2.0.4.tgz?cache=0&sync_timestamp=1593508849116&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" |
| 4871 | integrity sha1-aZs8OKxvHXKAkaZGULZdOIUC/Vs= | 4939 | integrity sha1-aZs8OKxvHXKAkaZGULZdOIUC/Vs= |
| 4872 | 4940 | ||
| 4873 | -mdn-data@~1.1.0: | ||
| 4874 | - version "1.1.4" | ||
| 4875 | - resolved "https://registry.npm.taobao.org/mdn-data/download/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" | ||
| 4876 | - integrity sha1-ULXU/8RXUnZXPE7tuHgIEqhBnwE= | 4941 | +mdn-data@2.0.6: |
| 4942 | + version "2.0.6" | ||
| 4943 | + resolved "https://registry.npm.taobao.org/mdn-data/download/mdn-data-2.0.6.tgz?cache=0&sync_timestamp=1593508849116&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978" | ||
| 4944 | + integrity sha1-hS3GD8ql2qLoz2yRicRA7T4EKXg= | ||
| 4877 | 4945 | ||
| 4878 | mdurl@^1.0.1: | 4946 | mdurl@^1.0.1: |
| 4879 | version "1.0.1" | 4947 | version "1.0.1" |
| @@ -4885,15 +4953,6 @@ media-typer@0.3.0: | @@ -4885,15 +4953,6 @@ media-typer@0.3.0: | ||
| 4885 | resolved "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" | 4953 | resolved "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" |
| 4886 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= | 4954 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= |
| 4887 | 4955 | ||
| 4888 | -mem@^4.0.0: | ||
| 4889 | - version "4.3.0" | ||
| 4890 | - resolved "https://registry.npm.taobao.org/mem/download/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" | ||
| 4891 | - integrity sha1-Rhr0l7xK4JYIzbLmDu+2m/90QXg= | ||
| 4892 | - dependencies: | ||
| 4893 | - map-age-cleaner "^0.1.1" | ||
| 4894 | - mimic-fn "^2.0.0" | ||
| 4895 | - p-is-promise "^2.0.0" | ||
| 4896 | - | ||
| 4897 | memory-fs@^0.4.1: | 4956 | memory-fs@^0.4.1: |
| 4898 | version "0.4.1" | 4957 | version "0.4.1" |
| 4899 | resolved "https://registry.npm.taobao.org/memory-fs/download/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" | 4958 | resolved "https://registry.npm.taobao.org/memory-fs/download/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" |
| @@ -4928,9 +4987,9 @@ merge-stream@^2.0.0: | @@ -4928,9 +4987,9 @@ merge-stream@^2.0.0: | ||
| 4928 | integrity sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A= | 4987 | integrity sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A= |
| 4929 | 4988 | ||
| 4930 | merge2@^1.2.3: | 4989 | merge2@^1.2.3: |
| 4931 | - version "1.3.0" | ||
| 4932 | - resolved "https://registry.npm.taobao.org/merge2/download/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" | ||
| 4933 | - integrity sha1-WzZu6DsvFYLEj4fkfPGpNSEDyoE= | 4990 | + version "1.4.1" |
| 4991 | + resolved "https://registry.npm.taobao.org/merge2/download/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" | ||
| 4992 | + integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4= | ||
| 4934 | 4993 | ||
| 4935 | methods@~1.1.2: | 4994 | methods@~1.1.2: |
| 4936 | version "1.1.2" | 4995 | version "1.1.2" |
| @@ -4964,47 +5023,42 @@ miller-rabin@^4.0.0: | @@ -4964,47 +5023,42 @@ miller-rabin@^4.0.0: | ||
| 4964 | bn.js "^4.0.0" | 5023 | bn.js "^4.0.0" |
| 4965 | brorand "^1.0.1" | 5024 | brorand "^1.0.1" |
| 4966 | 5025 | ||
| 4967 | -mime-db@1.40.0: | ||
| 4968 | - version "1.40.0" | ||
| 4969 | - resolved "https://registry.npm.taobao.org/mime-db/download/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" | ||
| 4970 | - integrity sha1-plBX6ZjbCQ9zKmj2wnbTh9QSbDI= | ||
| 4971 | - | ||
| 4972 | -"mime-db@>= 1.40.0 < 2": | ||
| 4973 | - version "1.42.0" | ||
| 4974 | - resolved "https://registry.npm.taobao.org/mime-db/download/mime-db-1.42.0.tgz#3e252907b4c7adb906597b4b65636272cf9e7bac" | ||
| 4975 | - integrity sha1-PiUpB7THrbkGWXtLZWNics+ee6w= | 5026 | +mime-db@1.44.0, "mime-db@>= 1.43.0 < 2": |
| 5027 | + version "1.44.0" | ||
| 5028 | + resolved "https://registry.npm.taobao.org/mime-db/download/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" | ||
| 5029 | + integrity sha1-+hHF6wrKEzS0Izy01S8QxaYnL5I= | ||
| 4976 | 5030 | ||
| 4977 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: | 5031 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: |
| 4978 | - version "2.1.24" | ||
| 4979 | - resolved "https://registry.npm.taobao.org/mime-types/download/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" | ||
| 4980 | - integrity sha1-tvjQs+lR77d97eyhlM/20W9nb4E= | 5032 | + version "2.1.27" |
| 5033 | + resolved "https://registry.npm.taobao.org/mime-types/download/mime-types-2.1.27.tgz?cache=0&sync_timestamp=1587700357245&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmime-types%2Fdownload%2Fmime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" | ||
| 5034 | + integrity sha1-R5SfmOJ56lMRn1ci4PNOUpvsAJ8= | ||
| 4981 | dependencies: | 5035 | dependencies: |
| 4982 | - mime-db "1.40.0" | 5036 | + mime-db "1.44.0" |
| 4983 | 5037 | ||
| 4984 | mime@1.6.0: | 5038 | mime@1.6.0: |
| 4985 | version "1.6.0" | 5039 | version "1.6.0" |
| 4986 | - resolved "https://registry.npm.taobao.org/mime/download/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" | 5040 | + resolved "https://registry.npm.taobao.org/mime/download/mime-1.6.0.tgz?cache=0&sync_timestamp=1590596637243&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmime%2Fdownload%2Fmime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" |
| 4987 | integrity sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE= | 5041 | integrity sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE= |
| 4988 | 5042 | ||
| 4989 | mime@^2.4.4: | 5043 | mime@^2.4.4: |
| 4990 | - version "2.4.4" | ||
| 4991 | - resolved "https://registry.npm.taobao.org/mime/download/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" | ||
| 4992 | - integrity sha1-vXuRE1/GsBzePpuuM9ZZtj2IV+U= | 5044 | + version "2.4.6" |
| 5045 | + resolved "https://registry.npm.taobao.org/mime/download/mime-2.4.6.tgz?cache=0&sync_timestamp=1590596637243&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmime%2Fdownload%2Fmime-2.4.6.tgz#e5b407c90db442f2beb5b162373d07b69affa4d1" | ||
| 5046 | + integrity sha1-5bQHyQ20QvK+tbFiNz0Htpr/pNE= | ||
| 4993 | 5047 | ||
| 4994 | mimic-fn@^1.0.0: | 5048 | mimic-fn@^1.0.0: |
| 4995 | version "1.2.0" | 5049 | version "1.2.0" |
| 4996 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" | 5050 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" |
| 4997 | integrity sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI= | 5051 | integrity sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI= |
| 4998 | 5052 | ||
| 4999 | -mimic-fn@^2.0.0, mimic-fn@^2.1.0: | 5053 | +mimic-fn@^2.1.0: |
| 5000 | version "2.1.0" | 5054 | version "2.1.0" |
| 5001 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" | 5055 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" |
| 5002 | integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs= | 5056 | integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs= |
| 5003 | 5057 | ||
| 5004 | -mini-css-extract-plugin@^0.8.0: | ||
| 5005 | - version "0.8.0" | ||
| 5006 | - resolved "https://registry.npm.taobao.org/mini-css-extract-plugin/download/mini-css-extract-plugin-0.8.0.tgz#81d41ec4fe58c713a96ad7c723cdb2d0bd4d70e1" | ||
| 5007 | - integrity sha1-gdQexP5YxxOpatfHI82y0L1NcOE= | 5058 | +mini-css-extract-plugin@^0.9.0: |
| 5059 | + version "0.9.0" | ||
| 5060 | + resolved "https://registry.npm.taobao.org/mini-css-extract-plugin/download/mini-css-extract-plugin-0.9.0.tgz?cache=0&sync_timestamp=1576856580721&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmini-css-extract-plugin%2Fdownload%2Fmini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e" | ||
| 5061 | + integrity sha1-R/LPB6oWWrNXM7H8l9TEbAVkM54= | ||
| 5008 | dependencies: | 5062 | dependencies: |
| 5009 | loader-utils "^1.1.0" | 5063 | loader-utils "^1.1.0" |
| 5010 | normalize-url "1.9.1" | 5064 | normalize-url "1.9.1" |
| @@ -5028,15 +5082,10 @@ minimatch@^3.0.4: | @@ -5028,15 +5082,10 @@ minimatch@^3.0.4: | ||
| 5028 | dependencies: | 5082 | dependencies: |
| 5029 | brace-expansion "^1.1.7" | 5083 | brace-expansion "^1.1.7" |
| 5030 | 5084 | ||
| 5031 | -minimist@0.0.8: | ||
| 5032 | - version "0.0.8" | ||
| 5033 | - resolved "https://registry.npm.taobao.org/minimist/download/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" | ||
| 5034 | - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= | ||
| 5035 | - | ||
| 5036 | -minimist@^1.2.0: | ||
| 5037 | - version "1.2.0" | ||
| 5038 | - resolved "https://registry.npm.taobao.org/minimist/download/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" | ||
| 5039 | - integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= | 5085 | +minimist@^1.2.0, minimist@^1.2.5: |
| 5086 | + version "1.2.5" | ||
| 5087 | + resolved "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" | ||
| 5088 | + integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI= | ||
| 5040 | 5089 | ||
| 5041 | minipass-collect@^1.0.2: | 5090 | minipass-collect@^1.0.2: |
| 5042 | version "1.0.2" | 5091 | version "1.0.2" |
| @@ -5053,34 +5102,19 @@ minipass-flush@^1.0.5: | @@ -5053,34 +5102,19 @@ minipass-flush@^1.0.5: | ||
| 5053 | minipass "^3.0.0" | 5102 | minipass "^3.0.0" |
| 5054 | 5103 | ||
| 5055 | minipass-pipeline@^1.2.2: | 5104 | minipass-pipeline@^1.2.2: |
| 5056 | - version "1.2.2" | ||
| 5057 | - resolved "https://registry.npm.taobao.org/minipass-pipeline/download/minipass-pipeline-1.2.2.tgz#3dcb6bb4a546e32969c7ad710f2c79a86abba93a" | ||
| 5058 | - integrity sha1-PctrtKVG4ylpx61xDyx5qGq7qTo= | 5105 | + version "1.2.3" |
| 5106 | + resolved "https://registry.npm.taobao.org/minipass-pipeline/download/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" | ||
| 5107 | + integrity sha1-VfeDkwfXSFnW6K2pw+vnLOwhajQ= | ||
| 5059 | dependencies: | 5108 | dependencies: |
| 5060 | minipass "^3.0.0" | 5109 | minipass "^3.0.0" |
| 5061 | 5110 | ||
| 5062 | -minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: | ||
| 5063 | - version "2.9.0" | ||
| 5064 | - resolved "https://registry.npm.taobao.org/minipass/download/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" | ||
| 5065 | - integrity sha1-5xN2Ln0+Mv7YAxFc+T4EvKn8yaY= | ||
| 5066 | - dependencies: | ||
| 5067 | - safe-buffer "^5.1.2" | ||
| 5068 | - yallist "^3.0.0" | ||
| 5069 | - | ||
| 5070 | -minipass@^3.0.0: | ||
| 5071 | - version "3.0.1" | ||
| 5072 | - resolved "https://registry.npm.taobao.org/minipass/download/minipass-3.0.1.tgz#b4fec73bd61e8a40f0b374ddd04260ade2c8ec20" | ||
| 5073 | - integrity sha1-tP7HO9YeikDws3Td0EJgreLI7CA= | 5111 | +minipass@^3.0.0, minipass@^3.1.1: |
| 5112 | + version "3.1.3" | ||
| 5113 | + resolved "https://registry.npm.taobao.org/minipass/download/minipass-3.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminipass%2Fdownload%2Fminipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" | ||
| 5114 | + integrity sha1-fUL/HzljVILhX5zbUxhN7r1YFf0= | ||
| 5074 | dependencies: | 5115 | dependencies: |
| 5075 | yallist "^4.0.0" | 5116 | yallist "^4.0.0" |
| 5076 | 5117 | ||
| 5077 | -minizlib@^1.2.1: | ||
| 5078 | - version "1.3.3" | ||
| 5079 | - resolved "https://registry.npm.taobao.org/minizlib/download/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" | ||
| 5080 | - integrity sha1-IpDeloGKNMKVUcio0wEha9Zahh0= | ||
| 5081 | - dependencies: | ||
| 5082 | - minipass "^2.9.0" | ||
| 5083 | - | ||
| 5084 | mississippi@^3.0.0: | 5118 | mississippi@^3.0.0: |
| 5085 | version "3.0.0" | 5119 | version "3.0.0" |
| 5086 | resolved "https://registry.npm.taobao.org/mississippi/download/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" | 5120 | resolved "https://registry.npm.taobao.org/mississippi/download/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" |
| @@ -5105,17 +5139,17 @@ mixin-deep@^1.2.0: | @@ -5105,17 +5139,17 @@ mixin-deep@^1.2.0: | ||
| 5105 | for-in "^1.0.2" | 5139 | for-in "^1.0.2" |
| 5106 | is-extendable "^1.0.1" | 5140 | is-extendable "^1.0.1" |
| 5107 | 5141 | ||
| 5108 | -mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: | ||
| 5109 | - version "0.5.1" | ||
| 5110 | - resolved "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" | ||
| 5111 | - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= | 5142 | +mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: |
| 5143 | + version "0.5.5" | ||
| 5144 | + resolved "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz?cache=0&sync_timestamp=1587535418745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmkdirp%2Fdownload%2Fmkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" | ||
| 5145 | + integrity sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8= | ||
| 5112 | dependencies: | 5146 | dependencies: |
| 5113 | - minimist "0.0.8" | 5147 | + minimist "^1.2.5" |
| 5114 | 5148 | ||
| 5115 | -mockjs@^1.0.1-beta3: | ||
| 5116 | - version "1.0.1-beta3" | ||
| 5117 | - resolved "https://registry.npm.taobao.org/mockjs/download/mockjs-1.0.1-beta3.tgz#d234f3c27256397564f2c955142e891909537209" | ||
| 5118 | - integrity sha1-0jTzwnJWOXVk8slVFC6JGQlTcgk= | 5149 | +mockjs@^1.1.0: |
| 5150 | + version "1.1.0" | ||
| 5151 | + resolved "https://registry.npm.taobao.org/mockjs/download/mockjs-1.1.0.tgz#e6a0c378e91906dbaff20911cc0273b3c7d75b06" | ||
| 5152 | + integrity sha1-5qDDeOkZBtuv8gkRzAJzs8fXWwY= | ||
| 5119 | dependencies: | 5153 | dependencies: |
| 5120 | commander "*" | 5154 | commander "*" |
| 5121 | 5155 | ||
| @@ -5153,7 +5187,7 @@ multicast-dns-service-types@^1.1.0: | @@ -5153,7 +5187,7 @@ multicast-dns-service-types@^1.1.0: | ||
| 5153 | 5187 | ||
| 5154 | multicast-dns@^6.0.1: | 5188 | multicast-dns@^6.0.1: |
| 5155 | version "6.2.3" | 5189 | version "6.2.3" |
| 5156 | - resolved "https://registry.npm.taobao.org/multicast-dns/download/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" | 5190 | + resolved "https://registry.npm.taobao.org/multicast-dns/download/multicast-dns-6.2.3.tgz?cache=0&sync_timestamp=1585238976691&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmulticast-dns%2Fdownload%2Fmulticast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" |
| 5157 | integrity sha1-oOx72QVcQoL3kMPIL04o2zsxsik= | 5191 | integrity sha1-oOx72QVcQoL3kMPIL04o2zsxsik= |
| 5158 | dependencies: | 5192 | dependencies: |
| 5159 | dns-packet "^1.3.1" | 5193 | dns-packet "^1.3.1" |
| @@ -5169,9 +5203,9 @@ mz@^2.4.0: | @@ -5169,9 +5203,9 @@ mz@^2.4.0: | ||
| 5169 | thenify-all "^1.0.0" | 5203 | thenify-all "^1.0.0" |
| 5170 | 5204 | ||
| 5171 | nan@^2.12.1: | 5205 | nan@^2.12.1: |
| 5172 | - version "2.14.0" | ||
| 5173 | - resolved "https://registry.npm.taobao.org/nan/download/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" | ||
| 5174 | - integrity sha1-eBj3IgJ7JFmobwKV1DTR/CM2xSw= | 5206 | + version "2.14.1" |
| 5207 | + resolved "https://registry.npm.taobao.org/nan/download/nan-2.14.1.tgz?cache=0&sync_timestamp=1587497111086&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnan%2Fdownload%2Fnan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" | ||
| 5208 | + integrity sha1-174036MQW5FJTDFHCJMV7/iHSwE= | ||
| 5175 | 5209 | ||
| 5176 | nanomatch@^1.2.9: | 5210 | nanomatch@^1.2.9: |
| 5177 | version "1.2.13" | 5211 | version "1.2.13" |
| @@ -5190,40 +5224,31 @@ nanomatch@^1.2.9: | @@ -5190,40 +5224,31 @@ nanomatch@^1.2.9: | ||
| 5190 | snapdragon "^0.8.1" | 5224 | snapdragon "^0.8.1" |
| 5191 | to-regex "^3.0.1" | 5225 | to-regex "^3.0.1" |
| 5192 | 5226 | ||
| 5193 | -needle@^2.2.1: | ||
| 5194 | - version "2.4.0" | ||
| 5195 | - resolved "https://registry.npm.taobao.org/needle/download/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" | ||
| 5196 | - integrity sha1-aDPnSXXERGQlkOFadQKIxfk5tXw= | ||
| 5197 | - dependencies: | ||
| 5198 | - debug "^3.2.6" | ||
| 5199 | - iconv-lite "^0.4.4" | ||
| 5200 | - sax "^1.2.4" | ||
| 5201 | - | ||
| 5202 | negotiator@0.6.2: | 5227 | negotiator@0.6.2: |
| 5203 | version "0.6.2" | 5228 | version "0.6.2" |
| 5204 | resolved "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" | 5229 | resolved "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" |
| 5205 | integrity sha1-/qz3zPUlp3rpY0Q2pkiD/+yjRvs= | 5230 | integrity sha1-/qz3zPUlp3rpY0Q2pkiD/+yjRvs= |
| 5206 | 5231 | ||
| 5207 | neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: | 5232 | neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: |
| 5208 | - version "2.6.1" | ||
| 5209 | - resolved "https://registry.npm.taobao.org/neo-async/download/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" | ||
| 5210 | - integrity sha1-rCetpmFn+ohJpq3dg39rGJrSCBw= | 5233 | + version "2.6.2" |
| 5234 | + resolved "https://registry.npm.taobao.org/neo-async/download/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" | ||
| 5235 | + integrity sha1-tKr7k+OustgXTKU88WOrfXMIMF8= | ||
| 5211 | 5236 | ||
| 5212 | nice-try@^1.0.4: | 5237 | nice-try@^1.0.4: |
| 5213 | version "1.0.5" | 5238 | version "1.0.5" |
| 5214 | - resolved "https://registry.npm.taobao.org/nice-try/download/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" | 5239 | + resolved "https://registry.npm.taobao.org/nice-try/download/nice-try-1.0.5.tgz?cache=0&sync_timestamp=1584699756095&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnice-try%2Fdownload%2Fnice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" |
| 5215 | integrity sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y= | 5240 | integrity sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y= |
| 5216 | 5241 | ||
| 5217 | no-case@^2.2.0: | 5242 | no-case@^2.2.0: |
| 5218 | version "2.3.2" | 5243 | version "2.3.2" |
| 5219 | - resolved "https://registry.npm.taobao.org/no-case/download/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" | 5244 | + resolved "https://registry.npm.taobao.org/no-case/download/no-case-2.3.2.tgz?cache=0&sync_timestamp=1576721505371&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fno-case%2Fdownload%2Fno-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" |
| 5220 | integrity sha1-YLgTOWvjmz8SiKTB7V0efSi0ZKw= | 5245 | integrity sha1-YLgTOWvjmz8SiKTB7V0efSi0ZKw= |
| 5221 | dependencies: | 5246 | dependencies: |
| 5222 | lower-case "^1.1.1" | 5247 | lower-case "^1.1.1" |
| 5223 | 5248 | ||
| 5224 | node-forge@0.9.0: | 5249 | node-forge@0.9.0: |
| 5225 | version "0.9.0" | 5250 | version "0.9.0" |
| 5226 | - resolved "https://registry.npm.taobao.org/node-forge/download/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579" | 5251 | + resolved "https://registry.npm.taobao.org/node-forge/download/node-forge-0.9.0.tgz?cache=0&sync_timestamp=1569524669712&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-forge%2Fdownload%2Fnode-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579" |
| 5227 | integrity sha1-1iQFDtu0SHStyhK7mlLsY8t4JXk= | 5252 | integrity sha1-1iQFDtu0SHStyhK7mlLsY8t4JXk= |
| 5228 | 5253 | ||
| 5229 | node-ipc@^9.1.1: | 5254 | node-ipc@^9.1.1: |
| @@ -5264,36 +5289,10 @@ node-libs-browser@^2.2.1: | @@ -5264,36 +5289,10 @@ node-libs-browser@^2.2.1: | ||
| 5264 | util "^0.11.0" | 5289 | util "^0.11.0" |
| 5265 | vm-browserify "^1.0.1" | 5290 | vm-browserify "^1.0.1" |
| 5266 | 5291 | ||
| 5267 | -node-pre-gyp@^0.12.0: | ||
| 5268 | - version "0.12.0" | ||
| 5269 | - resolved "https://registry.npm.taobao.org/node-pre-gyp/download/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" | ||
| 5270 | - integrity sha1-ObpLsUOdoDApX4meO1ILd4V2YUk= | ||
| 5271 | - dependencies: | ||
| 5272 | - detect-libc "^1.0.2" | ||
| 5273 | - mkdirp "^0.5.1" | ||
| 5274 | - needle "^2.2.1" | ||
| 5275 | - nopt "^4.0.1" | ||
| 5276 | - npm-packlist "^1.1.6" | ||
| 5277 | - npmlog "^4.0.2" | ||
| 5278 | - rc "^1.2.7" | ||
| 5279 | - rimraf "^2.6.1" | ||
| 5280 | - semver "^5.3.0" | ||
| 5281 | - tar "^4" | ||
| 5282 | - | ||
| 5283 | -node-releases@^1.1.36: | ||
| 5284 | - version "1.1.36" | ||
| 5285 | - resolved "https://registry.npm.taobao.org/node-releases/download/node-releases-1.1.36.tgz#44b7cb8254138e87bdbfa47761d0f825e20900b4" | ||
| 5286 | - integrity sha1-RLfLglQTjoe9v6R3YdD4JeIJALQ= | ||
| 5287 | - dependencies: | ||
| 5288 | - semver "^6.3.0" | ||
| 5289 | - | ||
| 5290 | -nopt@^4.0.1: | ||
| 5291 | - version "4.0.1" | ||
| 5292 | - resolved "https://registry.npm.taobao.org/nopt/download/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" | ||
| 5293 | - integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= | ||
| 5294 | - dependencies: | ||
| 5295 | - abbrev "1" | ||
| 5296 | - osenv "^0.1.4" | 5292 | +node-releases@^1.1.58: |
| 5293 | + version "1.1.59" | ||
| 5294 | + resolved "https://registry.npm.taobao.org/node-releases/download/node-releases-1.1.59.tgz?cache=0&sync_timestamp=1594212264030&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.59.tgz#4d648330641cec704bff10f8e4fe28e453ab8e8e" | ||
| 5295 | + integrity sha1-TWSDMGQc7HBL/xD45P4o5FOrjo4= | ||
| 5297 | 5296 | ||
| 5298 | normalize-package-data@^2.5.0: | 5297 | normalize-package-data@^2.5.0: |
| 5299 | version "2.5.0" | 5298 | version "2.5.0" |
| @@ -5342,19 +5341,6 @@ normalize-wheel@^1.0.1: | @@ -5342,19 +5341,6 @@ normalize-wheel@^1.0.1: | ||
| 5342 | resolved "https://registry.npm.taobao.org/normalize-wheel/download/normalize-wheel-1.0.1.tgz#aec886affdb045070d856447df62ecf86146ec45" | 5341 | resolved "https://registry.npm.taobao.org/normalize-wheel/download/normalize-wheel-1.0.1.tgz#aec886affdb045070d856447df62ecf86146ec45" |
| 5343 | integrity sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU= | 5342 | integrity sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU= |
| 5344 | 5343 | ||
| 5345 | -npm-bundled@^1.0.1: | ||
| 5346 | - version "1.0.6" | ||
| 5347 | - resolved "https://registry.npm.taobao.org/npm-bundled/download/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" | ||
| 5348 | - integrity sha1-57qarc75YrthJI+RchzZMrP+a90= | ||
| 5349 | - | ||
| 5350 | -npm-packlist@^1.1.6: | ||
| 5351 | - version "1.4.6" | ||
| 5352 | - resolved "https://registry.npm.taobao.org/npm-packlist/download/npm-packlist-1.4.6.tgz#53ba3ed11f8523079f1457376dd379ee4ea42ff4" | ||
| 5353 | - integrity sha1-U7o+0R+FIwefFFc3bdN57k6kL/Q= | ||
| 5354 | - dependencies: | ||
| 5355 | - ignore-walk "^3.0.1" | ||
| 5356 | - npm-bundled "^1.0.1" | ||
| 5357 | - | ||
| 5358 | npm-run-path@^2.0.0: | 5344 | npm-run-path@^2.0.0: |
| 5359 | version "2.0.2" | 5345 | version "2.0.2" |
| 5360 | resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" | 5346 | resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" |
| @@ -5363,22 +5349,12 @@ npm-run-path@^2.0.0: | @@ -5363,22 +5349,12 @@ npm-run-path@^2.0.0: | ||
| 5363 | path-key "^2.0.0" | 5349 | path-key "^2.0.0" |
| 5364 | 5350 | ||
| 5365 | npm-run-path@^4.0.0: | 5351 | npm-run-path@^4.0.0: |
| 5366 | - version "4.0.0" | ||
| 5367 | - resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-4.0.0.tgz#d644ec1bd0569187d2a52909971023a0a58e8438" | ||
| 5368 | - integrity sha1-1kTsG9BWkYfSpSkJlxAjoKWOhDg= | 5352 | + version "4.0.1" |
| 5353 | + resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" | ||
| 5354 | + integrity sha1-t+zR5e1T2o43pV4cImnguX7XSOo= | ||
| 5369 | dependencies: | 5355 | dependencies: |
| 5370 | path-key "^3.0.0" | 5356 | path-key "^3.0.0" |
| 5371 | 5357 | ||
| 5372 | -npmlog@^4.0.2: | ||
| 5373 | - version "4.1.2" | ||
| 5374 | - resolved "https://registry.npm.taobao.org/npmlog/download/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" | ||
| 5375 | - integrity sha1-CKfyqL9zRgR3mp76StXMcXq7lUs= | ||
| 5376 | - dependencies: | ||
| 5377 | - are-we-there-yet "~1.1.2" | ||
| 5378 | - console-control-strings "~1.1.0" | ||
| 5379 | - gauge "~2.7.3" | ||
| 5380 | - set-blocking "~2.0.0" | ||
| 5381 | - | ||
| 5382 | nprogress@^0.2.0: | 5358 | nprogress@^0.2.0: |
| 5383 | version "0.2.0" | 5359 | version "0.2.0" |
| 5384 | resolved "https://registry.npm.taobao.org/nprogress/download/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" | 5360 | resolved "https://registry.npm.taobao.org/nprogress/download/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" |
| @@ -5396,11 +5372,6 @@ num2fraction@^1.2.2: | @@ -5396,11 +5372,6 @@ num2fraction@^1.2.2: | ||
| 5396 | resolved "https://registry.npm.taobao.org/num2fraction/download/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" | 5372 | resolved "https://registry.npm.taobao.org/num2fraction/download/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" |
| 5397 | integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= | 5373 | integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= |
| 5398 | 5374 | ||
| 5399 | -number-is-nan@^1.0.0: | ||
| 5400 | - version "1.0.1" | ||
| 5401 | - resolved "https://registry.npm.taobao.org/number-is-nan/download/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" | ||
| 5402 | - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= | ||
| 5403 | - | ||
| 5404 | "nwmatcher@>= 1.3.7 < 2.0.0": | 5375 | "nwmatcher@>= 1.3.7 < 2.0.0": |
| 5405 | version "1.4.4" | 5376 | version "1.4.4" |
| 5406 | resolved "https://registry.npm.taobao.org/nwmatcher/download/nwmatcher-1.4.4.tgz#2285631f34a95f0d0395cd900c96ed39b58f346e" | 5377 | resolved "https://registry.npm.taobao.org/nwmatcher/download/nwmatcher-1.4.4.tgz#2285631f34a95f0d0395cd900c96ed39b58f346e" |
| @@ -5425,15 +5396,18 @@ object-copy@^0.1.0: | @@ -5425,15 +5396,18 @@ object-copy@^0.1.0: | ||
| 5425 | define-property "^0.2.5" | 5396 | define-property "^0.2.5" |
| 5426 | kind-of "^3.0.3" | 5397 | kind-of "^3.0.3" |
| 5427 | 5398 | ||
| 5428 | -object-inspect@^1.6.0: | ||
| 5429 | - version "1.6.0" | ||
| 5430 | - resolved "https://registry.npm.taobao.org/object-inspect/download/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" | ||
| 5431 | - integrity sha1-xwtsv3LydKq0w0wMgvUWe/gs8Vs= | 5399 | +object-inspect@^1.7.0: |
| 5400 | + version "1.8.0" | ||
| 5401 | + resolved "https://registry.npm.taobao.org/object-inspect/download/object-inspect-1.8.0.tgz?cache=0&sync_timestamp=1592545133086&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" | ||
| 5402 | + integrity sha1-34B+Xs9TpgnMa/6T6sPMe+WzqdA= | ||
| 5432 | 5403 | ||
| 5433 | object-is@^1.0.1: | 5404 | object-is@^1.0.1: |
| 5434 | - version "1.0.1" | ||
| 5435 | - resolved "https://registry.npm.taobao.org/object-is/download/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" | ||
| 5436 | - integrity sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY= | 5405 | + version "1.1.2" |
| 5406 | + resolved "https://registry.npm.taobao.org/object-is/download/object-is-1.1.2.tgz#c5d2e87ff9e119f78b7a088441519e2eec1573b6" | ||
| 5407 | + integrity sha1-xdLof/nhGfeLegiEQVGeLuwVc7Y= | ||
| 5408 | + dependencies: | ||
| 5409 | + define-properties "^1.1.3" | ||
| 5410 | + es-abstract "^1.17.5" | ||
| 5437 | 5411 | ||
| 5438 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: | 5412 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: |
| 5439 | version "1.1.1" | 5413 | version "1.1.1" |
| @@ -5457,13 +5431,13 @@ object.assign@^4.1.0: | @@ -5457,13 +5431,13 @@ object.assign@^4.1.0: | ||
| 5457 | has-symbols "^1.0.0" | 5431 | has-symbols "^1.0.0" |
| 5458 | object-keys "^1.0.11" | 5432 | object-keys "^1.0.11" |
| 5459 | 5433 | ||
| 5460 | -object.getownpropertydescriptors@^2.0.3: | ||
| 5461 | - version "2.0.3" | ||
| 5462 | - resolved "https://registry.npm.taobao.org/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" | ||
| 5463 | - integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= | 5434 | +object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: |
| 5435 | + version "2.1.0" | ||
| 5436 | + resolved "https://registry.npm.taobao.org/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject.getownpropertydescriptors%2Fdownload%2Fobject.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" | ||
| 5437 | + integrity sha1-Npvx+VktiridcS3O1cuBx8U1Jkk= | ||
| 5464 | dependencies: | 5438 | dependencies: |
| 5465 | - define-properties "^1.1.2" | ||
| 5466 | - es-abstract "^1.5.1" | 5439 | + define-properties "^1.1.3" |
| 5440 | + es-abstract "^1.17.0-next.1" | ||
| 5467 | 5441 | ||
| 5468 | object.pick@^1.3.0: | 5442 | object.pick@^1.3.0: |
| 5469 | version "1.3.0" | 5443 | version "1.3.0" |
| @@ -5473,12 +5447,12 @@ object.pick@^1.3.0: | @@ -5473,12 +5447,12 @@ object.pick@^1.3.0: | ||
| 5473 | isobject "^3.0.1" | 5447 | isobject "^3.0.1" |
| 5474 | 5448 | ||
| 5475 | object.values@^1.1.0: | 5449 | object.values@^1.1.0: |
| 5476 | - version "1.1.0" | ||
| 5477 | - resolved "https://registry.npm.taobao.org/object.values/download/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" | ||
| 5478 | - integrity sha1-v2gQ712j5TJXkOqqK+IT6oRiTak= | 5450 | + version "1.1.1" |
| 5451 | + resolved "https://registry.npm.taobao.org/object.values/download/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" | ||
| 5452 | + integrity sha1-aKmezeNWt+kpWjxeDOMdyMlT3l4= | ||
| 5479 | dependencies: | 5453 | dependencies: |
| 5480 | define-properties "^1.1.3" | 5454 | define-properties "^1.1.3" |
| 5481 | - es-abstract "^1.12.0" | 5455 | + es-abstract "^1.17.0-next.1" |
| 5482 | function-bind "^1.1.1" | 5456 | function-bind "^1.1.1" |
| 5483 | has "^1.0.3" | 5457 | has "^1.0.3" |
| 5484 | 5458 | ||
| @@ -5522,7 +5496,7 @@ onetime@^5.1.0: | @@ -5522,7 +5496,7 @@ onetime@^5.1.0: | ||
| 5522 | 5496 | ||
| 5523 | open@^6.3.0: | 5497 | open@^6.3.0: |
| 5524 | version "6.4.0" | 5498 | version "6.4.0" |
| 5525 | - resolved "https://registry.npm.taobao.org/open/download/open-6.4.0.tgz?cache=0&sync_timestamp=1571165370049&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fopen%2Fdownload%2Fopen-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" | 5499 | + resolved "https://registry.npm.taobao.org/open/download/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" |
| 5526 | integrity sha1-XBPpbQ3IlGhhZPGJZez+iJ7PyKk= | 5500 | integrity sha1-XBPpbQ3IlGhhZPGJZez+iJ7PyKk= |
| 5527 | dependencies: | 5501 | dependencies: |
| 5528 | is-wsl "^1.1.0" | 5502 | is-wsl "^1.1.0" |
| @@ -5540,20 +5514,20 @@ opn@^5.5.0: | @@ -5540,20 +5514,20 @@ opn@^5.5.0: | ||
| 5540 | is-wsl "^1.1.0" | 5514 | is-wsl "^1.1.0" |
| 5541 | 5515 | ||
| 5542 | optionator@^0.8.1: | 5516 | optionator@^0.8.1: |
| 5543 | - version "0.8.2" | ||
| 5544 | - resolved "https://registry.npm.taobao.org/optionator/download/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" | ||
| 5545 | - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= | 5517 | + version "0.8.3" |
| 5518 | + resolved "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz?cache=0&sync_timestamp=1585966209412&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Foptionator%2Fdownload%2Foptionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" | ||
| 5519 | + integrity sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU= | ||
| 5546 | dependencies: | 5520 | dependencies: |
| 5547 | deep-is "~0.1.3" | 5521 | deep-is "~0.1.3" |
| 5548 | - fast-levenshtein "~2.0.4" | 5522 | + fast-levenshtein "~2.0.6" |
| 5549 | levn "~0.3.0" | 5523 | levn "~0.3.0" |
| 5550 | prelude-ls "~1.1.2" | 5524 | prelude-ls "~1.1.2" |
| 5551 | type-check "~0.3.2" | 5525 | type-check "~0.3.2" |
| 5552 | - wordwrap "~1.0.0" | 5526 | + word-wrap "~1.2.3" |
| 5553 | 5527 | ||
| 5554 | ora@^3.4.0: | 5528 | ora@^3.4.0: |
| 5555 | version "3.4.0" | 5529 | version "3.4.0" |
| 5556 | - resolved "https://registry.npm.taobao.org/ora/download/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" | 5530 | + resolved "https://registry.npm.taobao.org/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1587481470351&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fora%2Fdownload%2Fora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" |
| 5557 | integrity sha1-vwdSSRBZo+8+1MhQl1Md6f280xg= | 5531 | integrity sha1-vwdSSRBZo+8+1MhQl1Md6f280xg= |
| 5558 | dependencies: | 5532 | dependencies: |
| 5559 | chalk "^2.4.2" | 5533 | chalk "^2.4.2" |
| @@ -5575,38 +5549,6 @@ os-browserify@^0.3.0: | @@ -5575,38 +5549,6 @@ os-browserify@^0.3.0: | ||
| 5575 | resolved "https://registry.npm.taobao.org/os-browserify/download/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" | 5549 | resolved "https://registry.npm.taobao.org/os-browserify/download/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" |
| 5576 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= | 5550 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= |
| 5577 | 5551 | ||
| 5578 | -os-homedir@^1.0.0: | ||
| 5579 | - version "1.0.2" | ||
| 5580 | - resolved "https://registry.npm.taobao.org/os-homedir/download/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" | ||
| 5581 | - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= | ||
| 5582 | - | ||
| 5583 | -os-locale@^3.0.0: | ||
| 5584 | - version "3.1.0" | ||
| 5585 | - resolved "https://registry.npm.taobao.org/os-locale/download/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" | ||
| 5586 | - integrity sha1-qAKm7hfyTBBIOrmTVxnO9O0Wvxo= | ||
| 5587 | - dependencies: | ||
| 5588 | - execa "^1.0.0" | ||
| 5589 | - lcid "^2.0.0" | ||
| 5590 | - mem "^4.0.0" | ||
| 5591 | - | ||
| 5592 | -os-tmpdir@^1.0.0: | ||
| 5593 | - version "1.0.2" | ||
| 5594 | - resolved "https://registry.npm.taobao.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" | ||
| 5595 | - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= | ||
| 5596 | - | ||
| 5597 | -osenv@^0.1.4: | ||
| 5598 | - version "0.1.5" | ||
| 5599 | - resolved "https://registry.npm.taobao.org/osenv/download/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" | ||
| 5600 | - integrity sha1-hc36+uso6Gd/QW4odZK18/SepBA= | ||
| 5601 | - dependencies: | ||
| 5602 | - os-homedir "^1.0.0" | ||
| 5603 | - os-tmpdir "^1.0.0" | ||
| 5604 | - | ||
| 5605 | -p-defer@^1.0.0: | ||
| 5606 | - version "1.0.0" | ||
| 5607 | - resolved "https://registry.npm.taobao.org/p-defer/download/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" | ||
| 5608 | - integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= | ||
| 5609 | - | ||
| 5610 | p-finally@^1.0.0: | 5552 | p-finally@^1.0.0: |
| 5611 | version "1.0.0" | 5553 | version "1.0.0" |
| 5612 | resolved "https://registry.npm.taobao.org/p-finally/download/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" | 5554 | resolved "https://registry.npm.taobao.org/p-finally/download/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" |
| @@ -5617,32 +5559,13 @@ p-finally@^2.0.0: | @@ -5617,32 +5559,13 @@ p-finally@^2.0.0: | ||
| 5617 | resolved "https://registry.npm.taobao.org/p-finally/download/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" | 5559 | resolved "https://registry.npm.taobao.org/p-finally/download/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" |
| 5618 | integrity sha1-vW/KqcVZoJa2gIBvTWV7Pw8kBWE= | 5560 | integrity sha1-vW/KqcVZoJa2gIBvTWV7Pw8kBWE= |
| 5619 | 5561 | ||
| 5620 | -p-is-promise@^2.0.0: | ||
| 5621 | - version "2.1.0" | ||
| 5622 | - resolved "https://registry.npm.taobao.org/p-is-promise/download/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" | ||
| 5623 | - integrity sha1-kYzrrqJIpiz3/6uOO8qMX4gvxC4= | ||
| 5624 | - | ||
| 5625 | -p-limit@^1.1.0: | ||
| 5626 | - version "1.3.0" | ||
| 5627 | - resolved "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" | ||
| 5628 | - integrity sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg= | ||
| 5629 | - dependencies: | ||
| 5630 | - p-try "^1.0.0" | ||
| 5631 | - | ||
| 5632 | -p-limit@^2.0.0, p-limit@^2.2.0: | ||
| 5633 | - version "2.2.1" | ||
| 5634 | - resolved "https://registry.npm.taobao.org/p-limit/download/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" | ||
| 5635 | - integrity sha1-qgeniMwxUck5tRMfY1cPDdIAlTc= | 5562 | +p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.2.1, p-limit@^2.3.0: |
| 5563 | + version "2.3.0" | ||
| 5564 | + resolved "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" | ||
| 5565 | + integrity sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE= | ||
| 5636 | dependencies: | 5566 | dependencies: |
| 5637 | p-try "^2.0.0" | 5567 | p-try "^2.0.0" |
| 5638 | 5568 | ||
| 5639 | -p-locate@^2.0.0: | ||
| 5640 | - version "2.0.0" | ||
| 5641 | - resolved "https://registry.npm.taobao.org/p-locate/download/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" | ||
| 5642 | - integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= | ||
| 5643 | - dependencies: | ||
| 5644 | - p-limit "^1.1.0" | ||
| 5645 | - | ||
| 5646 | p-locate@^3.0.0: | 5569 | p-locate@^3.0.0: |
| 5647 | version "3.0.0" | 5570 | version "3.0.0" |
| 5648 | resolved "https://registry.npm.taobao.org/p-locate/download/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" | 5571 | resolved "https://registry.npm.taobao.org/p-locate/download/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" |
| @@ -5676,20 +5599,15 @@ p-retry@^3.0.1: | @@ -5676,20 +5599,15 @@ p-retry@^3.0.1: | ||
| 5676 | dependencies: | 5599 | dependencies: |
| 5677 | retry "^0.12.0" | 5600 | retry "^0.12.0" |
| 5678 | 5601 | ||
| 5679 | -p-try@^1.0.0: | ||
| 5680 | - version "1.0.0" | ||
| 5681 | - resolved "https://registry.npm.taobao.org/p-try/download/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" | ||
| 5682 | - integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= | ||
| 5683 | - | ||
| 5684 | p-try@^2.0.0: | 5602 | p-try@^2.0.0: |
| 5685 | version "2.2.0" | 5603 | version "2.2.0" |
| 5686 | resolved "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" | 5604 | resolved "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" |
| 5687 | integrity sha1-yyhoVA4xPWHeWPr741zpAE1VQOY= | 5605 | integrity sha1-yyhoVA4xPWHeWPr741zpAE1VQOY= |
| 5688 | 5606 | ||
| 5689 | pako@~1.0.5: | 5607 | pako@~1.0.5: |
| 5690 | - version "1.0.10" | ||
| 5691 | - resolved "https://registry.npm.taobao.org/pako/download/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" | ||
| 5692 | - integrity sha1-Qyi621CGpCaqkPVBl31JVdpclzI= | 5608 | + version "1.0.11" |
| 5609 | + resolved "https://registry.npm.taobao.org/pako/download/pako-1.0.11.tgz?cache=0&sync_timestamp=1580284264887&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpako%2Fdownload%2Fpako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" | ||
| 5610 | + integrity sha1-bJWZ00DVTf05RjgCUqNXBaa5kr8= | ||
| 5693 | 5611 | ||
| 5694 | parallel-transform@^1.1.0: | 5612 | parallel-transform@^1.1.0: |
| 5695 | version "1.2.0" | 5613 | version "1.2.0" |
| @@ -5707,7 +5625,7 @@ param-case@2.1.x: | @@ -5707,7 +5625,7 @@ param-case@2.1.x: | ||
| 5707 | dependencies: | 5625 | dependencies: |
| 5708 | no-case "^2.2.0" | 5626 | no-case "^2.2.0" |
| 5709 | 5627 | ||
| 5710 | -parse-asn1@^5.0.0: | 5628 | +parse-asn1@^5.0.0, parse-asn1@^5.1.5: |
| 5711 | version "5.1.5" | 5629 | version "5.1.5" |
| 5712 | resolved "https://registry.npm.taobao.org/parse-asn1/download/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" | 5630 | resolved "https://registry.npm.taobao.org/parse-asn1/download/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" |
| 5713 | integrity sha1-ADJxND2ljclMrOSU+u89IUfs6g4= | 5631 | integrity sha1-ADJxND2ljclMrOSU+u89IUfs6g4= |
| @@ -5737,15 +5655,22 @@ parse-json@^5.0.0: | @@ -5737,15 +5655,22 @@ parse-json@^5.0.0: | ||
| 5737 | json-parse-better-errors "^1.0.1" | 5655 | json-parse-better-errors "^1.0.1" |
| 5738 | lines-and-columns "^1.1.6" | 5656 | lines-and-columns "^1.1.6" |
| 5739 | 5657 | ||
| 5658 | +parse5-htmlparser2-tree-adapter@^5.1.1: | ||
| 5659 | + version "5.1.1" | ||
| 5660 | + resolved "https://registry.npm.taobao.org/parse5-htmlparser2-tree-adapter/download/parse5-htmlparser2-tree-adapter-5.1.1.tgz#e8c743d4e92194d5293ecde2b08be31e67461cbc" | ||
| 5661 | + integrity sha1-6MdD1OkhlNUpPs3isIvjHmdGHLw= | ||
| 5662 | + dependencies: | ||
| 5663 | + parse5 "^5.1.1" | ||
| 5664 | + | ||
| 5740 | parse5@^1.5.1: | 5665 | parse5@^1.5.1: |
| 5741 | version "1.5.1" | 5666 | version "1.5.1" |
| 5742 | resolved "https://registry.npm.taobao.org/parse5/download/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" | 5667 | resolved "https://registry.npm.taobao.org/parse5/download/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" |
| 5743 | integrity sha1-m387DeMr543CQBsXVzzK8Pb1nZQ= | 5668 | integrity sha1-m387DeMr543CQBsXVzzK8Pb1nZQ= |
| 5744 | 5669 | ||
| 5745 | -parse5@^4.0.0: | ||
| 5746 | - version "4.0.0" | ||
| 5747 | - resolved "https://registry.npm.taobao.org/parse5/download/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" | ||
| 5748 | - integrity sha1-bXhlbj2o14tOwLkG98CO8d/j9gg= | 5670 | +parse5@^5.1.1: |
| 5671 | + version "5.1.1" | ||
| 5672 | + resolved "https://registry.npm.taobao.org/parse5/download/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" | ||
| 5673 | + integrity sha1-9o5OW6GFKsLK3AD0VV//bCq7YXg= | ||
| 5749 | 5674 | ||
| 5750 | parseurl@~1.3.2, parseurl@~1.3.3: | 5675 | parseurl@~1.3.2, parseurl@~1.3.3: |
| 5751 | version "1.3.3" | 5676 | version "1.3.3" |
| @@ -5793,9 +5718,9 @@ path-key@^2.0.0, path-key@^2.0.1: | @@ -5793,9 +5718,9 @@ path-key@^2.0.0, path-key@^2.0.1: | ||
| 5793 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= | 5718 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= |
| 5794 | 5719 | ||
| 5795 | path-key@^3.0.0, path-key@^3.1.0: | 5720 | path-key@^3.0.0, path-key@^3.1.0: |
| 5796 | - version "3.1.0" | ||
| 5797 | - resolved "https://registry.npm.taobao.org/path-key/download/path-key-3.1.0.tgz#99a10d870a803bdd5ee6f0470e58dfcd2f9a54d3" | ||
| 5798 | - integrity sha1-maENhwqAO91e5vBHDljfzS+aVNM= | 5721 | + version "3.1.1" |
| 5722 | + resolved "https://registry.npm.taobao.org/path-key/download/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" | ||
| 5723 | + integrity sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U= | ||
| 5799 | 5724 | ||
| 5800 | path-parse@^1.0.6: | 5725 | path-parse@^1.0.6: |
| 5801 | version "1.0.6" | 5726 | version "1.0.6" |
| @@ -5815,9 +5740,9 @@ path-type@^3.0.0: | @@ -5815,9 +5740,9 @@ path-type@^3.0.0: | ||
| 5815 | pify "^3.0.0" | 5740 | pify "^3.0.0" |
| 5816 | 5741 | ||
| 5817 | pbkdf2@^3.0.3: | 5742 | pbkdf2@^3.0.3: |
| 5818 | - version "3.0.17" | ||
| 5819 | - resolved "https://registry.npm.taobao.org/pbkdf2/download/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" | ||
| 5820 | - integrity sha1-l2wgZTBhexTrsyEUI597CTNuk6Y= | 5743 | + version "3.1.1" |
| 5744 | + resolved "https://registry.npm.taobao.org/pbkdf2/download/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" | ||
| 5745 | + integrity sha1-y4cksPramEWWhW0abrr9NYRlS5Q= | ||
| 5821 | dependencies: | 5746 | dependencies: |
| 5822 | create-hash "^1.1.2" | 5747 | create-hash "^1.1.2" |
| 5823 | create-hmac "^1.1.4" | 5748 | create-hmac "^1.1.4" |
| @@ -5830,24 +5755,24 @@ performance-now@^2.1.0: | @@ -5830,24 +5755,24 @@ performance-now@^2.1.0: | ||
| 5830 | resolved "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" | 5755 | resolved "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" |
| 5831 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= | 5756 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= |
| 5832 | 5757 | ||
| 5833 | -picomatch@^2.0.4: | ||
| 5834 | - version "2.0.7" | ||
| 5835 | - resolved "https://registry.npm.taobao.org/picomatch/download/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6" | ||
| 5836 | - integrity sha1-UUFp2MfNC9vuzIomCeNKcWPeafY= | 5758 | +picomatch@^2.0.4, picomatch@^2.2.1: |
| 5759 | + version "2.2.2" | ||
| 5760 | + resolved "https://registry.npm.taobao.org/picomatch/download/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" | ||
| 5761 | + integrity sha1-IfMz6ba46v8CRo9RRupAbTRfTa0= | ||
| 5837 | 5762 | ||
| 5838 | pify@^2.0.0: | 5763 | pify@^2.0.0: |
| 5839 | version "2.3.0" | 5764 | version "2.3.0" |
| 5840 | - resolved "https://registry.npm.taobao.org/pify/download/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" | 5765 | + resolved "https://registry.npm.taobao.org/pify/download/pify-2.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpify%2Fdownload%2Fpify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" |
| 5841 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= | 5766 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= |
| 5842 | 5767 | ||
| 5843 | pify@^3.0.0: | 5768 | pify@^3.0.0: |
| 5844 | version "3.0.0" | 5769 | version "3.0.0" |
| 5845 | - resolved "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" | 5770 | + resolved "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpify%2Fdownload%2Fpify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" |
| 5846 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= | 5771 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= |
| 5847 | 5772 | ||
| 5848 | pify@^4.0.1: | 5773 | pify@^4.0.1: |
| 5849 | version "4.0.1" | 5774 | version "4.0.1" |
| 5850 | - resolved "https://registry.npm.taobao.org/pify/download/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" | 5775 | + resolved "https://registry.npm.taobao.org/pify/download/pify-4.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpify%2Fdownload%2Fpify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" |
| 5851 | integrity sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE= | 5776 | integrity sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE= |
| 5852 | 5777 | ||
| 5853 | pinkie-promise@^2.0.0: | 5778 | pinkie-promise@^2.0.0: |
| @@ -5876,17 +5801,17 @@ pkg-dir@^4.1.0: | @@ -5876,17 +5801,17 @@ pkg-dir@^4.1.0: | ||
| 5876 | dependencies: | 5801 | dependencies: |
| 5877 | find-up "^4.0.0" | 5802 | find-up "^4.0.0" |
| 5878 | 5803 | ||
| 5879 | -pkg-up@^2.0.0: | ||
| 5880 | - version "2.0.0" | ||
| 5881 | - resolved "https://registry.npm.taobao.org/pkg-up/download/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" | ||
| 5882 | - integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= | 5804 | +pnp-webpack-plugin@^1.6.4: |
| 5805 | + version "1.6.4" | ||
| 5806 | + resolved "https://registry.npm.taobao.org/pnp-webpack-plugin/download/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" | ||
| 5807 | + integrity sha1-yXEaxNxIpoXauvyG+Lbdn434QUk= | ||
| 5883 | dependencies: | 5808 | dependencies: |
| 5884 | - find-up "^2.1.0" | 5809 | + ts-pnp "^1.1.6" |
| 5885 | 5810 | ||
| 5886 | -portfinder@^1.0.20, portfinder@^1.0.24: | ||
| 5887 | - version "1.0.25" | ||
| 5888 | - resolved "https://registry.npm.taobao.org/portfinder/download/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca" | ||
| 5889 | - integrity sha1-JU/TN/+6hp9LnTftwpgFnLTTXso= | 5811 | +portfinder@^1.0.26: |
| 5812 | + version "1.0.26" | ||
| 5813 | + resolved "https://registry.npm.taobao.org/portfinder/download/portfinder-1.0.26.tgz?cache=0&sync_timestamp=1588108029311&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fportfinder%2Fdownload%2Fportfinder-1.0.26.tgz#475658d56ca30bed72ac7f1378ed350bd1b64e70" | ||
| 5814 | + integrity sha1-R1ZY1WyjC+1yrH8TeO01C9G2TnA= | ||
| 5890 | dependencies: | 5815 | dependencies: |
| 5891 | async "^2.6.2" | 5816 | async "^2.6.2" |
| 5892 | debug "^3.1.1" | 5817 | debug "^3.1.1" |
| @@ -5898,14 +5823,13 @@ posix-character-classes@^0.1.0: | @@ -5898,14 +5823,13 @@ posix-character-classes@^0.1.0: | ||
| 5898 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= | 5823 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= |
| 5899 | 5824 | ||
| 5900 | postcss-calc@^7.0.1: | 5825 | postcss-calc@^7.0.1: |
| 5901 | - version "7.0.1" | ||
| 5902 | - resolved "https://registry.npm.taobao.org/postcss-calc/download/postcss-calc-7.0.1.tgz#36d77bab023b0ecbb9789d84dcb23c4941145436" | ||
| 5903 | - integrity sha1-Ntd7qwI7Dsu5eJ2E3LI8SUEUVDY= | 5826 | + version "7.0.2" |
| 5827 | + resolved "https://registry.npm.taobao.org/postcss-calc/download/postcss-calc-7.0.2.tgz?cache=0&sync_timestamp=1582014221563&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-calc%2Fdownload%2Fpostcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" | ||
| 5828 | + integrity sha1-UE780AjKAnMSBWiweSsWzc3oqsE= | ||
| 5904 | dependencies: | 5829 | dependencies: |
| 5905 | - css-unit-converter "^1.1.1" | ||
| 5906 | - postcss "^7.0.5" | ||
| 5907 | - postcss-selector-parser "^5.0.0-rc.4" | ||
| 5908 | - postcss-value-parser "^3.3.1" | 5830 | + postcss "^7.0.27" |
| 5831 | + postcss-selector-parser "^6.0.2" | ||
| 5832 | + postcss-value-parser "^4.0.2" | ||
| 5909 | 5833 | ||
| 5910 | postcss-colormin@^4.0.3: | 5834 | postcss-colormin@^4.0.3: |
| 5911 | version "4.0.3" | 5835 | version "4.0.3" |
| @@ -6051,10 +5975,10 @@ postcss-modules-local-by-default@^3.0.2: | @@ -6051,10 +5975,10 @@ postcss-modules-local-by-default@^3.0.2: | ||
| 6051 | postcss-selector-parser "^6.0.2" | 5975 | postcss-selector-parser "^6.0.2" |
| 6052 | postcss-value-parser "^4.0.0" | 5976 | postcss-value-parser "^4.0.0" |
| 6053 | 5977 | ||
| 6054 | -postcss-modules-scope@^2.1.0: | ||
| 6055 | - version "2.1.0" | ||
| 6056 | - resolved "https://registry.npm.taobao.org/postcss-modules-scope/download/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb" | ||
| 6057 | - integrity sha1-rT9b94VhFPb8q5AbBQLiorw51Os= | 5978 | +postcss-modules-scope@^2.2.0: |
| 5979 | + version "2.2.0" | ||
| 5980 | + resolved "https://registry.npm.taobao.org/postcss-modules-scope/download/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" | ||
| 5981 | + integrity sha1-OFyuATzHdD9afXYC0Qc6iequYu4= | ||
| 6058 | dependencies: | 5982 | dependencies: |
| 6059 | postcss "^7.0.6" | 5983 | postcss "^7.0.6" |
| 6060 | postcss-selector-parser "^6.0.0" | 5984 | postcss-selector-parser "^6.0.0" |
| @@ -6178,26 +6102,17 @@ postcss-reduce-transforms@^4.0.2: | @@ -6178,26 +6102,17 @@ postcss-reduce-transforms@^4.0.2: | ||
| 6178 | postcss-value-parser "^3.0.0" | 6102 | postcss-value-parser "^3.0.0" |
| 6179 | 6103 | ||
| 6180 | postcss-selector-parser@^3.0.0: | 6104 | postcss-selector-parser@^3.0.0: |
| 6181 | - version "3.1.1" | ||
| 6182 | - resolved "https://registry.npm.taobao.org/postcss-selector-parser/download/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865" | ||
| 6183 | - integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU= | ||
| 6184 | - dependencies: | ||
| 6185 | - dot-prop "^4.1.1" | ||
| 6186 | - indexes-of "^1.0.1" | ||
| 6187 | - uniq "^1.0.1" | ||
| 6188 | - | ||
| 6189 | -postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.4: | ||
| 6190 | - version "5.0.0" | ||
| 6191 | - resolved "https://registry.npm.taobao.org/postcss-selector-parser/download/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" | ||
| 6192 | - integrity sha1-JJBENWaXsztk8aj3yAki3d7nGVw= | 6105 | + version "3.1.2" |
| 6106 | + resolved "https://registry.npm.taobao.org/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" | ||
| 6107 | + integrity sha1-sxD1xMD9r3b5SQK7qjDbaqhPUnA= | ||
| 6193 | dependencies: | 6108 | dependencies: |
| 6194 | - cssesc "^2.0.0" | 6109 | + dot-prop "^5.2.0" |
| 6195 | indexes-of "^1.0.1" | 6110 | indexes-of "^1.0.1" |
| 6196 | uniq "^1.0.1" | 6111 | uniq "^1.0.1" |
| 6197 | 6112 | ||
| 6198 | postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: | 6113 | postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: |
| 6199 | version "6.0.2" | 6114 | version "6.0.2" |
| 6200 | - resolved "https://registry.npm.taobao.org/postcss-selector-parser/download/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" | 6115 | + resolved "https://registry.npm.taobao.org/postcss-selector-parser/download/postcss-selector-parser-6.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" |
| 6201 | integrity sha1-k0z3mdAWyDQRhZ4J3Oyt4BKG7Fw= | 6116 | integrity sha1-k0z3mdAWyDQRhZ4J3Oyt4BKG7Fw= |
| 6202 | dependencies: | 6117 | dependencies: |
| 6203 | cssesc "^3.0.0" | 6118 | cssesc "^3.0.0" |
| @@ -6223,20 +6138,20 @@ postcss-unique-selectors@^4.0.1: | @@ -6223,20 +6138,20 @@ postcss-unique-selectors@^4.0.1: | ||
| 6223 | postcss "^7.0.0" | 6138 | postcss "^7.0.0" |
| 6224 | uniqs "^2.0.0" | 6139 | uniqs "^2.0.0" |
| 6225 | 6140 | ||
| 6226 | -postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.1: | 6141 | +postcss-value-parser@^3.0.0: |
| 6227 | version "3.3.1" | 6142 | version "3.3.1" |
| 6228 | - resolved "https://registry.npm.taobao.org/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" | 6143 | + resolved "https://registry.npm.taobao.org/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz?cache=0&sync_timestamp=1588083303810&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-value-parser%2Fdownload%2Fpostcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" |
| 6229 | integrity sha1-n/giVH4okyE88cMO+lGsX9G6goE= | 6144 | integrity sha1-n/giVH4okyE88cMO+lGsX9G6goE= |
| 6230 | 6145 | ||
| 6231 | -postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2: | ||
| 6232 | - version "4.0.2" | ||
| 6233 | - resolved "https://registry.npm.taobao.org/postcss-value-parser/download/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9" | ||
| 6234 | - integrity sha1-SCKCwJpCcG0fyaBptz9E7Ag5Hck= | 6146 | +postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: |
| 6147 | + version "4.1.0" | ||
| 6148 | + resolved "https://registry.npm.taobao.org/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz?cache=0&sync_timestamp=1588083303810&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss-value-parser%2Fdownload%2Fpostcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" | ||
| 6149 | + integrity sha1-RD9qIM7WSBor2k+oUypuVdeJoss= | ||
| 6235 | 6150 | ||
| 6236 | -postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.5, postcss@^7.0.6: | ||
| 6237 | - version "7.0.18" | ||
| 6238 | - resolved "https://registry.npm.taobao.org/postcss/download/postcss-7.0.18.tgz?cache=0&sync_timestamp=1567726327608&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpostcss%2Fdownload%2Fpostcss-7.0.18.tgz#4b9cda95ae6c069c67a4d933029eddd4838ac233" | ||
| 6239 | - integrity sha1-S5zala5sBpxnpNkzAp7d1IOKwjM= | 6151 | +postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: |
| 6152 | + version "7.0.32" | ||
| 6153 | + resolved "https://registry.npm.taobao.org/postcss/download/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d" | ||
| 6154 | + integrity sha1-QxDW7jRwU9o0M9sr5JKIPWLOxZ0= | ||
| 6240 | dependencies: | 6155 | dependencies: |
| 6241 | chalk "^2.4.2" | 6156 | chalk "^2.4.2" |
| 6242 | source-map "^0.6.1" | 6157 | source-map "^0.6.1" |
| @@ -6252,10 +6167,10 @@ prepend-http@^1.0.0: | @@ -6252,10 +6167,10 @@ prepend-http@^1.0.0: | ||
| 6252 | resolved "https://registry.npm.taobao.org/prepend-http/download/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" | 6167 | resolved "https://registry.npm.taobao.org/prepend-http/download/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" |
| 6253 | integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= | 6168 | integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= |
| 6254 | 6169 | ||
| 6255 | -prettier@1.16.3: | ||
| 6256 | - version "1.16.3" | ||
| 6257 | - resolved "https://registry.npm.taobao.org/prettier/download/prettier-1.16.3.tgz#8c62168453badef702f34b45b6ee899574a6a65d" | ||
| 6258 | - integrity sha1-jGIWhFO63vcC80tFtu6JlXSmpl0= | 6170 | +prettier@^1.18.2: |
| 6171 | + version "1.19.1" | ||
| 6172 | + resolved "https://registry.npm.taobao.org/prettier/download/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" | ||
| 6173 | + integrity sha1-99f1/4qc2HKnvkyhQglZVqYHl8s= | ||
| 6259 | 6174 | ||
| 6260 | pretty-error@^2.0.2: | 6175 | pretty-error@^2.0.2: |
| 6261 | version "2.1.1" | 6176 | version "2.1.1" |
| @@ -6265,11 +6180,6 @@ pretty-error@^2.0.2: | @@ -6265,11 +6180,6 @@ pretty-error@^2.0.2: | ||
| 6265 | renderkid "^2.0.1" | 6180 | renderkid "^2.0.1" |
| 6266 | utila "~0.4" | 6181 | utila "~0.4" |
| 6267 | 6182 | ||
| 6268 | -private@^0.1.6: | ||
| 6269 | - version "0.1.8" | ||
| 6270 | - resolved "https://registry.npm.taobao.org/private/download/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" | ||
| 6271 | - integrity sha1-I4Hts2ifelPWUxkAYPz4ItLzaP8= | ||
| 6272 | - | ||
| 6273 | process-nextick-args@~2.0.0: | 6183 | process-nextick-args@~2.0.0: |
| 6274 | version "2.0.1" | 6184 | version "2.0.1" |
| 6275 | resolved "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" | 6185 | resolved "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" |
| @@ -6286,12 +6196,12 @@ promise-inflight@^1.0.1: | @@ -6286,12 +6196,12 @@ promise-inflight@^1.0.1: | ||
| 6286 | integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= | 6196 | integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= |
| 6287 | 6197 | ||
| 6288 | proxy-addr@~2.0.5: | 6198 | proxy-addr@~2.0.5: |
| 6289 | - version "2.0.5" | ||
| 6290 | - resolved "https://registry.npm.taobao.org/proxy-addr/download/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" | ||
| 6291 | - integrity sha1-NMvWSi2B9LH9IedvnwbIpFKZ7jQ= | 6199 | + version "2.0.6" |
| 6200 | + resolved "https://registry.npm.taobao.org/proxy-addr/download/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" | ||
| 6201 | + integrity sha1-/cIzZQVEfT8vLGOO0nLK9hS7sr8= | ||
| 6292 | dependencies: | 6202 | dependencies: |
| 6293 | forwarded "~0.1.2" | 6203 | forwarded "~0.1.2" |
| 6294 | - ipaddr.js "1.9.0" | 6204 | + ipaddr.js "1.9.1" |
| 6295 | 6205 | ||
| 6296 | prr@~1.0.1: | 6206 | prr@~1.0.1: |
| 6297 | version "1.0.1" | 6207 | version "1.0.1" |
| @@ -6303,10 +6213,10 @@ pseudomap@^1.0.2: | @@ -6303,10 +6213,10 @@ pseudomap@^1.0.2: | ||
| 6303 | resolved "https://registry.npm.taobao.org/pseudomap/download/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" | 6213 | resolved "https://registry.npm.taobao.org/pseudomap/download/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" |
| 6304 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= | 6214 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= |
| 6305 | 6215 | ||
| 6306 | -psl@^1.1.24, psl@^1.1.28: | ||
| 6307 | - version "1.4.0" | ||
| 6308 | - resolved "https://registry.npm.taobao.org/psl/download/psl-1.4.0.tgz#5dd26156cdb69fa1fdb8ab1991667d3f80ced7c2" | ||
| 6309 | - integrity sha1-XdJhVs22n6H9uKsZkWZ9P4DO18I= | 6216 | +psl@^1.1.28: |
| 6217 | + version "1.8.0" | ||
| 6218 | + resolved "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" | ||
| 6219 | + integrity sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ= | ||
| 6310 | 6220 | ||
| 6311 | public-encrypt@^4.0.0: | 6221 | public-encrypt@^4.0.0: |
| 6312 | version "4.0.3" | 6222 | version "4.0.3" |
| @@ -6338,7 +6248,7 @@ pump@^3.0.0: | @@ -6338,7 +6248,7 @@ pump@^3.0.0: | ||
| 6338 | 6248 | ||
| 6339 | pumpify@^1.3.3: | 6249 | pumpify@^1.3.3: |
| 6340 | version "1.5.1" | 6250 | version "1.5.1" |
| 6341 | - resolved "https://registry.npm.taobao.org/pumpify/download/pumpify-1.5.1.tgz?cache=0&sync_timestamp=1569938104994&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpumpify%2Fdownload%2Fpumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" | 6251 | + resolved "https://registry.npm.taobao.org/pumpify/download/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" |
| 6342 | integrity sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4= | 6252 | integrity sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4= |
| 6343 | dependencies: | 6253 | dependencies: |
| 6344 | duplexify "^3.6.0" | 6254 | duplexify "^3.6.0" |
| @@ -6350,7 +6260,7 @@ punycode@1.3.2: | @@ -6350,7 +6260,7 @@ punycode@1.3.2: | ||
| 6350 | resolved "https://registry.npm.taobao.org/punycode/download/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" | 6260 | resolved "https://registry.npm.taobao.org/punycode/download/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" |
| 6351 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= | 6261 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= |
| 6352 | 6262 | ||
| 6353 | -punycode@^1.2.4, punycode@^1.4.1: | 6263 | +punycode@^1.2.4: |
| 6354 | version "1.4.1" | 6264 | version "1.4.1" |
| 6355 | resolved "https://registry.npm.taobao.org/punycode/download/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" | 6265 | resolved "https://registry.npm.taobao.org/punycode/download/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" |
| 6356 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= | 6266 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= |
| @@ -6377,7 +6287,7 @@ qs@~6.5.2: | @@ -6377,7 +6287,7 @@ qs@~6.5.2: | ||
| 6377 | 6287 | ||
| 6378 | query-string@^4.1.0: | 6288 | query-string@^4.1.0: |
| 6379 | version "4.3.4" | 6289 | version "4.3.4" |
| 6380 | - resolved "https://registry.npm.taobao.org/query-string/download/query-string-4.3.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fquery-string%2Fdownload%2Fquery-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" | 6290 | + resolved "https://registry.npm.taobao.org/query-string/download/query-string-4.3.4.tgz?cache=0&sync_timestamp=1591853388817&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fquery-string%2Fdownload%2Fquery-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" |
| 6381 | integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= | 6291 | integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= |
| 6382 | dependencies: | 6292 | dependencies: |
| 6383 | object-assign "^4.1.0" | 6293 | object-assign "^4.1.0" |
| @@ -6398,7 +6308,7 @@ querystringify@^2.1.1: | @@ -6398,7 +6308,7 @@ querystringify@^2.1.1: | ||
| 6398 | resolved "https://registry.npm.taobao.org/querystringify/download/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" | 6308 | resolved "https://registry.npm.taobao.org/querystringify/download/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" |
| 6399 | integrity sha1-YOWl/WSn+L+k0qsu1v30yFutFU4= | 6309 | integrity sha1-YOWl/WSn+L+k0qsu1v30yFutFU4= |
| 6400 | 6310 | ||
| 6401 | -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: | 6311 | +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: |
| 6402 | version "2.1.0" | 6312 | version "2.1.0" |
| 6403 | resolved "https://registry.npm.taobao.org/randombytes/download/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" | 6313 | resolved "https://registry.npm.taobao.org/randombytes/download/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" |
| 6404 | integrity sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo= | 6314 | integrity sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo= |
| @@ -6428,16 +6338,6 @@ raw-body@2.4.0: | @@ -6428,16 +6338,6 @@ raw-body@2.4.0: | ||
| 6428 | iconv-lite "0.4.24" | 6338 | iconv-lite "0.4.24" |
| 6429 | unpipe "1.0.0" | 6339 | unpipe "1.0.0" |
| 6430 | 6340 | ||
| 6431 | -rc@^1.2.7: | ||
| 6432 | - version "1.2.8" | ||
| 6433 | - resolved "https://registry.npm.taobao.org/rc/download/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" | ||
| 6434 | - integrity sha1-zZJL9SAKB1uDwYjNa54hG3/A0+0= | ||
| 6435 | - dependencies: | ||
| 6436 | - deep-extend "^0.6.0" | ||
| 6437 | - ini "~1.3.0" | ||
| 6438 | - minimist "^1.2.0" | ||
| 6439 | - strip-json-comments "~2.0.1" | ||
| 6440 | - | ||
| 6441 | read-pkg@^5.1.1: | 6341 | read-pkg@^5.1.1: |
| 6442 | version "5.2.0" | 6342 | version "5.2.0" |
| 6443 | resolved "https://registry.npm.taobao.org/read-pkg/download/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" | 6343 | resolved "https://registry.npm.taobao.org/read-pkg/download/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" |
| @@ -6448,10 +6348,10 @@ read-pkg@^5.1.1: | @@ -6448,10 +6348,10 @@ read-pkg@^5.1.1: | ||
| 6448 | parse-json "^5.0.0" | 6348 | parse-json "^5.0.0" |
| 6449 | type-fest "^0.6.0" | 6349 | type-fest "^0.6.0" |
| 6450 | 6350 | ||
| 6451 | -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: | ||
| 6452 | - version "2.3.6" | ||
| 6453 | - resolved "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" | ||
| 6454 | - integrity sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8= | 6351 | +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: |
| 6352 | + version "2.3.7" | ||
| 6353 | + resolved "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" | ||
| 6354 | + integrity sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c= | ||
| 6455 | dependencies: | 6355 | dependencies: |
| 6456 | core-util-is "~1.0.0" | 6356 | core-util-is "~1.0.0" |
| 6457 | inherits "~2.0.3" | 6357 | inherits "~2.0.3" |
| @@ -6471,10 +6371,10 @@ readable-stream@1.1: | @@ -6471,10 +6371,10 @@ readable-stream@1.1: | ||
| 6471 | isarray "0.0.1" | 6371 | isarray "0.0.1" |
| 6472 | string_decoder "~0.10.x" | 6372 | string_decoder "~0.10.x" |
| 6473 | 6373 | ||
| 6474 | -readable-stream@^3.0.6, readable-stream@^3.1.1: | ||
| 6475 | - version "3.4.0" | ||
| 6476 | - resolved "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" | ||
| 6477 | - integrity sha1-pRwmdUZY4KPCHb9ZFjvUW6b0R/w= | 6374 | +readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.6.0: |
| 6375 | + version "3.6.0" | ||
| 6376 | + resolved "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" | ||
| 6377 | + integrity sha1-M3u9o63AcGvT4CRCaihtS0sskZg= | ||
| 6478 | dependencies: | 6378 | dependencies: |
| 6479 | inherits "^2.0.3" | 6379 | inherits "^2.0.3" |
| 6480 | string_decoder "^1.1.1" | 6380 | string_decoder "^1.1.1" |
| @@ -6482,48 +6382,48 @@ readable-stream@^3.0.6, readable-stream@^3.1.1: | @@ -6482,48 +6382,48 @@ readable-stream@^3.0.6, readable-stream@^3.1.1: | ||
| 6482 | 6382 | ||
| 6483 | readdirp@^2.2.1: | 6383 | readdirp@^2.2.1: |
| 6484 | version "2.2.1" | 6384 | version "2.2.1" |
| 6485 | - resolved "https://registry.npm.taobao.org/readdirp/download/readdirp-2.2.1.tgz?cache=0&sync_timestamp=1571011688765&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freaddirp%2Fdownload%2Freaddirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" | 6385 | + resolved "https://registry.npm.taobao.org/readdirp/download/readdirp-2.2.1.tgz?cache=0&sync_timestamp=1584985910691&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freaddirp%2Fdownload%2Freaddirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" |
| 6486 | integrity sha1-DodiKjMlqjPokihcr4tOhGUppSU= | 6386 | integrity sha1-DodiKjMlqjPokihcr4tOhGUppSU= |
| 6487 | dependencies: | 6387 | dependencies: |
| 6488 | graceful-fs "^4.1.11" | 6388 | graceful-fs "^4.1.11" |
| 6489 | micromatch "^3.1.10" | 6389 | micromatch "^3.1.10" |
| 6490 | readable-stream "^2.0.2" | 6390 | readable-stream "^2.0.2" |
| 6491 | 6391 | ||
| 6492 | -readdirp@~3.2.0: | ||
| 6493 | - version "3.2.0" | ||
| 6494 | - resolved "https://registry.npm.taobao.org/readdirp/download/readdirp-3.2.0.tgz?cache=0&sync_timestamp=1571011688765&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freaddirp%2Fdownload%2Freaddirp-3.2.0.tgz#c30c33352b12c96dfb4b895421a49fd5a9593839" | ||
| 6495 | - integrity sha1-wwwzNSsSyW37S4lUIaSf1alZODk= | 6392 | +readdirp@~3.4.0: |
| 6393 | + version "3.4.0" | ||
| 6394 | + resolved "https://registry.npm.taobao.org/readdirp/download/readdirp-3.4.0.tgz?cache=0&sync_timestamp=1584985910691&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freaddirp%2Fdownload%2Freaddirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" | ||
| 6395 | + integrity sha1-n9zN+ekVWAVEkiGsZF6DA6tbmto= | ||
| 6496 | dependencies: | 6396 | dependencies: |
| 6497 | - picomatch "^2.0.4" | 6397 | + picomatch "^2.2.1" |
| 6498 | 6398 | ||
| 6499 | -regenerate-unicode-properties@^8.1.0: | ||
| 6500 | - version "8.1.0" | ||
| 6501 | - resolved "https://registry.npm.taobao.org/regenerate-unicode-properties/download/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" | ||
| 6502 | - integrity sha1-71Hg8OpK1CS3e/fLQfPgFccKPw4= | 6399 | +regenerate-unicode-properties@^8.2.0: |
| 6400 | + version "8.2.0" | ||
| 6401 | + resolved "https://registry.npm.taobao.org/regenerate-unicode-properties/download/regenerate-unicode-properties-8.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerate-unicode-properties%2Fdownload%2Fregenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" | ||
| 6402 | + integrity sha1-5d5xEdZV57pgwFfb6f83yH5lzew= | ||
| 6503 | dependencies: | 6403 | dependencies: |
| 6504 | regenerate "^1.4.0" | 6404 | regenerate "^1.4.0" |
| 6505 | 6405 | ||
| 6506 | regenerate@^1.4.0: | 6406 | regenerate@^1.4.0: |
| 6507 | - version "1.4.0" | ||
| 6508 | - resolved "https://registry.npm.taobao.org/regenerate/download/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" | ||
| 6509 | - integrity sha1-SoVuxLVuQHfFV1icroXnpMiGmhE= | 6407 | + version "1.4.1" |
| 6408 | + resolved "https://registry.npm.taobao.org/regenerate/download/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f" | ||
| 6409 | + integrity sha1-ytkq2Oa1kXc0hfvgWkhcr09Ffm8= | ||
| 6510 | 6410 | ||
| 6511 | regenerator-runtime@^0.11.0: | 6411 | regenerator-runtime@^0.11.0: |
| 6512 | version "0.11.1" | 6412 | version "0.11.1" |
| 6513 | - resolved "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" | 6413 | + resolved "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz?cache=0&sync_timestamp=1584052597708&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" |
| 6514 | integrity sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk= | 6414 | integrity sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk= |
| 6515 | 6415 | ||
| 6516 | -regenerator-runtime@^0.13.2: | ||
| 6517 | - version "0.13.3" | ||
| 6518 | - resolved "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" | ||
| 6519 | - integrity sha1-fPanfY9cb2Drc8X8GVWyzrAea/U= | 6416 | +regenerator-runtime@^0.13.4: |
| 6417 | + version "0.13.5" | ||
| 6418 | + resolved "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.5.tgz?cache=0&sync_timestamp=1584052597708&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" | ||
| 6419 | + integrity sha1-2Hih0JS0MG0QuQlkhLM+vVXiZpc= | ||
| 6520 | 6420 | ||
| 6521 | -regenerator-transform@^0.14.0: | ||
| 6522 | - version "0.14.1" | ||
| 6523 | - resolved "https://registry.npm.taobao.org/regenerator-transform/download/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" | ||
| 6524 | - integrity sha1-Oy/OThq3cywI9mXf2zFHScfd0vs= | 6421 | +regenerator-transform@^0.14.2: |
| 6422 | + version "0.14.5" | ||
| 6423 | + resolved "https://registry.npm.taobao.org/regenerator-transform/download/regenerator-transform-0.14.5.tgz?cache=0&sync_timestamp=1593557570099&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-transform%2Fdownload%2Fregenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" | ||
| 6424 | + integrity sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ= | ||
| 6525 | dependencies: | 6425 | dependencies: |
| 6526 | - private "^0.1.6" | 6426 | + "@babel/runtime" "^7.8.4" |
| 6527 | 6427 | ||
| 6528 | regex-not@^1.0.0, regex-not@^1.0.2: | 6428 | regex-not@^1.0.0, regex-not@^1.0.2: |
| 6529 | version "1.0.2" | 6429 | version "1.0.2" |
| @@ -6534,33 +6434,34 @@ regex-not@^1.0.0, regex-not@^1.0.2: | @@ -6534,33 +6434,34 @@ regex-not@^1.0.0, regex-not@^1.0.2: | ||
| 6534 | safe-regex "^1.1.0" | 6434 | safe-regex "^1.1.0" |
| 6535 | 6435 | ||
| 6536 | regexp.prototype.flags@^1.2.0: | 6436 | regexp.prototype.flags@^1.2.0: |
| 6537 | - version "1.2.0" | ||
| 6538 | - resolved "https://registry.npm.taobao.org/regexp.prototype.flags/download/regexp.prototype.flags-1.2.0.tgz#6b30724e306a27833eeb171b66ac8890ba37e41c" | ||
| 6539 | - integrity sha1-azByTjBqJ4M+6xcbZqyIkLo35Bw= | 6437 | + version "1.3.0" |
| 6438 | + resolved "https://registry.npm.taobao.org/regexp.prototype.flags/download/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" | ||
| 6439 | + integrity sha1-erqJs8E6ZFCdq888qNn7ub31y3U= | ||
| 6540 | dependencies: | 6440 | dependencies: |
| 6541 | - define-properties "^1.1.2" | 6441 | + define-properties "^1.1.3" |
| 6442 | + es-abstract "^1.17.0-next.1" | ||
| 6542 | 6443 | ||
| 6543 | -regexpu-core@^4.6.0: | ||
| 6544 | - version "4.6.0" | ||
| 6545 | - resolved "https://registry.npm.taobao.org/regexpu-core/download/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" | ||
| 6546 | - integrity sha1-IDfBizJ8/Oim/qKk7EQfJDKvuLY= | 6444 | +regexpu-core@^4.7.0: |
| 6445 | + version "4.7.0" | ||
| 6446 | + resolved "https://registry.npm.taobao.org/regexpu-core/download/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" | ||
| 6447 | + integrity sha1-/L9FjFBDGwu3tF1pZ7gZLZHz2Tg= | ||
| 6547 | dependencies: | 6448 | dependencies: |
| 6548 | regenerate "^1.4.0" | 6449 | regenerate "^1.4.0" |
| 6549 | - regenerate-unicode-properties "^8.1.0" | ||
| 6550 | - regjsgen "^0.5.0" | ||
| 6551 | - regjsparser "^0.6.0" | 6450 | + regenerate-unicode-properties "^8.2.0" |
| 6451 | + regjsgen "^0.5.1" | ||
| 6452 | + regjsparser "^0.6.4" | ||
| 6552 | unicode-match-property-ecmascript "^1.0.4" | 6453 | unicode-match-property-ecmascript "^1.0.4" |
| 6553 | - unicode-match-property-value-ecmascript "^1.1.0" | 6454 | + unicode-match-property-value-ecmascript "^1.2.0" |
| 6554 | 6455 | ||
| 6555 | -regjsgen@^0.5.0: | ||
| 6556 | - version "0.5.1" | ||
| 6557 | - resolved "https://registry.npm.taobao.org/regjsgen/download/regjsgen-0.5.1.tgz?cache=0&sync_timestamp=1571560326473&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregjsgen%2Fdownload%2Fregjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" | ||
| 6558 | - integrity sha1-SPC/Gl6iBRlpKcDZeYtC0e2YRDw= | 6456 | +regjsgen@^0.5.1: |
| 6457 | + version "0.5.2" | ||
| 6458 | + resolved "https://registry.npm.taobao.org/regjsgen/download/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" | ||
| 6459 | + integrity sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM= | ||
| 6559 | 6460 | ||
| 6560 | -regjsparser@^0.6.0: | ||
| 6561 | - version "0.6.0" | ||
| 6562 | - resolved "https://registry.npm.taobao.org/regjsparser/download/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" | ||
| 6563 | - integrity sha1-8eaui32iuulsmTmbhozWyTOiupw= | 6461 | +regjsparser@^0.6.4: |
| 6462 | + version "0.6.4" | ||
| 6463 | + resolved "https://registry.npm.taobao.org/regjsparser/download/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" | ||
| 6464 | + integrity sha1-p2n4aEMIQBpm6bUp0kNv9NBmYnI= | ||
| 6564 | dependencies: | 6465 | dependencies: |
| 6565 | jsesc "~0.5.0" | 6466 | jsesc "~0.5.0" |
| 6566 | 6467 | ||
| @@ -6595,26 +6496,10 @@ repeat-string@^1.6.1: | @@ -6595,26 +6496,10 @@ repeat-string@^1.6.1: | ||
| 6595 | resolved "https://registry.npm.taobao.org/repeat-string/download/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" | 6496 | resolved "https://registry.npm.taobao.org/repeat-string/download/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" |
| 6596 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= | 6497 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= |
| 6597 | 6498 | ||
| 6598 | -request-promise-core@1.1.2: | ||
| 6599 | - version "1.1.2" | ||
| 6600 | - resolved "https://registry.npm.taobao.org/request-promise-core/download/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" | ||
| 6601 | - integrity sha1-M59qq6vK/bMceZ/xWHADNjAdM0Y= | ||
| 6602 | - dependencies: | ||
| 6603 | - lodash "^4.17.11" | ||
| 6604 | - | ||
| 6605 | -request-promise-native@^1.0.7: | ||
| 6606 | - version "1.0.7" | ||
| 6607 | - resolved "https://registry.npm.taobao.org/request-promise-native/download/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" | ||
| 6608 | - integrity sha1-pJhopiS96lBp8SUdCoNuDYmqLFk= | ||
| 6609 | - dependencies: | ||
| 6610 | - request-promise-core "1.1.2" | ||
| 6611 | - stealthy-require "^1.1.1" | ||
| 6612 | - tough-cookie "^2.3.3" | ||
| 6613 | - | ||
| 6614 | -request@^2.55.0, request@^2.87.0: | ||
| 6615 | - version "2.88.0" | ||
| 6616 | - resolved "https://registry.npm.taobao.org/request/download/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" | ||
| 6617 | - integrity sha1-nC/KT301tZLv5Xx/ClXoEFIST+8= | 6499 | +request@^2.55.0, request@^2.88.2: |
| 6500 | + version "2.88.2" | ||
| 6501 | + resolved "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1581439006948&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" | ||
| 6502 | + integrity sha1-1zyRhzHLWofaBH4gcjQUb2ZNErM= | ||
| 6618 | dependencies: | 6503 | dependencies: |
| 6619 | aws-sign2 "~0.7.0" | 6504 | aws-sign2 "~0.7.0" |
| 6620 | aws4 "^1.8.0" | 6505 | aws4 "^1.8.0" |
| @@ -6623,7 +6508,7 @@ request@^2.55.0, request@^2.87.0: | @@ -6623,7 +6508,7 @@ request@^2.55.0, request@^2.87.0: | ||
| 6623 | extend "~3.0.2" | 6508 | extend "~3.0.2" |
| 6624 | forever-agent "~0.6.1" | 6509 | forever-agent "~0.6.1" |
| 6625 | form-data "~2.3.2" | 6510 | form-data "~2.3.2" |
| 6626 | - har-validator "~5.1.0" | 6511 | + har-validator "~5.1.3" |
| 6627 | http-signature "~1.2.0" | 6512 | http-signature "~1.2.0" |
| 6628 | is-typedarray "~1.0.0" | 6513 | is-typedarray "~1.0.0" |
| 6629 | isstream "~0.1.2" | 6514 | isstream "~0.1.2" |
| @@ -6633,7 +6518,7 @@ request@^2.55.0, request@^2.87.0: | @@ -6633,7 +6518,7 @@ request@^2.55.0, request@^2.87.0: | ||
| 6633 | performance-now "^2.1.0" | 6518 | performance-now "^2.1.0" |
| 6634 | qs "~6.5.2" | 6519 | qs "~6.5.2" |
| 6635 | safe-buffer "^5.1.2" | 6520 | safe-buffer "^5.1.2" |
| 6636 | - tough-cookie "~2.4.3" | 6521 | + tough-cookie "~2.5.0" |
| 6637 | tunnel-agent "^0.6.0" | 6522 | tunnel-agent "^0.6.0" |
| 6638 | uuid "^3.3.2" | 6523 | uuid "^3.3.2" |
| 6639 | 6524 | ||
| @@ -6642,11 +6527,6 @@ require-directory@^2.1.1: | @@ -6642,11 +6527,6 @@ require-directory@^2.1.1: | ||
| 6642 | resolved "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" | 6527 | resolved "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" |
| 6643 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= | 6528 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= |
| 6644 | 6529 | ||
| 6645 | -require-main-filename@^1.0.1: | ||
| 6646 | - version "1.0.1" | ||
| 6647 | - resolved "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" | ||
| 6648 | - integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= | ||
| 6649 | - | ||
| 6650 | require-main-filename@^2.0.0: | 6530 | require-main-filename@^2.0.0: |
| 6651 | version "2.0.0" | 6531 | version "2.0.0" |
| 6652 | resolved "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" | 6532 | resolved "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" |
| @@ -6657,11 +6537,6 @@ requires-port@^1.0.0: | @@ -6657,11 +6537,6 @@ requires-port@^1.0.0: | ||
| 6657 | resolved "https://registry.npm.taobao.org/requires-port/download/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" | 6537 | resolved "https://registry.npm.taobao.org/requires-port/download/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" |
| 6658 | integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= | 6538 | integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= |
| 6659 | 6539 | ||
| 6660 | -reselect@^3.0.1: | ||
| 6661 | - version "3.0.1" | ||
| 6662 | - resolved "https://registry.npm.taobao.org/reselect/download/reselect-3.0.1.tgz#efdaa98ea7451324d092b2b2163a6a1d7a9a2147" | ||
| 6663 | - integrity sha1-79qpjqdFEyTQkrKyFjpqHXqaIUc= | ||
| 6664 | - | ||
| 6665 | resize-observer-polyfill@^1.5.0: | 6540 | resize-observer-polyfill@^1.5.0: |
| 6666 | version "1.5.1" | 6541 | version "1.5.1" |
| 6667 | resolved "https://registry.npm.taobao.org/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" | 6542 | resolved "https://registry.npm.taobao.org/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" |
| @@ -6681,13 +6556,13 @@ resolve-from@^3.0.0: | @@ -6681,13 +6556,13 @@ resolve-from@^3.0.0: | ||
| 6681 | 6556 | ||
| 6682 | resolve-url@^0.2.1: | 6557 | resolve-url@^0.2.1: |
| 6683 | version "0.2.1" | 6558 | version "0.2.1" |
| 6684 | - resolved "https://registry.npm.taobao.org/resolve-url/download/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" | 6559 | + resolved "https://registry.npm.taobao.org/resolve-url/download/resolve-url-0.2.1.tgz?cache=0&sync_timestamp=1585438700247&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve-url%2Fdownload%2Fresolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" |
| 6685 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= | 6560 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= |
| 6686 | 6561 | ||
| 6687 | -resolve@^1.10.0, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.8.1: | ||
| 6688 | - version "1.12.0" | ||
| 6689 | - resolved "https://registry.npm.taobao.org/resolve/download/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" | ||
| 6690 | - integrity sha1-P8ZEo1yEpIVUYJ/ybsUrZvpXffY= | 6562 | +resolve@^1.10.0, resolve@^1.3.2, resolve@^1.8.1: |
| 6563 | + version "1.17.0" | ||
| 6564 | + resolved "https://registry.npm.taobao.org/resolve/download/resolve-1.17.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" | ||
| 6565 | + integrity sha1-sllBtUloIxzC0bt2p5y38sC/hEQ= | ||
| 6691 | dependencies: | 6566 | dependencies: |
| 6692 | path-parse "^1.0.6" | 6567 | path-parse "^1.0.6" |
| 6693 | 6568 | ||
| @@ -6719,7 +6594,7 @@ rgba-regex@^1.0.0: | @@ -6719,7 +6594,7 @@ rgba-regex@^1.0.0: | ||
| 6719 | resolved "https://registry.npm.taobao.org/rgba-regex/download/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" | 6594 | resolved "https://registry.npm.taobao.org/rgba-regex/download/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" |
| 6720 | integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= | 6595 | integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= |
| 6721 | 6596 | ||
| 6722 | -rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1: | 6597 | +rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: |
| 6723 | version "2.7.1" | 6598 | version "2.7.1" |
| 6724 | resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" | 6599 | resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" |
| 6725 | integrity sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w= | 6600 | integrity sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w= |
| @@ -6746,10 +6621,10 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: | @@ -6746,10 +6621,10 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: | ||
| 6746 | resolved "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" | 6621 | resolved "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" |
| 6747 | integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0= | 6622 | integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0= |
| 6748 | 6623 | ||
| 6749 | -safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: | ||
| 6750 | - version "5.2.0" | ||
| 6751 | - resolved "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" | ||
| 6752 | - integrity sha1-t02uxJsRSPiMZLaNSbHoFcHy9Rk= | 6624 | +safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: |
| 6625 | + version "5.2.1" | ||
| 6626 | + resolved "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" | ||
| 6627 | + integrity sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY= | ||
| 6753 | 6628 | ||
| 6754 | safe-regex@^1.1.0: | 6629 | safe-regex@^1.1.0: |
| 6755 | version "1.1.0" | 6630 | version "1.1.0" |
| @@ -6763,44 +6638,45 @@ safe-regex@^1.1.0: | @@ -6763,44 +6638,45 @@ safe-regex@^1.1.0: | ||
| 6763 | resolved "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | 6638 | resolved "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" |
| 6764 | integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo= | 6639 | integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo= |
| 6765 | 6640 | ||
| 6766 | -sass-loader@^8.0.0: | ||
| 6767 | - version "8.0.0" | ||
| 6768 | - resolved "https://registry.npm.taobao.org/sass-loader/download/sass-loader-8.0.0.tgz#e7b07a3e357f965e6b03dd45b016b0a9746af797" | ||
| 6769 | - integrity sha1-57B6PjV/ll5rA91FsBawqXRq95c= | 6641 | +sass-loader@^9.0.2: |
| 6642 | + version "9.0.2" | ||
| 6643 | + resolved "https://registry.npm.taobao.org/sass-loader/download/sass-loader-9.0.2.tgz?cache=0&sync_timestamp=1594134195137&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsass-loader%2Fdownload%2Fsass-loader-9.0.2.tgz#847c9b4c95328ddc8c7d35cf28c9d6e54e59a90b" | ||
| 6644 | + integrity sha1-hHybTJUyjdyMfTXPKMnW5U5ZqQs= | ||
| 6770 | dependencies: | 6645 | dependencies: |
| 6771 | - clone-deep "^4.0.1" | ||
| 6772 | - loader-utils "^1.2.3" | 6646 | + klona "^1.1.1" |
| 6647 | + loader-utils "^2.0.0" | ||
| 6773 | neo-async "^2.6.1" | 6648 | neo-async "^2.6.1" |
| 6774 | - schema-utils "^2.1.0" | ||
| 6775 | - semver "^6.3.0" | 6649 | + schema-utils "^2.7.0" |
| 6650 | + semver "^7.3.2" | ||
| 6776 | 6651 | ||
| 6777 | -sass@^1.23.0: | ||
| 6778 | - version "1.23.0" | ||
| 6779 | - resolved "https://registry.npm.taobao.org/sass/download/sass-1.23.0.tgz#bd526ff40dbc5d09a4ed69e2cffa849749977710" | ||
| 6780 | - integrity sha1-vVJv9A28XQmk7Wniz/qEl0mXdxA= | 6652 | +sass@^1.26.10: |
| 6653 | + version "1.26.10" | ||
| 6654 | + resolved "https://registry.npm.taobao.org/sass/download/sass-1.26.10.tgz#851d126021cdc93decbf201d1eca2a20ee434760" | ||
| 6655 | + integrity sha1-hR0SYCHNyT3svyAdHsoqIO5DR2A= | ||
| 6781 | dependencies: | 6656 | dependencies: |
| 6782 | chokidar ">=2.0.0 <4.0.0" | 6657 | chokidar ">=2.0.0 <4.0.0" |
| 6783 | 6658 | ||
| 6784 | -sax@^1.1.4, sax@^1.2.4, sax@~1.2.4: | 6659 | +sax@^1.1.4, sax@~1.2.4: |
| 6785 | version "1.2.4" | 6660 | version "1.2.4" |
| 6786 | resolved "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" | 6661 | resolved "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" |
| 6787 | integrity sha1-KBYjTiN4vdxOU1T6tcqold9xANk= | 6662 | integrity sha1-KBYjTiN4vdxOU1T6tcqold9xANk= |
| 6788 | 6663 | ||
| 6789 | schema-utils@^1.0.0: | 6664 | schema-utils@^1.0.0: |
| 6790 | version "1.0.0" | 6665 | version "1.0.0" |
| 6791 | - resolved "https://registry.npm.taobao.org/schema-utils/download/schema-utils-1.0.0.tgz?cache=0&sync_timestamp=1571141316329&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fschema-utils%2Fdownload%2Fschema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" | 6666 | + resolved "https://registry.npm.taobao.org/schema-utils/download/schema-utils-1.0.0.tgz?cache=0&sync_timestamp=1590761195120&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fschema-utils%2Fdownload%2Fschema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" |
| 6792 | integrity sha1-C3mpMgTXtgDUsoUNH2bCo0lRx3A= | 6667 | integrity sha1-C3mpMgTXtgDUsoUNH2bCo0lRx3A= |
| 6793 | dependencies: | 6668 | dependencies: |
| 6794 | ajv "^6.1.0" | 6669 | ajv "^6.1.0" |
| 6795 | ajv-errors "^1.0.0" | 6670 | ajv-errors "^1.0.0" |
| 6796 | ajv-keywords "^3.1.0" | 6671 | ajv-keywords "^3.1.0" |
| 6797 | 6672 | ||
| 6798 | -schema-utils@^2.0.0, schema-utils@^2.1.0, schema-utils@^2.4.1: | ||
| 6799 | - version "2.5.0" | ||
| 6800 | - resolved "https://registry.npm.taobao.org/schema-utils/download/schema-utils-2.5.0.tgz?cache=0&sync_timestamp=1571141316329&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fschema-utils%2Fdownload%2Fschema-utils-2.5.0.tgz#8f254f618d402cc80257486213c8970edfd7c22f" | ||
| 6801 | - integrity sha1-jyVPYY1ALMgCV0hiE8iXDt/Xwi8= | 6673 | +schema-utils@^2.0.0, schema-utils@^2.5.0, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0: |
| 6674 | + version "2.7.0" | ||
| 6675 | + resolved "https://registry.npm.taobao.org/schema-utils/download/schema-utils-2.7.0.tgz?cache=0&sync_timestamp=1590761195120&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fschema-utils%2Fdownload%2Fschema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" | ||
| 6676 | + integrity sha1-FxUfdtjq5n+793lgwzxnatn078c= | ||
| 6802 | dependencies: | 6677 | dependencies: |
| 6803 | - ajv "^6.10.2" | 6678 | + "@types/json-schema" "^7.0.4" |
| 6679 | + ajv "^6.12.2" | ||
| 6804 | ajv-keywords "^3.4.1" | 6680 | ajv-keywords "^3.4.1" |
| 6805 | 6681 | ||
| 6806 | select-hose@^2.0.0: | 6682 | select-hose@^2.0.0: |
| @@ -6815,16 +6691,26 @@ selfsigned@^1.10.7: | @@ -6815,16 +6691,26 @@ selfsigned@^1.10.7: | ||
| 6815 | dependencies: | 6691 | dependencies: |
| 6816 | node-forge "0.9.0" | 6692 | node-forge "0.9.0" |
| 6817 | 6693 | ||
| 6818 | -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: | 6694 | +"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: |
| 6819 | version "5.7.1" | 6695 | version "5.7.1" |
| 6820 | - resolved "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" | 6696 | + resolved "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" |
| 6821 | integrity sha1-qVT5Ma66UI0we78Gnv8MAclhFvc= | 6697 | integrity sha1-qVT5Ma66UI0we78Gnv8MAclhFvc= |
| 6822 | 6698 | ||
| 6699 | +semver@7.0.0: | ||
| 6700 | + version "7.0.0" | ||
| 6701 | + resolved "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" | ||
| 6702 | + integrity sha1-XzyjV2HkfgWyBsba/yz4FPAxa44= | ||
| 6703 | + | ||
| 6823 | semver@^6.0.0, semver@^6.1.0, semver@^6.3.0: | 6704 | semver@^6.0.0, semver@^6.1.0, semver@^6.3.0: |
| 6824 | version "6.3.0" | 6705 | version "6.3.0" |
| 6825 | - resolved "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" | 6706 | + resolved "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" |
| 6826 | integrity sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0= | 6707 | integrity sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0= |
| 6827 | 6708 | ||
| 6709 | +semver@^7.3.2: | ||
| 6710 | + version "7.3.2" | ||
| 6711 | + resolved "https://registry.npm.taobao.org/semver/download/semver-7.3.2.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" | ||
| 6712 | + integrity sha1-YElisFK4HtB4aq6EOJ/7pw/9OTg= | ||
| 6713 | + | ||
| 6828 | send@0.17.1: | 6714 | send@0.17.1: |
| 6829 | version "0.17.1" | 6715 | version "0.17.1" |
| 6830 | resolved "https://registry.npm.taobao.org/send/download/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" | 6716 | resolved "https://registry.npm.taobao.org/send/download/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" |
| @@ -6844,15 +6730,17 @@ send@0.17.1: | @@ -6844,15 +6730,17 @@ send@0.17.1: | ||
| 6844 | range-parser "~1.2.1" | 6730 | range-parser "~1.2.1" |
| 6845 | statuses "~1.5.0" | 6731 | statuses "~1.5.0" |
| 6846 | 6732 | ||
| 6847 | -serialize-javascript@^1.7.0: | ||
| 6848 | - version "1.9.1" | ||
| 6849 | - resolved "https://registry.npm.taobao.org/serialize-javascript/download/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb" | ||
| 6850 | - integrity sha1-z8IArvd7YAxH2pu4FJyUPnmML9s= | 6733 | +serialize-javascript@^2.1.2: |
| 6734 | + version "2.1.2" | ||
| 6735 | + resolved "https://registry.npm.taobao.org/serialize-javascript/download/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" | ||
| 6736 | + integrity sha1-7OxTsOAxe9yV73arcHS3OEeF+mE= | ||
| 6851 | 6737 | ||
| 6852 | -serialize-javascript@^2.1.0: | ||
| 6853 | - version "2.1.0" | ||
| 6854 | - resolved "https://registry.npm.taobao.org/serialize-javascript/download/serialize-javascript-2.1.0.tgz#9310276819efd0eb128258bb341957f6eb2fc570" | ||
| 6855 | - integrity sha1-kxAnaBnv0OsSgli7NBlX9usvxXA= | 6738 | +serialize-javascript@^3.1.0: |
| 6739 | + version "3.1.0" | ||
| 6740 | + resolved "https://registry.npm.taobao.org/serialize-javascript/download/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea" | ||
| 6741 | + integrity sha1-i/OpFwcSZk7yVhtEtpHq/jmSFOo= | ||
| 6742 | + dependencies: | ||
| 6743 | + randombytes "^2.1.0" | ||
| 6856 | 6744 | ||
| 6857 | serve-index@^1.9.1: | 6745 | serve-index@^1.9.1: |
| 6858 | version "1.9.1" | 6746 | version "1.9.1" |
| @@ -6877,14 +6765,14 @@ serve-static@1.14.1: | @@ -6877,14 +6765,14 @@ serve-static@1.14.1: | ||
| 6877 | parseurl "~1.3.3" | 6765 | parseurl "~1.3.3" |
| 6878 | send "0.17.1" | 6766 | send "0.17.1" |
| 6879 | 6767 | ||
| 6880 | -set-blocking@^2.0.0, set-blocking@~2.0.0: | 6768 | +set-blocking@^2.0.0: |
| 6881 | version "2.0.0" | 6769 | version "2.0.0" |
| 6882 | resolved "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" | 6770 | resolved "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" |
| 6883 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= | 6771 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= |
| 6884 | 6772 | ||
| 6885 | set-value@^2.0.0, set-value@^2.0.1: | 6773 | set-value@^2.0.0, set-value@^2.0.1: |
| 6886 | version "2.0.1" | 6774 | version "2.0.1" |
| 6887 | - resolved "https://registry.npm.taobao.org/set-value/download/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" | 6775 | + resolved "https://registry.npm.taobao.org/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1585775409029&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" |
| 6888 | integrity sha1-oY1AUw5vB95CKMfe/kInr4ytAFs= | 6776 | integrity sha1-oY1AUw5vB95CKMfe/kInr4ytAFs= |
| 6889 | dependencies: | 6777 | dependencies: |
| 6890 | extend-shallow "^2.0.1" | 6778 | extend-shallow "^2.0.1" |
| @@ -6915,13 +6803,6 @@ sha.js@^2.4.0, sha.js@^2.4.8: | @@ -6915,13 +6803,6 @@ sha.js@^2.4.0, sha.js@^2.4.8: | ||
| 6915 | inherits "^2.0.1" | 6803 | inherits "^2.0.1" |
| 6916 | safe-buffer "^5.0.1" | 6804 | safe-buffer "^5.0.1" |
| 6917 | 6805 | ||
| 6918 | -shallow-clone@^3.0.0: | ||
| 6919 | - version "3.0.1" | ||
| 6920 | - resolved "https://registry.npm.taobao.org/shallow-clone/download/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" | ||
| 6921 | - integrity sha1-jymBrZJTH1UDWwH7IwdppA4C76M= | ||
| 6922 | - dependencies: | ||
| 6923 | - kind-of "^6.0.2" | ||
| 6924 | - | ||
| 6925 | shebang-command@^1.2.0: | 6806 | shebang-command@^1.2.0: |
| 6926 | version "1.2.0" | 6807 | version "1.2.0" |
| 6927 | resolved "https://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" | 6808 | resolved "https://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" |
| @@ -6952,9 +6833,9 @@ shell-quote@^1.6.1: | @@ -6952,9 +6833,9 @@ shell-quote@^1.6.1: | ||
| 6952 | integrity sha1-Z6fQLHbJ2iT5nSCAj8re0ODgS+I= | 6833 | integrity sha1-Z6fQLHbJ2iT5nSCAj8re0ODgS+I= |
| 6953 | 6834 | ||
| 6954 | signal-exit@^3.0.0, signal-exit@^3.0.2: | 6835 | signal-exit@^3.0.0, signal-exit@^3.0.2: |
| 6955 | - version "3.0.2" | ||
| 6956 | - resolved "https://registry.npm.taobao.org/signal-exit/download/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" | ||
| 6957 | - integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= | 6836 | + version "3.0.3" |
| 6837 | + resolved "https://registry.npm.taobao.org/signal-exit/download/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" | ||
| 6838 | + integrity sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw= | ||
| 6958 | 6839 | ||
| 6959 | simple-swizzle@^0.2.2: | 6840 | simple-swizzle@^0.2.2: |
| 6960 | version "0.2.2" | 6841 | version "0.2.2" |
| @@ -6973,11 +6854,6 @@ slash@^2.0.0: | @@ -6973,11 +6854,6 @@ slash@^2.0.0: | ||
| 6973 | resolved "https://registry.npm.taobao.org/slash/download/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" | 6854 | resolved "https://registry.npm.taobao.org/slash/download/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" |
| 6974 | integrity sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q= | 6855 | integrity sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q= |
| 6975 | 6856 | ||
| 6976 | -slash@^3.0.0: | ||
| 6977 | - version "3.0.0" | ||
| 6978 | - resolved "https://registry.npm.taobao.org/slash/download/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" | ||
| 6979 | - integrity sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ= | ||
| 6980 | - | ||
| 6981 | snapdragon-node@^2.0.1: | 6857 | snapdragon-node@^2.0.1: |
| 6982 | version "2.1.1" | 6858 | version "2.1.1" |
| 6983 | resolved "https://registry.npm.taobao.org/snapdragon-node/download/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" | 6859 | resolved "https://registry.npm.taobao.org/snapdragon-node/download/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" |
| @@ -7010,7 +6886,7 @@ snapdragon@^0.8.1: | @@ -7010,7 +6886,7 @@ snapdragon@^0.8.1: | ||
| 7010 | 6886 | ||
| 7011 | sockjs-client@1.4.0: | 6887 | sockjs-client@1.4.0: |
| 7012 | version "1.4.0" | 6888 | version "1.4.0" |
| 7013 | - resolved "https://registry.npm.taobao.org/sockjs-client/download/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5" | 6889 | + resolved "https://registry.npm.taobao.org/sockjs-client/download/sockjs-client-1.4.0.tgz?cache=0&sync_timestamp=1566505930428&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsockjs-client%2Fdownload%2Fsockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5" |
| 7014 | integrity sha1-yfJWjhnI/YFztJl+o0IOC7MGx9U= | 6890 | integrity sha1-yfJWjhnI/YFztJl+o0IOC7MGx9U= |
| 7015 | dependencies: | 6891 | dependencies: |
| 7016 | debug "^3.2.5" | 6892 | debug "^3.2.5" |
| @@ -7020,13 +6896,14 @@ sockjs-client@1.4.0: | @@ -7020,13 +6896,14 @@ sockjs-client@1.4.0: | ||
| 7020 | json3 "^3.3.2" | 6896 | json3 "^3.3.2" |
| 7021 | url-parse "^1.4.3" | 6897 | url-parse "^1.4.3" |
| 7022 | 6898 | ||
| 7023 | -sockjs@0.3.19: | ||
| 7024 | - version "0.3.19" | ||
| 7025 | - resolved "https://registry.npm.taobao.org/sockjs/download/sockjs-0.3.19.tgz#d976bbe800af7bd20ae08598d582393508993c0d" | ||
| 7026 | - integrity sha1-2Xa76ACve9IK4IWY1YI5NQiZPA0= | 6899 | +sockjs@0.3.20: |
| 6900 | + version "0.3.20" | ||
| 6901 | + resolved "https://registry.npm.taobao.org/sockjs/download/sockjs-0.3.20.tgz#b26a283ec562ef8b2687b44033a4eeceac75d855" | ||
| 6902 | + integrity sha1-smooPsVi74smh7RAM6Tuzqx12FU= | ||
| 7027 | dependencies: | 6903 | dependencies: |
| 7028 | faye-websocket "^0.10.0" | 6904 | faye-websocket "^0.10.0" |
| 7029 | - uuid "^3.0.1" | 6905 | + uuid "^3.4.0" |
| 6906 | + websocket-driver "0.6.5" | ||
| 7030 | 6907 | ||
| 7031 | sort-keys@^1.0.0: | 6908 | sort-keys@^1.0.0: |
| 7032 | version "1.1.2" | 6909 | version "1.1.2" |
| @@ -7041,20 +6918,20 @@ source-list-map@^2.0.0: | @@ -7041,20 +6918,20 @@ source-list-map@^2.0.0: | ||
| 7041 | integrity sha1-OZO9hzv8SEecyp6jpUeDXHwVSzQ= | 6918 | integrity sha1-OZO9hzv8SEecyp6jpUeDXHwVSzQ= |
| 7042 | 6919 | ||
| 7043 | source-map-resolve@^0.5.0: | 6920 | source-map-resolve@^0.5.0: |
| 7044 | - version "0.5.2" | ||
| 7045 | - resolved "https://registry.npm.taobao.org/source-map-resolve/download/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" | ||
| 7046 | - integrity sha1-cuLMNAlVQ+Q7LGKyxMENSpBU8lk= | 6921 | + version "0.5.3" |
| 6922 | + resolved "https://registry.npm.taobao.org/source-map-resolve/download/source-map-resolve-0.5.3.tgz?cache=0&sync_timestamp=1584829552965&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map-resolve%2Fdownload%2Fsource-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" | ||
| 6923 | + integrity sha1-GQhmvs51U+H48mei7oLGBrVQmho= | ||
| 7047 | dependencies: | 6924 | dependencies: |
| 7048 | - atob "^2.1.1" | 6925 | + atob "^2.1.2" |
| 7049 | decode-uri-component "^0.2.0" | 6926 | decode-uri-component "^0.2.0" |
| 7050 | resolve-url "^0.2.1" | 6927 | resolve-url "^0.2.1" |
| 7051 | source-map-url "^0.4.0" | 6928 | source-map-url "^0.4.0" |
| 7052 | urix "^0.1.0" | 6929 | urix "^0.1.0" |
| 7053 | 6930 | ||
| 7054 | source-map-support@~0.5.12: | 6931 | source-map-support@~0.5.12: |
| 7055 | - version "0.5.13" | ||
| 7056 | - resolved "https://registry.npm.taobao.org/source-map-support/download/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" | ||
| 7057 | - integrity sha1-MbJKnC5zwt6FBmwP631Edn7VKTI= | 6932 | + version "0.5.19" |
| 6933 | + resolved "https://registry.npm.taobao.org/source-map-support/download/source-map-support-0.5.19.tgz?cache=0&sync_timestamp=1587719289626&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map-support%2Fdownload%2Fsource-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" | ||
| 6934 | + integrity sha1-qYti+G3K9PZzmWSMCFKRq56P7WE= | ||
| 7058 | dependencies: | 6935 | dependencies: |
| 7059 | buffer-from "^1.0.0" | 6936 | buffer-from "^1.0.0" |
| 7060 | source-map "^0.6.0" | 6937 | source-map "^0.6.0" |
| @@ -7064,7 +6941,7 @@ source-map-url@^0.4.0: | @@ -7064,7 +6941,7 @@ source-map-url@^0.4.0: | ||
| 7064 | resolved "https://registry.npm.taobao.org/source-map-url/download/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" | 6941 | resolved "https://registry.npm.taobao.org/source-map-url/download/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" |
| 7065 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= | 6942 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= |
| 7066 | 6943 | ||
| 7067 | -source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6: | 6944 | +source-map@^0.5.0, source-map@^0.5.6: |
| 7068 | version "0.5.7" | 6945 | version "0.5.7" |
| 7069 | resolved "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" | 6946 | resolved "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" |
| 7070 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= | 6947 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= |
| @@ -7075,22 +6952,22 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: | @@ -7075,22 +6952,22 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: | ||
| 7075 | integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM= | 6952 | integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM= |
| 7076 | 6953 | ||
| 7077 | spdx-correct@^3.0.0: | 6954 | spdx-correct@^3.0.0: |
| 7078 | - version "3.1.0" | ||
| 7079 | - resolved "https://registry.npm.taobao.org/spdx-correct/download/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" | ||
| 7080 | - integrity sha1-+4PlBERSaPFUsHTiGMh8ADzTHfQ= | 6955 | + version "3.1.1" |
| 6956 | + resolved "https://registry.npm.taobao.org/spdx-correct/download/spdx-correct-3.1.1.tgz?cache=0&sync_timestamp=1590161967473&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fspdx-correct%2Fdownload%2Fspdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" | ||
| 6957 | + integrity sha1-3s6BrJweZxPl99G28X1Gj6U9iak= | ||
| 7081 | dependencies: | 6958 | dependencies: |
| 7082 | spdx-expression-parse "^3.0.0" | 6959 | spdx-expression-parse "^3.0.0" |
| 7083 | spdx-license-ids "^3.0.0" | 6960 | spdx-license-ids "^3.0.0" |
| 7084 | 6961 | ||
| 7085 | spdx-exceptions@^2.1.0: | 6962 | spdx-exceptions@^2.1.0: |
| 7086 | - version "2.2.0" | ||
| 7087 | - resolved "https://registry.npm.taobao.org/spdx-exceptions/download/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" | ||
| 7088 | - integrity sha1-LqRQrudPKom/uUUZwH/Nb0EyKXc= | 6963 | + version "2.3.0" |
| 6964 | + resolved "https://registry.npm.taobao.org/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz?cache=0&sync_timestamp=1587450317950&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fspdx-exceptions%2Fdownload%2Fspdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" | ||
| 6965 | + integrity sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0= | ||
| 7089 | 6966 | ||
| 7090 | spdx-expression-parse@^3.0.0: | 6967 | spdx-expression-parse@^3.0.0: |
| 7091 | - version "3.0.0" | ||
| 7092 | - resolved "https://registry.npm.taobao.org/spdx-expression-parse/download/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" | ||
| 7093 | - integrity sha1-meEZt6XaAOBUkcn6M4t5BII7QdA= | 6968 | + version "3.0.1" |
| 6969 | + resolved "https://registry.npm.taobao.org/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" | ||
| 6970 | + integrity sha1-z3D1BILu/cmOPOCmgz5KU87rpnk= | ||
| 7094 | dependencies: | 6971 | dependencies: |
| 7095 | spdx-exceptions "^2.1.0" | 6972 | spdx-exceptions "^2.1.0" |
| 7096 | spdx-license-ids "^3.0.0" | 6973 | spdx-license-ids "^3.0.0" |
| @@ -7112,10 +6989,10 @@ spdy-transport@^3.0.0: | @@ -7112,10 +6989,10 @@ spdy-transport@^3.0.0: | ||
| 7112 | readable-stream "^3.0.6" | 6989 | readable-stream "^3.0.6" |
| 7113 | wbuf "^1.7.3" | 6990 | wbuf "^1.7.3" |
| 7114 | 6991 | ||
| 7115 | -spdy@^4.0.1: | ||
| 7116 | - version "4.0.1" | ||
| 7117 | - resolved "https://registry.npm.taobao.org/spdy/download/spdy-4.0.1.tgz#6f12ed1c5db7ea4f24ebb8b89ba58c87c08257f2" | ||
| 7118 | - integrity sha1-bxLtHF236k8k67i4m6WMh8CCV/I= | 6992 | +spdy@^4.0.2: |
| 6993 | + version "4.0.2" | ||
| 6994 | + resolved "https://registry.npm.taobao.org/spdy/download/spdy-4.0.2.tgz?cache=0&sync_timestamp=1585970469511&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fspdy%2Fdownload%2Fspdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" | ||
| 6995 | + integrity sha1-t09GYgOj7aRSwCSSuR+56EonZ3s= | ||
| 7119 | dependencies: | 6996 | dependencies: |
| 7120 | debug "^4.1.0" | 6997 | debug "^4.1.0" |
| 7121 | handle-thing "^2.0.0" | 6998 | handle-thing "^2.0.0" |
| @@ -7157,23 +7034,23 @@ ssri@^6.0.1: | @@ -7157,23 +7034,23 @@ ssri@^6.0.1: | ||
| 7157 | dependencies: | 7034 | dependencies: |
| 7158 | figgy-pudding "^3.5.1" | 7035 | figgy-pudding "^3.5.1" |
| 7159 | 7036 | ||
| 7160 | -ssri@^7.0.0: | ||
| 7161 | - version "7.0.1" | ||
| 7162 | - resolved "https://registry.npm.taobao.org/ssri/download/ssri-7.0.1.tgz#b0cab7bbb11ac9ea07f003453e2011f8cbed9f34" | ||
| 7163 | - integrity sha1-sMq3u7EayeoH8ANFPiAR+MvtnzQ= | 7037 | +ssri@^7.0.0, ssri@^7.1.0: |
| 7038 | + version "7.1.0" | ||
| 7039 | + resolved "https://registry.npm.taobao.org/ssri/download/ssri-7.1.0.tgz#92c241bf6de82365b5c7fb4bd76e975522e1294d" | ||
| 7040 | + integrity sha1-ksJBv23oI2W1x/tL126XVSLhKU0= | ||
| 7164 | dependencies: | 7041 | dependencies: |
| 7165 | figgy-pudding "^3.5.1" | 7042 | figgy-pudding "^3.5.1" |
| 7166 | - minipass "^3.0.0" | 7043 | + minipass "^3.1.1" |
| 7167 | 7044 | ||
| 7168 | stable@^0.1.8: | 7045 | stable@^0.1.8: |
| 7169 | version "0.1.8" | 7046 | version "0.1.8" |
| 7170 | resolved "https://registry.npm.taobao.org/stable/download/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" | 7047 | resolved "https://registry.npm.taobao.org/stable/download/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" |
| 7171 | integrity sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88= | 7048 | integrity sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88= |
| 7172 | 7049 | ||
| 7173 | -stackframe@^1.1.0: | ||
| 7174 | - version "1.1.0" | ||
| 7175 | - resolved "https://registry.npm.taobao.org/stackframe/download/stackframe-1.1.0.tgz#e3fc2eb912259479c9822f7d1f1ff365bd5cbc83" | ||
| 7176 | - integrity sha1-4/wuuRIllHnJgi99Hx/zZb1cvIM= | 7050 | +stackframe@^1.1.1: |
| 7051 | + version "1.2.0" | ||
| 7052 | + resolved "https://registry.npm.taobao.org/stackframe/download/stackframe-1.2.0.tgz?cache=0&sync_timestamp=1590854170093&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstackframe%2Fdownload%2Fstackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303" | ||
| 7053 | + integrity sha1-UkKUktY8YuuYmATBFVLj0i53kwM= | ||
| 7177 | 7054 | ||
| 7178 | static-extend@^0.1.1: | 7055 | static-extend@^0.1.1: |
| 7179 | version "0.1.2" | 7056 | version "0.1.2" |
| @@ -7188,14 +7065,9 @@ static-extend@^0.1.1: | @@ -7188,14 +7065,9 @@ static-extend@^0.1.1: | ||
| 7188 | resolved "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" | 7065 | resolved "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" |
| 7189 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= | 7066 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= |
| 7190 | 7067 | ||
| 7191 | -stealthy-require@^1.1.1: | ||
| 7192 | - version "1.1.1" | ||
| 7193 | - resolved "https://registry.npm.taobao.org/stealthy-require/download/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" | ||
| 7194 | - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= | ||
| 7195 | - | ||
| 7196 | stream-browserify@^2.0.1: | 7068 | stream-browserify@^2.0.1: |
| 7197 | version "2.0.2" | 7069 | version "2.0.2" |
| 7198 | - resolved "https://registry.npm.taobao.org/stream-browserify/download/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" | 7070 | + resolved "https://registry.npm.taobao.org/stream-browserify/download/stream-browserify-2.0.2.tgz?cache=0&sync_timestamp=1587041519870&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstream-browserify%2Fdownload%2Fstream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" |
| 7199 | integrity sha1-h1IdOKRKp+6RzhzSpH3wy0ndZgs= | 7071 | integrity sha1-h1IdOKRKp+6RzhzSpH3wy0ndZgs= |
| 7200 | dependencies: | 7072 | dependencies: |
| 7201 | inherits "~2.0.1" | 7073 | inherits "~2.0.1" |
| @@ -7211,7 +7083,7 @@ stream-each@^1.1.0: | @@ -7211,7 +7083,7 @@ stream-each@^1.1.0: | ||
| 7211 | 7083 | ||
| 7212 | stream-http@^2.7.2: | 7084 | stream-http@^2.7.2: |
| 7213 | version "2.8.3" | 7085 | version "2.8.3" |
| 7214 | - resolved "https://registry.npm.taobao.org/stream-http/download/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" | 7086 | + resolved "https://registry.npm.taobao.org/stream-http/download/stream-http-2.8.3.tgz?cache=0&sync_timestamp=1588701035785&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstream-http%2Fdownload%2Fstream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" |
| 7215 | integrity sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw= | 7087 | integrity sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw= |
| 7216 | dependencies: | 7088 | dependencies: |
| 7217 | builtin-status-codes "^3.0.0" | 7089 | builtin-status-codes "^3.0.0" |
| @@ -7221,25 +7093,16 @@ stream-http@^2.7.2: | @@ -7221,25 +7093,16 @@ stream-http@^2.7.2: | ||
| 7221 | xtend "^4.0.0" | 7093 | xtend "^4.0.0" |
| 7222 | 7094 | ||
| 7223 | stream-shift@^1.0.0: | 7095 | stream-shift@^1.0.0: |
| 7224 | - version "1.0.0" | ||
| 7225 | - resolved "https://registry.npm.taobao.org/stream-shift/download/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" | ||
| 7226 | - integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= | 7096 | + version "1.0.1" |
| 7097 | + resolved "https://registry.npm.taobao.org/stream-shift/download/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" | ||
| 7098 | + integrity sha1-1wiCgVWasneEJCebCHfaPDktWj0= | ||
| 7227 | 7099 | ||
| 7228 | strict-uri-encode@^1.0.0: | 7100 | strict-uri-encode@^1.0.0: |
| 7229 | version "1.1.0" | 7101 | version "1.1.0" |
| 7230 | resolved "https://registry.npm.taobao.org/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" | 7102 | resolved "https://registry.npm.taobao.org/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" |
| 7231 | integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= | 7103 | integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= |
| 7232 | 7104 | ||
| 7233 | -string-width@^1.0.1: | ||
| 7234 | - version "1.0.2" | ||
| 7235 | - resolved "https://registry.npm.taobao.org/string-width/download/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" | ||
| 7236 | - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= | ||
| 7237 | - dependencies: | ||
| 7238 | - code-point-at "^1.0.0" | ||
| 7239 | - is-fullwidth-code-point "^1.0.0" | ||
| 7240 | - strip-ansi "^3.0.0" | ||
| 7241 | - | ||
| 7242 | -"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: | 7105 | +string-width@^2.0.0: |
| 7243 | version "2.1.1" | 7106 | version "2.1.1" |
| 7244 | resolved "https://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" | 7107 | resolved "https://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" |
| 7245 | integrity sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4= | 7108 | integrity sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4= |
| @@ -7256,39 +7119,30 @@ string-width@^3.0.0, string-width@^3.1.0: | @@ -7256,39 +7119,30 @@ string-width@^3.0.0, string-width@^3.1.0: | ||
| 7256 | is-fullwidth-code-point "^2.0.0" | 7119 | is-fullwidth-code-point "^2.0.0" |
| 7257 | strip-ansi "^5.1.0" | 7120 | strip-ansi "^5.1.0" |
| 7258 | 7121 | ||
| 7259 | -string.prototype.padend@^3.0.0: | ||
| 7260 | - version "3.0.0" | ||
| 7261 | - resolved "https://registry.npm.taobao.org/string.prototype.padend/download/string.prototype.padend-3.0.0.tgz#f3aaef7c1719f170c5eab1c32bf780d96e21f2f0" | ||
| 7262 | - integrity sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA= | ||
| 7263 | - dependencies: | ||
| 7264 | - define-properties "^1.1.2" | ||
| 7265 | - es-abstract "^1.4.3" | ||
| 7266 | - function-bind "^1.0.2" | ||
| 7267 | - | ||
| 7268 | -string.prototype.padstart@^3.0.0: | ||
| 7269 | - version "3.0.0" | ||
| 7270 | - resolved "https://registry.npm.taobao.org/string.prototype.padstart/download/string.prototype.padstart-3.0.0.tgz#5bcfad39f4649bb2d031292e19bcf0b510d4b242" | ||
| 7271 | - integrity sha1-W8+tOfRkm7LQMSkuGbzwtRDUskI= | 7122 | +string-width@^4.1.0, string-width@^4.2.0: |
| 7123 | + version "4.2.0" | ||
| 7124 | + resolved "https://registry.npm.taobao.org/string-width/download/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" | ||
| 7125 | + integrity sha1-lSGCxGzHssMT0VluYjmSvRY7crU= | ||
| 7272 | dependencies: | 7126 | dependencies: |
| 7273 | - define-properties "^1.1.2" | ||
| 7274 | - es-abstract "^1.4.3" | ||
| 7275 | - function-bind "^1.0.2" | 7127 | + emoji-regex "^8.0.0" |
| 7128 | + is-fullwidth-code-point "^3.0.0" | ||
| 7129 | + strip-ansi "^6.0.0" | ||
| 7276 | 7130 | ||
| 7277 | -string.prototype.trimleft@^2.1.0: | ||
| 7278 | - version "2.1.0" | ||
| 7279 | - resolved "https://registry.npm.taobao.org/string.prototype.trimleft/download/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" | ||
| 7280 | - integrity sha1-bMR/DX641isPNwFhFxWjlUWR1jQ= | 7131 | +string.prototype.trimend@^1.0.1: |
| 7132 | + version "1.0.1" | ||
| 7133 | + resolved "https://registry.npm.taobao.org/string.prototype.trimend/download/string.prototype.trimend-1.0.1.tgz?cache=0&sync_timestamp=1586465409341&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstring.prototype.trimend%2Fdownload%2Fstring.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" | ||
| 7134 | + integrity sha1-hYEqa4R6wAInD1gIFGBkyZX7aRM= | ||
| 7281 | dependencies: | 7135 | dependencies: |
| 7282 | define-properties "^1.1.3" | 7136 | define-properties "^1.1.3" |
| 7283 | - function-bind "^1.1.1" | 7137 | + es-abstract "^1.17.5" |
| 7284 | 7138 | ||
| 7285 | -string.prototype.trimright@^2.1.0: | ||
| 7286 | - version "2.1.0" | ||
| 7287 | - resolved "https://registry.npm.taobao.org/string.prototype.trimright/download/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" | ||
| 7288 | - integrity sha1-Zp0WS+nfm291WfqOiZRbFopabFg= | 7139 | +string.prototype.trimstart@^1.0.1: |
| 7140 | + version "1.0.1" | ||
| 7141 | + resolved "https://registry.npm.taobao.org/string.prototype.trimstart/download/string.prototype.trimstart-1.0.1.tgz?cache=0&sync_timestamp=1586465413621&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstring.prototype.trimstart%2Fdownload%2Fstring.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" | ||
| 7142 | + integrity sha1-FK9tnzSwU/fPyJty+PLuFLkDmlQ= | ||
| 7289 | dependencies: | 7143 | dependencies: |
| 7290 | define-properties "^1.1.3" | 7144 | define-properties "^1.1.3" |
| 7291 | - function-bind "^1.1.1" | 7145 | + es-abstract "^1.17.5" |
| 7292 | 7146 | ||
| 7293 | string_decoder@^1.0.0, string_decoder@^1.1.1: | 7147 | string_decoder@^1.0.0, string_decoder@^1.1.1: |
| 7294 | version "1.3.0" | 7148 | version "1.3.0" |
| @@ -7330,6 +7184,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: | @@ -7330,6 +7184,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: | ||
| 7330 | dependencies: | 7184 | dependencies: |
| 7331 | ansi-regex "^4.1.0" | 7185 | ansi-regex "^4.1.0" |
| 7332 | 7186 | ||
| 7187 | +strip-ansi@^6.0.0: | ||
| 7188 | + version "6.0.0" | ||
| 7189 | + resolved "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" | ||
| 7190 | + integrity sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI= | ||
| 7191 | + dependencies: | ||
| 7192 | + ansi-regex "^5.0.0" | ||
| 7193 | + | ||
| 7333 | strip-eof@^1.0.0: | 7194 | strip-eof@^1.0.0: |
| 7334 | version "1.0.0" | 7195 | version "1.0.0" |
| 7335 | resolved "https://registry.npm.taobao.org/strip-eof/download/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" | 7196 | resolved "https://registry.npm.taobao.org/strip-eof/download/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" |
| @@ -7340,11 +7201,6 @@ strip-final-newline@^2.0.0: | @@ -7340,11 +7201,6 @@ strip-final-newline@^2.0.0: | ||
| 7340 | resolved "https://registry.npm.taobao.org/strip-final-newline/download/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" | 7201 | resolved "https://registry.npm.taobao.org/strip-final-newline/download/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" |
| 7341 | integrity sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0= | 7202 | integrity sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0= |
| 7342 | 7203 | ||
| 7343 | -strip-json-comments@~2.0.1: | ||
| 7344 | - version "2.0.1" | ||
| 7345 | - resolved "https://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" | ||
| 7346 | - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= | ||
| 7347 | - | ||
| 7348 | stylehacks@^4.0.0: | 7204 | stylehacks@^4.0.0: |
| 7349 | version "4.0.3" | 7205 | version "4.0.3" |
| 7350 | resolved "https://registry.npm.taobao.org/stylehacks/download/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" | 7206 | resolved "https://registry.npm.taobao.org/stylehacks/download/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" |
| @@ -7373,22 +7229,29 @@ supports-color@^6.1.0: | @@ -7373,22 +7229,29 @@ supports-color@^6.1.0: | ||
| 7373 | dependencies: | 7229 | dependencies: |
| 7374 | has-flag "^3.0.0" | 7230 | has-flag "^3.0.0" |
| 7375 | 7231 | ||
| 7232 | +supports-color@^7.0.0, supports-color@^7.1.0: | ||
| 7233 | + version "7.1.0" | ||
| 7234 | + resolved "https://registry.npm.taobao.org/supports-color/download/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" | ||
| 7235 | + integrity sha1-aOMlkd9z4lrRxLSRCKLsUHliv9E= | ||
| 7236 | + dependencies: | ||
| 7237 | + has-flag "^4.0.0" | ||
| 7238 | + | ||
| 7376 | svg-tags@^1.0.0: | 7239 | svg-tags@^1.0.0: |
| 7377 | version "1.0.0" | 7240 | version "1.0.0" |
| 7378 | resolved "https://registry.npm.taobao.org/svg-tags/download/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" | 7241 | resolved "https://registry.npm.taobao.org/svg-tags/download/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" |
| 7379 | integrity sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q= | 7242 | integrity sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q= |
| 7380 | 7243 | ||
| 7381 | svgo@^1.0.0: | 7244 | svgo@^1.0.0: |
| 7382 | - version "1.3.0" | ||
| 7383 | - resolved "https://registry.npm.taobao.org/svgo/download/svgo-1.3.0.tgz#bae51ba95ded9a33a36b7c46ce9c359ae9154313" | ||
| 7384 | - integrity sha1-uuUbqV3tmjOja3xGzpw1mukVQxM= | 7245 | + version "1.3.2" |
| 7246 | + resolved "https://registry.npm.taobao.org/svgo/download/svgo-1.3.2.tgz?cache=0&sync_timestamp=1572433264480&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsvgo%2Fdownload%2Fsvgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" | ||
| 7247 | + integrity sha1-ttxRHAYzRsnkFbgeQ0ARRbltQWc= | ||
| 7385 | dependencies: | 7248 | dependencies: |
| 7386 | chalk "^2.4.1" | 7249 | chalk "^2.4.1" |
| 7387 | coa "^2.0.2" | 7250 | coa "^2.0.2" |
| 7388 | css-select "^2.0.0" | 7251 | css-select "^2.0.0" |
| 7389 | css-select-base-adapter "^0.1.1" | 7252 | css-select-base-adapter "^0.1.1" |
| 7390 | - css-tree "1.0.0-alpha.33" | ||
| 7391 | - csso "^3.5.1" | 7253 | + css-tree "1.0.0-alpha.37" |
| 7254 | + csso "^4.0.2" | ||
| 7392 | js-yaml "^3.13.1" | 7255 | js-yaml "^3.13.1" |
| 7393 | mkdirp "~0.5.1" | 7256 | mkdirp "~0.5.1" |
| 7394 | object.values "^1.1.0" | 7257 | object.values "^1.1.0" |
| @@ -7399,7 +7262,7 @@ svgo@^1.0.0: | @@ -7399,7 +7262,7 @@ svgo@^1.0.0: | ||
| 7399 | 7262 | ||
| 7400 | "symbol-tree@>= 3.1.0 < 4.0.0": | 7263 | "symbol-tree@>= 3.1.0 < 4.0.0": |
| 7401 | version "3.2.4" | 7264 | version "3.2.4" |
| 7402 | - resolved "https://registry.npm.taobao.org/symbol-tree/download/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" | 7265 | + resolved "https://registry.npm.taobao.org/symbol-tree/download/symbol-tree-3.2.4.tgz?cache=0&sync_timestamp=1560363067941&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsymbol-tree%2Fdownload%2Fsymbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" |
| 7403 | integrity sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I= | 7266 | integrity sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I= |
| 7404 | 7267 | ||
| 7405 | tapable@^1.0.0, tapable@^1.1.3: | 7268 | tapable@^1.0.0, tapable@^1.1.3: |
| @@ -7407,52 +7270,40 @@ tapable@^1.0.0, tapable@^1.1.3: | @@ -7407,52 +7270,40 @@ tapable@^1.0.0, tapable@^1.1.3: | ||
| 7407 | resolved "https://registry.npm.taobao.org/tapable/download/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" | 7270 | resolved "https://registry.npm.taobao.org/tapable/download/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" |
| 7408 | integrity sha1-ofzMBrWNth/XpF2i2kT186Pme6I= | 7271 | integrity sha1-ofzMBrWNth/XpF2i2kT186Pme6I= |
| 7409 | 7272 | ||
| 7410 | -tar@^4: | ||
| 7411 | - version "4.4.13" | ||
| 7412 | - resolved "https://registry.npm.taobao.org/tar/download/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" | ||
| 7413 | - integrity sha1-Q7NkvFKIjVVSmGN7ENYHkCVKtSU= | ||
| 7414 | - dependencies: | ||
| 7415 | - chownr "^1.1.1" | ||
| 7416 | - fs-minipass "^1.2.5" | ||
| 7417 | - minipass "^2.8.6" | ||
| 7418 | - minizlib "^1.2.1" | ||
| 7419 | - mkdirp "^0.5.0" | ||
| 7420 | - safe-buffer "^5.1.2" | ||
| 7421 | - yallist "^3.0.3" | ||
| 7422 | - | ||
| 7423 | -terser-webpack-plugin@^1.4.1: | ||
| 7424 | - version "1.4.1" | ||
| 7425 | - resolved "https://registry.npm.taobao.org/terser-webpack-plugin/download/terser-webpack-plugin-1.4.1.tgz?cache=0&sync_timestamp=1570733981760&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fterser-webpack-plugin%2Fdownload%2Fterser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4" | ||
| 7426 | - integrity sha1-YbGOQOruW+l+dxzbsQ7RKAiIwrQ= | 7273 | +terser-webpack-plugin@^1.4.3: |
| 7274 | + version "1.4.4" | ||
| 7275 | + resolved "https://registry.npm.taobao.org/terser-webpack-plugin/download/terser-webpack-plugin-1.4.4.tgz?cache=0&sync_timestamp=1592492285990&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fterser-webpack-plugin%2Fdownload%2Fterser-webpack-plugin-1.4.4.tgz#2c63544347324baafa9a56baaddf1634c8abfc2f" | ||
| 7276 | + integrity sha1-LGNUQ0cyS6r6mla6rd8WNMir/C8= | ||
| 7427 | dependencies: | 7277 | dependencies: |
| 7428 | cacache "^12.0.2" | 7278 | cacache "^12.0.2" |
| 7429 | find-cache-dir "^2.1.0" | 7279 | find-cache-dir "^2.1.0" |
| 7430 | is-wsl "^1.1.0" | 7280 | is-wsl "^1.1.0" |
| 7431 | schema-utils "^1.0.0" | 7281 | schema-utils "^1.0.0" |
| 7432 | - serialize-javascript "^1.7.0" | 7282 | + serialize-javascript "^3.1.0" |
| 7433 | source-map "^0.6.1" | 7283 | source-map "^0.6.1" |
| 7434 | terser "^4.1.2" | 7284 | terser "^4.1.2" |
| 7435 | webpack-sources "^1.4.0" | 7285 | webpack-sources "^1.4.0" |
| 7436 | worker-farm "^1.7.0" | 7286 | worker-farm "^1.7.0" |
| 7437 | 7287 | ||
| 7438 | -terser-webpack-plugin@^2.1.2: | ||
| 7439 | - version "2.1.3" | ||
| 7440 | - resolved "https://registry.npm.taobao.org/terser-webpack-plugin/download/terser-webpack-plugin-2.1.3.tgz?cache=0&sync_timestamp=1570733981760&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fterser-webpack-plugin%2Fdownload%2Fterser-webpack-plugin-2.1.3.tgz#85430da71ba88a60072bf659589eafaf6a00dc22" | ||
| 7441 | - integrity sha1-hUMNpxuoimAHK/ZZWJ6vr2oA3CI= | 7288 | +terser-webpack-plugin@^2.3.6: |
| 7289 | + version "2.3.7" | ||
| 7290 | + resolved "https://registry.npm.taobao.org/terser-webpack-plugin/download/terser-webpack-plugin-2.3.7.tgz?cache=0&sync_timestamp=1592492285990&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fterser-webpack-plugin%2Fdownload%2Fterser-webpack-plugin-2.3.7.tgz#4910ff5d1a872168cc7fa6cd3749e2b0d60a8a0b" | ||
| 7291 | + integrity sha1-SRD/XRqHIWjMf6bNN0nisNYKigs= | ||
| 7442 | dependencies: | 7292 | dependencies: |
| 7443 | cacache "^13.0.1" | 7293 | cacache "^13.0.1" |
| 7444 | - find-cache-dir "^3.0.0" | ||
| 7445 | - jest-worker "^24.9.0" | ||
| 7446 | - schema-utils "^2.4.1" | ||
| 7447 | - serialize-javascript "^2.1.0" | 7294 | + find-cache-dir "^3.3.1" |
| 7295 | + jest-worker "^25.4.0" | ||
| 7296 | + p-limit "^2.3.0" | ||
| 7297 | + schema-utils "^2.6.6" | ||
| 7298 | + serialize-javascript "^3.1.0" | ||
| 7448 | source-map "^0.6.1" | 7299 | source-map "^0.6.1" |
| 7449 | - terser "^4.3.8" | 7300 | + terser "^4.6.12" |
| 7450 | webpack-sources "^1.4.3" | 7301 | webpack-sources "^1.4.3" |
| 7451 | 7302 | ||
| 7452 | -terser@^4.1.2, terser@^4.3.8: | ||
| 7453 | - version "4.3.9" | ||
| 7454 | - resolved "https://registry.npm.taobao.org/terser/download/terser-4.3.9.tgz#e4be37f80553d02645668727777687dad26bbca8" | ||
| 7455 | - integrity sha1-5L43+AVT0CZFZocnd3aH2tJrvKg= | 7303 | +terser@^4.1.2, terser@^4.6.12: |
| 7304 | + version "4.8.0" | ||
| 7305 | + resolved "https://registry.npm.taobao.org/terser/download/terser-4.8.0.tgz?cache=0&sync_timestamp=1593953638544&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fterser%2Fdownload%2Fterser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" | ||
| 7306 | + integrity sha1-YwVjQ9fHC7KfOvZlhlpG/gOg3xc= | ||
| 7456 | dependencies: | 7307 | dependencies: |
| 7457 | commander "^2.20.0" | 7308 | commander "^2.20.0" |
| 7458 | source-map "~0.6.1" | 7309 | source-map "~0.6.1" |
| @@ -7466,13 +7317,13 @@ thenify-all@^1.0.0: | @@ -7466,13 +7317,13 @@ thenify-all@^1.0.0: | ||
| 7466 | thenify ">= 3.1.0 < 4" | 7317 | thenify ">= 3.1.0 < 4" |
| 7467 | 7318 | ||
| 7468 | "thenify@>= 3.1.0 < 4": | 7319 | "thenify@>= 3.1.0 < 4": |
| 7469 | - version "3.3.0" | ||
| 7470 | - resolved "https://registry.npm.taobao.org/thenify/download/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" | ||
| 7471 | - integrity sha1-5p44obq+lpsBCCB5eLn2K4hgSDk= | 7320 | + version "3.3.1" |
| 7321 | + resolved "https://registry.npm.taobao.org/thenify/download/thenify-3.3.1.tgz?cache=0&sync_timestamp=1592413579008&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fthenify%2Fdownload%2Fthenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" | ||
| 7322 | + integrity sha1-iTLmhqQGYDigFt2eLKRq3Zg4qV8= | ||
| 7472 | dependencies: | 7323 | dependencies: |
| 7473 | any-promise "^1.0.0" | 7324 | any-promise "^1.0.0" |
| 7474 | 7325 | ||
| 7475 | -thread-loader@^2.1.2: | 7326 | +thread-loader@^2.1.3: |
| 7476 | version "2.1.3" | 7327 | version "2.1.3" |
| 7477 | resolved "https://registry.npm.taobao.org/thread-loader/download/thread-loader-2.1.3.tgz#cbd2c139fc2b2de6e9d28f62286ab770c1acbdda" | 7328 | resolved "https://registry.npm.taobao.org/thread-loader/download/thread-loader-2.1.3.tgz#cbd2c139fc2b2de6e9d28f62286ab770c1acbdda" |
| 7478 | integrity sha1-y9LBOfwrLebp0o9iKGq3cMGsvdo= | 7329 | integrity sha1-y9LBOfwrLebp0o9iKGq3cMGsvdo= |
| @@ -7483,7 +7334,7 @@ thread-loader@^2.1.2: | @@ -7483,7 +7334,7 @@ thread-loader@^2.1.2: | ||
| 7483 | 7334 | ||
| 7484 | throttle-debounce@^1.0.1: | 7335 | throttle-debounce@^1.0.1: |
| 7485 | version "1.1.0" | 7336 | version "1.1.0" |
| 7486 | - resolved "https://registry.npm.taobao.org/throttle-debounce/download/throttle-debounce-1.1.0.tgz#51853da37be68a155cb6e827b3514a3c422e89cd" | 7337 | + resolved "https://registry.npm.taobao.org/throttle-debounce/download/throttle-debounce-1.1.0.tgz?cache=0&sync_timestamp=1591627116872&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fthrottle-debounce%2Fdownload%2Fthrottle-debounce-1.1.0.tgz#51853da37be68a155cb6e827b3514a3c422e89cd" |
| 7487 | integrity sha1-UYU9o3vmihVctugns1FKPEIuic0= | 7338 | integrity sha1-UYU9o3vmihVctugns1FKPEIuic0= |
| 7488 | 7339 | ||
| 7489 | through2@^2.0.0: | 7340 | through2@^2.0.0: |
| @@ -7518,7 +7369,7 @@ to-arraybuffer@^1.0.0: | @@ -7518,7 +7369,7 @@ to-arraybuffer@^1.0.0: | ||
| 7518 | 7369 | ||
| 7519 | to-fast-properties@^2.0.0: | 7370 | to-fast-properties@^2.0.0: |
| 7520 | version "2.0.0" | 7371 | version "2.0.0" |
| 7521 | - resolved "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" | 7372 | + resolved "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1580550347606&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" |
| 7522 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= | 7373 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= |
| 7523 | 7374 | ||
| 7524 | to-object-path@^0.3.0: | 7375 | to-object-path@^0.3.0: |
| @@ -7563,43 +7414,40 @@ toposort@^1.0.0: | @@ -7563,43 +7414,40 @@ toposort@^1.0.0: | ||
| 7563 | resolved "https://registry.npm.taobao.org/toposort/download/toposort-1.0.7.tgz#2e68442d9f64ec720b8cc89e6443ac6caa950029" | 7414 | resolved "https://registry.npm.taobao.org/toposort/download/toposort-1.0.7.tgz#2e68442d9f64ec720b8cc89e6443ac6caa950029" |
| 7564 | integrity sha1-LmhELZ9k7HILjMieZEOsbKqVACk= | 7415 | integrity sha1-LmhELZ9k7HILjMieZEOsbKqVACk= |
| 7565 | 7416 | ||
| 7566 | -tough-cookie@^2.2.0, tough-cookie@^2.3.3: | 7417 | +tough-cookie@^2.2.0, tough-cookie@~2.5.0: |
| 7567 | version "2.5.0" | 7418 | version "2.5.0" |
| 7568 | - resolved "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" | 7419 | + resolved "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftough-cookie%2Fdownload%2Ftough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" |
| 7569 | integrity sha1-zZ+yoKodWhK0c72fuW+j3P9lreI= | 7420 | integrity sha1-zZ+yoKodWhK0c72fuW+j3P9lreI= |
| 7570 | dependencies: | 7421 | dependencies: |
| 7571 | psl "^1.1.28" | 7422 | psl "^1.1.28" |
| 7572 | punycode "^2.1.1" | 7423 | punycode "^2.1.1" |
| 7573 | 7424 | ||
| 7574 | -tough-cookie@~2.4.3: | ||
| 7575 | - version "2.4.3" | ||
| 7576 | - resolved "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" | ||
| 7577 | - integrity sha1-U/Nto/R3g7CSWvoG/587FlKA94E= | ||
| 7578 | - dependencies: | ||
| 7579 | - psl "^1.1.24" | ||
| 7580 | - punycode "^1.4.1" | ||
| 7581 | - | ||
| 7582 | tr46@~0.0.1: | 7425 | tr46@~0.0.1: |
| 7583 | version "0.0.3" | 7426 | version "0.0.3" |
| 7584 | resolved "https://registry.npm.taobao.org/tr46/download/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" | 7427 | resolved "https://registry.npm.taobao.org/tr46/download/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" |
| 7585 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= | 7428 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= |
| 7586 | 7429 | ||
| 7587 | -transliteration@^2.1.7: | ||
| 7588 | - version "2.1.7" | ||
| 7589 | - resolved "https://registry.npm.taobao.org/transliteration/download/transliteration-2.1.7.tgz#43fbd2e259777516a667a76e1d11aa9f85264413" | ||
| 7590 | - integrity sha1-Q/vS4ll3dRamZ6duHRGqn4UmRBM= | 7430 | +transliteration@^2.1.11: |
| 7431 | + version "2.1.11" | ||
| 7432 | + resolved "https://registry.npm.taobao.org/transliteration/download/transliteration-2.1.11.tgz#84a274349525cf8bb9f09d5fcd28c07c66ee6940" | ||
| 7433 | + integrity sha1-hKJ0NJUlz4u58J1fzSjAfGbuaUA= | ||
| 7591 | dependencies: | 7434 | dependencies: |
| 7592 | - yargs "^14.0.0" | 7435 | + yargs "^15.3.1" |
| 7593 | 7436 | ||
| 7594 | tryer@^1.0.1: | 7437 | tryer@^1.0.1: |
| 7595 | version "1.0.1" | 7438 | version "1.0.1" |
| 7596 | resolved "https://registry.npm.taobao.org/tryer/download/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8" | 7439 | resolved "https://registry.npm.taobao.org/tryer/download/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8" |
| 7597 | integrity sha1-8shUBoALmw90yfdGW4HqrSQSUvg= | 7440 | integrity sha1-8shUBoALmw90yfdGW4HqrSQSUvg= |
| 7598 | 7441 | ||
| 7442 | +ts-pnp@^1.1.6: | ||
| 7443 | + version "1.2.0" | ||
| 7444 | + resolved "https://registry.npm.taobao.org/ts-pnp/download/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" | ||
| 7445 | + integrity sha1-pQCtCEsHmPHDBxrzkeZZEshrypI= | ||
| 7446 | + | ||
| 7599 | tslib@^1.9.0: | 7447 | tslib@^1.9.0: |
| 7600 | - version "1.10.0" | ||
| 7601 | - resolved "https://registry.npm.taobao.org/tslib/download/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" | ||
| 7602 | - integrity sha1-w8GflZc/sKYpc/sJ2Q2WHuQ+XIo= | 7448 | + version "1.13.0" |
| 7449 | + resolved "https://registry.npm.taobao.org/tslib/download/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" | ||
| 7450 | + integrity sha1-yIHhPMcBWJTtkUhi0nZDb6mkcEM= | ||
| 7603 | 7451 | ||
| 7604 | tty-browserify@0.0.0: | 7452 | tty-browserify@0.0.0: |
| 7605 | version "0.0.0" | 7453 | version "0.0.0" |
| @@ -7615,12 +7463,12 @@ tunnel-agent@^0.6.0: | @@ -7615,12 +7463,12 @@ tunnel-agent@^0.6.0: | ||
| 7615 | 7463 | ||
| 7616 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: | 7464 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: |
| 7617 | version "0.14.5" | 7465 | version "0.14.5" |
| 7618 | - resolved "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" | 7466 | + resolved "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz?cache=0&sync_timestamp=1581365146868&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftweetnacl%2Fdownload%2Ftweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" |
| 7619 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= | 7467 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= |
| 7620 | 7468 | ||
| 7621 | type-check@~0.3.2: | 7469 | type-check@~0.3.2: |
| 7622 | version "0.3.2" | 7470 | version "0.3.2" |
| 7623 | - resolved "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" | 7471 | + resolved "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz?cache=0&sync_timestamp=1585882977555&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftype-check%2Fdownload%2Ftype-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" |
| 7624 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= | 7472 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= |
| 7625 | dependencies: | 7473 | dependencies: |
| 7626 | prelude-ls "~1.1.2" | 7474 | prelude-ls "~1.1.2" |
| @@ -7650,7 +7498,7 @@ uc.micro@^1.0.1, uc.micro@^1.0.5: | @@ -7650,7 +7498,7 @@ uc.micro@^1.0.1, uc.micro@^1.0.5: | ||
| 7650 | 7498 | ||
| 7651 | uglify-js@3.4.x: | 7499 | uglify-js@3.4.x: |
| 7652 | version "3.4.10" | 7500 | version "3.4.10" |
| 7653 | - resolved "https://registry.npm.taobao.org/uglify-js/download/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" | 7501 | + resolved "https://registry.npm.taobao.org/uglify-js/download/uglify-js-3.4.10.tgz?cache=0&sync_timestamp=1592744803278&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fuglify-js%2Fdownload%2Fuglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" |
| 7654 | integrity sha1-mtlWPY6zrN+404WX0q8dgV9qdV8= | 7502 | integrity sha1-mtlWPY6zrN+404WX0q8dgV9qdV8= |
| 7655 | dependencies: | 7503 | dependencies: |
| 7656 | commander "~2.19.0" | 7504 | commander "~2.19.0" |
| @@ -7669,15 +7517,15 @@ unicode-match-property-ecmascript@^1.0.4: | @@ -7669,15 +7517,15 @@ unicode-match-property-ecmascript@^1.0.4: | ||
| 7669 | unicode-canonical-property-names-ecmascript "^1.0.4" | 7517 | unicode-canonical-property-names-ecmascript "^1.0.4" |
| 7670 | unicode-property-aliases-ecmascript "^1.0.4" | 7518 | unicode-property-aliases-ecmascript "^1.0.4" |
| 7671 | 7519 | ||
| 7672 | -unicode-match-property-value-ecmascript@^1.1.0: | ||
| 7673 | - version "1.1.0" | ||
| 7674 | - resolved "https://registry.npm.taobao.org/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" | ||
| 7675 | - integrity sha1-W0tCbgjROoA2Xg1lesemwexGonc= | 7520 | +unicode-match-property-value-ecmascript@^1.2.0: |
| 7521 | + version "1.2.0" | ||
| 7522 | + resolved "https://registry.npm.taobao.org/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-1.2.0.tgz?cache=0&sync_timestamp=1583949910462&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funicode-match-property-value-ecmascript%2Fdownload%2Funicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" | ||
| 7523 | + integrity sha1-DZH2AO7rMJaqlisdb8iIduZOpTE= | ||
| 7676 | 7524 | ||
| 7677 | unicode-property-aliases-ecmascript@^1.0.4: | 7525 | unicode-property-aliases-ecmascript@^1.0.4: |
| 7678 | - version "1.0.5" | ||
| 7679 | - resolved "https://registry.npm.taobao.org/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" | ||
| 7680 | - integrity sha1-qcxsx85joKMCP8meNBuUQx1AWlc= | 7526 | + version "1.1.0" |
| 7527 | + resolved "https://registry.npm.taobao.org/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-1.1.0.tgz?cache=0&sync_timestamp=1583945805856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funicode-property-aliases-ecmascript%2Fdownload%2Funicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" | ||
| 7528 | + integrity sha1-3Vepn2IHvt/0Yoq++5TFDblByPQ= | ||
| 7681 | 7529 | ||
| 7682 | union-value@^1.0.0: | 7530 | union-value@^1.0.0: |
| 7683 | version "1.0.1" | 7531 | version "1.0.1" |
| @@ -7715,7 +7563,7 @@ unique-slug@^2.0.0: | @@ -7715,7 +7563,7 @@ unique-slug@^2.0.0: | ||
| 7715 | 7563 | ||
| 7716 | universalify@^0.1.0: | 7564 | universalify@^0.1.0: |
| 7717 | version "0.1.2" | 7565 | version "0.1.2" |
| 7718 | - resolved "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" | 7566 | + resolved "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz?cache=0&sync_timestamp=1583531006552&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funiversalify%2Fdownload%2Funiversalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" |
| 7719 | integrity sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY= | 7567 | integrity sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY= |
| 7720 | 7568 | ||
| 7721 | unpipe@1.0.0, unpipe@~1.0.0: | 7569 | unpipe@1.0.0, unpipe@~1.0.0: |
| @@ -7738,12 +7586,12 @@ unset-value@^1.0.0: | @@ -7738,12 +7586,12 @@ unset-value@^1.0.0: | ||
| 7738 | 7586 | ||
| 7739 | upath@^1.1.1: | 7587 | upath@^1.1.1: |
| 7740 | version "1.2.0" | 7588 | version "1.2.0" |
| 7741 | - resolved "https://registry.npm.taobao.org/upath/download/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" | 7589 | + resolved "https://registry.npm.taobao.org/upath/download/upath-1.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fupath%2Fdownload%2Fupath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" |
| 7742 | integrity sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ= | 7590 | integrity sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ= |
| 7743 | 7591 | ||
| 7744 | upper-case@^1.1.1: | 7592 | upper-case@^1.1.1: |
| 7745 | version "1.1.3" | 7593 | version "1.1.3" |
| 7746 | - resolved "https://registry.npm.taobao.org/upper-case/download/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" | 7594 | + resolved "https://registry.npm.taobao.org/upper-case/download/upper-case-1.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fupper-case%2Fdownload%2Fupper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" |
| 7747 | integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= | 7595 | integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= |
| 7748 | 7596 | ||
| 7749 | uri-js@^4.2.2: | 7597 | uri-js@^4.2.2: |
| @@ -7758,14 +7606,14 @@ urix@^0.1.0: | @@ -7758,14 +7606,14 @@ urix@^0.1.0: | ||
| 7758 | resolved "https://registry.npm.taobao.org/urix/download/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" | 7606 | resolved "https://registry.npm.taobao.org/urix/download/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" |
| 7759 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= | 7607 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= |
| 7760 | 7608 | ||
| 7761 | -url-loader@^2.1.0: | ||
| 7762 | - version "2.2.0" | ||
| 7763 | - resolved "https://registry.npm.taobao.org/url-loader/download/url-loader-2.2.0.tgz#af321aece1fd0d683adc8aaeb27829f29c75b46e" | ||
| 7764 | - integrity sha1-rzIa7OH9DWg63Iqusngp8px1tG4= | 7609 | +url-loader@^2.2.0: |
| 7610 | + version "2.3.0" | ||
| 7611 | + resolved "https://registry.npm.taobao.org/url-loader/download/url-loader-2.3.0.tgz#e0e2ef658f003efb8ca41b0f3ffbf76bab88658b" | ||
| 7612 | + integrity sha1-4OLvZY8APvuMpBsPP/v3a6uIZYs= | ||
| 7765 | dependencies: | 7613 | dependencies: |
| 7766 | loader-utils "^1.2.3" | 7614 | loader-utils "^1.2.3" |
| 7767 | mime "^2.4.4" | 7615 | mime "^2.4.4" |
| 7768 | - schema-utils "^2.4.1" | 7616 | + schema-utils "^2.5.0" |
| 7769 | 7617 | ||
| 7770 | url-parse@^1.4.3: | 7618 | url-parse@^1.4.3: |
| 7771 | version "1.4.7" | 7619 | version "1.4.7" |
| @@ -7793,24 +7641,34 @@ util-deprecate@^1.0.1, util-deprecate@~1.0.1: | @@ -7793,24 +7641,34 @@ util-deprecate@^1.0.1, util-deprecate@~1.0.1: | ||
| 7793 | resolved "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" | 7641 | resolved "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" |
| 7794 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= | 7642 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= |
| 7795 | 7643 | ||
| 7796 | -util.promisify@1.0.0, util.promisify@~1.0.0: | 7644 | +util.promisify@1.0.0: |
| 7797 | version "1.0.0" | 7645 | version "1.0.0" |
| 7798 | - resolved "https://registry.npm.taobao.org/util.promisify/download/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" | 7646 | + resolved "https://registry.npm.taobao.org/util.promisify/download/util.promisify-1.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil.promisify%2Fdownload%2Futil.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" |
| 7799 | integrity sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA= | 7647 | integrity sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA= |
| 7800 | dependencies: | 7648 | dependencies: |
| 7801 | define-properties "^1.1.2" | 7649 | define-properties "^1.1.2" |
| 7802 | object.getownpropertydescriptors "^2.0.3" | 7650 | object.getownpropertydescriptors "^2.0.3" |
| 7803 | 7651 | ||
| 7652 | +util.promisify@~1.0.0: | ||
| 7653 | + version "1.0.1" | ||
| 7654 | + resolved "https://registry.npm.taobao.org/util.promisify/download/util.promisify-1.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil.promisify%2Fdownload%2Futil.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" | ||
| 7655 | + integrity sha1-a693dLgO6w91INi4HQeYKlmruu4= | ||
| 7656 | + dependencies: | ||
| 7657 | + define-properties "^1.1.3" | ||
| 7658 | + es-abstract "^1.17.2" | ||
| 7659 | + has-symbols "^1.0.1" | ||
| 7660 | + object.getownpropertydescriptors "^2.1.0" | ||
| 7661 | + | ||
| 7804 | util@0.10.3: | 7662 | util@0.10.3: |
| 7805 | version "0.10.3" | 7663 | version "0.10.3" |
| 7806 | - resolved "https://registry.npm.taobao.org/util/download/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" | 7664 | + resolved "https://registry.npm.taobao.org/util/download/util-0.10.3.tgz?cache=0&sync_timestamp=1588238331562&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil%2Fdownload%2Futil-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" |
| 7807 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= | 7665 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= |
| 7808 | dependencies: | 7666 | dependencies: |
| 7809 | inherits "2.0.1" | 7667 | inherits "2.0.1" |
| 7810 | 7668 | ||
| 7811 | util@^0.11.0: | 7669 | util@^0.11.0: |
| 7812 | version "0.11.1" | 7670 | version "0.11.1" |
| 7813 | - resolved "https://registry.npm.taobao.org/util/download/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" | 7671 | + resolved "https://registry.npm.taobao.org/util/download/util-0.11.1.tgz?cache=0&sync_timestamp=1588238331562&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil%2Fdownload%2Futil-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" |
| 7814 | integrity sha1-MjZzNyDsZLsn9uJvQhqqLhtYjWE= | 7672 | integrity sha1-MjZzNyDsZLsn9uJvQhqqLhtYjWE= |
| 7815 | dependencies: | 7673 | dependencies: |
| 7816 | inherits "2.0.3" | 7674 | inherits "2.0.3" |
| @@ -7825,10 +7683,10 @@ utils-merge@1.0.1: | @@ -7825,10 +7683,10 @@ utils-merge@1.0.1: | ||
| 7825 | resolved "https://registry.npm.taobao.org/utils-merge/download/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" | 7683 | resolved "https://registry.npm.taobao.org/utils-merge/download/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" |
| 7826 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= | 7684 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= |
| 7827 | 7685 | ||
| 7828 | -uuid@^3.0.1, uuid@^3.3.2: | ||
| 7829 | - version "3.3.3" | ||
| 7830 | - resolved "https://registry.npm.taobao.org/uuid/download/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" | ||
| 7831 | - integrity sha1-RWjwIW54dg7h2/Ok0s9T4iQRKGY= | 7686 | +uuid@^3.3.2, uuid@^3.4.0: |
| 7687 | + version "3.4.0" | ||
| 7688 | + resolved "https://registry.npm.taobao.org/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1592944373333&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" | ||
| 7689 | + integrity sha1-sj5DWK+oogL+ehAK8fX4g/AgB+4= | ||
| 7832 | 7690 | ||
| 7833 | validate-npm-package-license@^3.0.1: | 7691 | validate-npm-package-license@^3.0.1: |
| 7834 | version "3.0.4" | 7692 | version "3.0.4" |
| @@ -7844,9 +7702,9 @@ vary@~1.1.2: | @@ -7844,9 +7702,9 @@ vary@~1.1.2: | ||
| 7844 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= | 7702 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= |
| 7845 | 7703 | ||
| 7846 | vendors@^1.0.0: | 7704 | vendors@^1.0.0: |
| 7847 | - version "1.0.3" | ||
| 7848 | - resolved "https://registry.npm.taobao.org/vendors/download/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0" | ||
| 7849 | - integrity sha1-pkZ3gavTZiF8BQ+CAuflDMnu+MA= | 7705 | + version "1.0.4" |
| 7706 | + resolved "https://registry.npm.taobao.org/vendors/download/vendors-1.0.4.tgz?cache=0&sync_timestamp=1579858298446&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvendors%2Fdownload%2Fvendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" | ||
| 7707 | + integrity sha1-4rgApT56Kbk1BsPPQRANFsTErY4= | ||
| 7850 | 7708 | ||
| 7851 | verror@1.10.0: | 7709 | verror@1.10.0: |
| 7852 | version "1.10.0" | 7710 | version "1.10.0" |
| @@ -7858,21 +7716,21 @@ verror@1.10.0: | @@ -7858,21 +7716,21 @@ verror@1.10.0: | ||
| 7858 | extsprintf "^1.2.0" | 7716 | extsprintf "^1.2.0" |
| 7859 | 7717 | ||
| 7860 | vm-browserify@^1.0.1: | 7718 | vm-browserify@^1.0.1: |
| 7861 | - version "1.1.0" | ||
| 7862 | - resolved "https://registry.npm.taobao.org/vm-browserify/download/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" | ||
| 7863 | - integrity sha1-vXbWojMj4sqP+hICjcBFWcdfkBk= | 7719 | + version "1.1.2" |
| 7720 | + resolved "https://registry.npm.taobao.org/vm-browserify/download/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" | ||
| 7721 | + integrity sha1-eGQcSIuObKkadfUR56OzKobl3aA= | ||
| 7864 | 7722 | ||
| 7865 | vue-hot-reload-api@^2.3.0: | 7723 | vue-hot-reload-api@^2.3.0: |
| 7866 | version "2.3.4" | 7724 | version "2.3.4" |
| 7867 | resolved "https://registry.npm.taobao.org/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" | 7725 | resolved "https://registry.npm.taobao.org/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" |
| 7868 | integrity sha1-UylVzB6yCKPZkLOp+acFdGV+CPI= | 7726 | integrity sha1-UylVzB6yCKPZkLOp+acFdGV+CPI= |
| 7869 | 7727 | ||
| 7870 | -vue-loader@^15.7.0: | ||
| 7871 | - version "15.7.1" | ||
| 7872 | - resolved "https://registry.npm.taobao.org/vue-loader/download/vue-loader-15.7.1.tgz#6ccacd4122aa80f69baaac08ff295a62e3aefcfd" | ||
| 7873 | - integrity sha1-bMrNQSKqgPabqqwI/ylaYuOu/P0= | 7728 | +vue-loader@^15.9.2: |
| 7729 | + version "15.9.3" | ||
| 7730 | + resolved "https://registry.npm.taobao.org/vue-loader/download/vue-loader-15.9.3.tgz#0de35d9e555d3ed53969516cac5ce25531299dda" | ||
| 7731 | + integrity sha1-DeNdnlVdPtU5aVFsrFziVTEpndo= | ||
| 7874 | dependencies: | 7732 | dependencies: |
| 7875 | - "@vue/component-compiler-utils" "^3.0.0" | 7733 | + "@vue/component-compiler-utils" "^3.1.0" |
| 7876 | hash-sum "^1.0.2" | 7734 | hash-sum "^1.0.2" |
| 7877 | loader-utils "^1.1.0" | 7735 | loader-utils "^1.1.0" |
| 7878 | vue-hot-reload-api "^2.3.0" | 7736 | vue-hot-reload-api "^2.3.0" |
| @@ -7888,12 +7746,12 @@ vue-markdown-loader@^2.4.1: | @@ -7888,12 +7746,12 @@ vue-markdown-loader@^2.4.1: | ||
| 7888 | loader-utils "^1.1.0" | 7746 | loader-utils "^1.1.0" |
| 7889 | markdown-it "^8.4.0" | 7747 | markdown-it "^8.4.0" |
| 7890 | 7748 | ||
| 7891 | -vue-router@^3.1.3: | ||
| 7892 | - version "3.1.3" | ||
| 7893 | - resolved "https://registry.npm.taobao.org/vue-router/download/vue-router-3.1.3.tgz#e6b14fabc0c0ee9fda0e2cbbda74b350e28e412b" | ||
| 7894 | - integrity sha1-5rFPq8DA7p/aDiy72nSzUOKOQSs= | 7749 | +vue-router@^3.3.4: |
| 7750 | + version "3.3.4" | ||
| 7751 | + resolved "https://registry.npm.taobao.org/vue-router/download/vue-router-3.3.4.tgz?cache=0&sync_timestamp=1594111718735&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-router%2Fdownload%2Fvue-router-3.3.4.tgz#4e38abc34a11c41b6c3d8244449a2e363ba6250b" | ||
| 7752 | + integrity sha1-Tjirw0oRxBtsPYJERJouNjumJQs= | ||
| 7895 | 7753 | ||
| 7896 | -vue-style-loader@^4.1.0: | 7754 | +vue-style-loader@^4.1.0, vue-style-loader@^4.1.2: |
| 7897 | version "4.1.2" | 7755 | version "4.1.2" |
| 7898 | resolved "https://registry.npm.taobao.org/vue-style-loader/download/vue-style-loader-4.1.2.tgz#dedf349806f25ceb4e64f3ad7c0a44fba735fcf8" | 7756 | resolved "https://registry.npm.taobao.org/vue-style-loader/download/vue-style-loader-4.1.2.tgz#dedf349806f25ceb4e64f3ad7c0a44fba735fcf8" |
| 7899 | integrity sha1-3t80mAbyXOtOZPOtfApE+6c1/Pg= | 7757 | integrity sha1-3t80mAbyXOtOZPOtfApE+6c1/Pg= |
| @@ -7901,10 +7759,10 @@ vue-style-loader@^4.1.0: | @@ -7901,10 +7759,10 @@ vue-style-loader@^4.1.0: | ||
| 7901 | hash-sum "^1.0.2" | 7759 | hash-sum "^1.0.2" |
| 7902 | loader-utils "^1.0.2" | 7760 | loader-utils "^1.0.2" |
| 7903 | 7761 | ||
| 7904 | -vue-template-compiler@^2.6.10: | ||
| 7905 | - version "2.6.10" | ||
| 7906 | - resolved "https://registry.npm.taobao.org/vue-template-compiler/download/vue-template-compiler-2.6.10.tgz#323b4f3495f04faa3503337a82f5d6507799c9cc" | ||
| 7907 | - integrity sha1-MjtPNJXwT6o1AzN6gvXWUHeZycw= | 7762 | +vue-template-compiler@^2.6.11: |
| 7763 | + version "2.6.11" | ||
| 7764 | + resolved "https://registry.npm.taobao.org/vue-template-compiler/download/vue-template-compiler-2.6.11.tgz#c04704ef8f498b153130018993e56309d4698080" | ||
| 7765 | + integrity sha1-wEcE749JixUxMAGJk+VjCdRpgIA= | ||
| 7908 | dependencies: | 7766 | dependencies: |
| 7909 | de-indent "^1.0.2" | 7767 | de-indent "^1.0.2" |
| 7910 | he "^1.1.0" | 7768 | he "^1.1.0" |
| @@ -7914,24 +7772,33 @@ vue-template-es2015-compiler@^1.9.0: | @@ -7914,24 +7772,33 @@ vue-template-es2015-compiler@^1.9.0: | ||
| 7914 | resolved "https://registry.npm.taobao.org/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" | 7772 | resolved "https://registry.npm.taobao.org/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" |
| 7915 | integrity sha1-HuO8mhbsv1EYvjNLsV+cRvgvWCU= | 7773 | integrity sha1-HuO8mhbsv1EYvjNLsV+cRvgvWCU= |
| 7916 | 7774 | ||
| 7917 | -vue@^2.6.10: | ||
| 7918 | - version "2.6.10" | ||
| 7919 | - resolved "https://registry.npm.taobao.org/vue/download/vue-2.6.10.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue%2Fdownload%2Fvue-2.6.10.tgz#a72b1a42a4d82a721ea438d1b6bf55e66195c637" | ||
| 7920 | - integrity sha1-pysaQqTYKnIepDjRtr9V5mGVxjc= | 7775 | +vue@^2.6.11: |
| 7776 | + version "2.6.11" | ||
| 7777 | + resolved "https://registry.npm.taobao.org/vue/download/vue-2.6.11.tgz?cache=0&sync_timestamp=1594227033090&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue%2Fdownload%2Fvue-2.6.11.tgz#76594d877d4b12234406e84e35275c6d514125c5" | ||
| 7778 | + integrity sha1-dllNh31LEiNEBuhONSdcbVFBJcU= | ||
| 7921 | 7779 | ||
| 7922 | -vuex@^3.1.1: | ||
| 7923 | - version "3.1.1" | ||
| 7924 | - resolved "https://registry.npm.taobao.org/vuex/download/vuex-3.1.1.tgz#0c264bfe30cdbccf96ab9db3177d211828a5910e" | ||
| 7925 | - integrity sha1-DCZL/jDNvM+Wq52zF30hGCilkQ4= | 7780 | +vuex@^3.5.1: |
| 7781 | + version "3.5.1" | ||
| 7782 | + resolved "https://registry.npm.taobao.org/vuex/download/vuex-3.5.1.tgz#f1b8dcea649bc25254cf4f4358081dbf5da18b3d" | ||
| 7783 | + integrity sha1-8bjc6mSbwlJUz09DWAgdv12hiz0= | ||
| 7926 | 7784 | ||
| 7927 | -watchpack@^1.6.0: | ||
| 7928 | - version "1.6.0" | ||
| 7929 | - resolved "https://registry.npm.taobao.org/watchpack/download/watchpack-1.6.0.tgz?cache=0&sync_timestamp=1571664775955&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwatchpack%2Fdownload%2Fwatchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" | ||
| 7930 | - integrity sha1-S8EsLr6KonenHx0/FNaFx7RGzQA= | 7785 | +watchpack-chokidar2@^2.0.0: |
| 7786 | + version "2.0.0" | ||
| 7787 | + resolved "https://registry.npm.taobao.org/watchpack-chokidar2/download/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" | ||
| 7788 | + integrity sha1-mUihhmy71suCTeoTp+1pH2yN3/A= | ||
| 7789 | + dependencies: | ||
| 7790 | + chokidar "^2.1.8" | ||
| 7791 | + | ||
| 7792 | +watchpack@^1.6.1: | ||
| 7793 | + version "1.7.2" | ||
| 7794 | + resolved "https://registry.npm.taobao.org/watchpack/download/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" | ||
| 7795 | + integrity sha1-wC5NTUmRPD5+EiwzJTZa+dMx6ao= | ||
| 7931 | dependencies: | 7796 | dependencies: |
| 7932 | - chokidar "^2.0.2" | ||
| 7933 | graceful-fs "^4.1.2" | 7797 | graceful-fs "^4.1.2" |
| 7934 | neo-async "^2.5.0" | 7798 | neo-async "^2.5.0" |
| 7799 | + optionalDependencies: | ||
| 7800 | + chokidar "^3.4.0" | ||
| 7801 | + watchpack-chokidar2 "^2.0.0" | ||
| 7935 | 7802 | ||
| 7936 | wbuf@^1.1.0, wbuf@^1.7.3: | 7803 | wbuf@^1.1.0, wbuf@^1.7.3: |
| 7937 | version "1.7.3" | 7804 | version "1.7.3" |
| @@ -7949,16 +7816,16 @@ wcwidth@^1.0.1: | @@ -7949,16 +7816,16 @@ wcwidth@^1.0.1: | ||
| 7949 | 7816 | ||
| 7950 | webidl-conversions@^2.0.0: | 7817 | webidl-conversions@^2.0.0: |
| 7951 | version "2.0.1" | 7818 | version "2.0.1" |
| 7952 | - resolved "https://registry.npm.taobao.org/webidl-conversions/download/webidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506" | 7819 | + resolved "https://registry.npm.taobao.org/webidl-conversions/download/webidl-conversions-2.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebidl-conversions%2Fdownload%2Fwebidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506" |
| 7953 | integrity sha1-O/glj30xjHRDw28uFpQCoaZwNQY= | 7820 | integrity sha1-O/glj30xjHRDw28uFpQCoaZwNQY= |
| 7954 | 7821 | ||
| 7955 | -webpack-bundle-analyzer@^3.3.2: | ||
| 7956 | - version "3.6.0" | ||
| 7957 | - resolved "https://registry.npm.taobao.org/webpack-bundle-analyzer/download/webpack-bundle-analyzer-3.6.0.tgz#39b3a8f829ca044682bc6f9e011c95deb554aefd" | ||
| 7958 | - integrity sha1-ObOo+CnKBEaCvG+eARyV3rVUrv0= | 7822 | +webpack-bundle-analyzer@^3.8.0: |
| 7823 | + version "3.8.0" | ||
| 7824 | + resolved "https://registry.npm.taobao.org/webpack-bundle-analyzer/download/webpack-bundle-analyzer-3.8.0.tgz?cache=0&sync_timestamp=1589893683541&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack-bundle-analyzer%2Fdownload%2Fwebpack-bundle-analyzer-3.8.0.tgz#ce6b3f908daf069fd1f7266f692cbb3bded9ba16" | ||
| 7825 | + integrity sha1-zms/kI2vBp/R9yZvaSy7O97ZuhY= | ||
| 7959 | dependencies: | 7826 | dependencies: |
| 7960 | - acorn "^6.0.7" | ||
| 7961 | - acorn-walk "^6.1.1" | 7827 | + acorn "^7.1.1" |
| 7828 | + acorn-walk "^7.1.1" | ||
| 7962 | bfj "^6.1.1" | 7829 | bfj "^6.1.1" |
| 7963 | chalk "^2.4.1" | 7830 | chalk "^2.4.1" |
| 7964 | commander "^2.18.0" | 7831 | commander "^2.18.0" |
| @@ -7971,13 +7838,13 @@ webpack-bundle-analyzer@^3.3.2: | @@ -7971,13 +7838,13 @@ webpack-bundle-analyzer@^3.3.2: | ||
| 7971 | opener "^1.5.1" | 7838 | opener "^1.5.1" |
| 7972 | ws "^6.0.0" | 7839 | ws "^6.0.0" |
| 7973 | 7840 | ||
| 7974 | -webpack-chain@^6.0.0: | ||
| 7975 | - version "6.0.0" | ||
| 7976 | - resolved "https://registry.npm.taobao.org/webpack-chain/download/webpack-chain-6.0.0.tgz#9c36525a1271a54e7bfd1791199b395f400ae4f1" | ||
| 7977 | - integrity sha1-nDZSWhJxpU57/ReRGZs5X0AK5PE= | 7841 | +webpack-chain@^6.4.0: |
| 7842 | + version "6.5.0" | ||
| 7843 | + resolved "https://registry.npm.taobao.org/webpack-chain/download/webpack-chain-6.5.0.tgz#0b4af2094a5058a9ccd34b8f7ab194de4c83365f" | ||
| 7844 | + integrity sha1-C0ryCUpQWKnM00uPerGU3kyDNl8= | ||
| 7978 | dependencies: | 7845 | dependencies: |
| 7979 | deepmerge "^1.5.2" | 7846 | deepmerge "^1.5.2" |
| 7980 | - javascript-stringify "^2.0.0" | 7847 | + javascript-stringify "^2.0.1" |
| 7981 | 7848 | ||
| 7982 | webpack-dev-middleware@^3.7.2: | 7849 | webpack-dev-middleware@^3.7.2: |
| 7983 | version "3.7.2" | 7850 | version "3.7.2" |
| @@ -7990,10 +7857,10 @@ webpack-dev-middleware@^3.7.2: | @@ -7990,10 +7857,10 @@ webpack-dev-middleware@^3.7.2: | ||
| 7990 | range-parser "^1.2.1" | 7857 | range-parser "^1.2.1" |
| 7991 | webpack-log "^2.0.0" | 7858 | webpack-log "^2.0.0" |
| 7992 | 7859 | ||
| 7993 | -webpack-dev-server@^3.4.1: | ||
| 7994 | - version "3.8.2" | ||
| 7995 | - resolved "https://registry.npm.taobao.org/webpack-dev-server/download/webpack-dev-server-3.8.2.tgz#3292427bf6510da9a3ac2d500b924a4197667ff9" | ||
| 7996 | - integrity sha1-MpJCe/ZRDamjrC1QC5JKQZdmf/k= | 7860 | +webpack-dev-server@^3.11.0: |
| 7861 | + version "3.11.0" | ||
| 7862 | + resolved "https://registry.npm.taobao.org/webpack-dev-server/download/webpack-dev-server-3.11.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack-dev-server%2Fdownload%2Fwebpack-dev-server-3.11.0.tgz#8f154a3bce1bcfd1cc618ef4e703278855e7ff8c" | ||
| 7863 | + integrity sha1-jxVKO84bz9HMYY705wMniFXn/4w= | ||
| 7997 | dependencies: | 7864 | dependencies: |
| 7998 | ansi-html "0.0.7" | 7865 | ansi-html "0.0.7" |
| 7999 | bonjour "^3.5.0" | 7866 | bonjour "^3.5.0" |
| @@ -8003,31 +7870,31 @@ webpack-dev-server@^3.4.1: | @@ -8003,31 +7870,31 @@ webpack-dev-server@^3.4.1: | ||
| 8003 | debug "^4.1.1" | 7870 | debug "^4.1.1" |
| 8004 | del "^4.1.1" | 7871 | del "^4.1.1" |
| 8005 | express "^4.17.1" | 7872 | express "^4.17.1" |
| 8006 | - html-entities "^1.2.1" | 7873 | + html-entities "^1.3.1" |
| 8007 | http-proxy-middleware "0.19.1" | 7874 | http-proxy-middleware "0.19.1" |
| 8008 | import-local "^2.0.0" | 7875 | import-local "^2.0.0" |
| 8009 | internal-ip "^4.3.0" | 7876 | internal-ip "^4.3.0" |
| 8010 | ip "^1.1.5" | 7877 | ip "^1.1.5" |
| 8011 | is-absolute-url "^3.0.3" | 7878 | is-absolute-url "^3.0.3" |
| 8012 | killable "^1.0.1" | 7879 | killable "^1.0.1" |
| 8013 | - loglevel "^1.6.4" | 7880 | + loglevel "^1.6.8" |
| 8014 | opn "^5.5.0" | 7881 | opn "^5.5.0" |
| 8015 | p-retry "^3.0.1" | 7882 | p-retry "^3.0.1" |
| 8016 | - portfinder "^1.0.24" | 7883 | + portfinder "^1.0.26" |
| 8017 | schema-utils "^1.0.0" | 7884 | schema-utils "^1.0.0" |
| 8018 | selfsigned "^1.10.7" | 7885 | selfsigned "^1.10.7" |
| 8019 | semver "^6.3.0" | 7886 | semver "^6.3.0" |
| 8020 | serve-index "^1.9.1" | 7887 | serve-index "^1.9.1" |
| 8021 | - sockjs "0.3.19" | 7888 | + sockjs "0.3.20" |
| 8022 | sockjs-client "1.4.0" | 7889 | sockjs-client "1.4.0" |
| 8023 | - spdy "^4.0.1" | 7890 | + spdy "^4.0.2" |
| 8024 | strip-ansi "^3.0.1" | 7891 | strip-ansi "^3.0.1" |
| 8025 | supports-color "^6.1.0" | 7892 | supports-color "^6.1.0" |
| 8026 | url "^0.11.0" | 7893 | url "^0.11.0" |
| 8027 | webpack-dev-middleware "^3.7.2" | 7894 | webpack-dev-middleware "^3.7.2" |
| 8028 | webpack-log "^2.0.0" | 7895 | webpack-log "^2.0.0" |
| 8029 | ws "^6.2.1" | 7896 | ws "^6.2.1" |
| 8030 | - yargs "12.0.5" | 7897 | + yargs "^13.3.2" |
| 8031 | 7898 | ||
| 8032 | webpack-log@^2.0.0: | 7899 | webpack-log@^2.0.0: |
| 8033 | version "2.0.0" | 7900 | version "2.0.0" |
| @@ -8037,31 +7904,31 @@ webpack-log@^2.0.0: | @@ -8037,31 +7904,31 @@ webpack-log@^2.0.0: | ||
| 8037 | ansi-colors "^3.0.0" | 7904 | ansi-colors "^3.0.0" |
| 8038 | uuid "^3.3.2" | 7905 | uuid "^3.3.2" |
| 8039 | 7906 | ||
| 8040 | -webpack-merge@^4.2.1: | 7907 | +webpack-merge@^4.2.2: |
| 8041 | version "4.2.2" | 7908 | version "4.2.2" |
| 8042 | - resolved "https://registry.npm.taobao.org/webpack-merge/download/webpack-merge-4.2.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack-merge%2Fdownload%2Fwebpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d" | 7909 | + resolved "https://registry.npm.taobao.org/webpack-merge/download/webpack-merge-4.2.2.tgz?cache=0&sync_timestamp=1594294979021&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack-merge%2Fdownload%2Fwebpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d" |
| 8043 | integrity sha1-onxS6ng9E5iv0gh/VH17nS9DY00= | 7910 | integrity sha1-onxS6ng9E5iv0gh/VH17nS9DY00= |
| 8044 | dependencies: | 7911 | dependencies: |
| 8045 | lodash "^4.17.15" | 7912 | lodash "^4.17.15" |
| 8046 | 7913 | ||
| 8047 | webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3: | 7914 | webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3: |
| 8048 | version "1.4.3" | 7915 | version "1.4.3" |
| 8049 | - resolved "https://registry.npm.taobao.org/webpack-sources/download/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" | 7916 | + resolved "https://registry.npm.taobao.org/webpack-sources/download/webpack-sources-1.4.3.tgz?cache=0&sync_timestamp=1574264193174&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack-sources%2Fdownload%2Fwebpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" |
| 8050 | integrity sha1-7t2OwLko+/HL/plOItLYkPMwqTM= | 7917 | integrity sha1-7t2OwLko+/HL/plOItLYkPMwqTM= |
| 8051 | dependencies: | 7918 | dependencies: |
| 8052 | source-list-map "^2.0.0" | 7919 | source-list-map "^2.0.0" |
| 8053 | source-map "~0.6.1" | 7920 | source-map "~0.6.1" |
| 8054 | 7921 | ||
| 8055 | webpack@^4.0.0: | 7922 | webpack@^4.0.0: |
| 8056 | - version "4.41.2" | ||
| 8057 | - resolved "https://registry.npm.taobao.org/webpack/download/webpack-4.41.2.tgz#c34ec76daa3a8468c9b61a50336d8e3303dce74e" | ||
| 8058 | - integrity sha1-w07Hbao6hGjJthpQM22OMwPc504= | ||
| 8059 | - dependencies: | ||
| 8060 | - "@webassemblyjs/ast" "1.8.5" | ||
| 8061 | - "@webassemblyjs/helper-module-context" "1.8.5" | ||
| 8062 | - "@webassemblyjs/wasm-edit" "1.8.5" | ||
| 8063 | - "@webassemblyjs/wasm-parser" "1.8.5" | ||
| 8064 | - acorn "^6.2.1" | 7923 | + version "4.43.0" |
| 7924 | + resolved "https://registry.npm.taobao.org/webpack/download/webpack-4.43.0.tgz?cache=0&sync_timestamp=1594294511041&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebpack%2Fdownload%2Fwebpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6" | ||
| 7925 | + integrity sha1-xIVHsR1WMiTFYdrRFyyKoLimeOY= | ||
| 7926 | + dependencies: | ||
| 7927 | + "@webassemblyjs/ast" "1.9.0" | ||
| 7928 | + "@webassemblyjs/helper-module-context" "1.9.0" | ||
| 7929 | + "@webassemblyjs/wasm-edit" "1.9.0" | ||
| 7930 | + "@webassemblyjs/wasm-parser" "1.9.0" | ||
| 7931 | + acorn "^6.4.1" | ||
| 8065 | ajv "^6.10.2" | 7932 | ajv "^6.10.2" |
| 8066 | ajv-keywords "^3.4.1" | 7933 | ajv-keywords "^3.4.1" |
| 8067 | chrome-trace-event "^1.0.2" | 7934 | chrome-trace-event "^1.0.2" |
| @@ -8072,28 +7939,35 @@ webpack@^4.0.0: | @@ -8072,28 +7939,35 @@ webpack@^4.0.0: | ||
| 8072 | loader-utils "^1.2.3" | 7939 | loader-utils "^1.2.3" |
| 8073 | memory-fs "^0.4.1" | 7940 | memory-fs "^0.4.1" |
| 8074 | micromatch "^3.1.10" | 7941 | micromatch "^3.1.10" |
| 8075 | - mkdirp "^0.5.1" | 7942 | + mkdirp "^0.5.3" |
| 8076 | neo-async "^2.6.1" | 7943 | neo-async "^2.6.1" |
| 8077 | node-libs-browser "^2.2.1" | 7944 | node-libs-browser "^2.2.1" |
| 8078 | schema-utils "^1.0.0" | 7945 | schema-utils "^1.0.0" |
| 8079 | tapable "^1.1.3" | 7946 | tapable "^1.1.3" |
| 8080 | - terser-webpack-plugin "^1.4.1" | ||
| 8081 | - watchpack "^1.6.0" | 7947 | + terser-webpack-plugin "^1.4.3" |
| 7948 | + watchpack "^1.6.1" | ||
| 8082 | webpack-sources "^1.4.1" | 7949 | webpack-sources "^1.4.1" |
| 8083 | 7950 | ||
| 7951 | +websocket-driver@0.6.5: | ||
| 7952 | + version "0.6.5" | ||
| 7953 | + resolved "https://registry.npm.taobao.org/websocket-driver/download/websocket-driver-0.6.5.tgz?cache=0&sync_timestamp=1591289007652&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebsocket-driver%2Fdownload%2Fwebsocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" | ||
| 7954 | + integrity sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY= | ||
| 7955 | + dependencies: | ||
| 7956 | + websocket-extensions ">=0.1.1" | ||
| 7957 | + | ||
| 8084 | websocket-driver@>=0.5.1: | 7958 | websocket-driver@>=0.5.1: |
| 8085 | - version "0.7.3" | ||
| 8086 | - resolved "https://registry.npm.taobao.org/websocket-driver/download/websocket-driver-0.7.3.tgz#a2d4e0d4f4f116f1e6297eba58b05d430100e9f9" | ||
| 8087 | - integrity sha1-otTg1PTxFvHmKX66WLBdQwEA6fk= | 7959 | + version "0.7.4" |
| 7960 | + resolved "https://registry.npm.taobao.org/websocket-driver/download/websocket-driver-0.7.4.tgz?cache=0&sync_timestamp=1591289007652&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebsocket-driver%2Fdownload%2Fwebsocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" | ||
| 7961 | + integrity sha1-ia1Slbv2S0gKvLox5JU6ynBvV2A= | ||
| 8088 | dependencies: | 7962 | dependencies: |
| 8089 | - http-parser-js ">=0.4.0 <0.4.11" | 7963 | + http-parser-js ">=0.5.1" |
| 8090 | safe-buffer ">=5.1.0" | 7964 | safe-buffer ">=5.1.0" |
| 8091 | websocket-extensions ">=0.1.1" | 7965 | websocket-extensions ">=0.1.1" |
| 8092 | 7966 | ||
| 8093 | websocket-extensions@>=0.1.1: | 7967 | websocket-extensions@>=0.1.1: |
| 8094 | - version "0.1.3" | ||
| 8095 | - resolved "https://registry.npm.taobao.org/websocket-extensions/download/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" | ||
| 8096 | - integrity sha1-XS/yKXcAPsaHpLhwc9+7rBRszyk= | 7968 | + version "0.1.4" |
| 7969 | + resolved "https://registry.npm.taobao.org/websocket-extensions/download/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" | ||
| 7970 | + integrity sha1-f4RzvIOd/YdgituV1+sHUhFXikI= | ||
| 8097 | 7971 | ||
| 8098 | whatwg-url-compat@~0.6.5: | 7972 | whatwg-url-compat@~0.6.5: |
| 8099 | version "0.6.5" | 7973 | version "0.6.5" |
| @@ -8109,29 +7983,22 @@ which-module@^2.0.0: | @@ -8109,29 +7983,22 @@ which-module@^2.0.0: | ||
| 8109 | 7983 | ||
| 8110 | which@^1.2.9: | 7984 | which@^1.2.9: |
| 8111 | version "1.3.1" | 7985 | version "1.3.1" |
| 8112 | - resolved "https://registry.npm.taobao.org/which/download/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" | 7986 | + resolved "https://registry.npm.taobao.org/which/download/which-1.3.1.tgz?cache=0&sync_timestamp=1574116262707&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwhich%2Fdownload%2Fwhich-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" |
| 8113 | integrity sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo= | 7987 | integrity sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo= |
| 8114 | dependencies: | 7988 | dependencies: |
| 8115 | isexe "^2.0.0" | 7989 | isexe "^2.0.0" |
| 8116 | 7990 | ||
| 8117 | which@^2.0.1: | 7991 | which@^2.0.1: |
| 8118 | - version "2.0.1" | ||
| 8119 | - resolved "https://registry.npm.taobao.org/which/download/which-2.0.1.tgz#f1cf94d07a8e571b6ff006aeb91d0300c47ef0a4" | ||
| 8120 | - integrity sha1-8c+U0HqOVxtv8AauuR0DAMR+8KQ= | 7992 | + version "2.0.2" |
| 7993 | + resolved "https://registry.npm.taobao.org/which/download/which-2.0.2.tgz?cache=0&sync_timestamp=1574116262707&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwhich%2Fdownload%2Fwhich-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" | ||
| 7994 | + integrity sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE= | ||
| 8121 | dependencies: | 7995 | dependencies: |
| 8122 | isexe "^2.0.0" | 7996 | isexe "^2.0.0" |
| 8123 | 7997 | ||
| 8124 | -wide-align@^1.1.0: | ||
| 8125 | - version "1.1.3" | ||
| 8126 | - resolved "https://registry.npm.taobao.org/wide-align/download/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" | ||
| 8127 | - integrity sha1-rgdOa9wMFKQx6ATmJFScYzsABFc= | ||
| 8128 | - dependencies: | ||
| 8129 | - string-width "^1.0.2 || 2" | ||
| 8130 | - | ||
| 8131 | -wordwrap@~1.0.0: | ||
| 8132 | - version "1.0.0" | ||
| 8133 | - resolved "https://registry.npm.taobao.org/wordwrap/download/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" | ||
| 8134 | - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= | 7998 | +word-wrap@~1.2.3: |
| 7999 | + version "1.2.3" | ||
| 8000 | + resolved "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" | ||
| 8001 | + integrity sha1-YQY29rH3A4kb00dxzLF/uTtHB5w= | ||
| 8135 | 8002 | ||
| 8136 | worker-farm@^1.7.0: | 8003 | worker-farm@^1.7.0: |
| 8137 | version "1.7.0" | 8004 | version "1.7.0" |
| @@ -8140,14 +8007,6 @@ worker-farm@^1.7.0: | @@ -8140,14 +8007,6 @@ worker-farm@^1.7.0: | ||
| 8140 | dependencies: | 8007 | dependencies: |
| 8141 | errno "~0.1.7" | 8008 | errno "~0.1.7" |
| 8142 | 8009 | ||
| 8143 | -wrap-ansi@^2.0.0: | ||
| 8144 | - version "2.1.0" | ||
| 8145 | - resolved "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" | ||
| 8146 | - integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= | ||
| 8147 | - dependencies: | ||
| 8148 | - string-width "^1.0.1" | ||
| 8149 | - strip-ansi "^3.0.1" | ||
| 8150 | - | ||
| 8151 | wrap-ansi@^5.1.0: | 8010 | wrap-ansi@^5.1.0: |
| 8152 | version "5.1.0" | 8011 | version "5.1.0" |
| 8153 | resolved "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" | 8012 | resolved "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" |
| @@ -8157,6 +8016,15 @@ wrap-ansi@^5.1.0: | @@ -8157,6 +8016,15 @@ wrap-ansi@^5.1.0: | ||
| 8157 | string-width "^3.0.0" | 8016 | string-width "^3.0.0" |
| 8158 | strip-ansi "^5.0.0" | 8017 | strip-ansi "^5.0.0" |
| 8159 | 8018 | ||
| 8019 | +wrap-ansi@^6.2.0: | ||
| 8020 | + version "6.2.0" | ||
| 8021 | + resolved "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" | ||
| 8022 | + integrity sha1-6Tk7oHEC5skaOyIUePAlfNKFblM= | ||
| 8023 | + dependencies: | ||
| 8024 | + ansi-styles "^4.0.0" | ||
| 8025 | + string-width "^4.1.0" | ||
| 8026 | + strip-ansi "^6.0.0" | ||
| 8027 | + | ||
| 8160 | wrappy@1: | 8028 | wrappy@1: |
| 8161 | version "1.0.2" | 8029 | version "1.0.2" |
| 8162 | resolved "https://registry.npm.taobao.org/wrappy/download/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" | 8030 | resolved "https://registry.npm.taobao.org/wrappy/download/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" |
| @@ -8164,7 +8032,7 @@ wrappy@1: | @@ -8164,7 +8032,7 @@ wrappy@1: | ||
| 8164 | 8032 | ||
| 8165 | ws@^6.0.0, ws@^6.2.1: | 8033 | ws@^6.0.0, ws@^6.2.1: |
| 8166 | version "6.2.1" | 8034 | version "6.2.1" |
| 8167 | - resolved "https://registry.npm.taobao.org/ws/download/ws-6.2.1.tgz?cache=0&sync_timestamp=1571495321314&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fws%2Fdownload%2Fws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" | 8035 | + resolved "https://registry.npm.taobao.org/ws/download/ws-6.2.1.tgz?cache=0&sync_timestamp=1593925481882&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fws%2Fdownload%2Fws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" |
| 8168 | integrity sha1-RC/fCkftZPWbal2P8TD0dI7VJPs= | 8036 | integrity sha1-RC/fCkftZPWbal2P8TD0dI7VJPs= |
| 8169 | dependencies: | 8037 | dependencies: |
| 8170 | async-limiter "~1.0.0" | 8038 | async-limiter "~1.0.0" |
| @@ -8174,12 +8042,19 @@ ws@^6.0.0, ws@^6.2.1: | @@ -8174,12 +8042,19 @@ ws@^6.0.0, ws@^6.2.1: | ||
| 8174 | resolved "https://registry.npm.taobao.org/xml-name-validator/download/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" | 8042 | resolved "https://registry.npm.taobao.org/xml-name-validator/download/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" |
| 8175 | integrity sha1-TYuPHszTQZqjYgYb7O9RXh5VljU= | 8043 | integrity sha1-TYuPHszTQZqjYgYb7O9RXh5VljU= |
| 8176 | 8044 | ||
| 8045 | +xregexp@^4.2.4: | ||
| 8046 | + version "4.3.0" | ||
| 8047 | + resolved "https://registry.npm.taobao.org/xregexp/download/xregexp-4.3.0.tgz?cache=0&sync_timestamp=1581429221351&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fxregexp%2Fdownload%2Fxregexp-4.3.0.tgz#7e92e73d9174a99a59743f67a4ce879a04b5ae50" | ||
| 8048 | + integrity sha1-fpLnPZF0qZpZdD9npM6HmgS1rlA= | ||
| 8049 | + dependencies: | ||
| 8050 | + "@babel/runtime-corejs3" "^7.8.3" | ||
| 8051 | + | ||
| 8177 | xtend@^4.0.0, xtend@~4.0.1: | 8052 | xtend@^4.0.0, xtend@~4.0.1: |
| 8178 | version "4.0.2" | 8053 | version "4.0.2" |
| 8179 | resolved "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" | 8054 | resolved "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" |
| 8180 | integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q= | 8055 | integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q= |
| 8181 | 8056 | ||
| 8182 | -"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: | 8057 | +y18n@^4.0.0: |
| 8183 | version "4.0.0" | 8058 | version "4.0.0" |
| 8184 | resolved "https://registry.npm.taobao.org/y18n/download/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" | 8059 | resolved "https://registry.npm.taobao.org/y18n/download/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" |
| 8185 | integrity sha1-le+U+F7MgdAHwmThkKEg8KPIVms= | 8060 | integrity sha1-le+U+F7MgdAHwmThkKEg8KPIVms= |
| @@ -8189,7 +8064,7 @@ yallist@^2.1.2: | @@ -8189,7 +8064,7 @@ yallist@^2.1.2: | ||
| 8189 | resolved "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" | 8064 | resolved "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" |
| 8190 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= | 8065 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= |
| 8191 | 8066 | ||
| 8192 | -yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: | 8067 | +yallist@^3.0.2: |
| 8193 | version "3.1.1" | 8068 | version "3.1.1" |
| 8194 | resolved "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" | 8069 | resolved "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" |
| 8195 | integrity sha1-27fa+b/YusmrRev2ArjLrQ1dCP0= | 8070 | integrity sha1-27fa+b/YusmrRev2ArjLrQ1dCP0= |
| @@ -8199,52 +8074,26 @@ yallist@^4.0.0: | @@ -8199,52 +8074,26 @@ yallist@^4.0.0: | ||
| 8199 | resolved "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" | 8074 | resolved "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" |
| 8200 | integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI= | 8075 | integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI= |
| 8201 | 8076 | ||
| 8202 | -yargs-parser@^11.1.1: | ||
| 8203 | - version "11.1.1" | ||
| 8204 | - resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" | ||
| 8205 | - integrity sha1-h5oIZZc7yp9rq1y987HGfsfTvPQ= | 8077 | +yargs-parser@^13.1.2: |
| 8078 | + version "13.1.2" | ||
| 8079 | + resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" | ||
| 8080 | + integrity sha1-Ew8JcC667vJlDVTObj5XBvek+zg= | ||
| 8206 | dependencies: | 8081 | dependencies: |
| 8207 | camelcase "^5.0.0" | 8082 | camelcase "^5.0.0" |
| 8208 | decamelize "^1.2.0" | 8083 | decamelize "^1.2.0" |
| 8209 | 8084 | ||
| 8210 | -yargs-parser@^13.1.1: | ||
| 8211 | - version "13.1.1" | ||
| 8212 | - resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" | ||
| 8213 | - integrity sha1-0mBYUyqgbTZf4JH2ofwGsvfl7KA= | 8085 | +yargs-parser@^18.1.2: |
| 8086 | + version "18.1.3" | ||
| 8087 | + resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" | ||
| 8088 | + integrity sha1-vmjEl1xrKr9GkjawyHA2L6sJp7A= | ||
| 8214 | dependencies: | 8089 | dependencies: |
| 8215 | camelcase "^5.0.0" | 8090 | camelcase "^5.0.0" |
| 8216 | decamelize "^1.2.0" | 8091 | decamelize "^1.2.0" |
| 8217 | 8092 | ||
| 8218 | -yargs-parser@^15.0.0: | ||
| 8219 | - version "15.0.0" | ||
| 8220 | - resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-15.0.0.tgz#cdd7a97490ec836195f59f3f4dbe5ea9e8f75f08" | ||
| 8221 | - integrity sha1-zdepdJDsg2GV9Z8/Tb5eqej3Xwg= | ||
| 8222 | - dependencies: | ||
| 8223 | - camelcase "^5.0.0" | ||
| 8224 | - decamelize "^1.2.0" | ||
| 8225 | - | ||
| 8226 | -yargs@12.0.5: | ||
| 8227 | - version "12.0.5" | ||
| 8228 | - resolved "https://registry.npm.taobao.org/yargs/download/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" | ||
| 8229 | - integrity sha1-BfWZe2CWR7ZPZrgeO0sQo2jnrRM= | ||
| 8230 | - dependencies: | ||
| 8231 | - cliui "^4.0.0" | ||
| 8232 | - decamelize "^1.2.0" | ||
| 8233 | - find-up "^3.0.0" | ||
| 8234 | - get-caller-file "^1.0.1" | ||
| 8235 | - os-locale "^3.0.0" | ||
| 8236 | - require-directory "^2.1.1" | ||
| 8237 | - require-main-filename "^1.0.1" | ||
| 8238 | - set-blocking "^2.0.0" | ||
| 8239 | - string-width "^2.0.0" | ||
| 8240 | - which-module "^2.0.0" | ||
| 8241 | - y18n "^3.2.1 || ^4.0.0" | ||
| 8242 | - yargs-parser "^11.1.1" | ||
| 8243 | - | ||
| 8244 | -yargs@^13.0.0: | ||
| 8245 | - version "13.3.0" | ||
| 8246 | - resolved "https://registry.npm.taobao.org/yargs/download/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" | ||
| 8247 | - integrity sha1-TGV6VeB+Xyz5R/ijZlZ8BKDe3IM= | 8093 | +yargs@^13.3.2: |
| 8094 | + version "13.3.2" | ||
| 8095 | + resolved "https://registry.npm.taobao.org/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1593706918697&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" | ||
| 8096 | + integrity sha1-rX/+/sGqWVZayRX4Lcyzipwxot0= | ||
| 8248 | dependencies: | 8097 | dependencies: |
| 8249 | cliui "^5.0.0" | 8098 | cliui "^5.0.0" |
| 8250 | find-up "^3.0.0" | 8099 | find-up "^3.0.0" |
| @@ -8255,21 +8104,21 @@ yargs@^13.0.0: | @@ -8255,21 +8104,21 @@ yargs@^13.0.0: | ||
| 8255 | string-width "^3.0.0" | 8104 | string-width "^3.0.0" |
| 8256 | which-module "^2.0.0" | 8105 | which-module "^2.0.0" |
| 8257 | y18n "^4.0.0" | 8106 | y18n "^4.0.0" |
| 8258 | - yargs-parser "^13.1.1" | 8107 | + yargs-parser "^13.1.2" |
| 8259 | 8108 | ||
| 8260 | -yargs@^14.0.0: | ||
| 8261 | - version "14.2.0" | ||
| 8262 | - resolved "https://registry.npm.taobao.org/yargs/download/yargs-14.2.0.tgz#f116a9242c4ed8668790b40759b4906c276e76c3" | ||
| 8263 | - integrity sha1-8RapJCxO2GaHkLQHWbSQbCdudsM= | 8109 | +yargs@^15.0.0, yargs@^15.3.1: |
| 8110 | + version "15.4.0" | ||
| 8111 | + resolved "https://registry.npm.taobao.org/yargs/download/yargs-15.4.0.tgz?cache=0&sync_timestamp=1593706918697&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs%2Fdownload%2Fyargs-15.4.0.tgz#53949fb768309bac1843de9b17b80051e9805ec2" | ||
| 8112 | + integrity sha1-U5Sft2gwm6wYQ96bF7gAUemAXsI= | ||
| 8264 | dependencies: | 8113 | dependencies: |
| 8265 | - cliui "^5.0.0" | ||
| 8266 | - decamelize "^1.2.0" | ||
| 8267 | - find-up "^3.0.0" | 8114 | + cliui "^6.0.0" |
| 8115 | + decamelize "^3.2.0" | ||
| 8116 | + find-up "^4.1.0" | ||
| 8268 | get-caller-file "^2.0.1" | 8117 | get-caller-file "^2.0.1" |
| 8269 | require-directory "^2.1.1" | 8118 | require-directory "^2.1.1" |
| 8270 | require-main-filename "^2.0.0" | 8119 | require-main-filename "^2.0.0" |
| 8271 | set-blocking "^2.0.0" | 8120 | set-blocking "^2.0.0" |
| 8272 | - string-width "^3.0.0" | 8121 | + string-width "^4.2.0" |
| 8273 | which-module "^2.0.0" | 8122 | which-module "^2.0.0" |
| 8274 | y18n "^4.0.0" | 8123 | y18n "^4.0.0" |
| 8275 | - yargs-parser "^15.0.0" | 8124 | + yargs-parser "^18.1.2" |