├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── package.json ├── src ├── index.js └── navbar.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | *.seed 2 | *.log 3 | *.csv 4 | *.dat 5 | *.out 6 | *.pid 7 | *.gz 8 | 9 | node_modules 10 | npm-debug.log 11 | dist 12 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | assets 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | ## [1.4.3](https://github.com/parksben/markdown-navbar/compare/1.4.0...1.4.3) (2020-08-12) 3 | 4 | 5 | ### Bug Fixes 6 | 7 | * the exception in Safari due to too many calls to the history.replacestate method ([2834372](https://github.com/parksben/markdown-navbar/commit/2834372)) 8 | * 文档内容无标题时的页面滚动报错 ([a3353a6](https://github.com/parksben/markdown-navbar/commit/a3353a6)) 9 | * 非标题行内出现#号导致的导航解析不正确 ([074cb10](https://github.com/parksben/markdown-navbar/commit/074cb10)) 10 | 11 | 12 | 13 | 14 | # [1.4.0](https://github.com/parksben/markdown-navbar/compare/1.3.7...1.4.0) (2020-01-14) 15 | 16 | 17 | ### Features 18 | 19 | * scroll page to target heading when event `hashchange` has been triggered ([e76941d](https://github.com/parksben/markdown-navbar/commit/e76941d)) 20 | 21 | 22 | 23 | 24 | ## [1.3.7](https://github.com/parksben/markdown-navbar/compare/1.3.5...1.3.7) (2020-01-09) 25 | 26 | 27 | ### Bug Fixes 28 | 29 | * the dataset.id of headings not be updated correctly after markdown source changed ([a175e73](https://github.com/parksben/markdown-navbar/commit/a175e73)) 30 | 31 | 32 | 33 | 34 | ## [1.3.5](https://github.com/parksben/markdown-navbar/compare/1.3.2...1.3.5) (2020-01-06) 35 | 36 | 37 | ### Bug Fixes 38 | 39 | * serial number parse error when some content exists before level 1 title ([35a234f](https://github.com/parksben/markdown-navbar/commit/35a234f)) 40 | * some data-id of heading elements not registered while two or multi same text of headings exist in one documentation ([cedf928](https://github.com/parksben/markdown-navbar/commit/cedf928)) 41 | 42 | 43 | 44 | 45 | ## [1.3.2](https://github.com/parksben/markdown-navbar/compare/v1.3.1...1.3.2) (2020-01-04) 46 | 47 | 48 | 49 | 50 | ## [1.3.1](https://github.com/parksben/markdown-navbar/compare/8e4e2d9...v1.3.1) (2020-01-04) 51 | 52 | 53 | ### Bug Fixes 54 | 55 | * anchor positioning fails when the page is initialized If there is a symbol or blank space in the title ([077a723](https://github.com/parksben/markdown-navbar/commit/077a723)) 56 | * Could not find dependency: core-js relative to dist/index.js ([c1659ed](https://github.com/parksben/markdown-navbar/commit/c1659ed)) 57 | * decode the value of `location.hash` as event callback params ([9a284a0](https://github.com/parksben/markdown-navbar/commit/9a284a0)) 58 | * fix some bugs for navigation and update README.md ([8e4e2d9](https://github.com/parksben/markdown-navbar/commit/8e4e2d9)) 59 | * use location search for hash changing ([413e654](https://github.com/parksben/markdown-navbar/commit/413e654)) 60 | * use new method to update the hash value of browser address without page scrolling ([1aae9fb](https://github.com/parksben/markdown-navbar/commit/1aae9fb)) 61 | 62 | 63 | ### Features 64 | 65 | * add a demo online at codesandbox.io && improve README ([7a8e419](https://github.com/parksben/markdown-navbar/commit/7a8e419)) 66 | * implement some event hooks ([1ab6712](https://github.com/parksben/markdown-navbar/commit/1ab6712)) 67 | * the function of automatically updating the hash value of browser address bar when the page scrolling ([bac0746](https://github.com/parksben/markdown-navbar/commit/bac0746)) 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 parksben 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Markdown-Navbar 2 | 3 | ![npm](https://img.shields.io/npm/l/markdown-navbar.svg) 4 | ![npm](https://img.shields.io/npm/dt/markdown-navbar.svg) 5 | ![npm](https://img.shields.io/npm/v/markdown-navbar/latest.svg) 6 | ![GitHub file size in bytes](https://img.shields.io/github/size/parksben/markdown-navbar/src/index.js) 7 | 8 | A React component renders an interactive navbar panel of Markdown docs for your blog or website. 9 | 10 | [![Demo on Netlify](https://screenshots.codesandbox.io/e7e0n.png)](https://csb-e7e0n.netlify.com/) 11 | 12 | ## Features 13 | 14 | Implement some regular functions easily by using this component, such as: 15 | 16 | - Display the structure tree of your article defined by the headings. 17 | - Render anchors that navigate to specific headings in the article. 18 | - Share one URL to readers to navigate to a specific area of the article. 19 | 20 | ## Install 21 | 22 | ```bash 23 | yarn add markdown-navbar # or `npm i markdown-navbar --save` 24 | ``` 25 | 26 | ## Quickstart 27 | 28 | [![Edit markdown-navbar-demo-online](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/markdown-navbar-demo-online-e7e0n?fontsize=14&hidenavigation=1&theme=dark) 29 | 30 | ```jsx 31 | import React from 'react'; 32 | import ReactDOM from 'react-dom'; 33 | // One third-part component for render markdown documentation 34 | import ReactMarkdown from 'react-markdown'; 35 | import MarkdownNavbar from 'markdown-navbar'; 36 | // The default style of markdown-navbar should be imported additionally 37 | import 'markdown-navbar/dist/navbar.css'; 38 | 39 | const article = `# Markdown-Navbar Demo 40 | 41 | ## Chicken Chicken 42 | 43 | Chicken Chicken Chicken Chicken Chicken. 44 | 45 | * Chicken Chicken Chicken Chicken Chicken. 46 | * Chicken Chicken Chicken Chicken Chicken. 47 | * Chicken Chicken Chicken Chicken Chicken. 48 | 49 | ### Chicken Chicken Chicken 50 | 51 | Chicken Chicken Chicken Chicken Chicken. 52 | 53 | #### Chicken Chicken Chicken Chicken 54 | 55 | Chicken Chicken Chicken Chicken Chicken Chicken.`; 56 | 57 | function App() { 58 | return ( 59 |
60 |
61 | 62 |
63 |
64 | 65 |
66 |
67 | ); 68 | } 69 | 70 | ReactDOM.render(, document.getElementById('root')); 71 | ``` 72 | 73 | ## Tips 74 | 75 | - The component only parses article headings at level 2 and below. The article title, which is usually used once in an article, will not appear in the navigation bar. 76 | - The component needs to be used in **conjunction** with your article content. When using this component, you must ensure that your article under the same page content. 77 | - Please confirm that every heading of your markdown document is different by each other when the value of property `declarative` is setted as `true`. 78 | 79 | ## Props 80 | 81 | | Property | Data Type | Default Value | Description | 82 | | :--------------: | :-------: | :-------------------------------: | :--------------------------------------------------------------------------------------: | 83 | | className | string | "" | The className that defines the outermost container of navbar | 84 | | source | string | "" | Markdown text content | 85 | | headingTopOffset | number | 0 | Anchor displacement relative to the top of the window (for the anchor jump) | 86 | | updateHashAuto | boolean | true | Automatically update the hash value of browser address when page scrolling if true | 87 | | declarative | boolean | false | Use the text of the title from Markdown content as the hash value for the anchor if true | 88 | | ordered | boolean | true | Whether the title contains a numerical prefix, such as: `1. 2. 2.2` | 89 | | onNavItemClick | function | (event, element, hashValue) => {} | The event callback function after clicking navbar item | 90 | | onHashChange | function | (newHash, oldHash) => {} | The event callback function before the hash value of browser address changing | 91 | 92 | ## License 93 | 94 | [MIT license](./LICENSE) 95 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | const presets = [ 2 | [ 3 | '@babel/env', 4 | { 5 | targets: { 6 | browsers: '> 0.25%, not dead', 7 | }, 8 | useBuiltIns: 'usage', 9 | corejs: 3, 10 | }, 11 | ], 12 | '@babel/preset-react', 13 | ]; 14 | 15 | const plugins = [ 16 | '@babel/plugin-proposal-class-properties', 17 | '@babel/plugin-transform-arrow-functions', 18 | ]; 19 | 20 | module.exports = { presets, plugins }; 21 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "prepublishOnly": "npm run build && npm run changelog", 4 | "build": "npm run compile-js && npm run compile-css", 5 | "compile-css": "npx postcss src/*.css --use autoprefixer -d dist", 6 | "compile-js": "rimraf dist && babel src --copy-files --ignore *.css --source-maps --extensions .js --out-dir dist", 7 | "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0" 8 | }, 9 | "dependencies": { 10 | "core-js": "3", 11 | "lodash": "^4.17.20", 12 | "prop-types": "^15.7.2", 13 | "react": "^16.12.0" 14 | }, 15 | "devDependencies": { 16 | "@babel/cli": "^7.7.7", 17 | "@babel/core": "^7.7.7", 18 | "@babel/plugin-proposal-class-properties": "^7.7.4", 19 | "@babel/plugin-transform-arrow-functions": "^7.7.4", 20 | "@babel/polyfill": "^7.7.0", 21 | "@babel/preset-env": "^7.7.7", 22 | "@babel/preset-react": "^7.7.4", 23 | "autoprefixer": "^8.0.0", 24 | "conventional-changelog-cli": "^1.3.14", 25 | "postcss-cli": "^5.0.0", 26 | "rimraf": "^2.6.2" 27 | }, 28 | "name": "markdown-navbar", 29 | "version": "1.4.3", 30 | "description": "Best markdown navigation bar for React.", 31 | "main": "dist/index.js", 32 | "repository": { 33 | "type": "git", 34 | "url": "git+ssh://git@github.com/parksben/markdown-navbar.git" 35 | }, 36 | "keywords": [ 37 | "markdown", 38 | "navigation", 39 | "navigator", 40 | "navbar", 41 | "menu", 42 | "react" 43 | ], 44 | "author": "parksben", 45 | "license": "MIT" 46 | } 47 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import { throttle } from 'lodash'; 4 | 5 | export class MarkdownNavbar extends Component { 6 | static propTypes = { 7 | source: PropTypes.string.isRequired, 8 | ordered: PropTypes.bool, 9 | headingTopOffset: PropTypes.number, 10 | updateHashAuto: PropTypes.bool, 11 | declarative: PropTypes.bool, 12 | className: PropTypes.string, 13 | onNavItemClick: PropTypes.func, 14 | onHashChange: PropTypes.func, 15 | }; 16 | 17 | static defaultProps = { 18 | source: '', 19 | ordered: true, 20 | headingTopOffset: 0, 21 | updateHashAuto: true, 22 | declarative: false, 23 | className: '', 24 | onNavItemClick: () => { }, 25 | onHashChange: () => { }, 26 | }; 27 | 28 | constructor(props) { 29 | super(props); 30 | this.state = { 31 | currentListNo: '', 32 | navStructure: [] 33 | }; 34 | } 35 | 36 | safeScrollTo(element,top,left = 0,smooth){ 37 | if(!element) return 38 | if(typeof element.scrollTo === 'function' ){ 39 | const scrollConfig = { 40 | top, 41 | left, 42 | } 43 | if(smooth){ 44 | scrollConfig.behavior = "smooth" 45 | } 46 | element.scrollTo(scrollConfig) 47 | } else{ 48 | if(element === window){ 49 | document.documentElement.scrollTop = top 50 | document.documentElement.scrollLeft = left 51 | } else{ 52 | element.scrollTop = top 53 | element.scrollLeft = left 54 | } 55 | } 56 | } 57 | refreshNav(source) { 58 | if (this.addTargetTimeout) { 59 | clearTimeout(this.addTargetTimeout); 60 | } 61 | this.setState({ navStructure: this.getNavStructure(source) }, () => { 62 | this.addTargetTimeout = setTimeout(() => { 63 | this.initHeadingsId(); 64 | if (this.state.navStructure.length) { 65 | const { listNo } = this.state.navStructure[0] 66 | this.setState({ 67 | currentListNo: listNo 68 | }) 69 | } 70 | document.addEventListener('scroll', this.winScroll, false); 71 | window.addEventListener('hashchange', this.winHashChange, false); 72 | }, 500); 73 | }) 74 | } 75 | 76 | componentDidMount() { 77 | // 初始化列表数据 78 | const { source } = this.props 79 | this.refreshNav(source) 80 | } 81 | componentWillReceiveProps(newProps) { 82 | // 复用时开启,用于在source更新时刷新列表 83 | const { source } = newProps 84 | this.refreshNav(source) 85 | } 86 | 87 | shouldComponentUpdate(nextProps) { 88 | if (nextProps.source !== this.props.source) { 89 | if (this.scrollEventLockTimer) { 90 | clearTimeout(this.scrollEventLockTimer); 91 | } 92 | this.scrollEventLock = true; 93 | 94 | this.safeScrollTo(window,0,0) 95 | this.safeScrollTo(this.refs.container,0,0) 96 | this.setState({ 97 | currentListNo: '', 98 | }); 99 | const headings = document.querySelectorAll('h1, h2, h3, h4, h5, h6'); 100 | Array.prototype.slice.apply(headings).forEach((h) => (h.dataset.id = '')); 101 | 102 | this.scrollEventLockTimer = setTimeout(() => { 103 | this.initHeadingsId(); 104 | this.scrollEventLock = false; 105 | }, 500); 106 | } 107 | return true; 108 | } 109 | 110 | componentWillUnmount() { 111 | if (this.addTargetTimeout) { 112 | clearTimeout(this.addTargetTimeout); 113 | } 114 | if (this.scrollTimeout) { 115 | clearTimeout(this.scrollTimeout); 116 | } 117 | document.removeEventListener('scroll', this.winScroll, false); 118 | window.removeEventListener('hashchange', this.winHashChange, false); 119 | } 120 | trimArrZero(arr){ 121 | let start,end 122 | for(start = 0; start < arr.length ;start++){ 123 | if(arr[start]){ 124 | break 125 | } 126 | } 127 | for(end = arr.length - 1 ;end >= 0 ; end--){ 128 | if(arr[end]){ 129 | break 130 | } 131 | } 132 | return arr.slice(start,end + 1) 133 | } 134 | 135 | getNavStructure(source) { 136 | const contentWithoutCode = source 137 | .replace(/^[^#]+\n/g, '') 138 | .replace(/(?:[^\n#]+)#+\s([^#\n]+)\n*/g, '') // 匹配行内出现 # 号的情况 139 | .replace(/^#\s[^#\n]*\n+/, '') 140 | .replace(/```[^`\n]*\n+[^```]+```\n+/g, '') 141 | .replace(/`([^`\n]+)`/g, '$1') 142 | .replace(/\*\*?([^*\n]+)\*\*?/g, '$1') 143 | .replace(/__?([^_\n]+)__?/g, '$1') 144 | .trim(); 145 | 146 | const pattOfTitle = /#+\s([^#\n]+)\n*/g; 147 | const matchResult = contentWithoutCode.match(pattOfTitle); 148 | 149 | if (!matchResult) { 150 | return []; 151 | } 152 | 153 | const navData = matchResult.map((r, i) => ({ 154 | index: i, 155 | level: r.match(/^#+/g)[0].length, 156 | text: r.replace(pattOfTitle, '$1'), 157 | })); 158 | 159 | let maxLevel = 0; 160 | navData.forEach((t) => { 161 | if (t.level > maxLevel) { 162 | maxLevel = t.level 163 | } 164 | }) 165 | let matchStack = []; 166 | // 此部分重构,原有方法会出现次级标题后再次出现高级标题时,listNo重复的bug 167 | for (let i = 0; i < navData.length; i++) { 168 | const t = navData[i]; 169 | const { level } = t 170 | while (matchStack.length && matchStack[matchStack.length - 1].level > level) { 171 | matchStack.pop(); 172 | } 173 | if (matchStack.length === 0) { 174 | const arr = new Array(maxLevel).fill(0); 175 | arr[level - 1] += 1; 176 | matchStack.push({ 177 | level, 178 | arr, 179 | }) 180 | t.listNo = this.trimArrZero(arr).join(".") 181 | continue; 182 | } 183 | const { arr } = matchStack[matchStack.length - 1]; 184 | const newArr = arr.slice() 185 | newArr[level - 1] += 1; 186 | matchStack.push({ 187 | level, 188 | arr: newArr 189 | }) 190 | t.listNo = this.trimArrZero(newArr).join(".") 191 | }; 192 | return navData; 193 | } 194 | 195 | scrollToTarget(dataId) { 196 | if (this.scrollTimeout) { 197 | clearTimeout(this.scrollTimeout); 198 | } 199 | 200 | this.scrollTimeout = setTimeout(() => { 201 | const target = document.querySelector(`[data-id="${dataId}"]`); 202 | if (target && typeof target.offsetTop === 'number') { 203 | this.safeScrollTo(window,target.offsetTop - this.props.headingTopOffset,0) 204 | } 205 | }, 0); 206 | } 207 | 208 | initHeadingsId() { 209 | const headingId = decodeURIComponent( 210 | this.props.declarative 211 | ? window.location.hash.replace(/^#/, '').trim() 212 | : (window.location.hash.match(/heading-\d+/g) || [])[0] 213 | ); 214 | 215 | this.state.navStructure.forEach((t) => { 216 | const headings = document.querySelectorAll(`h${t.level}`); 217 | const curHeading = Array.prototype.slice 218 | .apply(headings) 219 | .find( 220 | (h) => 221 | h.innerText.trim() === t.text.trim() && 222 | (!h.dataset || !h.dataset.id) 223 | ); 224 | 225 | if (curHeading) { 226 | curHeading.dataset.id = this.props.declarative 227 | ? `${t.listNo}-${t.text}` 228 | : `heading-${t.index}`; 229 | 230 | if (headingId && headingId === curHeading.dataset.id) { 231 | this.scrollToTarget(headingId); 232 | this.setState({ 233 | currentListNo: t.listNo, 234 | }); 235 | } 236 | } 237 | }); 238 | } 239 | 240 | getHeadingList() { 241 | const headingList = []; 242 | 243 | this.state.navStructure.forEach((t) => { 244 | const headings = document.querySelectorAll(`h${t.level}`); 245 | const curHeading = Array.prototype.slice 246 | .apply(headings) 247 | .find( 248 | (h) => 249 | h.innerText.trim() === t.text.trim() && 250 | !headingList.find((x) => x.offsetTop === h.offsetTop) 251 | ); 252 | if (curHeading) { 253 | headingList.push({ 254 | dataId: this.props.declarative ? t.text : `heading-${t.index}`, 255 | listNo: t.listNo, 256 | offsetTop: curHeading.offsetTop, 257 | }); 258 | } 259 | }); 260 | 261 | return headingList; 262 | } 263 | 264 | getCurrentHashValue = () => 265 | decodeURIComponent(window.location.hash.replace(/^#/, '')); 266 | 267 | winScroll = throttle(() => { 268 | if (this.scrollEventLock) return; 269 | 270 | const scrollTop = 271 | window.pageYOffset || 272 | document.documentElement.scrollTop || 273 | document.body.scrollTop || 274 | 0; 275 | 276 | const newHeadingList = this.getHeadingList().map((h) => ({ 277 | ...h, 278 | distanceToTop: Math.abs( 279 | scrollTop + this.props.headingTopOffset - h.offsetTop 280 | ), 281 | })); 282 | const distanceList = newHeadingList.map((h) => h.distanceToTop); 283 | const minDistance = Math.min(...distanceList); 284 | const curHeading = newHeadingList.find( 285 | (h) => h.distanceToTop === minDistance 286 | ); 287 | 288 | if (!curHeading) return; 289 | 290 | if (this.props.updateHashAuto) { 291 | // Hash changing callback 292 | if (curHeading.dataId !== this.getCurrentHashValue()) { 293 | this.props.onHashChange(curHeading.dataId, this.getCurrentHashValue()); 294 | } 295 | 296 | this.updateHash(curHeading.dataId); 297 | } 298 | if(currentNavElement){ 299 | const {container} = this.refs 300 | const {offsetTop} = currentNavElement 301 | const {scrollTop:containerScrollTop,offsetHeight:containerOffsetHeight} = container 302 | const min = containerScrollTop + 0.3 * containerOffsetHeight 303 | const max = containerScrollTop + 0.7 * containerOffsetHeight 304 | if(offsetTop < min || offsetTop > max){ 305 | const targetTop = offsetTop - 0.2 * containerOffsetHeight 306 | this.safeScrollTo(container, targetTop,0,true) 307 | } 308 | } 309 | this.setState({ 310 | currentListNo: curHeading.listNo, 311 | }); 312 | }, 300); 313 | 314 | winHashChange = () => { 315 | this.scrollToTarget(this.state.navStructure); 316 | }; 317 | 318 | updateHash(value) { 319 | if (this.updateHashTimeout) { 320 | clearTimeout(this.updateHashTimeout); 321 | } 322 | 323 | this.updateHashTimeout = setTimeout(() => { 324 | window.history.replaceState( 325 | {}, 326 | '', 327 | `${window.location.pathname}${window.location.search}#${value}` 328 | ); 329 | }, 0); 330 | } 331 | 332 | render() { 333 | const tBlocks = this.getNavStructure().map((t) => { 334 | const cls = `title-anchor title-level${t.level} ${ 335 | this.state.currentListNo === t.listNo ? 'active' : '' 336 | }`; 337 | 338 | return ( 339 |
{ 342 | const currentHash = this.props.declarative 343 | ? `${t.listNo}-${t.text}` // 加入listNo确保hash唯一ZZ 344 | : `heading-${t.index}`; 345 | 346 | // Avoid execution the callback `onHashChange` when clicking current nav item 347 | if (t.listNo !== this.state.currentListNo) { 348 | // Hash changing callback 349 | this.props.onHashChange(currentHash, this.getCurrentHashValue()); 350 | } 351 | 352 | // Nav item clicking callback 353 | this.props.onNavItemClick(evt, evt.target, currentHash); 354 | 355 | this.updateHash(currentHash); 356 | this.scrollToTarget(currentHash); 357 | this.setState({ 358 | currentListNo: t.listNo, 359 | }); 360 | }} 361 | key={`title_anchor_${Math.random().toString(36).substring(2)}`}> 362 | {this.props.ordered ? {t.listNo} : null} 363 | {t.text} 364 |
); 365 | }); 366 | 367 | return ( 368 |
369 | {tBlocks} 370 |
371 | ); 372 | } 373 | } 374 | 375 | export default MarkdownNavbar; 376 | -------------------------------------------------------------------------------- /src/navbar.css: -------------------------------------------------------------------------------- 1 | .markdown-navigation { 2 | font-size: 14px; 3 | font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Arial", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; 4 | width: 100%; 5 | overflow-x: hidden; 6 | overflow-y: scroll; 7 | scrollbar-width: 0; 8 | width:200px 9 | } 10 | .markdown-navigation::-webkit-scrollbar{ 11 | width:0; 12 | } 13 | 14 | .markdown-navigation .title-anchor { 15 | display: block; 16 | color: #bbb; 17 | transition: all 0.2s; 18 | margin: 0.8em 0; 19 | font-weight: lighter; 20 | line-height: 2em; 21 | padding-right: 1.8em; 22 | cursor: pointer; 23 | } 24 | 25 | .markdown-navigation .title-anchor:hover, 26 | .markdown-navigation .title-anchor.active { 27 | background-color: #f8f8f8; 28 | text-decoration: inherit; 29 | } 30 | 31 | .markdown-navigation .title-anchor.active { 32 | color: #007fff; 33 | } 34 | 35 | .markdown-navigation .title-anchor small { 36 | margin: 0 0.8em; 37 | } 38 | 39 | .markdown-navigation .title-level1 { 40 | color: #000; 41 | font-size: 1.2em; 42 | padding-left: 1em; 43 | font-weight: normal; 44 | } 45 | 46 | .markdown-navigation .title-level2 { 47 | color: #333; 48 | font-size: 1em; 49 | padding-left: 1em; 50 | font-weight: normal; 51 | } 52 | 53 | .markdown-navigation .title-level3 { 54 | color: #666; 55 | font-size: 0.8em; 56 | padding-left: 3em; 57 | font-weight: normal; 58 | } 59 | 60 | .markdown-navigation .title-level4 { 61 | color: #999; 62 | font-size: 0.72em; 63 | padding-left: 5em; 64 | } 65 | 66 | .markdown-navigation .title-level5 { 67 | color: #aaa; 68 | font-size: 0.72em; 69 | padding-left: 7em; 70 | } 71 | 72 | .markdown-navigation .title-level6 { 73 | color: #bbb; 74 | font-size: 0.72em; 75 | padding-left: 9em; 76 | } 77 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/cli@^7.7.7": 6 | version "7.7.7" 7 | resolved "https://registry.npm.taobao.org/@babel/cli/download/@babel/cli-7.7.7.tgz?cache=0&sync_timestamp=1576719059948&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcli%2Fdownload%2F%40babel%2Fcli-7.7.7.tgz#56849acbf81d1a970dd3d1b3097c8ebf5da3f534" 8 | dependencies: 9 | commander "^4.0.1" 10 | convert-source-map "^1.1.0" 11 | fs-readdir-recursive "^1.1.0" 12 | glob "^7.0.0" 13 | lodash "^4.17.13" 14 | make-dir "^2.1.0" 15 | slash "^2.0.0" 16 | source-map "^0.5.0" 17 | optionalDependencies: 18 | chokidar "^2.1.8" 19 | 20 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": 21 | version "7.5.5" 22 | resolved "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" 23 | dependencies: 24 | "@babel/highlight" "^7.0.0" 25 | 26 | "@babel/core@^7.7.7": 27 | version "7.7.7" 28 | resolved "https://registry.npm.taobao.org/@babel/core/download/@babel/core-7.7.7.tgz#ee155d2e12300bcc0cff6a8ad46f2af5063803e9" 29 | dependencies: 30 | "@babel/code-frame" "^7.5.5" 31 | "@babel/generator" "^7.7.7" 32 | "@babel/helpers" "^7.7.4" 33 | "@babel/parser" "^7.7.7" 34 | "@babel/template" "^7.7.4" 35 | "@babel/traverse" "^7.7.4" 36 | "@babel/types" "^7.7.4" 37 | convert-source-map "^1.7.0" 38 | debug "^4.1.0" 39 | json5 "^2.1.0" 40 | lodash "^4.17.13" 41 | resolve "^1.3.2" 42 | semver "^5.4.1" 43 | source-map "^0.5.0" 44 | 45 | "@babel/generator@^7.7.4", "@babel/generator@^7.7.7": 46 | version "7.7.7" 47 | resolved "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.7.7.tgz#859ac733c44c74148e1a72980a64ec84b85f4f45" 48 | dependencies: 49 | "@babel/types" "^7.7.4" 50 | jsesc "^2.5.1" 51 | lodash "^4.17.13" 52 | source-map "^0.5.0" 53 | 54 | "@babel/helper-annotate-as-pure@^7.7.4": 55 | version "7.7.4" 56 | resolved "https://registry.npm.taobao.org/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.7.4.tgz?cache=0&sync_timestamp=1574465857294&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.7.4.tgz#bb3faf1e74b74bd547e867e48f551fa6b098b6ce" 57 | dependencies: 58 | "@babel/types" "^7.7.4" 59 | 60 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.7.4": 61 | version "7.7.4" 62 | resolved "https://registry.npm.taobao.org/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-builder-binary-assignment-operator-visitor%2Fdownload%2F%40babel%2Fhelper-builder-binary-assignment-operator-visitor-7.7.4.tgz#5f73f2b28580e224b5b9bd03146a4015d6217f5f" 63 | dependencies: 64 | "@babel/helper-explode-assignable-expression" "^7.7.4" 65 | "@babel/types" "^7.7.4" 66 | 67 | "@babel/helper-builder-react-jsx@^7.7.4": 68 | version "7.7.4" 69 | resolved "https://registry.npm.taobao.org/@babel/helper-builder-react-jsx/download/@babel/helper-builder-react-jsx-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-builder-react-jsx%2Fdownload%2F%40babel%2Fhelper-builder-react-jsx-7.7.4.tgz#da188d247508b65375b2c30cf59de187be6b0c66" 70 | dependencies: 71 | "@babel/types" "^7.7.4" 72 | esutils "^2.0.0" 73 | 74 | "@babel/helper-call-delegate@^7.7.4": 75 | version "7.7.4" 76 | resolved "https://registry.npm.taobao.org/@babel/helper-call-delegate/download/@babel/helper-call-delegate-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-call-delegate%2Fdownload%2F%40babel%2Fhelper-call-delegate-7.7.4.tgz#621b83e596722b50c0066f9dc37d3232e461b801" 77 | dependencies: 78 | "@babel/helper-hoist-variables" "^7.7.4" 79 | "@babel/traverse" "^7.7.4" 80 | "@babel/types" "^7.7.4" 81 | 82 | "@babel/helper-create-class-features-plugin@^7.7.4": 83 | version "7.7.4" 84 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.7.4.tgz#fce60939fd50618610942320a8d951b3b639da2d" 85 | dependencies: 86 | "@babel/helper-function-name" "^7.7.4" 87 | "@babel/helper-member-expression-to-functions" "^7.7.4" 88 | "@babel/helper-optimise-call-expression" "^7.7.4" 89 | "@babel/helper-plugin-utils" "^7.0.0" 90 | "@babel/helper-replace-supers" "^7.7.4" 91 | "@babel/helper-split-export-declaration" "^7.7.4" 92 | 93 | "@babel/helper-create-regexp-features-plugin@^7.7.4": 94 | version "7.7.4" 95 | resolved "https://registry.npm.taobao.org/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.7.4.tgz#6d5762359fd34f4da1500e4cff9955b5299aaf59" 96 | dependencies: 97 | "@babel/helper-regex" "^7.4.4" 98 | regexpu-core "^4.6.0" 99 | 100 | "@babel/helper-define-map@^7.7.4": 101 | version "7.7.4" 102 | resolved "https://registry.npm.taobao.org/@babel/helper-define-map/download/@babel/helper-define-map-7.7.4.tgz#2841bf92eb8bd9c906851546fe6b9d45e162f176" 103 | dependencies: 104 | "@babel/helper-function-name" "^7.7.4" 105 | "@babel/types" "^7.7.4" 106 | lodash "^4.17.13" 107 | 108 | "@babel/helper-explode-assignable-expression@^7.7.4": 109 | version "7.7.4" 110 | resolved "https://registry.npm.taobao.org/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.7.4.tgz#fa700878e008d85dc51ba43e9fb835cddfe05c84" 111 | dependencies: 112 | "@babel/traverse" "^7.7.4" 113 | "@babel/types" "^7.7.4" 114 | 115 | "@babel/helper-function-name@^7.7.4": 116 | version "7.7.4" 117 | resolved "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.7.4.tgz?cache=0&sync_timestamp=1574465949765&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.7.4.tgz#ab6e041e7135d436d8f0a3eca15de5b67a341a2e" 118 | dependencies: 119 | "@babel/helper-get-function-arity" "^7.7.4" 120 | "@babel/template" "^7.7.4" 121 | "@babel/types" "^7.7.4" 122 | 123 | "@babel/helper-get-function-arity@^7.7.4": 124 | version "7.7.4" 125 | resolved "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.7.4.tgz#cb46348d2f8808e632f0ab048172130e636005f0" 126 | dependencies: 127 | "@babel/types" "^7.7.4" 128 | 129 | "@babel/helper-hoist-variables@^7.7.4": 130 | version "7.7.4" 131 | resolved "https://registry.npm.taobao.org/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.7.4.tgz#612384e3d823fdfaaf9fce31550fe5d4db0f3d12" 132 | dependencies: 133 | "@babel/types" "^7.7.4" 134 | 135 | "@babel/helper-member-expression-to-functions@^7.7.4": 136 | version "7.7.4" 137 | resolved "https://registry.npm.taobao.org/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.7.4.tgz?cache=0&sync_timestamp=1574465859608&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.7.4.tgz#356438e2569df7321a8326644d4b790d2122cb74" 138 | dependencies: 139 | "@babel/types" "^7.7.4" 140 | 141 | "@babel/helper-module-imports@^7.7.4": 142 | version "7.7.4" 143 | resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.7.4.tgz#e5a92529f8888bf319a6376abfbd1cebc491ad91" 144 | dependencies: 145 | "@babel/types" "^7.7.4" 146 | 147 | "@babel/helper-module-transforms@^7.7.4", "@babel/helper-module-transforms@^7.7.5": 148 | version "7.7.5" 149 | resolved "https://registry.npm.taobao.org/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.7.5.tgz#d044da7ffd91ec967db25cd6748f704b6b244835" 150 | dependencies: 151 | "@babel/helper-module-imports" "^7.7.4" 152 | "@babel/helper-simple-access" "^7.7.4" 153 | "@babel/helper-split-export-declaration" "^7.7.4" 154 | "@babel/template" "^7.7.4" 155 | "@babel/types" "^7.7.4" 156 | lodash "^4.17.13" 157 | 158 | "@babel/helper-optimise-call-expression@^7.7.4": 159 | version "7.7.4" 160 | resolved "https://registry.npm.taobao.org/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.7.4.tgz?cache=0&sync_timestamp=1574465948578&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.7.4.tgz#034af31370d2995242aa4df402c3b7794b2dcdf2" 161 | dependencies: 162 | "@babel/types" "^7.7.4" 163 | 164 | "@babel/helper-plugin-utils@^7.0.0": 165 | version "7.0.0" 166 | resolved "https://registry.npm.taobao.org/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 167 | 168 | "@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": 169 | version "7.5.5" 170 | resolved "https://registry.npm.taobao.org/@babel/helper-regex/download/@babel/helper-regex-7.5.5.tgz?cache=0&sync_timestamp=1563398528521&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-regex%2Fdownload%2F%40babel%2Fhelper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351" 171 | dependencies: 172 | lodash "^4.17.13" 173 | 174 | "@babel/helper-remap-async-to-generator@^7.7.4": 175 | version "7.7.4" 176 | resolved "https://registry.npm.taobao.org/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.7.4.tgz?cache=0&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.7.4.tgz#c68c2407350d9af0e061ed6726afb4fff16d0234" 177 | dependencies: 178 | "@babel/helper-annotate-as-pure" "^7.7.4" 179 | "@babel/helper-wrap-function" "^7.7.4" 180 | "@babel/template" "^7.7.4" 181 | "@babel/traverse" "^7.7.4" 182 | "@babel/types" "^7.7.4" 183 | 184 | "@babel/helper-replace-supers@^7.7.4": 185 | version "7.7.4" 186 | resolved "https://registry.npm.taobao.org/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.7.4.tgz#3c881a6a6a7571275a72d82e6107126ec9e2cdd2" 187 | dependencies: 188 | "@babel/helper-member-expression-to-functions" "^7.7.4" 189 | "@babel/helper-optimise-call-expression" "^7.7.4" 190 | "@babel/traverse" "^7.7.4" 191 | "@babel/types" "^7.7.4" 192 | 193 | "@babel/helper-simple-access@^7.7.4": 194 | version "7.7.4" 195 | resolved "https://registry.npm.taobao.org/@babel/helper-simple-access/download/@babel/helper-simple-access-7.7.4.tgz#a169a0adb1b5f418cfc19f22586b2ebf58a9a294" 196 | dependencies: 197 | "@babel/template" "^7.7.4" 198 | "@babel/types" "^7.7.4" 199 | 200 | "@babel/helper-split-export-declaration@^7.7.4": 201 | version "7.7.4" 202 | resolved "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.7.4.tgz#57292af60443c4a3622cf74040ddc28e68336fd8" 203 | dependencies: 204 | "@babel/types" "^7.7.4" 205 | 206 | "@babel/helper-wrap-function@^7.7.4": 207 | version "7.7.4" 208 | resolved "https://registry.npm.taobao.org/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-wrap-function%2Fdownload%2F%40babel%2Fhelper-wrap-function-7.7.4.tgz#37ab7fed5150e22d9d7266e830072c0cdd8baace" 209 | dependencies: 210 | "@babel/helper-function-name" "^7.7.4" 211 | "@babel/template" "^7.7.4" 212 | "@babel/traverse" "^7.7.4" 213 | "@babel/types" "^7.7.4" 214 | 215 | "@babel/helpers@^7.7.4": 216 | version "7.7.4" 217 | resolved "https://registry.npm.taobao.org/@babel/helpers/download/@babel/helpers-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.7.4.tgz#62c215b9e6c712dadc15a9a0dcab76c92a940302" 218 | dependencies: 219 | "@babel/template" "^7.7.4" 220 | "@babel/traverse" "^7.7.4" 221 | "@babel/types" "^7.7.4" 222 | 223 | "@babel/highlight@^7.0.0": 224 | version "7.5.0" 225 | resolved "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" 226 | dependencies: 227 | chalk "^2.0.0" 228 | esutils "^2.0.2" 229 | js-tokens "^4.0.0" 230 | 231 | "@babel/parser@^7.7.4", "@babel/parser@^7.7.7": 232 | version "7.7.7" 233 | resolved "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.7.7.tgz?cache=0&sync_timestamp=1576716980389&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.7.7.tgz#1b886595419cf92d811316d5b715a53ff38b4937" 234 | 235 | "@babel/plugin-proposal-async-generator-functions@^7.7.4": 236 | version "7.7.4" 237 | resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.7.4.tgz?cache=0&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.7.4.tgz#0351c5ac0a9e927845fffd5b82af476947b7ce6d" 238 | dependencies: 239 | "@babel/helper-plugin-utils" "^7.0.0" 240 | "@babel/helper-remap-async-to-generator" "^7.7.4" 241 | "@babel/plugin-syntax-async-generators" "^7.7.4" 242 | 243 | "@babel/plugin-proposal-class-properties@^7.7.4": 244 | version "7.7.4" 245 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.7.4.tgz#2f964f0cb18b948450362742e33e15211e77c2ba" 246 | dependencies: 247 | "@babel/helper-create-class-features-plugin" "^7.7.4" 248 | "@babel/helper-plugin-utils" "^7.0.0" 249 | 250 | "@babel/plugin-proposal-dynamic-import@^7.7.4": 251 | version "7.7.4" 252 | resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-dynamic-import%2Fdownload%2F%40babel%2Fplugin-proposal-dynamic-import-7.7.4.tgz#dde64a7f127691758cbfed6cf70de0fa5879d52d" 253 | dependencies: 254 | "@babel/helper-plugin-utils" "^7.0.0" 255 | "@babel/plugin-syntax-dynamic-import" "^7.7.4" 256 | 257 | "@babel/plugin-proposal-json-strings@^7.7.4": 258 | version "7.7.4" 259 | resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.7.4.tgz?cache=0&sync_timestamp=1574466144048&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-proposal-json-strings%2Fdownload%2F%40babel%2Fplugin-proposal-json-strings-7.7.4.tgz#7700a6bfda771d8dc81973249eac416c6b4c697d" 260 | dependencies: 261 | "@babel/helper-plugin-utils" "^7.0.0" 262 | "@babel/plugin-syntax-json-strings" "^7.7.4" 263 | 264 | "@babel/plugin-proposal-object-rest-spread@^7.7.7": 265 | version "7.7.7" 266 | resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.7.7.tgz#9f27075004ab99be08c5c1bd653a2985813cb370" 267 | dependencies: 268 | "@babel/helper-plugin-utils" "^7.0.0" 269 | "@babel/plugin-syntax-object-rest-spread" "^7.7.4" 270 | 271 | "@babel/plugin-proposal-optional-catch-binding@^7.7.4": 272 | version "7.7.4" 273 | resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.7.4.tgz?cache=0&sync_timestamp=1574466142661&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.7.4.tgz#ec21e8aeb09ec6711bc0a39ca49520abee1de379" 274 | dependencies: 275 | "@babel/helper-plugin-utils" "^7.0.0" 276 | "@babel/plugin-syntax-optional-catch-binding" "^7.7.4" 277 | 278 | "@babel/plugin-proposal-unicode-property-regex@^7.7.7": 279 | version "7.7.7" 280 | resolved "https://registry.npm.taobao.org/@babel/plugin-proposal-unicode-property-regex/download/@babel/plugin-proposal-unicode-property-regex-7.7.7.tgz#433fa9dac64f953c12578b29633f456b68831c4e" 281 | dependencies: 282 | "@babel/helper-create-regexp-features-plugin" "^7.7.4" 283 | "@babel/helper-plugin-utils" "^7.0.0" 284 | 285 | "@babel/plugin-syntax-async-generators@^7.7.4": 286 | version "7.7.4" 287 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.7.4.tgz#331aaf310a10c80c44a66b238b6e49132bd3c889" 288 | dependencies: 289 | "@babel/helper-plugin-utils" "^7.0.0" 290 | 291 | "@babel/plugin-syntax-dynamic-import@^7.7.4": 292 | version "7.7.4" 293 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.7.4.tgz?cache=0&sync_timestamp=1574466134311&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-dynamic-import%2Fdownload%2F%40babel%2Fplugin-syntax-dynamic-import-7.7.4.tgz#29ca3b4415abfe4a5ec381e903862ad1a54c3aec" 294 | dependencies: 295 | "@babel/helper-plugin-utils" "^7.0.0" 296 | 297 | "@babel/plugin-syntax-json-strings@^7.7.4": 298 | version "7.7.4" 299 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.7.4.tgz?cache=0&sync_timestamp=1574466138398&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-json-strings%2Fdownload%2F%40babel%2Fplugin-syntax-json-strings-7.7.4.tgz#86e63f7d2e22f9e27129ac4e83ea989a382e86cc" 300 | dependencies: 301 | "@babel/helper-plugin-utils" "^7.0.0" 302 | 303 | "@babel/plugin-syntax-jsx@^7.7.4": 304 | version "7.7.4" 305 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.7.4.tgz?cache=0&sync_timestamp=1574466135844&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.7.4.tgz#dab2b56a36fb6c3c222a1fbc71f7bf97f327a9ec" 306 | dependencies: 307 | "@babel/helper-plugin-utils" "^7.0.0" 308 | 309 | "@babel/plugin-syntax-object-rest-spread@^7.7.4": 310 | version "7.7.4" 311 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.7.4.tgz?cache=0&sync_timestamp=1574466135349&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.7.4.tgz#47cf220d19d6d0d7b154304701f468fc1cc6ff46" 312 | dependencies: 313 | "@babel/helper-plugin-utils" "^7.0.0" 314 | 315 | "@babel/plugin-syntax-optional-catch-binding@^7.7.4": 316 | version "7.7.4" 317 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.7.4.tgz?cache=0&sync_timestamp=1574466135469&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-optional-catch-binding%2Fdownload%2F%40babel%2Fplugin-syntax-optional-catch-binding-7.7.4.tgz#a3e38f59f4b6233867b4a92dcb0ee05b2c334aa6" 318 | dependencies: 319 | "@babel/helper-plugin-utils" "^7.0.0" 320 | 321 | "@babel/plugin-syntax-top-level-await@^7.7.4": 322 | version "7.7.4" 323 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.7.4.tgz?cache=0&sync_timestamp=1574465929543&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.7.4.tgz#bd7d8fa7b9fee793a36e4027fd6dd1aa32f946da" 324 | dependencies: 325 | "@babel/helper-plugin-utils" "^7.0.0" 326 | 327 | "@babel/plugin-transform-arrow-functions@^7.7.4": 328 | version "7.7.4" 329 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.7.4.tgz?cache=0&sync_timestamp=1574465864396&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-arrow-functions%2Fdownload%2F%40babel%2Fplugin-transform-arrow-functions-7.7.4.tgz#76309bd578addd8aee3b379d809c802305a98a12" 330 | dependencies: 331 | "@babel/helper-plugin-utils" "^7.0.0" 332 | 333 | "@babel/plugin-transform-async-to-generator@^7.7.4": 334 | version "7.7.4" 335 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-async-to-generator/download/@babel/plugin-transform-async-to-generator-7.7.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.7.4.tgz#694cbeae6d613a34ef0292713fa42fb45c4470ba" 336 | dependencies: 337 | "@babel/helper-module-imports" "^7.7.4" 338 | "@babel/helper-plugin-utils" "^7.0.0" 339 | "@babel/helper-remap-async-to-generator" "^7.7.4" 340 | 341 | "@babel/plugin-transform-block-scoped-functions@^7.7.4": 342 | version "7.7.4" 343 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.7.4.tgz?cache=0&sync_timestamp=1574466137204&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.7.4.tgz#d0d9d5c269c78eaea76227ace214b8d01e4d837b" 344 | dependencies: 345 | "@babel/helper-plugin-utils" "^7.0.0" 346 | 347 | "@babel/plugin-transform-block-scoping@^7.7.4": 348 | version "7.7.4" 349 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.7.4.tgz#200aad0dcd6bb80372f94d9e628ea062c58bf224" 350 | dependencies: 351 | "@babel/helper-plugin-utils" "^7.0.0" 352 | lodash "^4.17.13" 353 | 354 | "@babel/plugin-transform-classes@^7.7.4": 355 | version "7.7.4" 356 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.7.4.tgz#c92c14be0a1399e15df72667067a8f510c9400ec" 357 | dependencies: 358 | "@babel/helper-annotate-as-pure" "^7.7.4" 359 | "@babel/helper-define-map" "^7.7.4" 360 | "@babel/helper-function-name" "^7.7.4" 361 | "@babel/helper-optimise-call-expression" "^7.7.4" 362 | "@babel/helper-plugin-utils" "^7.0.0" 363 | "@babel/helper-replace-supers" "^7.7.4" 364 | "@babel/helper-split-export-declaration" "^7.7.4" 365 | globals "^11.1.0" 366 | 367 | "@babel/plugin-transform-computed-properties@^7.7.4": 368 | version "7.7.4" 369 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.7.4.tgz?cache=0&sync_timestamp=1574466138069&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-computed-properties%2Fdownload%2F%40babel%2Fplugin-transform-computed-properties-7.7.4.tgz#e856c1628d3238ffe12d668eb42559f79a81910d" 370 | dependencies: 371 | "@babel/helper-plugin-utils" "^7.0.0" 372 | 373 | "@babel/plugin-transform-destructuring@^7.7.4": 374 | version "7.7.4" 375 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.7.4.tgz?cache=0&sync_timestamp=1574466137334&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-destructuring%2Fdownload%2F%40babel%2Fplugin-transform-destructuring-7.7.4.tgz#2b713729e5054a1135097b6a67da1b6fe8789267" 376 | dependencies: 377 | "@babel/helper-plugin-utils" "^7.0.0" 378 | 379 | "@babel/plugin-transform-dotall-regex@^7.7.7": 380 | version "7.7.7" 381 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.7.7.tgz#3e9713f1b69f339e87fa796b097d73ded16b937b" 382 | dependencies: 383 | "@babel/helper-create-regexp-features-plugin" "^7.7.4" 384 | "@babel/helper-plugin-utils" "^7.0.0" 385 | 386 | "@babel/plugin-transform-duplicate-keys@^7.7.4": 387 | version "7.7.4" 388 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.7.4.tgz?cache=0&sync_timestamp=1574466141354&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-duplicate-keys%2Fdownload%2F%40babel%2Fplugin-transform-duplicate-keys-7.7.4.tgz#3d21731a42e3f598a73835299dd0169c3b90ac91" 389 | dependencies: 390 | "@babel/helper-plugin-utils" "^7.0.0" 391 | 392 | "@babel/plugin-transform-exponentiation-operator@^7.7.4": 393 | version "7.7.4" 394 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.7.4.tgz?cache=0&sync_timestamp=1574466136890&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-exponentiation-operator%2Fdownload%2F%40babel%2Fplugin-transform-exponentiation-operator-7.7.4.tgz#dd30c0191e3a1ba19bcc7e389bdfddc0729d5db9" 395 | dependencies: 396 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.7.4" 397 | "@babel/helper-plugin-utils" "^7.0.0" 398 | 399 | "@babel/plugin-transform-for-of@^7.7.4": 400 | version "7.7.4" 401 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.7.4.tgz?cache=0&sync_timestamp=1574466137301&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-for-of%2Fdownload%2F%40babel%2Fplugin-transform-for-of-7.7.4.tgz#248800e3a5e507b1f103d8b4ca998e77c63932bc" 402 | dependencies: 403 | "@babel/helper-plugin-utils" "^7.0.0" 404 | 405 | "@babel/plugin-transform-function-name@^7.7.4": 406 | version "7.7.4" 407 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.7.4.tgz#75a6d3303d50db638ff8b5385d12451c865025b1" 408 | dependencies: 409 | "@babel/helper-function-name" "^7.7.4" 410 | "@babel/helper-plugin-utils" "^7.0.0" 411 | 412 | "@babel/plugin-transform-literals@^7.7.4": 413 | version "7.7.4" 414 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.7.4.tgz?cache=0&sync_timestamp=1574466139771&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-literals%2Fdownload%2F%40babel%2Fplugin-transform-literals-7.7.4.tgz#27fe87d2b5017a2a5a34d1c41a6b9f6a6262643e" 415 | dependencies: 416 | "@babel/helper-plugin-utils" "^7.0.0" 417 | 418 | "@babel/plugin-transform-member-expression-literals@^7.7.4": 419 | version "7.7.4" 420 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.7.4.tgz?cache=0&sync_timestamp=1574466140548&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.7.4.tgz#aee127f2f3339fc34ce5e3055d7ffbf7aa26f19a" 421 | dependencies: 422 | "@babel/helper-plugin-utils" "^7.0.0" 423 | 424 | "@babel/plugin-transform-modules-amd@^7.7.5": 425 | version "7.7.5" 426 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.7.5.tgz?cache=0&sync_timestamp=1575638382948&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-modules-amd%2Fdownload%2F%40babel%2Fplugin-transform-modules-amd-7.7.5.tgz#39e0fb717224b59475b306402bb8eedab01e729c" 427 | dependencies: 428 | "@babel/helper-module-transforms" "^7.7.5" 429 | "@babel/helper-plugin-utils" "^7.0.0" 430 | babel-plugin-dynamic-import-node "^2.3.0" 431 | 432 | "@babel/plugin-transform-modules-commonjs@^7.7.5": 433 | version "7.7.5" 434 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.7.5.tgz?cache=0&sync_timestamp=1575638382622&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-modules-commonjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-commonjs-7.7.5.tgz#1d27f5eb0bcf7543e774950e5b2fa782e637b345" 435 | dependencies: 436 | "@babel/helper-module-transforms" "^7.7.5" 437 | "@babel/helper-plugin-utils" "^7.0.0" 438 | "@babel/helper-simple-access" "^7.7.4" 439 | babel-plugin-dynamic-import-node "^2.3.0" 440 | 441 | "@babel/plugin-transform-modules-systemjs@^7.7.4": 442 | version "7.7.4" 443 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.7.4.tgz#cd98152339d3e763dfe838b7d4273edaf520bb30" 444 | dependencies: 445 | "@babel/helper-hoist-variables" "^7.7.4" 446 | "@babel/helper-plugin-utils" "^7.0.0" 447 | babel-plugin-dynamic-import-node "^2.3.0" 448 | 449 | "@babel/plugin-transform-modules-umd@^7.7.4": 450 | version "7.7.4" 451 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-modules-umd%2Fdownload%2F%40babel%2Fplugin-transform-modules-umd-7.7.4.tgz#1027c355a118de0aae9fee00ad7813c584d9061f" 452 | dependencies: 453 | "@babel/helper-module-transforms" "^7.7.4" 454 | "@babel/helper-plugin-utils" "^7.0.0" 455 | 456 | "@babel/plugin-transform-named-capturing-groups-regex@^7.7.4": 457 | version "7.7.4" 458 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-named-capturing-groups-regex%2Fdownload%2F%40babel%2Fplugin-transform-named-capturing-groups-regex-7.7.4.tgz#fb3bcc4ee4198e7385805007373d6b6f42c98220" 459 | dependencies: 460 | "@babel/helper-create-regexp-features-plugin" "^7.7.4" 461 | 462 | "@babel/plugin-transform-new-target@^7.7.4": 463 | version "7.7.4" 464 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.7.4.tgz?cache=0&sync_timestamp=1574466140101&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-new-target%2Fdownload%2F%40babel%2Fplugin-transform-new-target-7.7.4.tgz#4a0753d2d60639437be07b592a9e58ee00720167" 465 | dependencies: 466 | "@babel/helper-plugin-utils" "^7.0.0" 467 | 468 | "@babel/plugin-transform-object-super@^7.7.4": 469 | version "7.7.4" 470 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.7.4.tgz?cache=0&sync_timestamp=1574466136400&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-object-super%2Fdownload%2F%40babel%2Fplugin-transform-object-super-7.7.4.tgz#48488937a2d586c0148451bf51af9d7dda567262" 471 | dependencies: 472 | "@babel/helper-plugin-utils" "^7.0.0" 473 | "@babel/helper-replace-supers" "^7.7.4" 474 | 475 | "@babel/plugin-transform-parameters@^7.7.7": 476 | version "7.7.7" 477 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.7.7.tgz#7a884b2460164dc5f194f668332736584c760007" 478 | dependencies: 479 | "@babel/helper-call-delegate" "^7.7.4" 480 | "@babel/helper-get-function-arity" "^7.7.4" 481 | "@babel/helper-plugin-utils" "^7.0.0" 482 | 483 | "@babel/plugin-transform-property-literals@^7.7.4": 484 | version "7.7.4" 485 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.7.4.tgz?cache=0&sync_timestamp=1574466142212&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-property-literals%2Fdownload%2F%40babel%2Fplugin-transform-property-literals-7.7.4.tgz#2388d6505ef89b266103f450f9167e6bd73f98c2" 486 | dependencies: 487 | "@babel/helper-plugin-utils" "^7.0.0" 488 | 489 | "@babel/plugin-transform-react-display-name@^7.7.4": 490 | version "7.7.4" 491 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-react-display-name/download/@babel/plugin-transform-react-display-name-7.7.4.tgz#9f2b80b14ebc97eef4a9b29b612c58ed9c0d10dd" 492 | dependencies: 493 | "@babel/helper-plugin-utils" "^7.0.0" 494 | 495 | "@babel/plugin-transform-react-jsx-self@^7.7.4": 496 | version "7.7.4" 497 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-react-jsx-self/download/@babel/plugin-transform-react-jsx-self-7.7.4.tgz#81b8fbfd14b2215e8f1c2c3adfba266127b0231c" 498 | dependencies: 499 | "@babel/helper-plugin-utils" "^7.0.0" 500 | "@babel/plugin-syntax-jsx" "^7.7.4" 501 | 502 | "@babel/plugin-transform-react-jsx-source@^7.7.4": 503 | version "7.7.4" 504 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-react-jsx-source/download/@babel/plugin-transform-react-jsx-source-7.7.4.tgz#8994b1bf6014b133f5a46d3b7d1ee5f5e3e72c10" 505 | dependencies: 506 | "@babel/helper-plugin-utils" "^7.0.0" 507 | "@babel/plugin-syntax-jsx" "^7.7.4" 508 | 509 | "@babel/plugin-transform-react-jsx@^7.7.4": 510 | version "7.7.7" 511 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-react-jsx/download/@babel/plugin-transform-react-jsx-7.7.7.tgz?cache=0&sync_timestamp=1576718101045&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-react-jsx%2Fdownload%2F%40babel%2Fplugin-transform-react-jsx-7.7.7.tgz#5cbaa7445b4a09f774029f3cc7bb448ff3122a5d" 512 | dependencies: 513 | "@babel/helper-builder-react-jsx" "^7.7.4" 514 | "@babel/helper-plugin-utils" "^7.0.0" 515 | "@babel/plugin-syntax-jsx" "^7.7.4" 516 | 517 | "@babel/plugin-transform-regenerator@^7.7.5": 518 | version "7.7.5" 519 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.7.5.tgz?cache=0&sync_timestamp=1575638379269&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-regenerator%2Fdownload%2F%40babel%2Fplugin-transform-regenerator-7.7.5.tgz#3a8757ee1a2780f390e89f246065ecf59c26fce9" 520 | dependencies: 521 | regenerator-transform "^0.14.0" 522 | 523 | "@babel/plugin-transform-reserved-words@^7.7.4": 524 | version "7.7.4" 525 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.7.4.tgz?cache=0&sync_timestamp=1574466144003&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-reserved-words%2Fdownload%2F%40babel%2Fplugin-transform-reserved-words-7.7.4.tgz#6a7cf123ad175bb5c69aec8f6f0770387ed3f1eb" 526 | dependencies: 527 | "@babel/helper-plugin-utils" "^7.0.0" 528 | 529 | "@babel/plugin-transform-shorthand-properties@^7.7.4": 530 | version "7.7.4" 531 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.7.4.tgz?cache=0&sync_timestamp=1574466143471&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-shorthand-properties%2Fdownload%2F%40babel%2Fplugin-transform-shorthand-properties-7.7.4.tgz#74a0a9b2f6d67a684c6fbfd5f0458eb7ba99891e" 532 | dependencies: 533 | "@babel/helper-plugin-utils" "^7.0.0" 534 | 535 | "@babel/plugin-transform-spread@^7.7.4": 536 | version "7.7.4" 537 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-spread%2Fdownload%2F%40babel%2Fplugin-transform-spread-7.7.4.tgz#aa673b356fe6b7e70d69b6e33a17fef641008578" 538 | dependencies: 539 | "@babel/helper-plugin-utils" "^7.0.0" 540 | 541 | "@babel/plugin-transform-sticky-regex@^7.7.4": 542 | version "7.7.4" 543 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.7.4.tgz?cache=0&sync_timestamp=1574466146247&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-sticky-regex%2Fdownload%2F%40babel%2Fplugin-transform-sticky-regex-7.7.4.tgz#ffb68c05090c30732076b1285dc1401b404a123c" 544 | dependencies: 545 | "@babel/helper-plugin-utils" "^7.0.0" 546 | "@babel/helper-regex" "^7.0.0" 547 | 548 | "@babel/plugin-transform-template-literals@^7.7.4": 549 | version "7.7.4" 550 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.7.4.tgz?cache=0&sync_timestamp=1574466128847&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-template-literals%2Fdownload%2F%40babel%2Fplugin-transform-template-literals-7.7.4.tgz#1eb6411736dd3fe87dbd20cc6668e5121c17d604" 551 | dependencies: 552 | "@babel/helper-annotate-as-pure" "^7.7.4" 553 | "@babel/helper-plugin-utils" "^7.0.0" 554 | 555 | "@babel/plugin-transform-typeof-symbol@^7.7.4": 556 | version "7.7.4" 557 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-typeof-symbol/download/@babel/plugin-transform-typeof-symbol-7.7.4.tgz?cache=0&sync_timestamp=1574466144984&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-typeof-symbol%2Fdownload%2F%40babel%2Fplugin-transform-typeof-symbol-7.7.4.tgz#3174626214f2d6de322882e498a38e8371b2140e" 558 | dependencies: 559 | "@babel/helper-plugin-utils" "^7.0.0" 560 | 561 | "@babel/plugin-transform-unicode-regex@^7.7.4": 562 | version "7.7.4" 563 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-unicode-regex%2Fdownload%2F%40babel%2Fplugin-transform-unicode-regex-7.7.4.tgz#a3c0f65b117c4c81c5b6484f2a5e7b95346b83ae" 564 | dependencies: 565 | "@babel/helper-create-regexp-features-plugin" "^7.7.4" 566 | "@babel/helper-plugin-utils" "^7.0.0" 567 | 568 | "@babel/polyfill@^7.7.0": 569 | version "7.7.0" 570 | resolved "https://registry.npm.taobao.org/@babel/polyfill/download/@babel/polyfill-7.7.0.tgz#e1066e251e17606ec7908b05617f9b7f8180d8f3" 571 | dependencies: 572 | core-js "^2.6.5" 573 | regenerator-runtime "^0.13.2" 574 | 575 | "@babel/preset-env@^7.7.7": 576 | version "7.7.7" 577 | resolved "https://registry.npm.taobao.org/@babel/preset-env/download/@babel/preset-env-7.7.7.tgz#c294167b91e53e7e36d820e943ece8d0c7fe46ac" 578 | dependencies: 579 | "@babel/helper-module-imports" "^7.7.4" 580 | "@babel/helper-plugin-utils" "^7.0.0" 581 | "@babel/plugin-proposal-async-generator-functions" "^7.7.4" 582 | "@babel/plugin-proposal-dynamic-import" "^7.7.4" 583 | "@babel/plugin-proposal-json-strings" "^7.7.4" 584 | "@babel/plugin-proposal-object-rest-spread" "^7.7.7" 585 | "@babel/plugin-proposal-optional-catch-binding" "^7.7.4" 586 | "@babel/plugin-proposal-unicode-property-regex" "^7.7.7" 587 | "@babel/plugin-syntax-async-generators" "^7.7.4" 588 | "@babel/plugin-syntax-dynamic-import" "^7.7.4" 589 | "@babel/plugin-syntax-json-strings" "^7.7.4" 590 | "@babel/plugin-syntax-object-rest-spread" "^7.7.4" 591 | "@babel/plugin-syntax-optional-catch-binding" "^7.7.4" 592 | "@babel/plugin-syntax-top-level-await" "^7.7.4" 593 | "@babel/plugin-transform-arrow-functions" "^7.7.4" 594 | "@babel/plugin-transform-async-to-generator" "^7.7.4" 595 | "@babel/plugin-transform-block-scoped-functions" "^7.7.4" 596 | "@babel/plugin-transform-block-scoping" "^7.7.4" 597 | "@babel/plugin-transform-classes" "^7.7.4" 598 | "@babel/plugin-transform-computed-properties" "^7.7.4" 599 | "@babel/plugin-transform-destructuring" "^7.7.4" 600 | "@babel/plugin-transform-dotall-regex" "^7.7.7" 601 | "@babel/plugin-transform-duplicate-keys" "^7.7.4" 602 | "@babel/plugin-transform-exponentiation-operator" "^7.7.4" 603 | "@babel/plugin-transform-for-of" "^7.7.4" 604 | "@babel/plugin-transform-function-name" "^7.7.4" 605 | "@babel/plugin-transform-literals" "^7.7.4" 606 | "@babel/plugin-transform-member-expression-literals" "^7.7.4" 607 | "@babel/plugin-transform-modules-amd" "^7.7.5" 608 | "@babel/plugin-transform-modules-commonjs" "^7.7.5" 609 | "@babel/plugin-transform-modules-systemjs" "^7.7.4" 610 | "@babel/plugin-transform-modules-umd" "^7.7.4" 611 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.7.4" 612 | "@babel/plugin-transform-new-target" "^7.7.4" 613 | "@babel/plugin-transform-object-super" "^7.7.4" 614 | "@babel/plugin-transform-parameters" "^7.7.7" 615 | "@babel/plugin-transform-property-literals" "^7.7.4" 616 | "@babel/plugin-transform-regenerator" "^7.7.5" 617 | "@babel/plugin-transform-reserved-words" "^7.7.4" 618 | "@babel/plugin-transform-shorthand-properties" "^7.7.4" 619 | "@babel/plugin-transform-spread" "^7.7.4" 620 | "@babel/plugin-transform-sticky-regex" "^7.7.4" 621 | "@babel/plugin-transform-template-literals" "^7.7.4" 622 | "@babel/plugin-transform-typeof-symbol" "^7.7.4" 623 | "@babel/plugin-transform-unicode-regex" "^7.7.4" 624 | "@babel/types" "^7.7.4" 625 | browserslist "^4.6.0" 626 | core-js-compat "^3.6.0" 627 | invariant "^2.2.2" 628 | js-levenshtein "^1.1.3" 629 | semver "^5.5.0" 630 | 631 | "@babel/preset-react@^7.7.4": 632 | version "7.7.4" 633 | resolved "https://registry.npm.taobao.org/@babel/preset-react/download/@babel/preset-react-7.7.4.tgz#3fe2ea698d8fb536d8e7881a592c3c1ee8bf5707" 634 | dependencies: 635 | "@babel/helper-plugin-utils" "^7.0.0" 636 | "@babel/plugin-transform-react-display-name" "^7.7.4" 637 | "@babel/plugin-transform-react-jsx" "^7.7.4" 638 | "@babel/plugin-transform-react-jsx-self" "^7.7.4" 639 | "@babel/plugin-transform-react-jsx-source" "^7.7.4" 640 | 641 | "@babel/template@^7.7.4": 642 | version "7.7.4" 643 | resolved "https://registry.npm.taobao.org/@babel/template/download/@babel/template-7.7.4.tgz?cache=0&sync_timestamp=1574465948896&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.7.4.tgz#428a7d9eecffe27deac0a98e23bf8e3675d2a77b" 644 | dependencies: 645 | "@babel/code-frame" "^7.0.0" 646 | "@babel/parser" "^7.7.4" 647 | "@babel/types" "^7.7.4" 648 | 649 | "@babel/traverse@^7.7.4": 650 | version "7.7.4" 651 | resolved "https://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.7.4.tgz#9c1e7c60fb679fe4fcfaa42500833333c2058558" 652 | dependencies: 653 | "@babel/code-frame" "^7.5.5" 654 | "@babel/generator" "^7.7.4" 655 | "@babel/helper-function-name" "^7.7.4" 656 | "@babel/helper-split-export-declaration" "^7.7.4" 657 | "@babel/parser" "^7.7.4" 658 | "@babel/types" "^7.7.4" 659 | debug "^4.1.0" 660 | globals "^11.1.0" 661 | lodash "^4.17.13" 662 | 663 | "@babel/types@^7.7.4": 664 | version "7.7.4" 665 | resolved "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.7.4.tgz#516570d539e44ddf308c07569c258ff94fde9193" 666 | dependencies: 667 | esutils "^2.0.2" 668 | lodash "^4.17.13" 669 | to-fast-properties "^2.0.0" 670 | 671 | JSONStream@^1.0.4: 672 | version "1.3.2" 673 | resolved "http://registry.npm.taobao.org/JSONStream/download/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" 674 | dependencies: 675 | jsonparse "^1.2.0" 676 | through ">=2.2.7 <3" 677 | 678 | abbrev@1: 679 | version "1.1.1" 680 | resolved "http://registry.npm.taobao.org/abbrev/download/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 681 | 682 | add-stream@^1.0.0: 683 | version "1.0.0" 684 | resolved "http://registry.npm.taobao.org/add-stream/download/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" 685 | 686 | ajv@^4.9.1: 687 | version "4.11.8" 688 | resolved "http://registry.npm.taobao.org/ajv/download/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 689 | dependencies: 690 | co "^4.6.0" 691 | json-stable-stringify "^1.0.1" 692 | 693 | ansi-regex@^2.0.0: 694 | version "2.1.1" 695 | resolved "http://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 696 | 697 | ansi-regex@^3.0.0: 698 | version "3.0.0" 699 | resolved "http://registry.npm.taobao.org/ansi-regex/download/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 700 | 701 | ansi-styles@^3.2.0: 702 | version "3.2.0" 703 | resolved "http://registry.npm.taobao.org/ansi-styles/download/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 704 | dependencies: 705 | color-convert "^1.9.0" 706 | 707 | ansi-styles@^3.2.1: 708 | version "3.2.1" 709 | resolved "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 710 | dependencies: 711 | color-convert "^1.9.0" 712 | 713 | anymatch@^2.0.0: 714 | version "2.0.0" 715 | resolved "http://registry.npm.taobao.org/anymatch/download/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 716 | dependencies: 717 | micromatch "^3.1.4" 718 | normalize-path "^2.1.1" 719 | 720 | aproba@^1.0.3: 721 | version "1.2.0" 722 | resolved "http://registry.npm.taobao.org/aproba/download/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 723 | 724 | are-we-there-yet@~1.1.2: 725 | version "1.1.4" 726 | resolved "http://registry.npm.taobao.org/are-we-there-yet/download/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 727 | dependencies: 728 | delegates "^1.0.0" 729 | readable-stream "^2.0.6" 730 | 731 | argparse@^1.0.7: 732 | version "1.0.10" 733 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 734 | dependencies: 735 | sprintf-js "~1.0.2" 736 | 737 | arr-diff@^4.0.0: 738 | version "4.0.0" 739 | resolved "http://registry.npm.taobao.org/arr-diff/download/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 740 | 741 | arr-flatten@^1.1.0: 742 | version "1.1.0" 743 | resolved "http://registry.npm.taobao.org/arr-flatten/download/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 744 | 745 | arr-union@^3.1.0: 746 | version "3.1.0" 747 | resolved "http://registry.npm.taobao.org/arr-union/download/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 748 | 749 | array-find-index@^1.0.1: 750 | version "1.0.2" 751 | resolved "http://registry.npm.taobao.org/array-find-index/download/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 752 | 753 | array-ify@^1.0.0: 754 | version "1.0.0" 755 | resolved "http://registry.npm.taobao.org/array-ify/download/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 756 | 757 | array-union@^1.0.1: 758 | version "1.0.2" 759 | resolved "http://registry.npm.taobao.org/array-union/download/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 760 | dependencies: 761 | array-uniq "^1.0.1" 762 | 763 | array-uniq@^1.0.1: 764 | version "1.0.3" 765 | resolved "http://registry.npm.taobao.org/array-uniq/download/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 766 | 767 | array-unique@^0.3.2: 768 | version "0.3.2" 769 | resolved "http://registry.npm.taobao.org/array-unique/download/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 770 | 771 | arrify@^1.0.1: 772 | version "1.0.1" 773 | resolved "http://registry.npm.taobao.org/arrify/download/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 774 | 775 | asn1@~0.2.3: 776 | version "0.2.4" 777 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 778 | dependencies: 779 | safer-buffer "~2.1.0" 780 | 781 | assert-plus@1.0.0, assert-plus@^1.0.0: 782 | version "1.0.0" 783 | resolved "http://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 784 | 785 | assert-plus@^0.2.0: 786 | version "0.2.0" 787 | resolved "http://registry.npm.taobao.org/assert-plus/download/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 788 | 789 | assign-symbols@^1.0.0: 790 | version "1.0.0" 791 | resolved "http://registry.npm.taobao.org/assign-symbols/download/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 792 | 793 | async-each@^1.0.0: 794 | version "1.0.1" 795 | resolved "http://registry.npm.taobao.org/async-each/download/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 796 | 797 | async-each@^1.0.1: 798 | version "1.0.3" 799 | resolved "https://registry.npm.taobao.org/async-each/download/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 800 | 801 | asynckit@^0.4.0: 802 | version "0.4.0" 803 | resolved "http://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 804 | 805 | atob@^2.0.0: 806 | version "2.1.2" 807 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 808 | 809 | autoprefixer@^8.0.0: 810 | version "8.0.0" 811 | resolved "http://registry.npm.taobao.org/autoprefixer/download/autoprefixer-8.0.0.tgz#c19e480f061013127c373df0b01cf46919943f74" 812 | dependencies: 813 | browserslist "^3.0.0" 814 | caniuse-lite "^1.0.30000808" 815 | normalize-range "^0.1.2" 816 | num2fraction "^1.2.2" 817 | postcss "^6.0.17" 818 | postcss-value-parser "^3.2.3" 819 | 820 | aws-sign2@~0.6.0: 821 | version "0.6.0" 822 | resolved "http://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 823 | 824 | aws4@^1.2.1: 825 | version "1.6.0" 826 | resolved "http://registry.npm.taobao.org/aws4/download/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 827 | 828 | babel-plugin-dynamic-import-node@^2.3.0: 829 | version "2.3.0" 830 | resolved "https://registry.npm.taobao.org/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-plugin-dynamic-import-node%2Fdownload%2Fbabel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" 831 | dependencies: 832 | object.assign "^4.1.0" 833 | 834 | balanced-match@^1.0.0: 835 | version "1.0.0" 836 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 837 | 838 | base@^0.11.1: 839 | version "0.11.2" 840 | resolved "http://registry.npm.taobao.org/base/download/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 841 | dependencies: 842 | cache-base "^1.0.1" 843 | class-utils "^0.3.5" 844 | component-emitter "^1.2.1" 845 | define-property "^1.0.0" 846 | isobject "^3.0.1" 847 | mixin-deep "^1.2.0" 848 | pascalcase "^0.1.1" 849 | 850 | bcrypt-pbkdf@^1.0.0: 851 | version "1.0.2" 852 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 853 | dependencies: 854 | tweetnacl "^0.14.3" 855 | 856 | binary-extensions@^1.0.0: 857 | version "1.11.0" 858 | resolved "http://registry.npm.taobao.org/binary-extensions/download/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 859 | 860 | bindings@^1.5.0: 861 | version "1.5.0" 862 | resolved "https://registry.npm.taobao.org/bindings/download/bindings-1.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbindings%2Fdownload%2Fbindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" 863 | dependencies: 864 | file-uri-to-path "1.0.0" 865 | 866 | block-stream@*: 867 | version "0.0.9" 868 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 869 | dependencies: 870 | inherits "~2.0.0" 871 | 872 | boom@2.x.x: 873 | version "2.10.1" 874 | resolved "http://registry.npm.taobao.org/boom/download/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 875 | dependencies: 876 | hoek "2.x.x" 877 | 878 | brace-expansion@^1.1.7: 879 | version "1.1.11" 880 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 881 | dependencies: 882 | balanced-match "^1.0.0" 883 | concat-map "0.0.1" 884 | 885 | braces@^2.3.0, braces@^2.3.1: 886 | version "2.3.1" 887 | resolved "http://registry.npm.taobao.org/braces/download/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" 888 | dependencies: 889 | arr-flatten "^1.1.0" 890 | array-unique "^0.3.2" 891 | define-property "^1.0.0" 892 | extend-shallow "^2.0.1" 893 | fill-range "^4.0.0" 894 | isobject "^3.0.1" 895 | kind-of "^6.0.2" 896 | repeat-element "^1.1.2" 897 | snapdragon "^0.8.1" 898 | snapdragon-node "^2.0.1" 899 | split-string "^3.0.2" 900 | to-regex "^3.0.1" 901 | 902 | braces@^2.3.2: 903 | version "2.3.2" 904 | resolved "https://registry.npm.taobao.org/braces/download/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 905 | dependencies: 906 | arr-flatten "^1.1.0" 907 | array-unique "^0.3.2" 908 | extend-shallow "^2.0.1" 909 | fill-range "^4.0.0" 910 | isobject "^3.0.1" 911 | repeat-element "^1.1.2" 912 | snapdragon "^0.8.1" 913 | snapdragon-node "^2.0.1" 914 | split-string "^3.0.2" 915 | to-regex "^3.0.1" 916 | 917 | browserslist@^3.0.0: 918 | version "3.1.1" 919 | resolved "http://registry.npm.taobao.org/browserslist/download/browserslist-3.1.1.tgz#d380fc048bc3a33e60fb87dc135110ebaaa6320a" 920 | dependencies: 921 | caniuse-lite "^1.0.30000809" 922 | electron-to-chromium "^1.3.33" 923 | 924 | browserslist@^4.6.0, browserslist@^4.8.2: 925 | version "4.8.3" 926 | resolved "https://registry.npm.taobao.org/browserslist/download/browserslist-4.8.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.8.3.tgz#65802fcd77177c878e015f0e3189f2c4f627ba44" 927 | dependencies: 928 | caniuse-lite "^1.0.30001017" 929 | electron-to-chromium "^1.3.322" 930 | node-releases "^1.1.44" 931 | 932 | builtin-modules@^1.0.0: 933 | version "1.1.1" 934 | resolved "http://registry.npm.taobao.org/builtin-modules/download/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 935 | 936 | cache-base@^1.0.1: 937 | version "1.0.1" 938 | resolved "http://registry.npm.taobao.org/cache-base/download/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 939 | dependencies: 940 | collection-visit "^1.0.0" 941 | component-emitter "^1.2.1" 942 | get-value "^2.0.6" 943 | has-value "^1.0.0" 944 | isobject "^3.0.1" 945 | set-value "^2.0.0" 946 | to-object-path "^0.3.0" 947 | union-value "^1.0.0" 948 | unset-value "^1.0.0" 949 | 950 | camelcase-keys@^2.0.0: 951 | version "2.1.0" 952 | resolved "http://registry.npm.taobao.org/camelcase-keys/download/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 953 | dependencies: 954 | camelcase "^2.0.0" 955 | map-obj "^1.0.0" 956 | 957 | camelcase@^2.0.0: 958 | version "2.1.1" 959 | resolved "http://registry.npm.taobao.org/camelcase/download/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 960 | 961 | camelcase@^4.1.0: 962 | version "4.1.0" 963 | resolved "http://registry.npm.taobao.org/camelcase/download/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 964 | 965 | caniuse-lite@^1.0.30000808, caniuse-lite@^1.0.30000809: 966 | version "1.0.30000810" 967 | resolved "http://registry.npm.taobao.org/caniuse-lite/download/caniuse-lite-1.0.30000810.tgz#47585fffce0e9f3593a6feea4673b945424351d9" 968 | 969 | caniuse-lite@^1.0.30001017: 970 | version "1.0.30001017" 971 | resolved "https://registry.npm.taobao.org/caniuse-lite/download/caniuse-lite-1.0.30001017.tgz#d3ad6ec18148b9bd991829958d9d7e562bb78cd6" 972 | 973 | caseless@~0.12.0: 974 | version "0.12.0" 975 | resolved "http://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 976 | 977 | chalk@^2.0.0: 978 | version "2.4.2" 979 | resolved "https://registry.npm.taobao.org/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1573282918610&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 980 | dependencies: 981 | ansi-styles "^3.2.1" 982 | escape-string-regexp "^1.0.5" 983 | supports-color "^5.3.0" 984 | 985 | chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1: 986 | version "2.3.1" 987 | resolved "http://registry.npm.taobao.org/chalk/download/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" 988 | dependencies: 989 | ansi-styles "^3.2.0" 990 | escape-string-regexp "^1.0.5" 991 | supports-color "^5.2.0" 992 | 993 | chokidar@^2.0.0: 994 | version "2.0.2" 995 | resolved "http://registry.npm.taobao.org/chokidar/download/chokidar-2.0.2.tgz#4dc65139eeb2714977735b6a35d06e97b494dfd7" 996 | dependencies: 997 | anymatch "^2.0.0" 998 | async-each "^1.0.0" 999 | braces "^2.3.0" 1000 | glob-parent "^3.1.0" 1001 | inherits "^2.0.1" 1002 | is-binary-path "^1.0.0" 1003 | is-glob "^4.0.0" 1004 | normalize-path "^2.1.1" 1005 | path-is-absolute "^1.0.0" 1006 | readdirp "^2.0.0" 1007 | upath "^1.0.0" 1008 | optionalDependencies: 1009 | fsevents "^1.0.0" 1010 | 1011 | chokidar@^2.1.8: 1012 | version "2.1.8" 1013 | resolved "https://registry.npm.taobao.org/chokidar/download/chokidar-2.1.8.tgz?cache=0&sync_timestamp=1576569833664&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchokidar%2Fdownload%2Fchokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" 1014 | dependencies: 1015 | anymatch "^2.0.0" 1016 | async-each "^1.0.1" 1017 | braces "^2.3.2" 1018 | glob-parent "^3.1.0" 1019 | inherits "^2.0.3" 1020 | is-binary-path "^1.0.0" 1021 | is-glob "^4.0.0" 1022 | normalize-path "^3.0.0" 1023 | path-is-absolute "^1.0.0" 1024 | readdirp "^2.2.1" 1025 | upath "^1.1.1" 1026 | optionalDependencies: 1027 | fsevents "^1.2.7" 1028 | 1029 | class-utils@^0.3.5: 1030 | version "0.3.6" 1031 | resolved "http://registry.npm.taobao.org/class-utils/download/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1032 | dependencies: 1033 | arr-union "^3.1.0" 1034 | define-property "^0.2.5" 1035 | isobject "^3.0.0" 1036 | static-extend "^0.1.1" 1037 | 1038 | cliui@^4.0.0: 1039 | version "4.0.0" 1040 | resolved "http://registry.npm.taobao.org/cliui/download/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 1041 | dependencies: 1042 | string-width "^2.1.1" 1043 | strip-ansi "^4.0.0" 1044 | wrap-ansi "^2.0.0" 1045 | 1046 | co@^4.6.0: 1047 | version "4.6.0" 1048 | resolved "http://registry.npm.taobao.org/co/download/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1049 | 1050 | code-point-at@^1.0.0: 1051 | version "1.1.0" 1052 | resolved "http://registry.npm.taobao.org/code-point-at/download/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1053 | 1054 | collection-visit@^1.0.0: 1055 | version "1.0.0" 1056 | resolved "http://registry.npm.taobao.org/collection-visit/download/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1057 | dependencies: 1058 | map-visit "^1.0.0" 1059 | object-visit "^1.0.0" 1060 | 1061 | color-convert@^1.9.0: 1062 | version "1.9.1" 1063 | resolved "http://registry.npm.taobao.org/color-convert/download/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 1064 | dependencies: 1065 | color-name "^1.1.1" 1066 | 1067 | color-name@^1.1.1: 1068 | version "1.1.3" 1069 | resolved "http://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1070 | 1071 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1072 | version "1.0.6" 1073 | resolved "http://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 1074 | dependencies: 1075 | delayed-stream "~1.0.0" 1076 | 1077 | commander@^4.0.1: 1078 | version "4.0.1" 1079 | resolved "https://registry.npm.taobao.org/commander/download/commander-4.0.1.tgz#b67622721785993182e807f4883633e6401ba53c" 1080 | 1081 | commander@~2.20.3: 1082 | version "2.20.3" 1083 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 1084 | 1085 | compare-func@^1.3.1: 1086 | version "1.3.2" 1087 | resolved "http://registry.npm.taobao.org/compare-func/download/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 1088 | dependencies: 1089 | array-ify "^1.0.0" 1090 | dot-prop "^3.0.0" 1091 | 1092 | component-emitter@^1.2.1: 1093 | version "1.2.1" 1094 | resolved "http://registry.npm.taobao.org/component-emitter/download/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1095 | 1096 | concat-map@0.0.1: 1097 | version "0.0.1" 1098 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1099 | 1100 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1101 | version "1.1.0" 1102 | resolved "http://registry.npm.taobao.org/console-control-strings/download/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1103 | 1104 | conventional-changelog-angular@^1.6.2: 1105 | version "1.6.5" 1106 | resolved "http://registry.npm.taobao.org/conventional-changelog-angular/download/conventional-changelog-angular-1.6.5.tgz#936249e897501affdffc6043da45cab59d6f0907" 1107 | dependencies: 1108 | compare-func "^1.3.1" 1109 | q "^1.4.1" 1110 | 1111 | conventional-changelog-atom@^0.2.0: 1112 | version "0.2.3" 1113 | resolved "http://registry.npm.taobao.org/conventional-changelog-atom/download/conventional-changelog-atom-0.2.3.tgz#117d024e5cf9e28dcbd0575981105395be1bca74" 1114 | dependencies: 1115 | q "^1.4.1" 1116 | 1117 | conventional-changelog-cli@^1.3.14: 1118 | version "1.3.14" 1119 | resolved "http://registry.npm.taobao.org/conventional-changelog-cli/download/conventional-changelog-cli-1.3.14.tgz#2560f640929baf97bb65457f77a12a57d5322852" 1120 | dependencies: 1121 | add-stream "^1.0.0" 1122 | conventional-changelog "^1.1.16" 1123 | lodash "^4.1.0" 1124 | meow "^3.7.0" 1125 | tempfile "^1.1.1" 1126 | 1127 | conventional-changelog-codemirror@^0.3.0: 1128 | version "0.3.3" 1129 | resolved "http://registry.npm.taobao.org/conventional-changelog-codemirror/download/conventional-changelog-codemirror-0.3.3.tgz#e1ec78e77e7fe26a2bd18e32f02523527916a07b" 1130 | dependencies: 1131 | q "^1.4.1" 1132 | 1133 | conventional-changelog-core@^2.0.1: 1134 | version "2.0.4" 1135 | resolved "http://registry.npm.taobao.org/conventional-changelog-core/download/conventional-changelog-core-2.0.4.tgz#bbc476109c6b28ba6328b0b417f5ab5bfc7ca28a" 1136 | dependencies: 1137 | conventional-changelog-writer "^3.0.3" 1138 | conventional-commits-parser "^2.1.4" 1139 | dateformat "^1.0.12" 1140 | get-pkg-repo "^1.0.0" 1141 | git-raw-commits "^1.3.3" 1142 | git-remote-origin-url "^2.0.0" 1143 | git-semver-tags "^1.3.3" 1144 | lodash "^4.0.0" 1145 | normalize-package-data "^2.3.5" 1146 | q "^1.4.1" 1147 | read-pkg "^1.1.0" 1148 | read-pkg-up "^1.0.1" 1149 | through2 "^2.0.0" 1150 | 1151 | conventional-changelog-ember@^0.3.2: 1152 | version "0.3.5" 1153 | resolved "http://registry.npm.taobao.org/conventional-changelog-ember/download/conventional-changelog-ember-0.3.5.tgz#db9a23f01103c6a0446ed2077ed5c87656d0571a" 1154 | dependencies: 1155 | q "^1.4.1" 1156 | 1157 | conventional-changelog-eslint@^1.0.0: 1158 | version "1.0.3" 1159 | resolved "http://registry.npm.taobao.org/conventional-changelog-eslint/download/conventional-changelog-eslint-1.0.3.tgz#023002a3f776266c501e4d4def7b0bb24130f29d" 1160 | dependencies: 1161 | q "^1.4.1" 1162 | 1163 | conventional-changelog-express@^0.3.0: 1164 | version "0.3.3" 1165 | resolved "http://registry.npm.taobao.org/conventional-changelog-express/download/conventional-changelog-express-0.3.3.tgz#25aef42a30b5457f97681a94f2ac9b0ee515484a" 1166 | dependencies: 1167 | q "^1.4.1" 1168 | 1169 | conventional-changelog-jquery@^0.1.0: 1170 | version "0.1.0" 1171 | resolved "http://registry.npm.taobao.org/conventional-changelog-jquery/download/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" 1172 | dependencies: 1173 | q "^1.4.1" 1174 | 1175 | conventional-changelog-jscs@^0.1.0: 1176 | version "0.1.0" 1177 | resolved "http://registry.npm.taobao.org/conventional-changelog-jscs/download/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" 1178 | dependencies: 1179 | q "^1.4.1" 1180 | 1181 | conventional-changelog-jshint@^0.3.0: 1182 | version "0.3.3" 1183 | resolved "http://registry.npm.taobao.org/conventional-changelog-jshint/download/conventional-changelog-jshint-0.3.3.tgz#28b6fe4d41fb945f38c6c31cd195fe37594f0007" 1184 | dependencies: 1185 | compare-func "^1.3.1" 1186 | q "^1.4.1" 1187 | 1188 | conventional-changelog-preset-loader@^1.1.2: 1189 | version "1.1.5" 1190 | resolved "http://registry.npm.taobao.org/conventional-changelog-preset-loader/download/conventional-changelog-preset-loader-1.1.5.tgz#d5af525d7ad81179d9b54137284d74d665997fa7" 1191 | 1192 | conventional-changelog-writer@^3.0.3: 1193 | version "3.0.3" 1194 | resolved "http://registry.npm.taobao.org/conventional-changelog-writer/download/conventional-changelog-writer-3.0.3.tgz#2faa65739370769639fff1c0008722162936d46c" 1195 | dependencies: 1196 | compare-func "^1.3.1" 1197 | conventional-commits-filter "^1.1.4" 1198 | dateformat "^1.0.11" 1199 | handlebars "^4.0.2" 1200 | json-stringify-safe "^5.0.1" 1201 | lodash "^4.0.0" 1202 | meow "^3.3.0" 1203 | semver "^5.0.1" 1204 | split "^1.0.0" 1205 | through2 "^2.0.0" 1206 | 1207 | conventional-changelog@^1.1.16: 1208 | version "1.2.0" 1209 | resolved "http://registry.npm.taobao.org/conventional-changelog/download/conventional-changelog-1.2.0.tgz#74947e73e48b57ceb6859c373f4f9d4fb5e6d4df" 1210 | dependencies: 1211 | conventional-changelog-angular "^1.6.2" 1212 | conventional-changelog-atom "^0.2.0" 1213 | conventional-changelog-codemirror "^0.3.0" 1214 | conventional-changelog-core "^2.0.1" 1215 | conventional-changelog-ember "^0.3.2" 1216 | conventional-changelog-eslint "^1.0.0" 1217 | conventional-changelog-express "^0.3.0" 1218 | conventional-changelog-jquery "^0.1.0" 1219 | conventional-changelog-jscs "^0.1.0" 1220 | conventional-changelog-jshint "^0.3.0" 1221 | conventional-changelog-preset-loader "^1.1.2" 1222 | 1223 | conventional-commits-filter@^1.1.4: 1224 | version "1.1.4" 1225 | resolved "http://registry.npm.taobao.org/conventional-commits-filter/download/conventional-commits-filter-1.1.4.tgz#8b5be3979c372e4f7440180d5c655a94ac5a134a" 1226 | dependencies: 1227 | is-subset "^0.1.1" 1228 | modify-values "^1.0.0" 1229 | 1230 | conventional-commits-parser@^2.1.4: 1231 | version "2.1.4" 1232 | resolved "http://registry.npm.taobao.org/conventional-commits-parser/download/conventional-commits-parser-2.1.4.tgz#86d2c21029268d99543c4ebda37d76fe5c44d8d1" 1233 | dependencies: 1234 | JSONStream "^1.0.4" 1235 | is-text-path "^1.0.0" 1236 | lodash "^4.2.1" 1237 | meow "^3.3.0" 1238 | split2 "^2.0.0" 1239 | through2 "^2.0.0" 1240 | trim-off-newlines "^1.0.0" 1241 | 1242 | convert-source-map@^1.1.0, convert-source-map@^1.7.0: 1243 | version "1.7.0" 1244 | resolved "https://registry.npm.taobao.org/convert-source-map/download/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1245 | dependencies: 1246 | safe-buffer "~5.1.1" 1247 | 1248 | copy-descriptor@^0.1.0: 1249 | version "0.1.1" 1250 | resolved "http://registry.npm.taobao.org/copy-descriptor/download/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1251 | 1252 | core-js-compat@^3.6.0: 1253 | version "3.6.1" 1254 | resolved "https://registry.npm.taobao.org/core-js-compat/download/core-js-compat-3.6.1.tgz#39638c935c83c93a793abb628b252ec43e85783a" 1255 | dependencies: 1256 | browserslist "^4.8.2" 1257 | semver "7.0.0" 1258 | 1259 | core-js@3: 1260 | version "3.6.1" 1261 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.1.tgz#39d5e2e346258cc01eb7d44345b1c3c014ca3f05" 1262 | 1263 | core-js@^2.6.5: 1264 | version "2.6.11" 1265 | resolved "https://registry.npm.taobao.org/core-js/download/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" 1266 | 1267 | core-util-is@1.0.2, core-util-is@~1.0.0: 1268 | version "1.0.2" 1269 | resolved "http://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1270 | 1271 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: 1272 | version "2.2.2" 1273 | resolved "http://registry.npm.taobao.org/cosmiconfig/download/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" 1274 | dependencies: 1275 | is-directory "^0.3.1" 1276 | js-yaml "^3.4.3" 1277 | minimist "^1.2.0" 1278 | object-assign "^4.1.0" 1279 | os-homedir "^1.0.1" 1280 | parse-json "^2.2.0" 1281 | require-from-string "^1.1.0" 1282 | 1283 | cross-spawn@^5.0.1: 1284 | version "5.1.0" 1285 | resolved "http://registry.npm.taobao.org/cross-spawn/download/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1286 | dependencies: 1287 | lru-cache "^4.0.1" 1288 | shebang-command "^1.2.0" 1289 | which "^1.2.9" 1290 | 1291 | cryptiles@2.x.x: 1292 | version "2.0.5" 1293 | resolved "http://registry.npm.taobao.org/cryptiles/download/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1294 | dependencies: 1295 | boom "2.x.x" 1296 | 1297 | currently-unhandled@^0.4.1: 1298 | version "0.4.1" 1299 | resolved "http://registry.npm.taobao.org/currently-unhandled/download/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1300 | dependencies: 1301 | array-find-index "^1.0.1" 1302 | 1303 | dargs@^4.0.1: 1304 | version "4.1.0" 1305 | resolved "http://registry.npm.taobao.org/dargs/download/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 1306 | dependencies: 1307 | number-is-nan "^1.0.0" 1308 | 1309 | dashdash@^1.12.0: 1310 | version "1.14.1" 1311 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1312 | dependencies: 1313 | assert-plus "^1.0.0" 1314 | 1315 | dateformat@^1.0.11, dateformat@^1.0.12: 1316 | version "1.0.12" 1317 | resolved "http://registry.npm.taobao.org/dateformat/download/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 1318 | dependencies: 1319 | get-stdin "^4.0.1" 1320 | meow "^3.3.0" 1321 | 1322 | debug@^2.2.0, debug@^2.3.3: 1323 | version "2.6.9" 1324 | resolved "http://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1325 | dependencies: 1326 | ms "2.0.0" 1327 | 1328 | debug@^4.1.0: 1329 | version "4.1.1" 1330 | resolved "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1331 | dependencies: 1332 | ms "^2.1.1" 1333 | 1334 | decamelize@^1.1.1, decamelize@^1.1.2: 1335 | version "1.2.0" 1336 | resolved "http://registry.npm.taobao.org/decamelize/download/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1337 | 1338 | decode-uri-component@^0.2.0: 1339 | version "0.2.0" 1340 | resolved "http://registry.npm.taobao.org/decode-uri-component/download/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1341 | 1342 | deep-extend@~0.4.0: 1343 | version "0.4.2" 1344 | resolved "http://registry.npm.taobao.org/deep-extend/download/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1345 | 1346 | define-properties@^1.1.2: 1347 | version "1.1.3" 1348 | resolved "https://registry.npm.taobao.org/define-properties/download/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1349 | dependencies: 1350 | object-keys "^1.0.12" 1351 | 1352 | define-property@^0.2.5: 1353 | version "0.2.5" 1354 | resolved "http://registry.npm.taobao.org/define-property/download/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1355 | dependencies: 1356 | is-descriptor "^0.1.0" 1357 | 1358 | define-property@^1.0.0: 1359 | version "1.0.0" 1360 | resolved "http://registry.npm.taobao.org/define-property/download/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1361 | dependencies: 1362 | is-descriptor "^1.0.0" 1363 | 1364 | define-property@^2.0.2: 1365 | version "2.0.2" 1366 | resolved "http://registry.npm.taobao.org/define-property/download/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1367 | dependencies: 1368 | is-descriptor "^1.0.2" 1369 | isobject "^3.0.1" 1370 | 1371 | delayed-stream@~1.0.0: 1372 | version "1.0.0" 1373 | resolved "http://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1374 | 1375 | delegates@^1.0.0: 1376 | version "1.0.0" 1377 | resolved "http://registry.npm.taobao.org/delegates/download/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1378 | 1379 | dependency-graph@^0.7.0: 1380 | version "0.7.0" 1381 | resolved "http://registry.npm.taobao.org/dependency-graph/download/dependency-graph-0.7.0.tgz#8fc7991ad236e47f0d5742701b5e307b83d7c0d0" 1382 | 1383 | detect-libc@^1.0.2: 1384 | version "1.0.3" 1385 | resolved "http://registry.npm.taobao.org/detect-libc/download/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1386 | 1387 | dir-glob@^2.0.0: 1388 | version "2.0.0" 1389 | resolved "http://registry.npm.taobao.org/dir-glob/download/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" 1390 | dependencies: 1391 | arrify "^1.0.1" 1392 | path-type "^3.0.0" 1393 | 1394 | dot-prop@^3.0.0: 1395 | version "3.0.0" 1396 | resolved "http://registry.npm.taobao.org/dot-prop/download/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1397 | dependencies: 1398 | is-obj "^1.0.0" 1399 | 1400 | ecc-jsbn@~0.1.1: 1401 | version "0.1.2" 1402 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1403 | dependencies: 1404 | jsbn "~0.1.0" 1405 | safer-buffer "^2.1.0" 1406 | 1407 | electron-to-chromium@^1.3.322: 1408 | version "1.3.322" 1409 | resolved "https://registry.npm.taobao.org/electron-to-chromium/download/electron-to-chromium-1.3.322.tgz#a6f7e1c79025c2b05838e8e344f6e89eb83213a8" 1410 | 1411 | electron-to-chromium@^1.3.33: 1412 | version "1.3.34" 1413 | resolved "http://registry.npm.taobao.org/electron-to-chromium/download/electron-to-chromium-1.3.34.tgz#d93498f40391bb0c16a603d8241b9951404157ed" 1414 | 1415 | error-ex@^1.2.0: 1416 | version "1.3.1" 1417 | resolved "http://registry.npm.taobao.org/error-ex/download/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1418 | dependencies: 1419 | is-arrayish "^0.2.1" 1420 | 1421 | escape-string-regexp@^1.0.5: 1422 | version "1.0.5" 1423 | resolved "http://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1424 | 1425 | esprima@^4.0.0: 1426 | version "4.0.1" 1427 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1428 | 1429 | esutils@^2.0.0, esutils@^2.0.2: 1430 | version "2.0.3" 1431 | resolved "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz?cache=0&sync_timestamp=1564535492241&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fesutils%2Fdownload%2Fesutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1432 | 1433 | execa@^0.7.0: 1434 | version "0.7.0" 1435 | resolved "http://registry.npm.taobao.org/execa/download/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1436 | dependencies: 1437 | cross-spawn "^5.0.1" 1438 | get-stream "^3.0.0" 1439 | is-stream "^1.1.0" 1440 | npm-run-path "^2.0.0" 1441 | p-finally "^1.0.0" 1442 | signal-exit "^3.0.0" 1443 | strip-eof "^1.0.0" 1444 | 1445 | expand-brackets@^2.1.4: 1446 | version "2.1.4" 1447 | resolved "http://registry.npm.taobao.org/expand-brackets/download/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1448 | dependencies: 1449 | debug "^2.3.3" 1450 | define-property "^0.2.5" 1451 | extend-shallow "^2.0.1" 1452 | posix-character-classes "^0.1.0" 1453 | regex-not "^1.0.0" 1454 | snapdragon "^0.8.1" 1455 | to-regex "^3.0.1" 1456 | 1457 | extend-shallow@^2.0.1: 1458 | version "2.0.1" 1459 | resolved "http://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1460 | dependencies: 1461 | is-extendable "^0.1.0" 1462 | 1463 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1464 | version "3.0.2" 1465 | resolved "http://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1466 | dependencies: 1467 | assign-symbols "^1.0.0" 1468 | is-extendable "^1.0.1" 1469 | 1470 | extend@~3.0.0: 1471 | version "3.0.2" 1472 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1473 | 1474 | extglob@^2.0.4: 1475 | version "2.0.4" 1476 | resolved "http://registry.npm.taobao.org/extglob/download/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1477 | dependencies: 1478 | array-unique "^0.3.2" 1479 | define-property "^1.0.0" 1480 | expand-brackets "^2.1.4" 1481 | extend-shallow "^2.0.1" 1482 | fragment-cache "^0.2.1" 1483 | regex-not "^1.0.0" 1484 | snapdragon "^0.8.1" 1485 | to-regex "^3.0.1" 1486 | 1487 | extsprintf@1.3.0: 1488 | version "1.3.0" 1489 | resolved "http://registry.npm.taobao.org/extsprintf/download/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1490 | 1491 | extsprintf@^1.2.0: 1492 | version "1.4.0" 1493 | resolved "http://registry.npm.taobao.org/extsprintf/download/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1494 | 1495 | file-uri-to-path@1.0.0: 1496 | version "1.0.0" 1497 | resolved "https://registry.npm.taobao.org/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 1498 | 1499 | fill-range@^4.0.0: 1500 | version "4.0.0" 1501 | resolved "http://registry.npm.taobao.org/fill-range/download/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1502 | dependencies: 1503 | extend-shallow "^2.0.1" 1504 | is-number "^3.0.0" 1505 | repeat-string "^1.6.1" 1506 | to-regex-range "^2.1.0" 1507 | 1508 | find-up@^1.0.0: 1509 | version "1.1.2" 1510 | resolved "http://registry.npm.taobao.org/find-up/download/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1511 | dependencies: 1512 | path-exists "^2.0.0" 1513 | pinkie-promise "^2.0.0" 1514 | 1515 | find-up@^2.1.0: 1516 | version "2.1.0" 1517 | resolved "http://registry.npm.taobao.org/find-up/download/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1518 | dependencies: 1519 | locate-path "^2.0.0" 1520 | 1521 | for-in@^1.0.2: 1522 | version "1.0.2" 1523 | resolved "http://registry.npm.taobao.org/for-in/download/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1524 | 1525 | forever-agent@~0.6.1: 1526 | version "0.6.1" 1527 | resolved "http://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1528 | 1529 | form-data@~2.1.1: 1530 | version "2.1.4" 1531 | resolved "http://registry.npm.taobao.org/form-data/download/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1532 | dependencies: 1533 | asynckit "^0.4.0" 1534 | combined-stream "^1.0.5" 1535 | mime-types "^2.1.12" 1536 | 1537 | fragment-cache@^0.2.1: 1538 | version "0.2.1" 1539 | resolved "http://registry.npm.taobao.org/fragment-cache/download/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1540 | dependencies: 1541 | map-cache "^0.2.2" 1542 | 1543 | fs-extra@^5.0.0: 1544 | version "5.0.0" 1545 | resolved "http://registry.npm.taobao.org/fs-extra/download/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd" 1546 | dependencies: 1547 | graceful-fs "^4.1.2" 1548 | jsonfile "^4.0.0" 1549 | universalify "^0.1.0" 1550 | 1551 | fs-readdir-recursive@^1.1.0: 1552 | version "1.1.0" 1553 | resolved "https://registry.npm.taobao.org/fs-readdir-recursive/download/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1554 | 1555 | fs.realpath@^1.0.0: 1556 | version "1.0.0" 1557 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1558 | 1559 | fsevents@^1.0.0: 1560 | version "1.1.3" 1561 | resolved "http://registry.npm.taobao.org/fsevents/download/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1562 | dependencies: 1563 | nan "^2.3.0" 1564 | node-pre-gyp "^0.6.39" 1565 | 1566 | fsevents@^1.2.7: 1567 | version "1.2.11" 1568 | resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-1.2.11.tgz#67bf57f4758f02ede88fb2a1712fef4d15358be3" 1569 | dependencies: 1570 | bindings "^1.5.0" 1571 | nan "^2.12.1" 1572 | 1573 | fstream-ignore@^1.0.5: 1574 | version "1.0.5" 1575 | resolved "http://registry.npm.taobao.org/fstream-ignore/download/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1576 | dependencies: 1577 | fstream "^1.0.0" 1578 | inherits "2" 1579 | minimatch "^3.0.0" 1580 | 1581 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: 1582 | version "1.0.12" 1583 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 1584 | dependencies: 1585 | graceful-fs "^4.1.2" 1586 | inherits "~2.0.0" 1587 | mkdirp ">=0.5 0" 1588 | rimraf "2" 1589 | 1590 | function-bind@^1.1.1: 1591 | version "1.1.1" 1592 | resolved "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1593 | 1594 | gauge@~2.7.3: 1595 | version "2.7.4" 1596 | resolved "http://registry.npm.taobao.org/gauge/download/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1597 | dependencies: 1598 | aproba "^1.0.3" 1599 | console-control-strings "^1.0.0" 1600 | has-unicode "^2.0.0" 1601 | object-assign "^4.1.0" 1602 | signal-exit "^3.0.0" 1603 | string-width "^1.0.1" 1604 | strip-ansi "^3.0.1" 1605 | wide-align "^1.1.0" 1606 | 1607 | get-caller-file@^1.0.1: 1608 | version "1.0.2" 1609 | resolved "http://registry.npm.taobao.org/get-caller-file/download/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1610 | 1611 | get-pkg-repo@^1.0.0: 1612 | version "1.4.0" 1613 | resolved "http://registry.npm.taobao.org/get-pkg-repo/download/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 1614 | dependencies: 1615 | hosted-git-info "^2.1.4" 1616 | meow "^3.3.0" 1617 | normalize-package-data "^2.3.0" 1618 | parse-github-repo-url "^1.3.0" 1619 | through2 "^2.0.0" 1620 | 1621 | get-stdin@^4.0.1: 1622 | version "4.0.1" 1623 | resolved "http://registry.npm.taobao.org/get-stdin/download/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1624 | 1625 | get-stdin@^5.0.1: 1626 | version "5.0.1" 1627 | resolved "http://registry.npm.taobao.org/get-stdin/download/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1628 | 1629 | get-stream@^3.0.0: 1630 | version "3.0.0" 1631 | resolved "http://registry.npm.taobao.org/get-stream/download/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1632 | 1633 | get-value@^2.0.3, get-value@^2.0.6: 1634 | version "2.0.6" 1635 | resolved "http://registry.npm.taobao.org/get-value/download/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1636 | 1637 | getpass@^0.1.1: 1638 | version "0.1.7" 1639 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1640 | dependencies: 1641 | assert-plus "^1.0.0" 1642 | 1643 | git-raw-commits@^1.3.3: 1644 | version "1.3.3" 1645 | resolved "http://registry.npm.taobao.org/git-raw-commits/download/git-raw-commits-1.3.3.tgz#464f9aa14c4e78235e98654f0da467f3702590f9" 1646 | dependencies: 1647 | dargs "^4.0.1" 1648 | lodash.template "^4.0.2" 1649 | meow "^3.3.0" 1650 | split2 "^2.0.0" 1651 | through2 "^2.0.0" 1652 | 1653 | git-remote-origin-url@^2.0.0: 1654 | version "2.0.0" 1655 | resolved "http://registry.npm.taobao.org/git-remote-origin-url/download/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 1656 | dependencies: 1657 | gitconfiglocal "^1.0.0" 1658 | pify "^2.3.0" 1659 | 1660 | git-semver-tags@^1.3.3: 1661 | version "1.3.3" 1662 | resolved "http://registry.npm.taobao.org/git-semver-tags/download/git-semver-tags-1.3.3.tgz#0b0416c43285adfdc93a8038ea25502a09319245" 1663 | dependencies: 1664 | meow "^3.3.0" 1665 | semver "^5.0.1" 1666 | 1667 | gitconfiglocal@^1.0.0: 1668 | version "1.0.0" 1669 | resolved "http://registry.npm.taobao.org/gitconfiglocal/download/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 1670 | dependencies: 1671 | ini "^1.3.2" 1672 | 1673 | glob-parent@^3.1.0: 1674 | version "3.1.0" 1675 | resolved "http://registry.npm.taobao.org/glob-parent/download/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1676 | dependencies: 1677 | is-glob "^3.1.0" 1678 | path-dirname "^1.0.0" 1679 | 1680 | glob@^7.0.0, glob@^7.1.3: 1681 | version "7.1.6" 1682 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1683 | dependencies: 1684 | fs.realpath "^1.0.0" 1685 | inflight "^1.0.4" 1686 | inherits "2" 1687 | minimatch "^3.0.4" 1688 | once "^1.3.0" 1689 | path-is-absolute "^1.0.0" 1690 | 1691 | glob@^7.0.5, glob@^7.1.2: 1692 | version "7.1.2" 1693 | resolved "http://registry.npm.taobao.org/glob/download/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1694 | dependencies: 1695 | fs.realpath "^1.0.0" 1696 | inflight "^1.0.4" 1697 | inherits "2" 1698 | minimatch "^3.0.4" 1699 | once "^1.3.0" 1700 | path-is-absolute "^1.0.0" 1701 | 1702 | globals@^11.1.0: 1703 | version "11.12.0" 1704 | resolved "https://registry.npm.taobao.org/globals/download/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1705 | 1706 | globby@^7.1.1: 1707 | version "7.1.1" 1708 | resolved "http://registry.npm.taobao.org/globby/download/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" 1709 | dependencies: 1710 | array-union "^1.0.1" 1711 | dir-glob "^2.0.0" 1712 | glob "^7.1.2" 1713 | ignore "^3.3.5" 1714 | pify "^3.0.0" 1715 | slash "^1.0.0" 1716 | 1717 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1718 | version "4.2.3" 1719 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1720 | 1721 | graceful-fs@^4.1.6: 1722 | version "4.1.11" 1723 | resolved "http://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1724 | 1725 | handlebars@^4.0.2: 1726 | version "4.5.3" 1727 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.3.tgz#5cf75bd8714f7605713511a56be7c349becb0482" 1728 | dependencies: 1729 | neo-async "^2.6.0" 1730 | optimist "^0.6.1" 1731 | source-map "^0.6.1" 1732 | optionalDependencies: 1733 | uglify-js "^3.1.4" 1734 | 1735 | har-schema@^1.0.5: 1736 | version "1.0.5" 1737 | resolved "http://registry.npm.taobao.org/har-schema/download/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1738 | 1739 | har-validator@~4.2.1: 1740 | version "4.2.1" 1741 | resolved "http://registry.npm.taobao.org/har-validator/download/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1742 | dependencies: 1743 | ajv "^4.9.1" 1744 | har-schema "^1.0.5" 1745 | 1746 | has-flag@^3.0.0: 1747 | version "3.0.0" 1748 | resolved "http://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1749 | 1750 | has-symbols@^1.0.0: 1751 | version "1.0.1" 1752 | resolved "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1753 | 1754 | has-unicode@^2.0.0: 1755 | version "2.0.1" 1756 | resolved "http://registry.npm.taobao.org/has-unicode/download/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1757 | 1758 | has-value@^0.3.1: 1759 | version "0.3.1" 1760 | resolved "http://registry.npm.taobao.org/has-value/download/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1761 | dependencies: 1762 | get-value "^2.0.3" 1763 | has-values "^0.1.4" 1764 | isobject "^2.0.0" 1765 | 1766 | has-value@^1.0.0: 1767 | version "1.0.0" 1768 | resolved "http://registry.npm.taobao.org/has-value/download/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1769 | dependencies: 1770 | get-value "^2.0.6" 1771 | has-values "^1.0.0" 1772 | isobject "^3.0.0" 1773 | 1774 | has-values@^0.1.4: 1775 | version "0.1.4" 1776 | resolved "http://registry.npm.taobao.org/has-values/download/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1777 | 1778 | has-values@^1.0.0: 1779 | version "1.0.0" 1780 | resolved "http://registry.npm.taobao.org/has-values/download/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1781 | dependencies: 1782 | is-number "^3.0.0" 1783 | kind-of "^4.0.0" 1784 | 1785 | hawk@3.1.3, hawk@~3.1.3: 1786 | version "3.1.3" 1787 | resolved "http://registry.npm.taobao.org/hawk/download/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1788 | dependencies: 1789 | boom "2.x.x" 1790 | cryptiles "2.x.x" 1791 | hoek "2.x.x" 1792 | sntp "1.x.x" 1793 | 1794 | hoek@2.x.x: 1795 | version "2.16.3" 1796 | resolved "http://registry.npm.taobao.org/hoek/download/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1797 | 1798 | hosted-git-info@^2.1.4: 1799 | version "2.5.0" 1800 | resolved "http://registry.npm.taobao.org/hosted-git-info/download/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1801 | 1802 | http-signature@~1.1.0: 1803 | version "1.1.1" 1804 | resolved "http://registry.npm.taobao.org/http-signature/download/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1805 | dependencies: 1806 | assert-plus "^0.2.0" 1807 | jsprim "^1.2.2" 1808 | sshpk "^1.7.0" 1809 | 1810 | ignore@^3.3.5: 1811 | version "3.3.7" 1812 | resolved "http://registry.npm.taobao.org/ignore/download/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1813 | 1814 | indent-string@^2.1.0: 1815 | version "2.1.0" 1816 | resolved "http://registry.npm.taobao.org/indent-string/download/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1817 | dependencies: 1818 | repeating "^2.0.0" 1819 | 1820 | inflight@^1.0.4: 1821 | version "1.0.6" 1822 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1823 | dependencies: 1824 | once "^1.3.0" 1825 | wrappy "1" 1826 | 1827 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1828 | version "2.0.4" 1829 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1830 | 1831 | ini@^1.3.2, ini@~1.3.0: 1832 | version "1.3.5" 1833 | resolved "http://registry.npm.taobao.org/ini/download/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1834 | 1835 | invariant@^2.2.2: 1836 | version "2.2.4" 1837 | resolved "https://registry.npm.taobao.org/invariant/download/invariant-2.2.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Finvariant%2Fdownload%2Finvariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1838 | dependencies: 1839 | loose-envify "^1.0.0" 1840 | 1841 | invert-kv@^1.0.0: 1842 | version "1.0.0" 1843 | resolved "http://registry.npm.taobao.org/invert-kv/download/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1844 | 1845 | is-accessor-descriptor@^0.1.6: 1846 | version "0.1.6" 1847 | resolved "http://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1848 | dependencies: 1849 | kind-of "^3.0.2" 1850 | 1851 | is-accessor-descriptor@^1.0.0: 1852 | version "1.0.0" 1853 | resolved "http://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1854 | dependencies: 1855 | kind-of "^6.0.0" 1856 | 1857 | is-arrayish@^0.2.1: 1858 | version "0.2.1" 1859 | resolved "http://registry.npm.taobao.org/is-arrayish/download/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1860 | 1861 | is-binary-path@^1.0.0: 1862 | version "1.0.1" 1863 | resolved "http://registry.npm.taobao.org/is-binary-path/download/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1864 | dependencies: 1865 | binary-extensions "^1.0.0" 1866 | 1867 | is-buffer@^1.1.5: 1868 | version "1.1.6" 1869 | resolved "http://registry.npm.taobao.org/is-buffer/download/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1870 | 1871 | is-builtin-module@^1.0.0: 1872 | version "1.0.0" 1873 | resolved "http://registry.npm.taobao.org/is-builtin-module/download/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1874 | dependencies: 1875 | builtin-modules "^1.0.0" 1876 | 1877 | is-data-descriptor@^0.1.4: 1878 | version "0.1.4" 1879 | resolved "http://registry.npm.taobao.org/is-data-descriptor/download/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1880 | dependencies: 1881 | kind-of "^3.0.2" 1882 | 1883 | is-data-descriptor@^1.0.0: 1884 | version "1.0.0" 1885 | resolved "http://registry.npm.taobao.org/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1886 | dependencies: 1887 | kind-of "^6.0.0" 1888 | 1889 | is-descriptor@^0.1.0: 1890 | version "0.1.6" 1891 | resolved "http://registry.npm.taobao.org/is-descriptor/download/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1892 | dependencies: 1893 | is-accessor-descriptor "^0.1.6" 1894 | is-data-descriptor "^0.1.4" 1895 | kind-of "^5.0.0" 1896 | 1897 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1898 | version "1.0.2" 1899 | resolved "http://registry.npm.taobao.org/is-descriptor/download/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1900 | dependencies: 1901 | is-accessor-descriptor "^1.0.0" 1902 | is-data-descriptor "^1.0.0" 1903 | kind-of "^6.0.2" 1904 | 1905 | is-directory@^0.3.1: 1906 | version "0.3.1" 1907 | resolved "http://registry.npm.taobao.org/is-directory/download/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1908 | 1909 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1910 | version "0.1.1" 1911 | resolved "http://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1912 | 1913 | is-extendable@^1.0.1: 1914 | version "1.0.1" 1915 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1916 | dependencies: 1917 | is-plain-object "^2.0.4" 1918 | 1919 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1920 | version "2.1.1" 1921 | resolved "http://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1922 | 1923 | is-finite@^1.0.0: 1924 | version "1.0.2" 1925 | resolved "http://registry.npm.taobao.org/is-finite/download/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1926 | dependencies: 1927 | number-is-nan "^1.0.0" 1928 | 1929 | is-fullwidth-code-point@^1.0.0: 1930 | version "1.0.0" 1931 | resolved "http://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1932 | dependencies: 1933 | number-is-nan "^1.0.0" 1934 | 1935 | is-fullwidth-code-point@^2.0.0: 1936 | version "2.0.0" 1937 | resolved "http://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1938 | 1939 | is-glob@^3.1.0: 1940 | version "3.1.0" 1941 | resolved "http://registry.npm.taobao.org/is-glob/download/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1942 | dependencies: 1943 | is-extglob "^2.1.0" 1944 | 1945 | is-glob@^4.0.0: 1946 | version "4.0.0" 1947 | resolved "http://registry.npm.taobao.org/is-glob/download/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1948 | dependencies: 1949 | is-extglob "^2.1.1" 1950 | 1951 | is-number@^3.0.0: 1952 | version "3.0.0" 1953 | resolved "http://registry.npm.taobao.org/is-number/download/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1954 | dependencies: 1955 | kind-of "^3.0.2" 1956 | 1957 | is-number@^4.0.0: 1958 | version "4.0.0" 1959 | resolved "http://registry.npm.taobao.org/is-number/download/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1960 | 1961 | is-obj@^1.0.0: 1962 | version "1.0.1" 1963 | resolved "http://registry.npm.taobao.org/is-obj/download/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1964 | 1965 | is-odd@^2.0.0: 1966 | version "2.0.0" 1967 | resolved "http://registry.npm.taobao.org/is-odd/download/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1968 | dependencies: 1969 | is-number "^4.0.0" 1970 | 1971 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1972 | version "2.0.4" 1973 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1974 | dependencies: 1975 | isobject "^3.0.1" 1976 | 1977 | is-stream@^1.1.0: 1978 | version "1.1.0" 1979 | resolved "http://registry.npm.taobao.org/is-stream/download/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1980 | 1981 | is-subset@^0.1.1: 1982 | version "0.1.1" 1983 | resolved "http://registry.npm.taobao.org/is-subset/download/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1984 | 1985 | is-text-path@^1.0.0: 1986 | version "1.0.1" 1987 | resolved "http://registry.npm.taobao.org/is-text-path/download/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 1988 | dependencies: 1989 | text-extensions "^1.0.0" 1990 | 1991 | is-typedarray@~1.0.0: 1992 | version "1.0.0" 1993 | resolved "http://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1994 | 1995 | is-utf8@^0.2.0: 1996 | version "0.2.1" 1997 | resolved "http://registry.npm.taobao.org/is-utf8/download/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1998 | 1999 | is-windows@^1.0.2: 2000 | version "1.0.2" 2001 | resolved "http://registry.npm.taobao.org/is-windows/download/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2002 | 2003 | isarray@1.0.0, isarray@~1.0.0: 2004 | version "1.0.0" 2005 | resolved "http://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2006 | 2007 | isexe@^2.0.0: 2008 | version "2.0.0" 2009 | resolved "http://registry.npm.taobao.org/isexe/download/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2010 | 2011 | isobject@^2.0.0: 2012 | version "2.1.0" 2013 | resolved "http://registry.npm.taobao.org/isobject/download/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2014 | dependencies: 2015 | isarray "1.0.0" 2016 | 2017 | isobject@^3.0.0, isobject@^3.0.1: 2018 | version "3.0.1" 2019 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2020 | 2021 | isstream@~0.1.2: 2022 | version "0.1.2" 2023 | resolved "http://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2024 | 2025 | js-levenshtein@^1.1.3: 2026 | version "1.1.6" 2027 | resolved "https://registry.npm.taobao.org/js-levenshtein/download/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" 2028 | 2029 | js-tokens@^3.0.0: 2030 | version "3.0.2" 2031 | resolved "http://registry.npm.taobao.org/js-tokens/download/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2032 | 2033 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2034 | version "4.0.0" 2035 | resolved "https://registry.npm.taobao.org/js-tokens/download/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2036 | 2037 | js-yaml@^3.4.3: 2038 | version "3.13.1" 2039 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 2040 | dependencies: 2041 | argparse "^1.0.7" 2042 | esprima "^4.0.0" 2043 | 2044 | jsbn@~0.1.0: 2045 | version "0.1.1" 2046 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2047 | 2048 | jsesc@^2.5.1: 2049 | version "2.5.2" 2050 | resolved "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2051 | 2052 | jsesc@~0.5.0: 2053 | version "0.5.0" 2054 | resolved "https://registry.npm.taobao.org/jsesc/download/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2055 | 2056 | json-schema@0.2.3: 2057 | version "0.2.3" 2058 | resolved "http://registry.npm.taobao.org/json-schema/download/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2059 | 2060 | json-stable-stringify@^1.0.1: 2061 | version "1.0.1" 2062 | resolved "http://registry.npm.taobao.org/json-stable-stringify/download/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2063 | dependencies: 2064 | jsonify "~0.0.0" 2065 | 2066 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 2067 | version "5.0.1" 2068 | resolved "http://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2069 | 2070 | json5@^2.1.0: 2071 | version "2.1.1" 2072 | resolved "https://registry.npm.taobao.org/json5/download/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" 2073 | dependencies: 2074 | minimist "^1.2.0" 2075 | 2076 | jsonfile@^4.0.0: 2077 | version "4.0.0" 2078 | resolved "http://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2079 | optionalDependencies: 2080 | graceful-fs "^4.1.6" 2081 | 2082 | jsonify@~0.0.0: 2083 | version "0.0.0" 2084 | resolved "http://registry.npm.taobao.org/jsonify/download/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2085 | 2086 | jsonparse@^1.2.0: 2087 | version "1.3.1" 2088 | resolved "http://registry.npm.taobao.org/jsonparse/download/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 2089 | 2090 | jsprim@^1.2.2: 2091 | version "1.4.1" 2092 | resolved "http://registry.npm.taobao.org/jsprim/download/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2093 | dependencies: 2094 | assert-plus "1.0.0" 2095 | extsprintf "1.3.0" 2096 | json-schema "0.2.3" 2097 | verror "1.10.0" 2098 | 2099 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2100 | version "3.2.2" 2101 | resolved "http://registry.npm.taobao.org/kind-of/download/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2102 | dependencies: 2103 | is-buffer "^1.1.5" 2104 | 2105 | kind-of@^4.0.0: 2106 | version "4.0.0" 2107 | resolved "http://registry.npm.taobao.org/kind-of/download/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2108 | dependencies: 2109 | is-buffer "^1.1.5" 2110 | 2111 | kind-of@^5.0.0: 2112 | version "5.1.0" 2113 | resolved "http://registry.npm.taobao.org/kind-of/download/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2114 | 2115 | kind-of@^6.0.0, kind-of@^6.0.2: 2116 | version "6.0.2" 2117 | resolved "http://registry.npm.taobao.org/kind-of/download/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2118 | 2119 | lazy-cache@^2.0.2: 2120 | version "2.0.2" 2121 | resolved "http://registry.npm.taobao.org/lazy-cache/download/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" 2122 | dependencies: 2123 | set-getter "^0.1.0" 2124 | 2125 | lcid@^1.0.0: 2126 | version "1.0.0" 2127 | resolved "http://registry.npm.taobao.org/lcid/download/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2128 | dependencies: 2129 | invert-kv "^1.0.0" 2130 | 2131 | load-json-file@^1.0.0: 2132 | version "1.1.0" 2133 | resolved "http://registry.npm.taobao.org/load-json-file/download/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2134 | dependencies: 2135 | graceful-fs "^4.1.2" 2136 | parse-json "^2.2.0" 2137 | pify "^2.0.0" 2138 | pinkie-promise "^2.0.0" 2139 | strip-bom "^2.0.0" 2140 | 2141 | locate-path@^2.0.0: 2142 | version "2.0.0" 2143 | resolved "http://registry.npm.taobao.org/locate-path/download/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2144 | dependencies: 2145 | p-locate "^2.0.0" 2146 | path-exists "^3.0.0" 2147 | 2148 | lodash._reinterpolate@^3.0.0: 2149 | version "3.0.0" 2150 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 2151 | 2152 | lodash.endswith@^4.2.1: 2153 | version "4.2.1" 2154 | resolved "http://registry.npm.taobao.org/lodash.endswith/download/lodash.endswith-4.2.1.tgz#fed59ac1738ed3e236edd7064ec456448b37bc09" 2155 | 2156 | lodash.isfunction@^3.0.8: 2157 | version "3.0.9" 2158 | resolved "http://registry.npm.taobao.org/lodash.isfunction/download/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" 2159 | 2160 | lodash.isstring@^4.0.1: 2161 | version "4.0.1" 2162 | resolved "http://registry.npm.taobao.org/lodash.isstring/download/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 2163 | 2164 | lodash.startswith@^4.2.1: 2165 | version "4.2.1" 2166 | resolved "http://registry.npm.taobao.org/lodash.startswith/download/lodash.startswith-4.2.1.tgz#c598c4adce188a27e53145731cdc6c0e7177600c" 2167 | 2168 | lodash.template@^4.0.2: 2169 | version "4.5.0" 2170 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" 2171 | dependencies: 2172 | lodash._reinterpolate "^3.0.0" 2173 | lodash.templatesettings "^4.0.0" 2174 | 2175 | lodash.templatesettings@^4.0.0: 2176 | version "4.2.0" 2177 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" 2178 | dependencies: 2179 | lodash._reinterpolate "^3.0.0" 2180 | 2181 | lodash@^4.0.0, lodash@^4.1.0, lodash@^4.17.13, lodash@^4.17.4, lodash@^4.2.1: 2182 | version "4.17.15" 2183 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2184 | 2185 | log-symbols@^2.0.0: 2186 | version "2.2.0" 2187 | resolved "http://registry.npm.taobao.org/log-symbols/download/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 2188 | dependencies: 2189 | chalk "^2.0.1" 2190 | 2191 | loose-envify@^1.0.0: 2192 | version "1.3.1" 2193 | resolved "http://registry.npm.taobao.org/loose-envify/download/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2194 | dependencies: 2195 | js-tokens "^3.0.0" 2196 | 2197 | loose-envify@^1.1.0, loose-envify@^1.4.0: 2198 | version "1.4.0" 2199 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2200 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2201 | dependencies: 2202 | js-tokens "^3.0.0 || ^4.0.0" 2203 | 2204 | loud-rejection@^1.0.0: 2205 | version "1.6.0" 2206 | resolved "http://registry.npm.taobao.org/loud-rejection/download/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2207 | dependencies: 2208 | currently-unhandled "^0.4.1" 2209 | signal-exit "^3.0.0" 2210 | 2211 | lru-cache@^4.0.1: 2212 | version "4.1.1" 2213 | resolved "http://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2214 | dependencies: 2215 | pseudomap "^1.0.2" 2216 | yallist "^2.1.2" 2217 | 2218 | make-dir@^2.1.0: 2219 | version "2.1.0" 2220 | resolved "https://registry.npm.taobao.org/make-dir/download/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 2221 | dependencies: 2222 | pify "^4.0.1" 2223 | semver "^5.6.0" 2224 | 2225 | map-cache@^0.2.2: 2226 | version "0.2.2" 2227 | resolved "http://registry.npm.taobao.org/map-cache/download/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2228 | 2229 | map-obj@^1.0.0, map-obj@^1.0.1: 2230 | version "1.0.1" 2231 | resolved "http://registry.npm.taobao.org/map-obj/download/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2232 | 2233 | map-visit@^1.0.0: 2234 | version "1.0.0" 2235 | resolved "http://registry.npm.taobao.org/map-visit/download/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2236 | dependencies: 2237 | object-visit "^1.0.0" 2238 | 2239 | mem@^1.1.0: 2240 | version "1.1.0" 2241 | resolved "http://registry.npm.taobao.org/mem/download/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2242 | dependencies: 2243 | mimic-fn "^1.0.0" 2244 | 2245 | meow@^3.3.0, meow@^3.7.0: 2246 | version "3.7.0" 2247 | resolved "http://registry.npm.taobao.org/meow/download/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2248 | dependencies: 2249 | camelcase-keys "^2.0.0" 2250 | decamelize "^1.1.2" 2251 | loud-rejection "^1.0.0" 2252 | map-obj "^1.0.1" 2253 | minimist "^1.1.3" 2254 | normalize-package-data "^2.3.4" 2255 | object-assign "^4.0.1" 2256 | read-pkg-up "^1.0.1" 2257 | redent "^1.0.0" 2258 | trim-newlines "^1.0.0" 2259 | 2260 | micromatch@^3.1.10: 2261 | version "3.1.10" 2262 | resolved "https://registry.npm.taobao.org/micromatch/download/micromatch-3.1.10.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmicromatch%2Fdownload%2Fmicromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2263 | dependencies: 2264 | arr-diff "^4.0.0" 2265 | array-unique "^0.3.2" 2266 | braces "^2.3.1" 2267 | define-property "^2.0.2" 2268 | extend-shallow "^3.0.2" 2269 | extglob "^2.0.4" 2270 | fragment-cache "^0.2.1" 2271 | kind-of "^6.0.2" 2272 | nanomatch "^1.2.9" 2273 | object.pick "^1.3.0" 2274 | regex-not "^1.0.0" 2275 | snapdragon "^0.8.1" 2276 | to-regex "^3.0.2" 2277 | 2278 | micromatch@^3.1.4: 2279 | version "3.1.9" 2280 | resolved "http://registry.npm.taobao.org/micromatch/download/micromatch-3.1.9.tgz#15dc93175ae39e52e93087847096effc73efcf89" 2281 | dependencies: 2282 | arr-diff "^4.0.0" 2283 | array-unique "^0.3.2" 2284 | braces "^2.3.1" 2285 | define-property "^2.0.2" 2286 | extend-shallow "^3.0.2" 2287 | extglob "^2.0.4" 2288 | fragment-cache "^0.2.1" 2289 | kind-of "^6.0.2" 2290 | nanomatch "^1.2.9" 2291 | object.pick "^1.3.0" 2292 | regex-not "^1.0.0" 2293 | snapdragon "^0.8.1" 2294 | to-regex "^3.0.1" 2295 | 2296 | mime-db@~1.33.0: 2297 | version "1.33.0" 2298 | resolved "http://registry.npm.taobao.org/mime-db/download/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2299 | 2300 | mime-types@^2.1.12, mime-types@~2.1.7: 2301 | version "2.1.18" 2302 | resolved "http://registry.npm.taobao.org/mime-types/download/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2303 | dependencies: 2304 | mime-db "~1.33.0" 2305 | 2306 | mimic-fn@^1.0.0: 2307 | version "1.2.0" 2308 | resolved "http://registry.npm.taobao.org/mimic-fn/download/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2309 | 2310 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2311 | version "3.0.4" 2312 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2313 | dependencies: 2314 | brace-expansion "^1.1.7" 2315 | 2316 | minimist@0.0.8: 2317 | version "0.0.8" 2318 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2319 | 2320 | minimist@^1.1.3, minimist@^1.2.0: 2321 | version "1.2.0" 2322 | resolved "http://registry.npm.taobao.org/minimist/download/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2323 | 2324 | minimist@~0.0.1: 2325 | version "0.0.10" 2326 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2327 | 2328 | mixin-deep@^1.2.0: 2329 | version "1.3.2" 2330 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2331 | dependencies: 2332 | for-in "^1.0.2" 2333 | is-extendable "^1.0.1" 2334 | 2335 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2336 | version "0.5.1" 2337 | resolved "http://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2338 | dependencies: 2339 | minimist "0.0.8" 2340 | 2341 | modify-values@^1.0.0: 2342 | version "1.0.0" 2343 | resolved "http://registry.npm.taobao.org/modify-values/download/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" 2344 | 2345 | ms@2.0.0: 2346 | version "2.0.0" 2347 | resolved "http://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2348 | 2349 | ms@^2.1.1: 2350 | version "2.1.2" 2351 | resolved "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2352 | 2353 | nan@^2.12.1: 2354 | version "2.14.0" 2355 | resolved "https://registry.npm.taobao.org/nan/download/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 2356 | 2357 | nan@^2.3.0: 2358 | version "2.9.2" 2359 | resolved "http://registry.npm.taobao.org/nan/download/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866" 2360 | 2361 | nanomatch@^1.2.9: 2362 | version "1.2.9" 2363 | resolved "http://registry.npm.taobao.org/nanomatch/download/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2364 | dependencies: 2365 | arr-diff "^4.0.0" 2366 | array-unique "^0.3.2" 2367 | define-property "^2.0.2" 2368 | extend-shallow "^3.0.2" 2369 | fragment-cache "^0.2.1" 2370 | is-odd "^2.0.0" 2371 | is-windows "^1.0.2" 2372 | kind-of "^6.0.2" 2373 | object.pick "^1.3.0" 2374 | regex-not "^1.0.0" 2375 | snapdragon "^0.8.1" 2376 | to-regex "^3.0.1" 2377 | 2378 | neo-async@^2.6.0: 2379 | version "2.6.1" 2380 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 2381 | 2382 | node-pre-gyp@^0.6.39: 2383 | version "0.6.39" 2384 | resolved "http://registry.npm.taobao.org/node-pre-gyp/download/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2385 | dependencies: 2386 | detect-libc "^1.0.2" 2387 | hawk "3.1.3" 2388 | mkdirp "^0.5.1" 2389 | nopt "^4.0.1" 2390 | npmlog "^4.0.2" 2391 | rc "^1.1.7" 2392 | request "2.81.0" 2393 | rimraf "^2.6.1" 2394 | semver "^5.3.0" 2395 | tar "^2.2.1" 2396 | tar-pack "^3.4.0" 2397 | 2398 | node-releases@^1.1.44: 2399 | version "1.1.44" 2400 | resolved "https://registry.npm.taobao.org/node-releases/download/node-releases-1.1.44.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.44.tgz#cd66438a6eb875e3eb012b6a12e48d9f4326ffd7" 2401 | dependencies: 2402 | semver "^6.3.0" 2403 | 2404 | nopt@^4.0.1: 2405 | version "4.0.1" 2406 | resolved "http://registry.npm.taobao.org/nopt/download/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2407 | dependencies: 2408 | abbrev "1" 2409 | osenv "^0.1.4" 2410 | 2411 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: 2412 | version "2.4.0" 2413 | resolved "http://registry.npm.taobao.org/normalize-package-data/download/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2414 | dependencies: 2415 | hosted-git-info "^2.1.4" 2416 | is-builtin-module "^1.0.0" 2417 | semver "2 || 3 || 4 || 5" 2418 | validate-npm-package-license "^3.0.1" 2419 | 2420 | normalize-path@^2.1.1: 2421 | version "2.1.1" 2422 | resolved "http://registry.npm.taobao.org/normalize-path/download/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2423 | dependencies: 2424 | remove-trailing-separator "^1.0.1" 2425 | 2426 | normalize-path@^3.0.0: 2427 | version "3.0.0" 2428 | resolved "https://registry.npm.taobao.org/normalize-path/download/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2429 | 2430 | normalize-range@^0.1.2: 2431 | version "0.1.2" 2432 | resolved "http://registry.npm.taobao.org/normalize-range/download/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2433 | 2434 | npm-run-path@^2.0.0: 2435 | version "2.0.2" 2436 | resolved "http://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2437 | dependencies: 2438 | path-key "^2.0.0" 2439 | 2440 | npmlog@^4.0.2: 2441 | version "4.1.2" 2442 | resolved "http://registry.npm.taobao.org/npmlog/download/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2443 | dependencies: 2444 | are-we-there-yet "~1.1.2" 2445 | console-control-strings "~1.1.0" 2446 | gauge "~2.7.3" 2447 | set-blocking "~2.0.0" 2448 | 2449 | num2fraction@^1.2.2: 2450 | version "1.2.2" 2451 | resolved "http://registry.npm.taobao.org/num2fraction/download/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2452 | 2453 | number-is-nan@^1.0.0: 2454 | version "1.0.1" 2455 | resolved "http://registry.npm.taobao.org/number-is-nan/download/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2456 | 2457 | oauth-sign@~0.8.1: 2458 | version "0.8.2" 2459 | resolved "http://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2460 | 2461 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2462 | version "4.1.1" 2463 | resolved "http://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2464 | 2465 | object-copy@^0.1.0: 2466 | version "0.1.0" 2467 | resolved "http://registry.npm.taobao.org/object-copy/download/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2468 | dependencies: 2469 | copy-descriptor "^0.1.0" 2470 | define-property "^0.2.5" 2471 | kind-of "^3.0.3" 2472 | 2473 | object-keys@^1.0.11, object-keys@^1.0.12: 2474 | version "1.1.1" 2475 | resolved "https://registry.npm.taobao.org/object-keys/download/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2476 | 2477 | object-visit@^1.0.0: 2478 | version "1.0.1" 2479 | resolved "http://registry.npm.taobao.org/object-visit/download/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2480 | dependencies: 2481 | isobject "^3.0.0" 2482 | 2483 | object.assign@^4.1.0: 2484 | version "4.1.0" 2485 | resolved "https://registry.npm.taobao.org/object.assign/download/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2486 | dependencies: 2487 | define-properties "^1.1.2" 2488 | function-bind "^1.1.1" 2489 | has-symbols "^1.0.0" 2490 | object-keys "^1.0.11" 2491 | 2492 | object.pick@^1.3.0: 2493 | version "1.3.0" 2494 | resolved "http://registry.npm.taobao.org/object.pick/download/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2495 | dependencies: 2496 | isobject "^3.0.1" 2497 | 2498 | once@^1.3.0, once@^1.3.3: 2499 | version "1.4.0" 2500 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2501 | dependencies: 2502 | wrappy "1" 2503 | 2504 | optimist@^0.6.1: 2505 | version "0.6.1" 2506 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2507 | dependencies: 2508 | minimist "~0.0.1" 2509 | wordwrap "~0.0.2" 2510 | 2511 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2512 | version "1.0.2" 2513 | resolved "http://registry.npm.taobao.org/os-homedir/download/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2514 | 2515 | os-locale@^2.0.0: 2516 | version "2.1.0" 2517 | resolved "http://registry.npm.taobao.org/os-locale/download/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2518 | dependencies: 2519 | execa "^0.7.0" 2520 | lcid "^1.0.0" 2521 | mem "^1.1.0" 2522 | 2523 | os-tmpdir@^1.0.0: 2524 | version "1.0.2" 2525 | resolved "http://registry.npm.taobao.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2526 | 2527 | osenv@^0.1.4: 2528 | version "0.1.5" 2529 | resolved "http://registry.npm.taobao.org/osenv/download/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2530 | dependencies: 2531 | os-homedir "^1.0.0" 2532 | os-tmpdir "^1.0.0" 2533 | 2534 | p-finally@^1.0.0: 2535 | version "1.0.0" 2536 | resolved "http://registry.npm.taobao.org/p-finally/download/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2537 | 2538 | p-limit@^1.1.0: 2539 | version "1.2.0" 2540 | resolved "http://registry.npm.taobao.org/p-limit/download/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2541 | dependencies: 2542 | p-try "^1.0.0" 2543 | 2544 | p-locate@^2.0.0: 2545 | version "2.0.0" 2546 | resolved "http://registry.npm.taobao.org/p-locate/download/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2547 | dependencies: 2548 | p-limit "^1.1.0" 2549 | 2550 | p-try@^1.0.0: 2551 | version "1.0.0" 2552 | resolved "http://registry.npm.taobao.org/p-try/download/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2553 | 2554 | parse-github-repo-url@^1.3.0: 2555 | version "1.4.1" 2556 | resolved "http://registry.npm.taobao.org/parse-github-repo-url/download/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 2557 | 2558 | parse-json@^2.2.0: 2559 | version "2.2.0" 2560 | resolved "http://registry.npm.taobao.org/parse-json/download/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2561 | dependencies: 2562 | error-ex "^1.2.0" 2563 | 2564 | pascalcase@^0.1.1: 2565 | version "0.1.1" 2566 | resolved "http://registry.npm.taobao.org/pascalcase/download/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2567 | 2568 | path-dirname@^1.0.0: 2569 | version "1.0.2" 2570 | resolved "http://registry.npm.taobao.org/path-dirname/download/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2571 | 2572 | path-exists@^2.0.0: 2573 | version "2.1.0" 2574 | resolved "http://registry.npm.taobao.org/path-exists/download/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2575 | dependencies: 2576 | pinkie-promise "^2.0.0" 2577 | 2578 | path-exists@^3.0.0: 2579 | version "3.0.0" 2580 | resolved "http://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2581 | 2582 | path-is-absolute@^1.0.0: 2583 | version "1.0.1" 2584 | resolved "http://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2585 | 2586 | path-key@^2.0.0: 2587 | version "2.0.1" 2588 | resolved "http://registry.npm.taobao.org/path-key/download/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2589 | 2590 | path-parse@^1.0.6: 2591 | version "1.0.6" 2592 | resolved "https://registry.npm.taobao.org/path-parse/download/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2593 | 2594 | path-type@^1.0.0: 2595 | version "1.1.0" 2596 | resolved "http://registry.npm.taobao.org/path-type/download/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2597 | dependencies: 2598 | graceful-fs "^4.1.2" 2599 | pify "^2.0.0" 2600 | pinkie-promise "^2.0.0" 2601 | 2602 | path-type@^3.0.0: 2603 | version "3.0.0" 2604 | resolved "http://registry.npm.taobao.org/path-type/download/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2605 | dependencies: 2606 | pify "^3.0.0" 2607 | 2608 | performance-now@^0.2.0: 2609 | version "0.2.0" 2610 | resolved "http://registry.npm.taobao.org/performance-now/download/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2611 | 2612 | pify@^2.0.0, pify@^2.3.0: 2613 | version "2.3.0" 2614 | resolved "http://registry.npm.taobao.org/pify/download/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2615 | 2616 | pify@^3.0.0: 2617 | version "3.0.0" 2618 | resolved "http://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2619 | 2620 | pify@^4.0.1: 2621 | version "4.0.1" 2622 | 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" 2623 | 2624 | pinkie-promise@^2.0.0: 2625 | version "2.0.1" 2626 | resolved "http://registry.npm.taobao.org/pinkie-promise/download/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2627 | dependencies: 2628 | pinkie "^2.0.0" 2629 | 2630 | pinkie@^2.0.0: 2631 | version "2.0.4" 2632 | resolved "http://registry.npm.taobao.org/pinkie/download/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2633 | 2634 | posix-character-classes@^0.1.0: 2635 | version "0.1.1" 2636 | resolved "http://registry.npm.taobao.org/posix-character-classes/download/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2637 | 2638 | postcss-cli@^5.0.0: 2639 | version "5.0.0" 2640 | resolved "http://registry.npm.taobao.org/postcss-cli/download/postcss-cli-5.0.0.tgz#3d6aee7652b8dc6566f0189dd90d11bb0a535a20" 2641 | dependencies: 2642 | chalk "^2.1.0" 2643 | chokidar "^2.0.0" 2644 | dependency-graph "^0.7.0" 2645 | fs-extra "^5.0.0" 2646 | get-stdin "^5.0.1" 2647 | globby "^7.1.1" 2648 | postcss "^6.0.1" 2649 | postcss-load-config "^1.1.0" 2650 | postcss-reporter "^5.0.0" 2651 | pretty-hrtime "^1.0.3" 2652 | read-cache "^1.0.0" 2653 | yargs "^11.0.0" 2654 | 2655 | postcss-load-config@^1.1.0: 2656 | version "1.2.0" 2657 | resolved "http://registry.npm.taobao.org/postcss-load-config/download/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" 2658 | dependencies: 2659 | cosmiconfig "^2.1.0" 2660 | object-assign "^4.1.0" 2661 | postcss-load-options "^1.2.0" 2662 | postcss-load-plugins "^2.3.0" 2663 | 2664 | postcss-load-options@^1.2.0: 2665 | version "1.2.0" 2666 | resolved "http://registry.npm.taobao.org/postcss-load-options/download/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" 2667 | dependencies: 2668 | cosmiconfig "^2.1.0" 2669 | object-assign "^4.1.0" 2670 | 2671 | postcss-load-plugins@^2.3.0: 2672 | version "2.3.0" 2673 | resolved "http://registry.npm.taobao.org/postcss-load-plugins/download/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" 2674 | dependencies: 2675 | cosmiconfig "^2.1.1" 2676 | object-assign "^4.1.0" 2677 | 2678 | postcss-reporter@^5.0.0: 2679 | version "5.0.0" 2680 | resolved "http://registry.npm.taobao.org/postcss-reporter/download/postcss-reporter-5.0.0.tgz#a14177fd1342829d291653f2786efd67110332c3" 2681 | dependencies: 2682 | chalk "^2.0.1" 2683 | lodash "^4.17.4" 2684 | log-symbols "^2.0.0" 2685 | postcss "^6.0.8" 2686 | 2687 | postcss-value-parser@^3.2.3: 2688 | version "3.3.0" 2689 | resolved "http://registry.npm.taobao.org/postcss-value-parser/download/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2690 | 2691 | postcss@^6.0.1, postcss@^6.0.17, postcss@^6.0.8: 2692 | version "6.0.19" 2693 | resolved "http://registry.npm.taobao.org/postcss/download/postcss-6.0.19.tgz#76a78386f670b9d9494a655bf23ac012effd1555" 2694 | dependencies: 2695 | chalk "^2.3.1" 2696 | source-map "^0.6.1" 2697 | supports-color "^5.2.0" 2698 | 2699 | pretty-hrtime@^1.0.3: 2700 | version "1.0.3" 2701 | resolved "http://registry.npm.taobao.org/pretty-hrtime/download/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2702 | 2703 | private@^0.1.6: 2704 | version "0.1.8" 2705 | resolved "https://registry.npm.taobao.org/private/download/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2706 | 2707 | process-nextick-args@~2.0.0: 2708 | version "2.0.0" 2709 | resolved "http://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2710 | 2711 | prop-types@^15.6.2, prop-types@^15.7.2: 2712 | version "15.7.2" 2713 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 2714 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 2715 | dependencies: 2716 | loose-envify "^1.4.0" 2717 | object-assign "^4.1.1" 2718 | react-is "^16.8.1" 2719 | 2720 | pseudomap@^1.0.2: 2721 | version "1.0.2" 2722 | resolved "http://registry.npm.taobao.org/pseudomap/download/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2723 | 2724 | punycode@^1.4.1: 2725 | version "1.4.1" 2726 | resolved "http://registry.npm.taobao.org/punycode/download/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2727 | 2728 | q@^1.4.1: 2729 | version "1.5.1" 2730 | resolved "http://registry.npm.taobao.org/q/download/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 2731 | 2732 | qs@~6.4.0: 2733 | version "6.4.0" 2734 | resolved "http://registry.npm.taobao.org/qs/download/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2735 | 2736 | rc@^1.1.7: 2737 | version "1.2.5" 2738 | resolved "http://registry.npm.taobao.org/rc/download/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 2739 | dependencies: 2740 | deep-extend "~0.4.0" 2741 | ini "~1.3.0" 2742 | minimist "^1.2.0" 2743 | strip-json-comments "~2.0.1" 2744 | 2745 | react-is@^16.8.1: 2746 | version "16.12.0" 2747 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c" 2748 | integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q== 2749 | 2750 | react@^16.12.0: 2751 | version "16.12.0" 2752 | resolved "https://registry.yarnpkg.com/react/-/react-16.12.0.tgz#0c0a9c6a142429e3614834d5a778e18aa78a0b83" 2753 | integrity sha512-fglqy3k5E+81pA8s+7K0/T3DBCF0ZDOher1elBFzF7O6arXJgzyu/FW+COxFvAWXJoJN9KIZbT2LXlukwphYTA== 2754 | dependencies: 2755 | loose-envify "^1.1.0" 2756 | object-assign "^4.1.1" 2757 | prop-types "^15.6.2" 2758 | 2759 | read-cache@^1.0.0: 2760 | version "1.0.0" 2761 | resolved "http://registry.npm.taobao.org/read-cache/download/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" 2762 | dependencies: 2763 | pify "^2.3.0" 2764 | 2765 | read-pkg-up@^1.0.1: 2766 | version "1.0.1" 2767 | resolved "http://registry.npm.taobao.org/read-pkg-up/download/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2768 | dependencies: 2769 | find-up "^1.0.0" 2770 | read-pkg "^1.0.0" 2771 | 2772 | read-pkg@^1.0.0, read-pkg@^1.1.0: 2773 | version "1.1.0" 2774 | resolved "http://registry.npm.taobao.org/read-pkg/download/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2775 | dependencies: 2776 | load-json-file "^1.0.0" 2777 | normalize-package-data "^2.3.2" 2778 | path-type "^1.0.0" 2779 | 2780 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5: 2781 | version "2.3.4" 2782 | resolved "http://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" 2783 | dependencies: 2784 | core-util-is "~1.0.0" 2785 | inherits "~2.0.3" 2786 | isarray "~1.0.0" 2787 | process-nextick-args "~2.0.0" 2788 | safe-buffer "~5.1.1" 2789 | string_decoder "~1.0.3" 2790 | util-deprecate "~1.0.1" 2791 | 2792 | readdirp@^2.0.0: 2793 | version "2.1.0" 2794 | resolved "http://registry.npm.taobao.org/readdirp/download/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2795 | dependencies: 2796 | graceful-fs "^4.1.2" 2797 | minimatch "^3.0.2" 2798 | readable-stream "^2.0.2" 2799 | set-immediate-shim "^1.0.1" 2800 | 2801 | readdirp@^2.2.1: 2802 | version "2.2.1" 2803 | resolved "https://registry.npm.taobao.org/readdirp/download/readdirp-2.2.1.tgz?cache=0&sync_timestamp=1575629920252&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freaddirp%2Fdownload%2Freaddirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2804 | dependencies: 2805 | graceful-fs "^4.1.11" 2806 | micromatch "^3.1.10" 2807 | readable-stream "^2.0.2" 2808 | 2809 | redent@^1.0.0: 2810 | version "1.0.0" 2811 | resolved "http://registry.npm.taobao.org/redent/download/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2812 | dependencies: 2813 | indent-string "^2.1.0" 2814 | strip-indent "^1.0.1" 2815 | 2816 | regenerate-unicode-properties@^8.1.0: 2817 | version "8.1.0" 2818 | resolved "https://registry.npm.taobao.org/regenerate-unicode-properties/download/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" 2819 | dependencies: 2820 | regenerate "^1.4.0" 2821 | 2822 | regenerate@^1.4.0: 2823 | version "1.4.0" 2824 | resolved "https://registry.npm.taobao.org/regenerate/download/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2825 | 2826 | regenerator-runtime@^0.13.2: 2827 | version "0.13.3" 2828 | resolved "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" 2829 | 2830 | regenerator-transform@^0.14.0: 2831 | version "0.14.1" 2832 | resolved "https://registry.npm.taobao.org/regenerator-transform/download/regenerator-transform-0.14.1.tgz?cache=0&sync_timestamp=1563549978509&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-transform%2Fdownload%2Fregenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" 2833 | dependencies: 2834 | private "^0.1.6" 2835 | 2836 | regex-not@^1.0.0, regex-not@^1.0.2: 2837 | version "1.0.2" 2838 | resolved "http://registry.npm.taobao.org/regex-not/download/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2839 | dependencies: 2840 | extend-shallow "^3.0.2" 2841 | safe-regex "^1.1.0" 2842 | 2843 | regexpu-core@^4.6.0: 2844 | version "4.6.0" 2845 | resolved "https://registry.npm.taobao.org/regexpu-core/download/regexpu-core-4.6.0.tgz?cache=0&sync_timestamp=1568375270709&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregexpu-core%2Fdownload%2Fregexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" 2846 | dependencies: 2847 | regenerate "^1.4.0" 2848 | regenerate-unicode-properties "^8.1.0" 2849 | regjsgen "^0.5.0" 2850 | regjsparser "^0.6.0" 2851 | unicode-match-property-ecmascript "^1.0.4" 2852 | unicode-match-property-value-ecmascript "^1.1.0" 2853 | 2854 | regjsgen@^0.5.0: 2855 | version "0.5.1" 2856 | resolved "https://registry.npm.taobao.org/regjsgen/download/regjsgen-0.5.1.tgz?cache=0&sync_timestamp=1571560340910&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregjsgen%2Fdownload%2Fregjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" 2857 | 2858 | regjsparser@^0.6.0: 2859 | version "0.6.2" 2860 | resolved "https://registry.npm.taobao.org/regjsparser/download/regjsparser-0.6.2.tgz#fd62c753991467d9d1ffe0a9f67f27a529024b96" 2861 | dependencies: 2862 | jsesc "~0.5.0" 2863 | 2864 | remove-trailing-separator@^1.0.1: 2865 | version "1.1.0" 2866 | resolved "http://registry.npm.taobao.org/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2867 | 2868 | repeat-element@^1.1.2: 2869 | version "1.1.2" 2870 | resolved "http://registry.npm.taobao.org/repeat-element/download/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2871 | 2872 | repeat-string@^1.6.1: 2873 | version "1.6.1" 2874 | resolved "http://registry.npm.taobao.org/repeat-string/download/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2875 | 2876 | repeating@^2.0.0: 2877 | version "2.0.1" 2878 | resolved "http://registry.npm.taobao.org/repeating/download/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2879 | dependencies: 2880 | is-finite "^1.0.0" 2881 | 2882 | request@2.81.0: 2883 | version "2.81.0" 2884 | resolved "http://registry.npm.taobao.org/request/download/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2885 | dependencies: 2886 | aws-sign2 "~0.6.0" 2887 | aws4 "^1.2.1" 2888 | caseless "~0.12.0" 2889 | combined-stream "~1.0.5" 2890 | extend "~3.0.0" 2891 | forever-agent "~0.6.1" 2892 | form-data "~2.1.1" 2893 | har-validator "~4.2.1" 2894 | hawk "~3.1.3" 2895 | http-signature "~1.1.0" 2896 | is-typedarray "~1.0.0" 2897 | isstream "~0.1.2" 2898 | json-stringify-safe "~5.0.1" 2899 | mime-types "~2.1.7" 2900 | oauth-sign "~0.8.1" 2901 | performance-now "^0.2.0" 2902 | qs "~6.4.0" 2903 | safe-buffer "^5.0.1" 2904 | stringstream "~0.0.4" 2905 | tough-cookie "~2.3.0" 2906 | tunnel-agent "^0.6.0" 2907 | uuid "^3.0.0" 2908 | 2909 | require-directory@^2.1.1: 2910 | version "2.1.1" 2911 | resolved "http://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2912 | 2913 | require-from-string@^1.1.0: 2914 | version "1.2.1" 2915 | resolved "http://registry.npm.taobao.org/require-from-string/download/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 2916 | 2917 | require-main-filename@^1.0.1: 2918 | version "1.0.1" 2919 | resolved "http://registry.npm.taobao.org/require-main-filename/download/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2920 | 2921 | resolve-url@^0.2.1: 2922 | version "0.2.1" 2923 | resolved "http://registry.npm.taobao.org/resolve-url/download/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2924 | 2925 | resolve@^1.3.2: 2926 | version "1.14.1" 2927 | resolved "https://registry.npm.taobao.org/resolve/download/resolve-1.14.1.tgz?cache=0&sync_timestamp=1577139187895&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.14.1.tgz#9e018c540fcf0c427d678b9931cbf45e984bcaff" 2928 | dependencies: 2929 | path-parse "^1.0.6" 2930 | 2931 | ret@~0.1.10: 2932 | version "0.1.15" 2933 | resolved "http://registry.npm.taobao.org/ret/download/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2934 | 2935 | rimraf@2: 2936 | version "2.7.1" 2937 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2938 | dependencies: 2939 | glob "^7.1.3" 2940 | 2941 | rimraf@^2.5.1, rimraf@^2.6.1, rimraf@^2.6.2: 2942 | version "2.6.2" 2943 | resolved "http://registry.npm.taobao.org/rimraf/download/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2944 | dependencies: 2945 | glob "^7.0.5" 2946 | 2947 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2948 | version "5.1.1" 2949 | resolved "http://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2950 | 2951 | safe-regex@^1.1.0: 2952 | version "1.1.0" 2953 | resolved "http://registry.npm.taobao.org/safe-regex/download/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2954 | dependencies: 2955 | ret "~0.1.10" 2956 | 2957 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2958 | version "2.1.2" 2959 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2960 | 2961 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0: 2962 | version "5.5.0" 2963 | resolved "http://registry.npm.taobao.org/semver/download/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2964 | 2965 | semver@7.0.0: 2966 | version "7.0.0" 2967 | resolved "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1576601945958&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 2968 | 2969 | semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: 2970 | version "5.7.1" 2971 | resolved "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1576601945958&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2972 | 2973 | semver@^6.3.0: 2974 | version "6.3.0" 2975 | resolved "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1576601945958&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2976 | 2977 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2978 | version "2.0.0" 2979 | resolved "http://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2980 | 2981 | set-getter@^0.1.0: 2982 | version "0.1.0" 2983 | resolved "http://registry.npm.taobao.org/set-getter/download/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376" 2984 | dependencies: 2985 | to-object-path "^0.3.0" 2986 | 2987 | set-immediate-shim@^1.0.1: 2988 | version "1.0.1" 2989 | resolved "http://registry.npm.taobao.org/set-immediate-shim/download/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2990 | 2991 | set-value@^0.4.3: 2992 | version "0.4.3" 2993 | resolved "http://registry.npm.taobao.org/set-value/download/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2994 | dependencies: 2995 | extend-shallow "^2.0.1" 2996 | is-extendable "^0.1.1" 2997 | is-plain-object "^2.0.1" 2998 | to-object-path "^0.3.0" 2999 | 3000 | set-value@^2.0.0: 3001 | version "2.0.0" 3002 | resolved "http://registry.npm.taobao.org/set-value/download/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3003 | dependencies: 3004 | extend-shallow "^2.0.1" 3005 | is-extendable "^0.1.1" 3006 | is-plain-object "^2.0.3" 3007 | split-string "^3.0.1" 3008 | 3009 | shebang-command@^1.2.0: 3010 | version "1.2.0" 3011 | resolved "http://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3012 | dependencies: 3013 | shebang-regex "^1.0.0" 3014 | 3015 | shebang-regex@^1.0.0: 3016 | version "1.0.0" 3017 | resolved "http://registry.npm.taobao.org/shebang-regex/download/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3018 | 3019 | signal-exit@^3.0.0: 3020 | version "3.0.2" 3021 | resolved "http://registry.npm.taobao.org/signal-exit/download/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3022 | 3023 | slash@^1.0.0: 3024 | version "1.0.0" 3025 | resolved "http://registry.npm.taobao.org/slash/download/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3026 | 3027 | slash@^2.0.0: 3028 | version "2.0.0" 3029 | resolved "https://registry.npm.taobao.org/slash/download/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 3030 | 3031 | snapdragon-node@^2.0.1: 3032 | version "2.1.1" 3033 | resolved "http://registry.npm.taobao.org/snapdragon-node/download/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3034 | dependencies: 3035 | define-property "^1.0.0" 3036 | isobject "^3.0.0" 3037 | snapdragon-util "^3.0.1" 3038 | 3039 | snapdragon-util@^3.0.1: 3040 | version "3.0.1" 3041 | resolved "http://registry.npm.taobao.org/snapdragon-util/download/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3042 | dependencies: 3043 | kind-of "^3.2.0" 3044 | 3045 | snapdragon@^0.8.1: 3046 | version "0.8.1" 3047 | resolved "http://registry.npm.taobao.org/snapdragon/download/snapdragon-0.8.1.tgz#e12b5487faded3e3dea0ac91e9400bf75b401370" 3048 | dependencies: 3049 | base "^0.11.1" 3050 | debug "^2.2.0" 3051 | define-property "^0.2.5" 3052 | extend-shallow "^2.0.1" 3053 | map-cache "^0.2.2" 3054 | source-map "^0.5.6" 3055 | source-map-resolve "^0.5.0" 3056 | use "^2.0.0" 3057 | 3058 | sntp@1.x.x: 3059 | version "1.0.9" 3060 | resolved "http://registry.npm.taobao.org/sntp/download/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3061 | dependencies: 3062 | hoek "2.x.x" 3063 | 3064 | source-map-resolve@^0.5.0: 3065 | version "0.5.1" 3066 | resolved "http://registry.npm.taobao.org/source-map-resolve/download/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 3067 | dependencies: 3068 | atob "^2.0.0" 3069 | decode-uri-component "^0.2.0" 3070 | resolve-url "^0.2.1" 3071 | source-map-url "^0.4.0" 3072 | urix "^0.1.0" 3073 | 3074 | source-map-url@^0.4.0: 3075 | version "0.4.0" 3076 | resolved "http://registry.npm.taobao.org/source-map-url/download/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3077 | 3078 | source-map@^0.5.0, source-map@^0.5.6: 3079 | version "0.5.7" 3080 | resolved "http://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3081 | 3082 | source-map@^0.6.1, source-map@~0.6.1: 3083 | version "0.6.1" 3084 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3085 | 3086 | spdx-correct@~1.0.0: 3087 | version "1.0.2" 3088 | resolved "http://registry.npm.taobao.org/spdx-correct/download/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3089 | dependencies: 3090 | spdx-license-ids "^1.0.2" 3091 | 3092 | spdx-expression-parse@~1.0.0: 3093 | version "1.0.4" 3094 | resolved "http://registry.npm.taobao.org/spdx-expression-parse/download/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3095 | 3096 | spdx-license-ids@^1.0.2: 3097 | version "1.2.2" 3098 | resolved "http://registry.npm.taobao.org/spdx-license-ids/download/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3099 | 3100 | split-string@^3.0.1, split-string@^3.0.2: 3101 | version "3.1.0" 3102 | resolved "http://registry.npm.taobao.org/split-string/download/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3103 | dependencies: 3104 | extend-shallow "^3.0.0" 3105 | 3106 | split2@^2.0.0: 3107 | version "2.2.0" 3108 | resolved "http://registry.npm.taobao.org/split2/download/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 3109 | dependencies: 3110 | through2 "^2.0.2" 3111 | 3112 | split@^1.0.0: 3113 | version "1.0.1" 3114 | resolved "http://registry.npm.taobao.org/split/download/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 3115 | dependencies: 3116 | through "2" 3117 | 3118 | sprintf-js@~1.0.2: 3119 | version "1.0.3" 3120 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3121 | 3122 | sshpk@^1.7.0: 3123 | version "1.16.1" 3124 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 3125 | dependencies: 3126 | asn1 "~0.2.3" 3127 | assert-plus "^1.0.0" 3128 | bcrypt-pbkdf "^1.0.0" 3129 | dashdash "^1.12.0" 3130 | ecc-jsbn "~0.1.1" 3131 | getpass "^0.1.1" 3132 | jsbn "~0.1.0" 3133 | safer-buffer "^2.0.2" 3134 | tweetnacl "~0.14.0" 3135 | 3136 | static-extend@^0.1.1: 3137 | version "0.1.2" 3138 | resolved "http://registry.npm.taobao.org/static-extend/download/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3139 | dependencies: 3140 | define-property "^0.2.5" 3141 | object-copy "^0.1.0" 3142 | 3143 | string-width@^1.0.1, string-width@^1.0.2: 3144 | version "1.0.2" 3145 | resolved "http://registry.npm.taobao.org/string-width/download/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3146 | dependencies: 3147 | code-point-at "^1.0.0" 3148 | is-fullwidth-code-point "^1.0.0" 3149 | strip-ansi "^3.0.0" 3150 | 3151 | string-width@^2.0.0, string-width@^2.1.1: 3152 | version "2.1.1" 3153 | resolved "http://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3154 | dependencies: 3155 | is-fullwidth-code-point "^2.0.0" 3156 | strip-ansi "^4.0.0" 3157 | 3158 | string_decoder@~1.0.3: 3159 | version "1.0.3" 3160 | resolved "http://registry.npm.taobao.org/string_decoder/download/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3161 | dependencies: 3162 | safe-buffer "~5.1.0" 3163 | 3164 | stringstream@~0.0.4: 3165 | version "0.0.6" 3166 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 3167 | 3168 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3169 | version "3.0.1" 3170 | resolved "http://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3171 | dependencies: 3172 | ansi-regex "^2.0.0" 3173 | 3174 | strip-ansi@^4.0.0: 3175 | version "4.0.0" 3176 | resolved "http://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3177 | dependencies: 3178 | ansi-regex "^3.0.0" 3179 | 3180 | strip-bom@^2.0.0: 3181 | version "2.0.0" 3182 | resolved "http://registry.npm.taobao.org/strip-bom/download/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3183 | dependencies: 3184 | is-utf8 "^0.2.0" 3185 | 3186 | strip-eof@^1.0.0: 3187 | version "1.0.0" 3188 | resolved "http://registry.npm.taobao.org/strip-eof/download/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3189 | 3190 | strip-indent@^1.0.1: 3191 | version "1.0.1" 3192 | resolved "http://registry.npm.taobao.org/strip-indent/download/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3193 | dependencies: 3194 | get-stdin "^4.0.1" 3195 | 3196 | strip-json-comments@~2.0.1: 3197 | version "2.0.1" 3198 | resolved "http://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3199 | 3200 | supports-color@^5.2.0: 3201 | version "5.2.0" 3202 | resolved "http://registry.npm.taobao.org/supports-color/download/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a" 3203 | dependencies: 3204 | has-flag "^3.0.0" 3205 | 3206 | supports-color@^5.3.0: 3207 | version "5.5.0" 3208 | resolved "https://registry.npm.taobao.org/supports-color/download/supports-color-5.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3209 | dependencies: 3210 | has-flag "^3.0.0" 3211 | 3212 | tar-pack@^3.4.0: 3213 | version "3.4.1" 3214 | resolved "http://registry.npm.taobao.org/tar-pack/download/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3215 | dependencies: 3216 | debug "^2.2.0" 3217 | fstream "^1.0.10" 3218 | fstream-ignore "^1.0.5" 3219 | once "^1.3.3" 3220 | readable-stream "^2.1.4" 3221 | rimraf "^2.5.1" 3222 | tar "^2.2.1" 3223 | uid-number "^0.0.6" 3224 | 3225 | tar@^2.2.1: 3226 | version "2.2.2" 3227 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 3228 | dependencies: 3229 | block-stream "*" 3230 | fstream "^1.0.12" 3231 | inherits "2" 3232 | 3233 | tempfile@^1.1.1: 3234 | version "1.1.1" 3235 | resolved "http://registry.npm.taobao.org/tempfile/download/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2" 3236 | dependencies: 3237 | os-tmpdir "^1.0.0" 3238 | uuid "^2.0.1" 3239 | 3240 | text-extensions@^1.0.0: 3241 | version "1.7.0" 3242 | resolved "http://registry.npm.taobao.org/text-extensions/download/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39" 3243 | 3244 | through2@^2.0.0, through2@^2.0.2: 3245 | version "2.0.3" 3246 | resolved "http://registry.npm.taobao.org/through2/download/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3247 | dependencies: 3248 | readable-stream "^2.1.5" 3249 | xtend "~4.0.1" 3250 | 3251 | through@2, "through@>=2.2.7 <3": 3252 | version "2.3.8" 3253 | resolved "http://registry.npm.taobao.org/through/download/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3254 | 3255 | to-fast-properties@^2.0.0: 3256 | version "2.0.0" 3257 | resolved "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3258 | 3259 | to-object-path@^0.3.0: 3260 | version "0.3.0" 3261 | resolved "http://registry.npm.taobao.org/to-object-path/download/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3262 | dependencies: 3263 | kind-of "^3.0.2" 3264 | 3265 | to-regex-range@^2.1.0: 3266 | version "2.1.1" 3267 | resolved "http://registry.npm.taobao.org/to-regex-range/download/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3268 | dependencies: 3269 | is-number "^3.0.0" 3270 | repeat-string "^1.6.1" 3271 | 3272 | to-regex@^3.0.1, to-regex@^3.0.2: 3273 | version "3.0.2" 3274 | resolved "http://registry.npm.taobao.org/to-regex/download/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3275 | dependencies: 3276 | define-property "^2.0.2" 3277 | extend-shallow "^3.0.2" 3278 | regex-not "^1.0.2" 3279 | safe-regex "^1.1.0" 3280 | 3281 | tough-cookie@~2.3.0: 3282 | version "2.3.3" 3283 | resolved "http://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3284 | dependencies: 3285 | punycode "^1.4.1" 3286 | 3287 | trim-newlines@^1.0.0: 3288 | version "1.0.0" 3289 | resolved "http://registry.npm.taobao.org/trim-newlines/download/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3290 | 3291 | trim-off-newlines@^1.0.0: 3292 | version "1.0.1" 3293 | resolved "http://registry.npm.taobao.org/trim-off-newlines/download/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 3294 | 3295 | tunnel-agent@^0.6.0: 3296 | version "0.6.0" 3297 | resolved "http://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3298 | dependencies: 3299 | safe-buffer "^5.0.1" 3300 | 3301 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3302 | version "0.14.5" 3303 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3304 | 3305 | uglify-js@^3.1.4: 3306 | version "3.7.3" 3307 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.3.tgz#f918fce9182f466d5140f24bb0ff35c2d32dcc6a" 3308 | dependencies: 3309 | commander "~2.20.3" 3310 | source-map "~0.6.1" 3311 | 3312 | uid-number@^0.0.6: 3313 | version "0.0.6" 3314 | resolved "http://registry.npm.taobao.org/uid-number/download/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3315 | 3316 | unicode-canonical-property-names-ecmascript@^1.0.4: 3317 | version "1.0.4" 3318 | resolved "https://registry.npm.taobao.org/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 3319 | 3320 | unicode-match-property-ecmascript@^1.0.4: 3321 | version "1.0.4" 3322 | resolved "https://registry.npm.taobao.org/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 3323 | dependencies: 3324 | unicode-canonical-property-names-ecmascript "^1.0.4" 3325 | unicode-property-aliases-ecmascript "^1.0.4" 3326 | 3327 | unicode-match-property-value-ecmascript@^1.1.0: 3328 | version "1.1.0" 3329 | resolved "https://registry.npm.taobao.org/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" 3330 | 3331 | unicode-property-aliases-ecmascript@^1.0.4: 3332 | version "1.0.5" 3333 | resolved "https://registry.npm.taobao.org/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" 3334 | 3335 | union-value@^1.0.0: 3336 | version "1.0.0" 3337 | resolved "http://registry.npm.taobao.org/union-value/download/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3338 | dependencies: 3339 | arr-union "^3.1.0" 3340 | get-value "^2.0.6" 3341 | is-extendable "^0.1.1" 3342 | set-value "^0.4.3" 3343 | 3344 | universalify@^0.1.0: 3345 | version "0.1.1" 3346 | resolved "http://registry.npm.taobao.org/universalify/download/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 3347 | 3348 | unset-value@^1.0.0: 3349 | version "1.0.0" 3350 | resolved "http://registry.npm.taobao.org/unset-value/download/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3351 | dependencies: 3352 | has-value "^0.3.1" 3353 | isobject "^3.0.0" 3354 | 3355 | upath@^1.0.0: 3356 | version "1.0.2" 3357 | resolved "http://registry.npm.taobao.org/upath/download/upath-1.0.2.tgz#80aaae5395abc5fd402933ae2f58694f0860204c" 3358 | dependencies: 3359 | lodash.endswith "^4.2.1" 3360 | lodash.isfunction "^3.0.8" 3361 | lodash.isstring "^4.0.1" 3362 | lodash.startswith "^4.2.1" 3363 | 3364 | upath@^1.1.1: 3365 | version "1.2.0" 3366 | 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" 3367 | 3368 | urix@^0.1.0: 3369 | version "0.1.0" 3370 | resolved "http://registry.npm.taobao.org/urix/download/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3371 | 3372 | use@^2.0.0: 3373 | version "2.0.2" 3374 | resolved "http://registry.npm.taobao.org/use/download/use-2.0.2.tgz#ae28a0d72f93bf22422a18a2e379993112dec8e8" 3375 | dependencies: 3376 | define-property "^0.2.5" 3377 | isobject "^3.0.0" 3378 | lazy-cache "^2.0.2" 3379 | 3380 | util-deprecate@~1.0.1: 3381 | version "1.0.2" 3382 | resolved "http://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3383 | 3384 | uuid@^2.0.1: 3385 | version "2.0.3" 3386 | resolved "http://registry.npm.taobao.org/uuid/download/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3387 | 3388 | uuid@^3.0.0: 3389 | version "3.2.1" 3390 | resolved "http://registry.npm.taobao.org/uuid/download/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3391 | 3392 | validate-npm-package-license@^3.0.1: 3393 | version "3.0.1" 3394 | resolved "http://registry.npm.taobao.org/validate-npm-package-license/download/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3395 | dependencies: 3396 | spdx-correct "~1.0.0" 3397 | spdx-expression-parse "~1.0.0" 3398 | 3399 | verror@1.10.0: 3400 | version "1.10.0" 3401 | resolved "http://registry.npm.taobao.org/verror/download/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3402 | dependencies: 3403 | assert-plus "^1.0.0" 3404 | core-util-is "1.0.2" 3405 | extsprintf "^1.2.0" 3406 | 3407 | which-module@^2.0.0: 3408 | version "2.0.0" 3409 | resolved "http://registry.npm.taobao.org/which-module/download/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3410 | 3411 | which@^1.2.9: 3412 | version "1.3.0" 3413 | resolved "http://registry.npm.taobao.org/which/download/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3414 | dependencies: 3415 | isexe "^2.0.0" 3416 | 3417 | wide-align@^1.1.0: 3418 | version "1.1.2" 3419 | resolved "http://registry.npm.taobao.org/wide-align/download/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3420 | dependencies: 3421 | string-width "^1.0.2" 3422 | 3423 | wordwrap@~0.0.2: 3424 | version "0.0.3" 3425 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3426 | 3427 | wrap-ansi@^2.0.0: 3428 | version "2.1.0" 3429 | resolved "http://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3430 | dependencies: 3431 | string-width "^1.0.1" 3432 | strip-ansi "^3.0.1" 3433 | 3434 | wrappy@1: 3435 | version "1.0.2" 3436 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3437 | 3438 | xtend@~4.0.1: 3439 | version "4.0.1" 3440 | resolved "http://registry.npm.taobao.org/xtend/download/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3441 | 3442 | y18n@^3.2.1: 3443 | version "3.2.1" 3444 | resolved "http://registry.npm.taobao.org/y18n/download/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3445 | 3446 | yallist@^2.1.2: 3447 | version "2.1.2" 3448 | resolved "http://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3449 | 3450 | yargs-parser@^9.0.2: 3451 | version "9.0.2" 3452 | resolved "http://registry.npm.taobao.org/yargs-parser/download/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3453 | dependencies: 3454 | camelcase "^4.1.0" 3455 | 3456 | yargs@^11.0.0: 3457 | version "11.0.0" 3458 | resolved "http://registry.npm.taobao.org/yargs/download/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 3459 | dependencies: 3460 | cliui "^4.0.0" 3461 | decamelize "^1.1.1" 3462 | find-up "^2.1.0" 3463 | get-caller-file "^1.0.1" 3464 | os-locale "^2.0.0" 3465 | require-directory "^2.1.1" 3466 | require-main-filename "^1.0.1" 3467 | set-blocking "^2.0.0" 3468 | string-width "^2.0.0" 3469 | which-module "^2.0.0" 3470 | y18n "^3.2.1" 3471 | yargs-parser "^9.0.2" 3472 | --------------------------------------------------------------------------------