├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo ├── index.html ├── js │ ├── .babelrc │ ├── Menu.js │ ├── app.bundle.js │ ├── app.js │ └── menuData.js └── style.css ├── index.js ├── package.json ├── test ├── .babelrc ├── karma.conf.js └── specs │ └── test.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "ecmaFeatures": { 4 | "jsx": true 5 | }, 6 | "env": { 7 | "browser": true, 8 | "node": true, 9 | "es6": true 10 | }, 11 | "rules": { 12 | "strict": [0], 13 | "react/jsx-uses-vars": [2], 14 | "eol-last": [2], 15 | "no-mixed-requires": [1], 16 | "no-underscore-dangle": [0], 17 | "block-scoped-var": [1], 18 | "curly": [1], 19 | "eqeqeq": [1], 20 | "guard-for-in": [2], 21 | "no-empty-label": [1], 22 | "no-eval": [1], 23 | "no-extra-bind": [1], 24 | "no-implied-eval": [1], 25 | "no-labels": [2], 26 | "no-lone-blocks": [1], 27 | "no-multi-spaces": [0], 28 | "no-redeclare": [1], 29 | "no-unused-vars": [1], 30 | "no-unused-expressions": [0], 31 | "no-with": [2], 32 | "radix": [2], 33 | "dot-notation": [0], 34 | "new-parens": [1], 35 | "consistent-return": [1], 36 | "semi": [1], 37 | 38 | "camelcase": [1], 39 | "quotes": [2, "single"], 40 | "key-spacing": [1], 41 | "new-cap": [0], 42 | "no-mixed-spaces-and-tabs": [2], 43 | "no-space-before-semi": [1], 44 | "no-trailing-spaces": [1], 45 | 46 | "max-len": [120] 47 | }, 48 | "plugins": [ 49 | "eslint-plugin-react" 50 | ], 51 | "globals": { 52 | "chai": false, 53 | "describe": false, 54 | "it": false, 55 | "beforeEach": false, 56 | "afterEach": false 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # node-waf configuration 20 | .lock-wscript 21 | 22 | # Compiled binary addons (http://nodejs.org/api/addons.html) 23 | build/Release 24 | 25 | # Dependency directory 26 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 27 | node_modules 28 | 29 | *DS_Store* 30 | 31 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - v4 4 | before_script: 5 | - export DISPLAY=:99.0 6 | - sh -e /etc/init.d/xvfb start 7 | before_install: 8 | - if [[ `npm -v` != 3* ]]; then npm i -g npm@3; npm --version; fi 9 | script: "./node_modules/karma/bin/karma start test/karma.conf.js --browsers Firefox --single-run --no-auto-watch --capture-timeout 60000" 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Sen Yang 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 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ReactMenuAim 2 | ============================================== 3 | 4 | A React Mixin makes your menu works as **magical** as Amazon's implementation, this repo is heavily inspired by [jQuery-menu-aim](https://github.com/kamens/jQuery-menu-aim/). 5 | 6 | [中文说明](http://undefinedblog.com/react-menu-aim/) 7 | 8 | [![Build Status](https://travis-ci.org/jasonslyvia/react-menu-aim.svg)](https://travis-ci.org/jasonslyvia/react-menu-aim) 9 | [![npm version](https://badge.fury.io/js/react-menu-aim.svg)](http://badge.fury.io/js/react-menu-aim) 10 | 11 | ![ReactMenuAim demo](https://cloud.githubusercontent.com/assets/1336484/8591773/198d1d4a-265d-11e5-94b1-97071a591ab1.gif) 12 | 13 | **If you tend to support React v0.13, please use react-menu-aim@0.1.1 which is the latest compatible version.** 14 | 15 | ## How to use 16 | 17 | [Live Demo](http://jasonslyvia.github.io/react-menu-aim/demo/index.html) 18 | 19 | You can also checkout `./demo` folder find out the simple & stragiht demo usage, or here's a quick look. 20 | 21 | ```javascript 22 | var React = require('react'); 23 | var ReactMenuAim = require('react-menu-aim'); 24 | 25 | var Menu = React.createClass({ 26 | mixins: [ReactMenuAim], 27 | 28 | componentWillMount: function() { 29 | // Config ReactMenuAim here 30 | this.initMenuAim({ 31 | submenuDirection: 'right', 32 | menuSelector: '.menu' 33 | }); 34 | }, 35 | 36 | // This is your true handler when a menu item is going to be active 37 | handleSwitchMenuIndex: function(index) { 38 | // ... 39 | }, 40 | 41 | // `this.handleMouseLeaveMenu` and `this.handleMouseEnterRow` are provided by ReactMenuAim, 42 | // you can provide your own handler bound to them 43 | render: function() { 44 | return ( 45 |
46 | 50 |
51 | ); 52 | } 53 | }); 54 | ``` 55 | 56 | ## Event handler 57 | 58 | The following event handlers are provided by ReactMenuAim. 59 | 60 | **DO NOT** call them directly, pass them as event handler in component's `render` method. 61 | 62 | ### handleMouseLeaveMenu 63 | 64 | This event handler should be called when mouse is leaving the menu. 65 | 66 | **Arguments** 67 | 68 | 1. handler (*Function*) You can provide your own handler when mouse leave menu 69 | 2. e (*Object*) React's synthetic event 70 | 71 | 72 | ### handleMouseEnterRow 73 | 74 | This event handler should be called when mouse is entering a menu item. 75 | 76 | **Arguments** 77 | 78 | 1. rowIdentifier (*Any*) The identifier you provided to identify a row, usually it's row index or something, will be passed to your handler when a menu is going to be activated. 79 | 2. handler (*Function*) You can provide your own handler when mouse enter a row 80 | 3. e (*Object*) React's synthetic event 81 | 82 | ## Configuration 83 | 84 | To configure ReactMenuAim, you should call `this.initMenuAim` in your React component with your options. 85 | 86 | ```javascript 87 | componentWillMount: function() { 88 | this.initMenuAim({ 89 | // options 90 | }); 91 | } 92 | ``` 93 | 94 | ### submenuDirection 95 | 96 | Type: string Default: 'right' 97 | 98 | Indicates the direction of submenu. 99 | 100 | ### menuSelector 101 | 102 | Type: string Default: '*' 103 | 104 | Determine the position and offset of menu container. This selector should be constrained on the very exact menu area(which we are switching), not including submenu area. 105 | 106 | ### delay 107 | 108 | Type: number Default: 300 109 | 110 | When user is moving mouse and have a tendency of viewing submenu, how many ms to wait before making next move. 111 | 112 | ### tolerance 113 | 114 | Type: number Default: 75 115 | 116 | The larger, the submenu is more likely to show. 117 | 118 | 119 | ## Scripts 120 | 121 | ``` 122 | $ npm install 123 | $ npm run test 124 | $ npm run build 125 | $ npm run watch 126 | ``` 127 | 128 | ## License 129 | 130 | MIT 131 | 132 | 133 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ReactMenuAim demo 5 | 6 | 7 | 8 |
9 |
10 |

Basic Demo

11 |
12 |
13 |

Submenu Appear below

14 |
15 |
16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /demo/js/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0", "react"] 3 | } -------------------------------------------------------------------------------- /demo/js/Menu.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var React = require('react'); 4 | var ReactMenuAim = require('../../index'); 5 | var createReactClass = require('create-react-class'); 6 | 7 | var Menu = createReactClass({ 8 | mixins: [ReactMenuAim], 9 | 10 | getDefaultProps: function() { 11 | return { 12 | submenuDirection: 'right' 13 | }; 14 | }, 15 | 16 | getInitialState: function() { 17 | return { 18 | activeMenuIndex: 0 19 | }; 20 | }, 21 | 22 | componentWillMount: function() { 23 | this.initMenuAim({ 24 | submenuDirection: this.props.submenuDirection, 25 | menuSelector: '.menu', 26 | delay: 300, 27 | tolerance: 75 28 | }); 29 | }, 30 | 31 | handleSwitchMenuIndex: function(index) { 32 | this.setState({ 33 | activeMenuIndex: index 34 | }); 35 | }, 36 | 37 | render: function() { 38 | var self = this; 39 | var containerClassName = 'menu-container ' + this.props.submenuDirection; 40 | 41 | var subMenuStyle = {}; 42 | if (this.props.submenuDirection === 'below') { 43 | subMenuStyle.left = this.state.activeMenuIndex * 140; 44 | } 45 | 46 | return ( 47 |
48 | 65 | 72 |
73 | ); 74 | } 75 | }); 76 | 77 | module.exports = exports = Menu; 78 | -------------------------------------------------------------------------------- /demo/js/app.js: -------------------------------------------------------------------------------- 1 | var React = require('react'); 2 | var ReactDOM = require('react-dom'); 3 | var Menu = require('./Menu'); 4 | var menuData = require('./menuData'); 5 | 6 | window.React = React; 7 | 8 | 9 | ReactDOM.render(, document.querySelector('#demo1 .demo-container')); 10 | ReactDOM.render(, document.querySelector('#demo3 .demo-container')); 11 | -------------------------------------------------------------------------------- /demo/js/menuData.js: -------------------------------------------------------------------------------- 1 | module.exports = exports = [{ 2 | name: 'File', 3 | subMenu: ['New File', 'Open', 'Open Recent', 'ReOpen with Encoding', 'New View into File', 'Save', 'Save with Encoding', 'Sava As', 'Save All'] 4 | }, { 5 | name: 'Edit', 6 | subMenu: ['Undo Insert Characters', 'Repeat Insert Characters', 'Undo Selection', 'Copy', 'Cut', 'Paste', 'Paste and Indent', 'Paste from History'] 7 | }, { 8 | name: 'Selection', 9 | subMenu: ['Split into Lines', 'Add Previous Line', 'Add Next Line', 'Single Selection', 'Invert Selection'] 10 | }, { 11 | name: 'Find', 12 | subMenu: ['Find', 'Find Next', 'Find Previous', 'Increment Find'] 13 | }, { 14 | name: 'View', 15 | subMenu: ['Show minimap', 'Hide Tabs', 'Hide Status Bar', 'Show Console', 'Enter Full Screen', 'Enter Distraction Free Mode', 'Layout', 'Groups'] 16 | }, { 17 | name: 'Goto', 18 | subMenu: ['Goto Anything', 'Goto Symbol', 'Goto Symbol in Project', 'Goto Definition', 'Goto Line', 'Jump Back', 'Jump Forward'] 19 | }, { 20 | name: 'Tools', 21 | subMenu: ['Command Palette', 'Snippets', 'Build System', 'Build', 'Build With'] 22 | }, { 23 | name: 'Project', 24 | subMenu: ['Open Project', 'Switch Project', 'Quick Switch Project', 'Open Recent', 'Save Project As'] 25 | }, { 26 | name: 'Window', 27 | subMenu: ['Minimize', 'Zoom', 'Bring All to Front'] 28 | }]; 29 | -------------------------------------------------------------------------------- /demo/style.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | 6 | .container { 7 | margin: 40px; 8 | } 9 | 10 | .container .demo { 11 | margin-bottom: 100px; 12 | } 13 | 14 | .menu-container:before, 15 | .menu-container:after { 16 | content: ''; 17 | display: block; 18 | height: 0; 19 | clear: both; 20 | } 21 | 22 | .menu-container.below { 23 | position: relative; 24 | } 25 | 26 | .menu-container.below .menu { 27 | width: 100%; 28 | } 29 | 30 | .menu-container.below .menu .menu-item { 31 | float: left; 32 | border: none; 33 | } 34 | 35 | .menu-container.below .sub-menu { 36 | position: absolute; 37 | top: 30px; 38 | border: 1px #eee solid; 39 | border-top: none; 40 | } 41 | 42 | .menu, .sub-menu { 43 | float: left; 44 | height: 100%; 45 | list-style: none; 46 | margin: 0; 47 | padding: 0; 48 | border: 1px #eee solid; 49 | } 50 | 51 | .menu .menu-item, 52 | .sub-menu .sub-menu-item { 53 | width: 100px; 54 | line-height: 30px; 55 | padding: 0 20px; 56 | border-top: 1px #eee solid; 57 | cursor: pointer; 58 | white-space: nowrap; 59 | font-size: 18px; 60 | font-family: monospace; 61 | } 62 | 63 | .menu .menu-item:first-child { 64 | border-top: none; 65 | } 66 | 67 | .menu .menu-item.active { 68 | color: #f40; 69 | border-right: 1px #fff solid; 70 | margin-right: -1px; 71 | } 72 | 73 | .sub-menu { 74 | border-left: none; 75 | min-height: 278px; 76 | } 77 | 78 | .sub-menu .sub-menu-item { 79 | width: 100%; 80 | border: none; 81 | font-size: 14px; 82 | } 83 | 84 | .sub-menu .sub-menu-item:hover { 85 | color: #f40; 86 | } 87 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * react-menu-aim is a React Mixin heavily inspired by jQuery-menu-aim. All rights 3 | * reserved by the original author. 4 | * 5 | * https://github.com/jasonslyvia/react-menu-aim 6 | * https://github.com/kamens/jQuery-menu-aim 7 | */ 8 | 9 | var ReactDOM = require('react-dom'); 10 | var MOUSE_LOCS_TRACKED = 3; // number of past mouse locations to trackv 11 | var DELAY = 300; // ms delay when user appears to be entering submenu 12 | var TOLERANCE = 75; // bigger = more forgivey when entering submenu 13 | 14 | 15 | /** 16 | * 17 | * DOM helpers 18 | * 19 | */ 20 | function on(el, eventName, callback) { 21 | if (el.addEventListener) { 22 | el.addEventListener(eventName, callback, false); 23 | } 24 | else if (el.attachEvent) { 25 | el.attachEvent('on'+eventName, function(e) { 26 | callback.call(el, e || window.event); 27 | }); 28 | } 29 | } 30 | 31 | function off(el, eventName, callback) { 32 | if (el.removeEventListener) { 33 | el.removeEventListener(eventName, callback); 34 | } 35 | else if (el.detachEvent) { 36 | el.detachEvent('on'+eventName, callback); 37 | } 38 | } 39 | 40 | function offset(el) { 41 | if (!el) { 42 | return { 43 | left: 0, 44 | top: 0 45 | }; 46 | } 47 | 48 | var rect = el.getBoundingClientRect(); 49 | return { 50 | top: rect.top + document.body.scrollTop, 51 | left: rect.left + document.body.scrollLeft 52 | }; 53 | } 54 | 55 | function outerWidth(el) { 56 | var _width = el.offsetWidth; 57 | var style = el.currentStyle || getComputedStyle(el); 58 | 59 | _width += (parseInt(style.marginLeft, 10) || 0); 60 | return _width; 61 | } 62 | 63 | function outerHeight(el) { 64 | var _height = el.offsetHeight; 65 | var style = el.currentStyle || getComputedStyle(el); 66 | 67 | _height += (parseInt(style.marginLeft, 10) || 0); 68 | return _height; 69 | } 70 | 71 | 72 | 73 | /** 74 | * 75 | * Util helpers 76 | * 77 | */ 78 | 79 | // Consider multiple instance using ReactMenuAim, we just listen mousemove once 80 | var mousemoveListener = 0; 81 | var mouseLocs = []; 82 | 83 | // Mousemove handler on document 84 | function handleMouseMoveDocument(e) { 85 | mouseLocs.push({ 86 | x: e.pageX, 87 | y: e.pageY 88 | }); 89 | 90 | if (mouseLocs.length > MOUSE_LOCS_TRACKED) { 91 | mouseLocs.shift(); 92 | } 93 | } 94 | 95 | function getActivateDelay(config) { 96 | config = config || {}; 97 | var menu = ReactDOM.findDOMNode(this); 98 | 99 | // If can't find any DOM node 100 | if (!menu || !menu.querySelector) { 101 | return 0; 102 | } 103 | menu = config.menuSelector ? menu.querySelector(config.menuSelector) : menu; 104 | var menuOffset = offset(menu); 105 | 106 | var upperLeft = { 107 | x: menuOffset.left, 108 | y: menuOffset.top - (config.tolerance || TOLERANCE) 109 | }; 110 | var upperRight = { 111 | x: menuOffset.left + outerWidth(menu), 112 | y: upperLeft.y 113 | }; 114 | var lowerLeft = { 115 | x: menuOffset.left, 116 | y: menuOffset.top + outerHeight(menu) + (config.tolerance || TOLERANCE) 117 | }; 118 | var lowerRight = { 119 | x: menuOffset.left + outerWidth(menu), 120 | y: lowerLeft.y 121 | }; 122 | 123 | var loc = mouseLocs[mouseLocs.length - 1]; 124 | var prevLoc = mouseLocs[0]; 125 | 126 | if (!loc) { 127 | return 0; 128 | } 129 | 130 | if (!prevLoc) { 131 | prevLoc = loc; 132 | } 133 | 134 | // If the previous mouse location was outside of the entire 135 | // menu's bounds, immediately activate. 136 | if (prevLoc.x < menuOffset.left || prevLoc.x > lowerRight.x || 137 | prevLoc.y < menuOffset.top || prevLoc.y > lowerRight.y 138 | ) { 139 | return 0; 140 | } 141 | 142 | // If the mouse hasn't moved since the last time we checked 143 | // for activation status, immediately activate. 144 | if (this._lastDelayDoc && 145 | loc.x === this._lastDelayDoc.x && loc.y === this._lastDelayDoc.y) { 146 | return 0; 147 | } 148 | 149 | // Detect if the user is moving towards the currently activated 150 | // submenu. 151 | // 152 | // If the mouse is heading relatively clearly towards 153 | // the submenu's content, we should wait and give the user more 154 | // time before activating a new row. If the mouse is heading 155 | // elsewhere, we can immediately activate a new row. 156 | // 157 | // We detect this by calculating the slope formed between the 158 | // current mouse location and the upper/lower right points of 159 | // the menu. We do the same for the previous mouse location. 160 | // If the current mouse location's slopes are 161 | // increasing/decreasing appropriately compared to the 162 | // previous's, we know the user is moving toward the submenu. 163 | // 164 | // Note that since the y-axis increases as the cursor moves 165 | // down the screen, we are looking for the slope between the 166 | // cursor and the upper right corner to decrease over time, not 167 | // increase (somewhat counterintuitively). 168 | function slope(a, b) { 169 | return (b.y - a.y) / (b.x - a.x); 170 | } 171 | 172 | var decreasingCorner = upperRight; 173 | var increasingCorner = lowerRight; 174 | 175 | // Our expectations for decreasing or increasing slope values 176 | // depends on which direction the submenu opens relative to the 177 | // main menu. By default, if the menu opens on the right, we 178 | // expect the slope between the cursor and the upper right 179 | // corner to decrease over time, as explained above. If the 180 | // submenu opens in a different direction, we change our slope 181 | // expectations. 182 | if (config.submenuDirection === 'left') { 183 | decreasingCorner = lowerLeft; 184 | increasingCorner = upperLeft; 185 | } 186 | else if (config.submenuDirection === 'below') { 187 | decreasingCorner = lowerRight; 188 | increasingCorner = lowerLeft; 189 | } 190 | else if (config.submenuDirection === 'above') { 191 | decreasingCorner = upperLeft; 192 | } 193 | 194 | 195 | var decreasingSlope = slope(loc, decreasingCorner); 196 | var increasingSlope = slope(loc, increasingCorner); 197 | var prevDecreasingSlope = slope(prevLoc, decreasingCorner); 198 | var prevIncreasingSlope = slope(prevLoc, increasingCorner); 199 | 200 | // Mouse is moving from previous location towards the 201 | // currently activated submenu. Delay before activating a 202 | // new menu row, because user may be moving into submenu. 203 | if (decreasingSlope < prevDecreasingSlope && increasingSlope > prevIncreasingSlope) { 204 | this._lastDelayLoc = loc; 205 | return config.delay || DELAY; 206 | } 207 | 208 | this._lastDelayLoc = null; 209 | return 0; 210 | } 211 | 212 | 213 | // For the concern of further changes might happen when activeRowIndex changes, 214 | // this mixin doesn't setState directly, instead it calls the callback provided 215 | // by user. 216 | function activate(rowIdentifier, handler) { 217 | handler.call(this, rowIdentifier); 218 | } 219 | 220 | 221 | function possiblyActivate(rowIdentifier, handler, config) { 222 | var delay = getActivateDelay.call(this, config); 223 | 224 | if (delay) { 225 | var self = this; 226 | this.__reactMenuAimTimer = setTimeout(function(){ 227 | possiblyActivate.call(self, rowIdentifier, handler, config); 228 | }, delay); 229 | } 230 | else { 231 | activate.call(this, rowIdentifier, handler); 232 | } 233 | } 234 | 235 | 236 | 237 | /** 238 | * @export 239 | */ 240 | module.exports = exports = { 241 | initMenuAim: function(options) { 242 | this.__reactMenuAimConfig = options; 243 | }, 244 | 245 | __getMouseMoveDocumentHandler: function() { 246 | if (!this.__mouseMoveDocumentHandler) { 247 | this.__mouseMoveDocumentHandler = handleMouseMoveDocument.bind(this); 248 | } 249 | 250 | return this.__mouseMoveDocumentHandler; 251 | }, 252 | 253 | componentDidMount: function() { 254 | if (mousemoveListener === 0) { 255 | on(document, 'mousemove', this.__getMouseMoveDocumentHandler()); 256 | } 257 | 258 | mousemoveListener += 1; 259 | }, 260 | 261 | componentWillUnmount: function() { 262 | mousemoveListener -= 1; 263 | 264 | if (mousemoveListener === 0) { 265 | off(document, 'mousemove', this.__getMouseMoveDocumentHandler()); 266 | mouseLocs = []; 267 | } 268 | 269 | clearTimeout(this.__reactMenuAimTimer); 270 | this.__reactMenuAimTimer = null; 271 | this.__mouseMoveDocumentHandler = null; 272 | }, 273 | 274 | /** 275 | * @param {function} handler The true event handler for your app 276 | * @param {object} e React's synthetic event object 277 | */ 278 | handleMouseLeaveMenu: function(handler, e) { 279 | if (this.__reactMenuAimTimer) { 280 | clearTimeout(this.__reactMenuAimTimer); 281 | } 282 | 283 | if (typeof handler === 'function') { 284 | handler.call(this, e); 285 | } 286 | }, 287 | 288 | /** 289 | * @param {number} rowIdentifier The identifier of current row, ie. index or name 290 | * @param {function} handler The true event handler for your app 291 | * @param {object} e React's synthetic event object 292 | */ 293 | handleMouseEnterRow: function(rowIdentifier, handler) { 294 | if (this.__reactMenuAimTimer) { 295 | clearTimeout(this.__reactMenuAimTimer); 296 | } 297 | 298 | possiblyActivate.call(this, rowIdentifier, handler, this.__reactMenuAimConfig); 299 | } 300 | }; 301 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-menu-aim", 3 | "version": "2.0.0", 4 | "description": "A React mixin version of Amazon's jQuery-menu-aim plugin", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "./node_modules/karma/bin/karma start test/karma.conf.js", 8 | "build": "./node_modules/browserify/bin/cmd.js demo/js/app.js -d -t babelify -p [minifyify --no-map] -o demo/js/app.bundle.js", 9 | "watch": "./node_modules/watchify/bin/cmd.js demo/js/app.js -t babelify -o demo/js/app.bundle.js -v -d" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/jasonslyvia/react-menu-aim.git" 14 | }, 15 | "keywords": [ 16 | "react", 17 | "amazon", 18 | "jquery-menu-aim", 19 | "menu-aim" 20 | ], 21 | "author": "jasonslyvia (http://undefinedblog.com/)", 22 | "license": "MIT", 23 | "bugs": { 24 | "url": "https://github.com/jasonslyvia/react-menu-aim/issues" 25 | }, 26 | "homepage": "https://github.com/jasonslyvia/react-menu-aim", 27 | "peerDependencies": { 28 | "react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0" 29 | }, 30 | "devDependencies": { 31 | "babel-core": "^6.26.0", 32 | "babel-preset-es2015": "^6.24.1", 33 | "babel-preset-react": "^6.24.1", 34 | "babel-preset-stage-0": "^6.24.1", 35 | "babelify": "~8", 36 | "browserify": "^15.0.0", 37 | "browserify-istanbul": "^3.0.1", 38 | "chai": "^3.0.0", 39 | "chai-spies": "^0.6.0", 40 | "karma": "^2.0.0", 41 | "karma-browserify": "^5.1.3", 42 | "karma-chai": "^0.1.0", 43 | "karma-chrome-launcher": "^2.2.0", 44 | "karma-coverage": "^1.1.1", 45 | "karma-firefox-launcher": "^1.1.0", 46 | "karma-mocha": "^1.3.0", 47 | "minifyify": "~7.3.5", 48 | "mocha": "^2.2.5", 49 | "react": "^16.0.0", 50 | "react-dom": "^16.0.0", 51 | "watchify": "~3.9.0" 52 | }, 53 | "dependencies": { 54 | "create-react-class": "^15.6.2" 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /test/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0", "react"] 3 | } -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- 1 | // Karma configuration 2 | // Generated on Wed Mar 18 2015 11:41:18 GMT+0800 (CST) 3 | 'use strict'; 4 | var istanbul = require('browserify-istanbul'); 5 | 6 | module.exports = function(config) { 7 | config.set({ 8 | 9 | // base path that will be used to resolve all patterns (eg. files, exclude) 10 | basePath: '../', 11 | 12 | 13 | // frameworks to use 14 | // available frameworks: https://npmjs.org/browse/keyword/karma-adapter 15 | frameworks: ['mocha', 'chai', 'browserify'], 16 | 17 | plugins: [ 18 | 'karma-browserify', 19 | 'karma-chai', 20 | 'karma-mocha', 21 | 'karma-coverage', 22 | 'karma-firefox-launcher' 23 | ], 24 | 25 | browserify: { 26 | debug: true, 27 | transform: [ 28 | ['babelify'], 29 | istanbul({ 30 | ignore: ['**/test/**', '**/node_modules/**', '**/lib/**'] 31 | }) 32 | ], 33 | extensions: ['.js', '.jsx'], 34 | bundleDelay: 1000 35 | }, 36 | 37 | 38 | // list of files / patterns to load in the browser 39 | files: [ 40 | {pattern: 'test/specs/test.js', included: true, watched: false}, 41 | {pattern: 'demo/style.css', included: false} 42 | ], 43 | 44 | 45 | // list of files to exclude 46 | exclude: [ 47 | 'test/coverage/**', 48 | 'lib/**', 49 | 'node_modules/' 50 | ], 51 | 52 | 53 | // preprocess matching files before serving them to the browser 54 | // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor 55 | preprocessors: { 56 | 'test/**/*.js': ['browserify'] 57 | }, 58 | 59 | 60 | // test results reporter to use 61 | // possible values: 'dots', 'progress' 62 | // available reporters: https://npmjs.org/browse/keyword/karma-reporter 63 | reporters: ['progress', 'coverage'], 64 | 65 | coverageReporter: { 66 | dir: 'test', 67 | reporters: [{ 68 | type: 'html', 69 | subdir: 'coverage' 70 | }, { 71 | type: 'text' 72 | }] 73 | }, 74 | 75 | // web server port 76 | port: 9876, 77 | 78 | 79 | // enable / disable colors in the output (reporters and logs) 80 | colors: true, 81 | 82 | 83 | // level of logging 84 | // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG 85 | logLevel: config.LOG_DEBUG, 86 | 87 | 88 | // enable / disable watching file and executing tests whenever any file changes 89 | autoWatch: true, 90 | 91 | 92 | // start these browsers 93 | // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher 94 | browsers: ['Firefox'], 95 | 96 | browserNoActivityTimeout: 60000, 97 | 98 | // Continuous Integration mode 99 | // if true, Karma captures browsers, runs the tests and exits 100 | singleRun: false 101 | }); 102 | }; 103 | -------------------------------------------------------------------------------- /test/specs/test.js: -------------------------------------------------------------------------------- 1 | /*eslint no-unused-expressions:0 */ 2 | 'use strict'; 3 | 4 | import ReactDOM from 'react-dom'; 5 | import React from 'react'; 6 | import spies from 'chai-spies'; 7 | import Menu from '../../demo/js/Menu.js'; 8 | import menuData from '../../demo/js/menuData'; 9 | 10 | chai.use(spies); 11 | 12 | //Delay karma test execution 13 | window.__karma__.loaded = () => {}; 14 | 15 | function injectCSS() { 16 | var link = document.createElement('link'); 17 | link.href = 'base/demo/style.css'; 18 | link.type = 'text/css'; 19 | link.rel = 'stylesheet'; 20 | document.head.appendChild(link); 21 | 22 | link.onload = () => { 23 | window.__karma__.start(); 24 | }; 25 | } 26 | 27 | injectCSS(); 28 | const expect = chai.expect; 29 | 30 | describe('ReactMenuAim', () => { 31 | let node; 32 | 33 | beforeEach(() => { 34 | node = ReactDOM.render(, document.body); 35 | }); 36 | 37 | afterEach(() => { 38 | console.log('after'); 39 | 40 | ReactDOM.unmountComponentAtNode(document.body); 41 | node = null; 42 | }); 43 | 44 | it('should mount without error', () => { 45 | var DOM = document.querySelector('.menu-container'); 46 | expect(DOM).to.exist; 47 | }); 48 | }); 49 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@browserify/acorn5-object-spread@^5.0.1": 6 | version "5.0.1" 7 | resolved "http://registry.npm.alibaba-inc.com/@browserify/acorn5-object-spread/download/@browserify/acorn5-object-spread-5.0.1.tgz#92e9b37f97beac9ec429a3cc479ded380297540c" 8 | dependencies: 9 | acorn "^5.2.1" 10 | 11 | JSONStream@^1.0.3: 12 | version "1.3.2" 13 | resolved "http://registry.npm.alibaba-inc.com/JSONStream/download/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" 14 | dependencies: 15 | jsonparse "^1.2.0" 16 | through ">=2.2.7 <3" 17 | 18 | abbrev@1: 19 | version "1.1.1" 20 | resolved "http://registry.npm.alibaba-inc.com/abbrev/download/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 21 | 22 | abbrev@1.0.x: 23 | version "1.0.9" 24 | resolved "http://registry.npm.alibaba-inc.com/abbrev/download/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 25 | 26 | accepts@1.3.3: 27 | version "1.3.3" 28 | resolved "http://registry.npm.alibaba-inc.com/accepts/download/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 29 | dependencies: 30 | mime-types "~2.1.11" 31 | negotiator "0.6.1" 32 | 33 | acorn@^4.0.3: 34 | version "4.0.13" 35 | resolved "http://registry.npm.alibaba-inc.com/acorn/download/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 36 | 37 | acorn@^5.2.1: 38 | version "5.3.0" 39 | resolved "http://registry.npm.alibaba-inc.com/acorn/download/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 40 | 41 | addressparser@1.0.1: 42 | version "1.0.1" 43 | resolved "http://registry.npm.alibaba-inc.com/addressparser/download/addressparser-1.0.1.tgz#47afbe1a2a9262191db6838e4fd1d39b40821746" 44 | 45 | after@0.8.2: 46 | version "0.8.2" 47 | resolved "http://registry.npm.alibaba-inc.com/after/download/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 48 | 49 | agent-base@2: 50 | version "2.1.1" 51 | resolved "http://registry.npm.alibaba-inc.com/agent-base/download/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7" 52 | dependencies: 53 | extend "~3.0.0" 54 | semver "~5.0.1" 55 | 56 | ajv@^4.9.1: 57 | version "4.11.8" 58 | resolved "http://registry.npm.alibaba-inc.com/ajv/download/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 59 | dependencies: 60 | co "^4.6.0" 61 | json-stable-stringify "^1.0.1" 62 | 63 | ajv@^5.1.0: 64 | version "5.5.2" 65 | resolved "http://registry.npm.alibaba-inc.com/ajv/download/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 66 | dependencies: 67 | co "^4.6.0" 68 | fast-deep-equal "^1.0.0" 69 | fast-json-stable-stringify "^2.0.0" 70 | json-schema-traverse "^0.3.0" 71 | 72 | align-text@^0.1.1, align-text@^0.1.3: 73 | version "0.1.4" 74 | resolved "http://registry.npm.alibaba-inc.com/align-text/download/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 75 | dependencies: 76 | kind-of "^3.0.2" 77 | longest "^1.0.1" 78 | repeat-string "^1.5.2" 79 | 80 | amdefine@>=0.0.4: 81 | version "1.0.1" 82 | resolved "http://registry.npm.alibaba-inc.com/amdefine/download/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 83 | 84 | ansi-regex@^2.0.0: 85 | version "2.1.1" 86 | resolved "http://registry.npm.alibaba-inc.com/ansi-regex/download/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 87 | 88 | ansi-styles@^2.2.1: 89 | version "2.2.1" 90 | resolved "http://registry.npm.alibaba-inc.com/ansi-styles/download/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 91 | 92 | anymatch@^1.3.0: 93 | version "1.3.2" 94 | resolved "http://registry.npm.alibaba-inc.com/anymatch/download/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 95 | dependencies: 96 | micromatch "^2.1.5" 97 | normalize-path "^2.0.0" 98 | 99 | aproba@^1.0.3: 100 | version "1.2.0" 101 | resolved "http://registry.npm.alibaba-inc.com/aproba/download/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 102 | 103 | are-we-there-yet@~1.1.2: 104 | version "1.1.4" 105 | resolved "http://registry.npm.alibaba-inc.com/are-we-there-yet/download/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 106 | dependencies: 107 | delegates "^1.0.0" 108 | readable-stream "^2.0.6" 109 | 110 | argparse@^1.0.7: 111 | version "1.0.9" 112 | resolved "http://registry.npm.alibaba-inc.com/argparse/download/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 113 | dependencies: 114 | sprintf-js "~1.0.2" 115 | 116 | arr-diff@^2.0.0: 117 | version "2.0.0" 118 | resolved "http://registry.npm.alibaba-inc.com/arr-diff/download/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 119 | dependencies: 120 | arr-flatten "^1.0.1" 121 | 122 | arr-flatten@^1.0.1: 123 | version "1.1.0" 124 | resolved "http://registry.npm.alibaba-inc.com/arr-flatten/download/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 125 | 126 | array-differ@^1.0.0: 127 | version "1.0.0" 128 | resolved "http://registry.npm.alibaba-inc.com/array-differ/download/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 129 | 130 | array-filter@~0.0.0: 131 | version "0.0.1" 132 | resolved "http://registry.npm.alibaba-inc.com/array-filter/download/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 133 | 134 | array-find-index@^1.0.1: 135 | version "1.0.2" 136 | resolved "http://registry.npm.alibaba-inc.com/array-find-index/download/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 137 | 138 | array-map@~0.0.0: 139 | version "0.0.0" 140 | resolved "http://registry.npm.alibaba-inc.com/array-map/download/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 141 | 142 | array-reduce@~0.0.0: 143 | version "0.0.0" 144 | resolved "http://registry.npm.alibaba-inc.com/array-reduce/download/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 145 | 146 | array-slice@^0.2.3: 147 | version "0.2.3" 148 | resolved "http://registry.npm.alibaba-inc.com/array-slice/download/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 149 | 150 | array-union@^1.0.1: 151 | version "1.0.2" 152 | resolved "http://registry.npm.alibaba-inc.com/array-union/download/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 153 | dependencies: 154 | array-uniq "^1.0.1" 155 | 156 | array-uniq@^1.0.1: 157 | version "1.0.3" 158 | resolved "http://registry.npm.alibaba-inc.com/array-uniq/download/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 159 | 160 | array-unique@^0.2.1: 161 | version "0.2.1" 162 | resolved "http://registry.npm.alibaba-inc.com/array-unique/download/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 163 | 164 | arraybuffer.slice@~0.0.7: 165 | version "0.0.7" 166 | resolved "http://registry.npm.alibaba-inc.com/arraybuffer.slice/download/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" 167 | 168 | arrify@^1.0.0: 169 | version "1.0.1" 170 | resolved "http://registry.npm.alibaba-inc.com/arrify/download/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 171 | 172 | asap@~2.0.3: 173 | version "2.0.6" 174 | resolved "http://registry.npm.alibaba-inc.com/asap/download/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 175 | 176 | asn1.js@^4.0.0: 177 | version "4.9.2" 178 | resolved "http://registry.npm.alibaba-inc.com/asn1.js/download/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 179 | dependencies: 180 | bn.js "^4.0.0" 181 | inherits "^2.0.1" 182 | minimalistic-assert "^1.0.0" 183 | 184 | asn1@~0.2.3: 185 | version "0.2.3" 186 | resolved "http://registry.npm.alibaba-inc.com/asn1/download/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 187 | 188 | assert-plus@1.0.0, assert-plus@^1.0.0: 189 | version "1.0.0" 190 | resolved "http://registry.npm.alibaba-inc.com/assert-plus/download/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 191 | 192 | assert-plus@^0.2.0: 193 | version "0.2.0" 194 | resolved "http://registry.npm.alibaba-inc.com/assert-plus/download/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 195 | 196 | assert@^1.4.0: 197 | version "1.4.1" 198 | resolved "http://registry.npm.alibaba-inc.com/assert/download/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 199 | dependencies: 200 | util "0.10.3" 201 | 202 | assertion-error@^1.0.1: 203 | version "1.1.0" 204 | resolved "http://registry.npm.alibaba-inc.com/assertion-error/download/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 205 | 206 | ast-types@0.x.x: 207 | version "0.10.1" 208 | resolved "http://registry.npm.alibaba-inc.com/ast-types/download/ast-types-0.10.1.tgz#f52fca9715579a14f841d67d7f8d25432ab6a3dd" 209 | 210 | astw@^2.0.0: 211 | version "2.2.0" 212 | resolved "http://registry.npm.alibaba-inc.com/astw/download/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917" 213 | dependencies: 214 | acorn "^4.0.3" 215 | 216 | async-each@^1.0.0: 217 | version "1.0.1" 218 | resolved "http://registry.npm.alibaba-inc.com/async-each/download/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 219 | 220 | async-limiter@~1.0.0: 221 | version "1.0.0" 222 | resolved "http://registry.npm.alibaba-inc.com/async-limiter/download/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 223 | 224 | async@1.x, async@^1.4.0: 225 | version "1.5.2" 226 | resolved "http://registry.npm.alibaba-inc.com/async/download/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 227 | 228 | async@~2.1.2: 229 | version "2.1.5" 230 | resolved "http://registry.npm.alibaba-inc.com/async/download/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" 231 | dependencies: 232 | lodash "^4.14.0" 233 | 234 | asynckit@^0.4.0: 235 | version "0.4.0" 236 | resolved "http://registry.npm.alibaba-inc.com/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 237 | 238 | aws-sign2@~0.6.0: 239 | version "0.6.0" 240 | resolved "http://registry.npm.alibaba-inc.com/aws-sign2/download/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 241 | 242 | aws-sign2@~0.7.0: 243 | version "0.7.0" 244 | resolved "http://registry.npm.alibaba-inc.com/aws-sign2/download/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 245 | 246 | aws4@^1.2.1, aws4@^1.6.0: 247 | version "1.6.0" 248 | resolved "http://registry.npm.alibaba-inc.com/aws4/download/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 249 | 250 | axios@^0.15.3: 251 | version "0.15.3" 252 | resolved "http://registry.npm.alibaba-inc.com/axios/download/axios-0.15.3.tgz#2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053" 253 | dependencies: 254 | follow-redirects "1.0.0" 255 | 256 | babel-code-frame@^6.26.0: 257 | version "6.26.0" 258 | resolved "http://registry.npm.alibaba-inc.com/babel-code-frame/download/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 259 | dependencies: 260 | chalk "^1.1.3" 261 | esutils "^2.0.2" 262 | js-tokens "^3.0.2" 263 | 264 | babel-core@^6.26.0: 265 | version "6.26.0" 266 | resolved "http://registry.npm.alibaba-inc.com/babel-core/download/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 267 | dependencies: 268 | babel-code-frame "^6.26.0" 269 | babel-generator "^6.26.0" 270 | babel-helpers "^6.24.1" 271 | babel-messages "^6.23.0" 272 | babel-register "^6.26.0" 273 | babel-runtime "^6.26.0" 274 | babel-template "^6.26.0" 275 | babel-traverse "^6.26.0" 276 | babel-types "^6.26.0" 277 | babylon "^6.18.0" 278 | convert-source-map "^1.5.0" 279 | debug "^2.6.8" 280 | json5 "^0.5.1" 281 | lodash "^4.17.4" 282 | minimatch "^3.0.4" 283 | path-is-absolute "^1.0.1" 284 | private "^0.1.7" 285 | slash "^1.0.0" 286 | source-map "^0.5.6" 287 | 288 | babel-generator@^6.18.0, babel-generator@^6.26.0: 289 | version "6.26.0" 290 | resolved "http://registry.npm.alibaba-inc.com/babel-generator/download/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 291 | dependencies: 292 | babel-messages "^6.23.0" 293 | babel-runtime "^6.26.0" 294 | babel-types "^6.26.0" 295 | detect-indent "^4.0.0" 296 | jsesc "^1.3.0" 297 | lodash "^4.17.4" 298 | source-map "^0.5.6" 299 | trim-right "^1.0.1" 300 | 301 | babel-helper-bindify-decorators@^6.24.1: 302 | version "6.24.1" 303 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-bindify-decorators/download/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 304 | dependencies: 305 | babel-runtime "^6.22.0" 306 | babel-traverse "^6.24.1" 307 | babel-types "^6.24.1" 308 | 309 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 310 | version "6.24.1" 311 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-builder-binary-assignment-operator-visitor/download/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 312 | dependencies: 313 | babel-helper-explode-assignable-expression "^6.24.1" 314 | babel-runtime "^6.22.0" 315 | babel-types "^6.24.1" 316 | 317 | babel-helper-builder-react-jsx@^6.24.1: 318 | version "6.26.0" 319 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-builder-react-jsx/download/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 320 | dependencies: 321 | babel-runtime "^6.26.0" 322 | babel-types "^6.26.0" 323 | esutils "^2.0.2" 324 | 325 | babel-helper-call-delegate@^6.24.1: 326 | version "6.24.1" 327 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-call-delegate/download/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 328 | dependencies: 329 | babel-helper-hoist-variables "^6.24.1" 330 | babel-runtime "^6.22.0" 331 | babel-traverse "^6.24.1" 332 | babel-types "^6.24.1" 333 | 334 | babel-helper-define-map@^6.24.1: 335 | version "6.26.0" 336 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-define-map/download/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 337 | dependencies: 338 | babel-helper-function-name "^6.24.1" 339 | babel-runtime "^6.26.0" 340 | babel-types "^6.26.0" 341 | lodash "^4.17.4" 342 | 343 | babel-helper-explode-assignable-expression@^6.24.1: 344 | version "6.24.1" 345 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-explode-assignable-expression/download/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 346 | dependencies: 347 | babel-runtime "^6.22.0" 348 | babel-traverse "^6.24.1" 349 | babel-types "^6.24.1" 350 | 351 | babel-helper-explode-class@^6.24.1: 352 | version "6.24.1" 353 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-explode-class/download/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 354 | dependencies: 355 | babel-helper-bindify-decorators "^6.24.1" 356 | babel-runtime "^6.22.0" 357 | babel-traverse "^6.24.1" 358 | babel-types "^6.24.1" 359 | 360 | babel-helper-function-name@^6.24.1: 361 | version "6.24.1" 362 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-function-name/download/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 363 | dependencies: 364 | babel-helper-get-function-arity "^6.24.1" 365 | babel-runtime "^6.22.0" 366 | babel-template "^6.24.1" 367 | babel-traverse "^6.24.1" 368 | babel-types "^6.24.1" 369 | 370 | babel-helper-get-function-arity@^6.24.1: 371 | version "6.24.1" 372 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-get-function-arity/download/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 373 | dependencies: 374 | babel-runtime "^6.22.0" 375 | babel-types "^6.24.1" 376 | 377 | babel-helper-hoist-variables@^6.24.1: 378 | version "6.24.1" 379 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-hoist-variables/download/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 380 | dependencies: 381 | babel-runtime "^6.22.0" 382 | babel-types "^6.24.1" 383 | 384 | babel-helper-optimise-call-expression@^6.24.1: 385 | version "6.24.1" 386 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-optimise-call-expression/download/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 387 | dependencies: 388 | babel-runtime "^6.22.0" 389 | babel-types "^6.24.1" 390 | 391 | babel-helper-regex@^6.24.1: 392 | version "6.26.0" 393 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-regex/download/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 394 | dependencies: 395 | babel-runtime "^6.26.0" 396 | babel-types "^6.26.0" 397 | lodash "^4.17.4" 398 | 399 | babel-helper-remap-async-to-generator@^6.24.1: 400 | version "6.24.1" 401 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-remap-async-to-generator/download/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 402 | dependencies: 403 | babel-helper-function-name "^6.24.1" 404 | babel-runtime "^6.22.0" 405 | babel-template "^6.24.1" 406 | babel-traverse "^6.24.1" 407 | babel-types "^6.24.1" 408 | 409 | babel-helper-replace-supers@^6.24.1: 410 | version "6.24.1" 411 | resolved "http://registry.npm.alibaba-inc.com/babel-helper-replace-supers/download/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 412 | dependencies: 413 | babel-helper-optimise-call-expression "^6.24.1" 414 | babel-messages "^6.23.0" 415 | babel-runtime "^6.22.0" 416 | babel-template "^6.24.1" 417 | babel-traverse "^6.24.1" 418 | babel-types "^6.24.1" 419 | 420 | babel-helpers@^6.24.1: 421 | version "6.24.1" 422 | resolved "http://registry.npm.alibaba-inc.com/babel-helpers/download/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 423 | dependencies: 424 | babel-runtime "^6.22.0" 425 | babel-template "^6.24.1" 426 | 427 | babel-messages@^6.23.0: 428 | version "6.23.0" 429 | resolved "http://registry.npm.alibaba-inc.com/babel-messages/download/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | 433 | babel-plugin-check-es2015-constants@^6.22.0: 434 | version "6.22.0" 435 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-check-es2015-constants/download/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 436 | dependencies: 437 | babel-runtime "^6.22.0" 438 | 439 | babel-plugin-syntax-async-functions@^6.8.0: 440 | version "6.13.0" 441 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-async-functions/download/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 442 | 443 | babel-plugin-syntax-async-generators@^6.5.0: 444 | version "6.13.0" 445 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-async-generators/download/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 446 | 447 | babel-plugin-syntax-class-constructor-call@^6.18.0: 448 | version "6.18.0" 449 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-class-constructor-call/download/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 450 | 451 | babel-plugin-syntax-class-properties@^6.8.0: 452 | version "6.13.0" 453 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-class-properties/download/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 454 | 455 | babel-plugin-syntax-decorators@^6.13.0: 456 | version "6.13.0" 457 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-decorators/download/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 458 | 459 | babel-plugin-syntax-do-expressions@^6.8.0: 460 | version "6.13.0" 461 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-do-expressions/download/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 462 | 463 | babel-plugin-syntax-dynamic-import@^6.18.0: 464 | version "6.18.0" 465 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-dynamic-import/download/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 466 | 467 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 468 | version "6.13.0" 469 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-exponentiation-operator/download/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 470 | 471 | babel-plugin-syntax-export-extensions@^6.8.0: 472 | version "6.13.0" 473 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-export-extensions/download/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 474 | 475 | babel-plugin-syntax-flow@^6.18.0: 476 | version "6.18.0" 477 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-flow/download/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 478 | 479 | babel-plugin-syntax-function-bind@^6.8.0: 480 | version "6.13.0" 481 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-function-bind/download/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 482 | 483 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 484 | version "6.18.0" 485 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-jsx/download/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 486 | 487 | babel-plugin-syntax-object-rest-spread@^6.8.0: 488 | version "6.13.0" 489 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 490 | 491 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 492 | version "6.22.0" 493 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-syntax-trailing-function-commas/download/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 494 | 495 | babel-plugin-transform-async-generator-functions@^6.24.1: 496 | version "6.24.1" 497 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-async-generator-functions/download/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 498 | dependencies: 499 | babel-helper-remap-async-to-generator "^6.24.1" 500 | babel-plugin-syntax-async-generators "^6.5.0" 501 | babel-runtime "^6.22.0" 502 | 503 | babel-plugin-transform-async-to-generator@^6.24.1: 504 | version "6.24.1" 505 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-async-to-generator/download/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 506 | dependencies: 507 | babel-helper-remap-async-to-generator "^6.24.1" 508 | babel-plugin-syntax-async-functions "^6.8.0" 509 | babel-runtime "^6.22.0" 510 | 511 | babel-plugin-transform-class-constructor-call@^6.24.1: 512 | version "6.24.1" 513 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-class-constructor-call/download/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 514 | dependencies: 515 | babel-plugin-syntax-class-constructor-call "^6.18.0" 516 | babel-runtime "^6.22.0" 517 | babel-template "^6.24.1" 518 | 519 | babel-plugin-transform-class-properties@^6.24.1: 520 | version "6.24.1" 521 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-class-properties/download/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 522 | dependencies: 523 | babel-helper-function-name "^6.24.1" 524 | babel-plugin-syntax-class-properties "^6.8.0" 525 | babel-runtime "^6.22.0" 526 | babel-template "^6.24.1" 527 | 528 | babel-plugin-transform-decorators@^6.24.1: 529 | version "6.24.1" 530 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-decorators/download/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 531 | dependencies: 532 | babel-helper-explode-class "^6.24.1" 533 | babel-plugin-syntax-decorators "^6.13.0" 534 | babel-runtime "^6.22.0" 535 | babel-template "^6.24.1" 536 | babel-types "^6.24.1" 537 | 538 | babel-plugin-transform-do-expressions@^6.22.0: 539 | version "6.22.0" 540 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-do-expressions/download/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 541 | dependencies: 542 | babel-plugin-syntax-do-expressions "^6.8.0" 543 | babel-runtime "^6.22.0" 544 | 545 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 546 | version "6.22.0" 547 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-arrow-functions/download/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 548 | dependencies: 549 | babel-runtime "^6.22.0" 550 | 551 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 552 | version "6.22.0" 553 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-block-scoped-functions/download/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 554 | dependencies: 555 | babel-runtime "^6.22.0" 556 | 557 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 558 | version "6.26.0" 559 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-block-scoping/download/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 560 | dependencies: 561 | babel-runtime "^6.26.0" 562 | babel-template "^6.26.0" 563 | babel-traverse "^6.26.0" 564 | babel-types "^6.26.0" 565 | lodash "^4.17.4" 566 | 567 | babel-plugin-transform-es2015-classes@^6.24.1: 568 | version "6.24.1" 569 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-classes/download/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 570 | dependencies: 571 | babel-helper-define-map "^6.24.1" 572 | babel-helper-function-name "^6.24.1" 573 | babel-helper-optimise-call-expression "^6.24.1" 574 | babel-helper-replace-supers "^6.24.1" 575 | babel-messages "^6.23.0" 576 | babel-runtime "^6.22.0" 577 | babel-template "^6.24.1" 578 | babel-traverse "^6.24.1" 579 | babel-types "^6.24.1" 580 | 581 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 582 | version "6.24.1" 583 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-computed-properties/download/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 584 | dependencies: 585 | babel-runtime "^6.22.0" 586 | babel-template "^6.24.1" 587 | 588 | babel-plugin-transform-es2015-destructuring@^6.22.0: 589 | version "6.23.0" 590 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-destructuring/download/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 591 | dependencies: 592 | babel-runtime "^6.22.0" 593 | 594 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 595 | version "6.24.1" 596 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-duplicate-keys/download/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 597 | dependencies: 598 | babel-runtime "^6.22.0" 599 | babel-types "^6.24.1" 600 | 601 | babel-plugin-transform-es2015-for-of@^6.22.0: 602 | version "6.23.0" 603 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-for-of/download/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 604 | dependencies: 605 | babel-runtime "^6.22.0" 606 | 607 | babel-plugin-transform-es2015-function-name@^6.24.1: 608 | version "6.24.1" 609 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-function-name/download/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 610 | dependencies: 611 | babel-helper-function-name "^6.24.1" 612 | babel-runtime "^6.22.0" 613 | babel-types "^6.24.1" 614 | 615 | babel-plugin-transform-es2015-literals@^6.22.0: 616 | version "6.22.0" 617 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-literals/download/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 618 | dependencies: 619 | babel-runtime "^6.22.0" 620 | 621 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 622 | version "6.24.1" 623 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-modules-amd/download/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 624 | dependencies: 625 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 626 | babel-runtime "^6.22.0" 627 | babel-template "^6.24.1" 628 | 629 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 630 | version "6.26.0" 631 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 632 | dependencies: 633 | babel-plugin-transform-strict-mode "^6.24.1" 634 | babel-runtime "^6.26.0" 635 | babel-template "^6.26.0" 636 | babel-types "^6.26.0" 637 | 638 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 639 | version "6.24.1" 640 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-modules-systemjs/download/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 641 | dependencies: 642 | babel-helper-hoist-variables "^6.24.1" 643 | babel-runtime "^6.22.0" 644 | babel-template "^6.24.1" 645 | 646 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 647 | version "6.24.1" 648 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-modules-umd/download/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 649 | dependencies: 650 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 651 | babel-runtime "^6.22.0" 652 | babel-template "^6.24.1" 653 | 654 | babel-plugin-transform-es2015-object-super@^6.24.1: 655 | version "6.24.1" 656 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-object-super/download/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 657 | dependencies: 658 | babel-helper-replace-supers "^6.24.1" 659 | babel-runtime "^6.22.0" 660 | 661 | babel-plugin-transform-es2015-parameters@^6.24.1: 662 | version "6.24.1" 663 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-parameters/download/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 664 | dependencies: 665 | babel-helper-call-delegate "^6.24.1" 666 | babel-helper-get-function-arity "^6.24.1" 667 | babel-runtime "^6.22.0" 668 | babel-template "^6.24.1" 669 | babel-traverse "^6.24.1" 670 | babel-types "^6.24.1" 671 | 672 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 673 | version "6.24.1" 674 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-shorthand-properties/download/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 675 | dependencies: 676 | babel-runtime "^6.22.0" 677 | babel-types "^6.24.1" 678 | 679 | babel-plugin-transform-es2015-spread@^6.22.0: 680 | version "6.22.0" 681 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-spread/download/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 682 | dependencies: 683 | babel-runtime "^6.22.0" 684 | 685 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 686 | version "6.24.1" 687 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-sticky-regex/download/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 688 | dependencies: 689 | babel-helper-regex "^6.24.1" 690 | babel-runtime "^6.22.0" 691 | babel-types "^6.24.1" 692 | 693 | babel-plugin-transform-es2015-template-literals@^6.22.0: 694 | version "6.22.0" 695 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-template-literals/download/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 696 | dependencies: 697 | babel-runtime "^6.22.0" 698 | 699 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 700 | version "6.23.0" 701 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-typeof-symbol/download/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 702 | dependencies: 703 | babel-runtime "^6.22.0" 704 | 705 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 706 | version "6.24.1" 707 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-es2015-unicode-regex/download/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 708 | dependencies: 709 | babel-helper-regex "^6.24.1" 710 | babel-runtime "^6.22.0" 711 | regexpu-core "^2.0.0" 712 | 713 | babel-plugin-transform-exponentiation-operator@^6.24.1: 714 | version "6.24.1" 715 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-exponentiation-operator/download/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 716 | dependencies: 717 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 718 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 719 | babel-runtime "^6.22.0" 720 | 721 | babel-plugin-transform-export-extensions@^6.22.0: 722 | version "6.22.0" 723 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-export-extensions/download/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 724 | dependencies: 725 | babel-plugin-syntax-export-extensions "^6.8.0" 726 | babel-runtime "^6.22.0" 727 | 728 | babel-plugin-transform-flow-strip-types@^6.22.0: 729 | version "6.22.0" 730 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-flow-strip-types/download/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 731 | dependencies: 732 | babel-plugin-syntax-flow "^6.18.0" 733 | babel-runtime "^6.22.0" 734 | 735 | babel-plugin-transform-function-bind@^6.22.0: 736 | version "6.22.0" 737 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-function-bind/download/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 738 | dependencies: 739 | babel-plugin-syntax-function-bind "^6.8.0" 740 | babel-runtime "^6.22.0" 741 | 742 | babel-plugin-transform-object-rest-spread@^6.22.0: 743 | version "6.26.0" 744 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-object-rest-spread/download/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 745 | dependencies: 746 | babel-plugin-syntax-object-rest-spread "^6.8.0" 747 | babel-runtime "^6.26.0" 748 | 749 | babel-plugin-transform-react-display-name@^6.23.0: 750 | version "6.25.0" 751 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-react-display-name/download/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 752 | dependencies: 753 | babel-runtime "^6.22.0" 754 | 755 | babel-plugin-transform-react-jsx-self@^6.22.0: 756 | version "6.22.0" 757 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-react-jsx-self/download/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 758 | dependencies: 759 | babel-plugin-syntax-jsx "^6.8.0" 760 | babel-runtime "^6.22.0" 761 | 762 | babel-plugin-transform-react-jsx-source@^6.22.0: 763 | version "6.22.0" 764 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-react-jsx-source/download/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 765 | dependencies: 766 | babel-plugin-syntax-jsx "^6.8.0" 767 | babel-runtime "^6.22.0" 768 | 769 | babel-plugin-transform-react-jsx@^6.24.1: 770 | version "6.24.1" 771 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-react-jsx/download/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 772 | dependencies: 773 | babel-helper-builder-react-jsx "^6.24.1" 774 | babel-plugin-syntax-jsx "^6.8.0" 775 | babel-runtime "^6.22.0" 776 | 777 | babel-plugin-transform-regenerator@^6.24.1: 778 | version "6.26.0" 779 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-regenerator/download/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 780 | dependencies: 781 | regenerator-transform "^0.10.0" 782 | 783 | babel-plugin-transform-strict-mode@^6.24.1: 784 | version "6.24.1" 785 | resolved "http://registry.npm.alibaba-inc.com/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 786 | dependencies: 787 | babel-runtime "^6.22.0" 788 | babel-types "^6.24.1" 789 | 790 | babel-preset-es2015@^6.24.1: 791 | version "6.24.1" 792 | resolved "http://registry.npm.alibaba-inc.com/babel-preset-es2015/download/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 793 | dependencies: 794 | babel-plugin-check-es2015-constants "^6.22.0" 795 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 796 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 797 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 798 | babel-plugin-transform-es2015-classes "^6.24.1" 799 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 800 | babel-plugin-transform-es2015-destructuring "^6.22.0" 801 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 802 | babel-plugin-transform-es2015-for-of "^6.22.0" 803 | babel-plugin-transform-es2015-function-name "^6.24.1" 804 | babel-plugin-transform-es2015-literals "^6.22.0" 805 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 806 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 807 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 808 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 809 | babel-plugin-transform-es2015-object-super "^6.24.1" 810 | babel-plugin-transform-es2015-parameters "^6.24.1" 811 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 812 | babel-plugin-transform-es2015-spread "^6.22.0" 813 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 814 | babel-plugin-transform-es2015-template-literals "^6.22.0" 815 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 816 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 817 | babel-plugin-transform-regenerator "^6.24.1" 818 | 819 | babel-preset-flow@^6.23.0: 820 | version "6.23.0" 821 | resolved "http://registry.npm.alibaba-inc.com/babel-preset-flow/download/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 822 | dependencies: 823 | babel-plugin-transform-flow-strip-types "^6.22.0" 824 | 825 | babel-preset-react@^6.24.1: 826 | version "6.24.1" 827 | resolved "http://registry.npm.alibaba-inc.com/babel-preset-react/download/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 828 | dependencies: 829 | babel-plugin-syntax-jsx "^6.3.13" 830 | babel-plugin-transform-react-display-name "^6.23.0" 831 | babel-plugin-transform-react-jsx "^6.24.1" 832 | babel-plugin-transform-react-jsx-self "^6.22.0" 833 | babel-plugin-transform-react-jsx-source "^6.22.0" 834 | babel-preset-flow "^6.23.0" 835 | 836 | babel-preset-stage-0@^6.24.1: 837 | version "6.24.1" 838 | resolved "http://registry.npm.alibaba-inc.com/babel-preset-stage-0/download/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 839 | dependencies: 840 | babel-plugin-transform-do-expressions "^6.22.0" 841 | babel-plugin-transform-function-bind "^6.22.0" 842 | babel-preset-stage-1 "^6.24.1" 843 | 844 | babel-preset-stage-1@^6.24.1: 845 | version "6.24.1" 846 | resolved "http://registry.npm.alibaba-inc.com/babel-preset-stage-1/download/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 847 | dependencies: 848 | babel-plugin-transform-class-constructor-call "^6.24.1" 849 | babel-plugin-transform-export-extensions "^6.22.0" 850 | babel-preset-stage-2 "^6.24.1" 851 | 852 | babel-preset-stage-2@^6.24.1: 853 | version "6.24.1" 854 | resolved "http://registry.npm.alibaba-inc.com/babel-preset-stage-2/download/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 855 | dependencies: 856 | babel-plugin-syntax-dynamic-import "^6.18.0" 857 | babel-plugin-transform-class-properties "^6.24.1" 858 | babel-plugin-transform-decorators "^6.24.1" 859 | babel-preset-stage-3 "^6.24.1" 860 | 861 | babel-preset-stage-3@^6.24.1: 862 | version "6.24.1" 863 | resolved "http://registry.npm.alibaba-inc.com/babel-preset-stage-3/download/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 864 | dependencies: 865 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 866 | babel-plugin-transform-async-generator-functions "^6.24.1" 867 | babel-plugin-transform-async-to-generator "^6.24.1" 868 | babel-plugin-transform-exponentiation-operator "^6.24.1" 869 | babel-plugin-transform-object-rest-spread "^6.22.0" 870 | 871 | babel-register@^6.26.0: 872 | version "6.26.0" 873 | resolved "http://registry.npm.alibaba-inc.com/babel-register/download/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 874 | dependencies: 875 | babel-core "^6.26.0" 876 | babel-runtime "^6.26.0" 877 | core-js "^2.5.0" 878 | home-or-tmp "^2.0.0" 879 | lodash "^4.17.4" 880 | mkdirp "^0.5.1" 881 | source-map-support "^0.4.15" 882 | 883 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 884 | version "6.26.0" 885 | resolved "http://registry.npm.alibaba-inc.com/babel-runtime/download/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 886 | dependencies: 887 | core-js "^2.4.0" 888 | regenerator-runtime "^0.11.0" 889 | 890 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 891 | version "6.26.0" 892 | resolved "http://registry.npm.alibaba-inc.com/babel-template/download/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 893 | dependencies: 894 | babel-runtime "^6.26.0" 895 | babel-traverse "^6.26.0" 896 | babel-types "^6.26.0" 897 | babylon "^6.18.0" 898 | lodash "^4.17.4" 899 | 900 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 901 | version "6.26.0" 902 | resolved "http://registry.npm.alibaba-inc.com/babel-traverse/download/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 903 | dependencies: 904 | babel-code-frame "^6.26.0" 905 | babel-messages "^6.23.0" 906 | babel-runtime "^6.26.0" 907 | babel-types "^6.26.0" 908 | babylon "^6.18.0" 909 | debug "^2.6.8" 910 | globals "^9.18.0" 911 | invariant "^2.2.2" 912 | lodash "^4.17.4" 913 | 914 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 915 | version "6.26.0" 916 | resolved "http://registry.npm.alibaba-inc.com/babel-types/download/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 917 | dependencies: 918 | babel-runtime "^6.26.0" 919 | esutils "^2.0.2" 920 | lodash "^4.17.4" 921 | to-fast-properties "^1.0.3" 922 | 923 | babelify@~8: 924 | version "8.0.0" 925 | resolved "http://registry.npm.alibaba-inc.com/babelify/download/babelify-8.0.0.tgz#6f60f5f062bfe7695754ef2403b842014a580ed3" 926 | 927 | babylon@^6.18.0: 928 | version "6.18.0" 929 | resolved "http://registry.npm.alibaba-inc.com/babylon/download/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 930 | 931 | backo2@1.0.2: 932 | version "1.0.2" 933 | resolved "http://registry.npm.alibaba-inc.com/backo2/download/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 934 | 935 | balanced-match@^1.0.0: 936 | version "1.0.0" 937 | resolved "http://registry.npm.alibaba-inc.com/balanced-match/download/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 938 | 939 | base64-arraybuffer@0.1.5: 940 | version "0.1.5" 941 | resolved "http://registry.npm.alibaba-inc.com/base64-arraybuffer/download/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 942 | 943 | base64-js@^1.0.2: 944 | version "1.2.1" 945 | resolved "http://registry.npm.alibaba-inc.com/base64-js/download/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 946 | 947 | base64id@1.0.0: 948 | version "1.0.0" 949 | resolved "http://registry.npm.alibaba-inc.com/base64id/download/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" 950 | 951 | bcrypt-pbkdf@^1.0.0: 952 | version "1.0.1" 953 | resolved "http://registry.npm.alibaba-inc.com/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 954 | dependencies: 955 | tweetnacl "^0.14.3" 956 | 957 | better-assert@~1.0.0: 958 | version "1.0.2" 959 | resolved "http://registry.npm.alibaba-inc.com/better-assert/download/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 960 | dependencies: 961 | callsite "1.0.0" 962 | 963 | binary-extensions@^1.0.0: 964 | version "1.11.0" 965 | resolved "http://registry.npm.alibaba-inc.com/binary-extensions/download/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 966 | 967 | bl@~1.1.2: 968 | version "1.1.2" 969 | resolved "http://registry.npm.alibaba-inc.com/bl/download/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 970 | dependencies: 971 | readable-stream "~2.0.5" 972 | 973 | blob@0.0.4: 974 | version "0.0.4" 975 | resolved "http://registry.npm.alibaba-inc.com/blob/download/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 976 | 977 | block-stream@*: 978 | version "0.0.9" 979 | resolved "http://registry.npm.alibaba-inc.com/block-stream/download/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 980 | dependencies: 981 | inherits "~2.0.0" 982 | 983 | bluebird@^3.3.0: 984 | version "3.5.1" 985 | resolved "http://registry.npm.alibaba-inc.com/bluebird/download/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 986 | 987 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 988 | version "4.11.8" 989 | resolved "http://registry.npm.alibaba-inc.com/bn.js/download/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 990 | 991 | body-parser@^1.16.1: 992 | version "1.18.2" 993 | resolved "http://registry.npm.alibaba-inc.com/body-parser/download/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" 994 | dependencies: 995 | bytes "3.0.0" 996 | content-type "~1.0.4" 997 | debug "2.6.9" 998 | depd "~1.1.1" 999 | http-errors "~1.6.2" 1000 | iconv-lite "0.4.19" 1001 | on-finished "~2.3.0" 1002 | qs "6.5.1" 1003 | raw-body "2.3.2" 1004 | type-is "~1.6.15" 1005 | 1006 | boom@2.x.x: 1007 | version "2.10.1" 1008 | resolved "http://registry.npm.alibaba-inc.com/boom/download/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 1009 | dependencies: 1010 | hoek "2.x.x" 1011 | 1012 | boom@4.x.x: 1013 | version "4.3.1" 1014 | resolved "http://registry.npm.alibaba-inc.com/boom/download/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 1015 | dependencies: 1016 | hoek "4.x.x" 1017 | 1018 | boom@5.x.x: 1019 | version "5.2.0" 1020 | resolved "http://registry.npm.alibaba-inc.com/boom/download/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 1021 | dependencies: 1022 | hoek "4.x.x" 1023 | 1024 | brace-expansion@^1.1.7: 1025 | version "1.1.8" 1026 | resolved "http://registry.npm.alibaba-inc.com/brace-expansion/download/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 1027 | dependencies: 1028 | balanced-match "^1.0.0" 1029 | concat-map "0.0.1" 1030 | 1031 | braces@^0.1.2: 1032 | version "0.1.5" 1033 | resolved "http://registry.npm.alibaba-inc.com/braces/download/braces-0.1.5.tgz#c085711085291d8b75fdd74eab0f8597280711e6" 1034 | dependencies: 1035 | expand-range "^0.1.0" 1036 | 1037 | braces@^1.8.2: 1038 | version "1.8.5" 1039 | resolved "http://registry.npm.alibaba-inc.com/braces/download/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1040 | dependencies: 1041 | expand-range "^1.8.1" 1042 | preserve "^0.2.0" 1043 | repeat-element "^1.1.2" 1044 | 1045 | brorand@^1.0.1: 1046 | version "1.1.0" 1047 | resolved "http://registry.npm.alibaba-inc.com/brorand/download/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 1048 | 1049 | browser-pack@^6.0.1: 1050 | version "6.0.2" 1051 | resolved "http://registry.npm.alibaba-inc.com/browser-pack/download/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" 1052 | dependencies: 1053 | JSONStream "^1.0.3" 1054 | combine-source-map "~0.7.1" 1055 | defined "^1.0.0" 1056 | through2 "^2.0.0" 1057 | umd "^3.0.0" 1058 | 1059 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 1060 | version "1.11.2" 1061 | resolved "http://registry.npm.alibaba-inc.com/browser-resolve/download/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 1062 | dependencies: 1063 | resolve "1.1.7" 1064 | 1065 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 1066 | version "1.1.1" 1067 | resolved "http://registry.npm.alibaba-inc.com/browserify-aes/download/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 1068 | dependencies: 1069 | buffer-xor "^1.0.3" 1070 | cipher-base "^1.0.0" 1071 | create-hash "^1.1.0" 1072 | evp_bytestokey "^1.0.3" 1073 | inherits "^2.0.1" 1074 | safe-buffer "^5.0.1" 1075 | 1076 | browserify-cipher@^1.0.0: 1077 | version "1.0.0" 1078 | resolved "http://registry.npm.alibaba-inc.com/browserify-cipher/download/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 1079 | dependencies: 1080 | browserify-aes "^1.0.4" 1081 | browserify-des "^1.0.0" 1082 | evp_bytestokey "^1.0.0" 1083 | 1084 | browserify-des@^1.0.0: 1085 | version "1.0.0" 1086 | resolved "http://registry.npm.alibaba-inc.com/browserify-des/download/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 1087 | dependencies: 1088 | cipher-base "^1.0.1" 1089 | des.js "^1.0.0" 1090 | inherits "^2.0.1" 1091 | 1092 | browserify-istanbul@^3.0.1: 1093 | version "3.0.1" 1094 | resolved "http://registry.npm.alibaba-inc.com/browserify-istanbul/download/browserify-istanbul-3.0.1.tgz#1a2dd63c0c81a12391a80a466fbef917eb12de07" 1095 | dependencies: 1096 | istanbul-lib-instrument "^1.8.0" 1097 | minimatch "^3.0.4" 1098 | object-assign "^4.1.1" 1099 | through "^2.3.8" 1100 | 1101 | browserify-rsa@^4.0.0: 1102 | version "4.0.1" 1103 | resolved "http://registry.npm.alibaba-inc.com/browserify-rsa/download/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 1104 | dependencies: 1105 | bn.js "^4.1.0" 1106 | randombytes "^2.0.1" 1107 | 1108 | browserify-sign@^4.0.0: 1109 | version "4.0.4" 1110 | resolved "http://registry.npm.alibaba-inc.com/browserify-sign/download/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 1111 | dependencies: 1112 | bn.js "^4.1.1" 1113 | browserify-rsa "^4.0.0" 1114 | create-hash "^1.1.0" 1115 | create-hmac "^1.1.2" 1116 | elliptic "^6.0.0" 1117 | inherits "^2.0.1" 1118 | parse-asn1 "^5.0.0" 1119 | 1120 | browserify-zlib@~0.2.0: 1121 | version "0.2.0" 1122 | resolved "http://registry.npm.alibaba-inc.com/browserify-zlib/download/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 1123 | dependencies: 1124 | pako "~1.0.5" 1125 | 1126 | browserify@^14.0.0, browserify@^14.5.0: 1127 | version "14.5.0" 1128 | resolved "http://registry.npm.alibaba-inc.com/browserify/download/browserify-14.5.0.tgz#0bbbce521acd6e4d1d54d8e9365008efb85a9cc5" 1129 | dependencies: 1130 | JSONStream "^1.0.3" 1131 | assert "^1.4.0" 1132 | browser-pack "^6.0.1" 1133 | browser-resolve "^1.11.0" 1134 | browserify-zlib "~0.2.0" 1135 | buffer "^5.0.2" 1136 | cached-path-relative "^1.0.0" 1137 | concat-stream "~1.5.1" 1138 | console-browserify "^1.1.0" 1139 | constants-browserify "~1.0.0" 1140 | crypto-browserify "^3.0.0" 1141 | defined "^1.0.0" 1142 | deps-sort "^2.0.0" 1143 | domain-browser "~1.1.0" 1144 | duplexer2 "~0.1.2" 1145 | events "~1.1.0" 1146 | glob "^7.1.0" 1147 | has "^1.0.0" 1148 | htmlescape "^1.1.0" 1149 | https-browserify "^1.0.0" 1150 | inherits "~2.0.1" 1151 | insert-module-globals "^7.0.0" 1152 | labeled-stream-splicer "^2.0.0" 1153 | module-deps "^4.0.8" 1154 | os-browserify "~0.3.0" 1155 | parents "^1.0.1" 1156 | path-browserify "~0.0.0" 1157 | process "~0.11.0" 1158 | punycode "^1.3.2" 1159 | querystring-es3 "~0.2.0" 1160 | read-only-stream "^2.0.0" 1161 | readable-stream "^2.0.2" 1162 | resolve "^1.1.4" 1163 | shasum "^1.0.0" 1164 | shell-quote "^1.6.1" 1165 | stream-browserify "^2.0.0" 1166 | stream-http "^2.0.0" 1167 | string_decoder "~1.0.0" 1168 | subarg "^1.0.0" 1169 | syntax-error "^1.1.1" 1170 | through2 "^2.0.0" 1171 | timers-browserify "^1.0.1" 1172 | tty-browserify "~0.0.0" 1173 | url "~0.11.0" 1174 | util "~0.10.1" 1175 | vm-browserify "~0.0.1" 1176 | xtend "^4.0.0" 1177 | 1178 | browserify@^15.0.0: 1179 | version "15.0.0" 1180 | resolved "http://registry.npm.alibaba-inc.com/browserify/download/browserify-15.0.0.tgz#37fa47b46846cddd820e084870a66ff6def5164a" 1181 | dependencies: 1182 | JSONStream "^1.0.3" 1183 | assert "^1.4.0" 1184 | browser-pack "^6.0.1" 1185 | browser-resolve "^1.11.0" 1186 | browserify-zlib "~0.2.0" 1187 | buffer "^5.0.2" 1188 | cached-path-relative "^1.0.0" 1189 | concat-stream "~1.5.1" 1190 | console-browserify "^1.1.0" 1191 | constants-browserify "~1.0.0" 1192 | crypto-browserify "^3.0.0" 1193 | defined "^1.0.0" 1194 | deps-sort "^2.0.0" 1195 | domain-browser "~1.1.0" 1196 | duplexer2 "~0.1.2" 1197 | events "~1.1.0" 1198 | glob "^7.1.0" 1199 | has "^1.0.0" 1200 | htmlescape "^1.1.0" 1201 | https-browserify "^1.0.0" 1202 | inherits "~2.0.1" 1203 | insert-module-globals "^7.0.0" 1204 | labeled-stream-splicer "^2.0.0" 1205 | module-deps "^5.0.0" 1206 | os-browserify "~0.3.0" 1207 | parents "^1.0.1" 1208 | path-browserify "~0.0.0" 1209 | process "~0.11.0" 1210 | punycode "^1.3.2" 1211 | querystring-es3 "~0.2.0" 1212 | read-only-stream "^2.0.0" 1213 | readable-stream "^2.0.2" 1214 | resolve "^1.1.4" 1215 | shasum "^1.0.0" 1216 | shell-quote "^1.6.1" 1217 | stream-browserify "^2.0.0" 1218 | stream-http "^2.0.0" 1219 | string_decoder "~1.0.0" 1220 | subarg "^1.0.0" 1221 | syntax-error "^1.1.1" 1222 | through2 "^2.0.0" 1223 | timers-browserify "^1.0.1" 1224 | tty-browserify "~0.0.0" 1225 | url "~0.11.0" 1226 | util "~0.10.1" 1227 | vm-browserify "~0.0.1" 1228 | xtend "^4.0.0" 1229 | 1230 | buffer-xor@^1.0.3: 1231 | version "1.0.3" 1232 | resolved "http://registry.npm.alibaba-inc.com/buffer-xor/download/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 1233 | 1234 | buffer@^5.0.2: 1235 | version "5.0.8" 1236 | resolved "http://registry.npm.alibaba-inc.com/buffer/download/buffer-5.0.8.tgz#84daa52e7cf2fa8ce4195bc5cf0f7809e0930b24" 1237 | dependencies: 1238 | base64-js "^1.0.2" 1239 | ieee754 "^1.1.4" 1240 | 1241 | buildmail@4.0.1: 1242 | version "4.0.1" 1243 | resolved "http://registry.npm.alibaba-inc.com/buildmail/download/buildmail-4.0.1.tgz#877f7738b78729871c9a105e3b837d2be11a7a72" 1244 | dependencies: 1245 | addressparser "1.0.1" 1246 | libbase64 "0.1.0" 1247 | libmime "3.0.0" 1248 | libqp "1.1.0" 1249 | nodemailer-fetch "1.6.0" 1250 | nodemailer-shared "1.1.0" 1251 | punycode "1.4.1" 1252 | 1253 | builtin-modules@^1.0.0: 1254 | version "1.1.1" 1255 | resolved "http://registry.npm.alibaba-inc.com/builtin-modules/download/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1256 | 1257 | builtin-status-codes@^3.0.0: 1258 | version "3.0.0" 1259 | resolved "http://registry.npm.alibaba-inc.com/builtin-status-codes/download/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1260 | 1261 | bytes@3.0.0: 1262 | version "3.0.0" 1263 | resolved "http://registry.npm.alibaba-inc.com/bytes/download/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 1264 | 1265 | cached-path-relative@^1.0.0: 1266 | version "1.0.1" 1267 | resolved "http://registry.npm.alibaba-inc.com/cached-path-relative/download/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" 1268 | 1269 | callsite@1.0.0: 1270 | version "1.0.0" 1271 | resolved "http://registry.npm.alibaba-inc.com/callsite/download/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 1272 | 1273 | camelcase-keys@^2.0.0: 1274 | version "2.1.0" 1275 | resolved "http://registry.npm.alibaba-inc.com/camelcase-keys/download/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 1276 | dependencies: 1277 | camelcase "^2.0.0" 1278 | map-obj "^1.0.0" 1279 | 1280 | camelcase@^1.0.2: 1281 | version "1.2.1" 1282 | resolved "http://registry.npm.alibaba-inc.com/camelcase/download/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1283 | 1284 | camelcase@^2.0.0: 1285 | version "2.1.1" 1286 | resolved "http://registry.npm.alibaba-inc.com/camelcase/download/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 1287 | 1288 | caseless@~0.11.0: 1289 | version "0.11.0" 1290 | resolved "http://registry.npm.alibaba-inc.com/caseless/download/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 1291 | 1292 | caseless@~0.12.0: 1293 | version "0.12.0" 1294 | resolved "http://registry.npm.alibaba-inc.com/caseless/download/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1295 | 1296 | center-align@^0.1.1: 1297 | version "0.1.3" 1298 | resolved "http://registry.npm.alibaba-inc.com/center-align/download/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1299 | dependencies: 1300 | align-text "^0.1.3" 1301 | lazy-cache "^1.0.3" 1302 | 1303 | chai-spies@^0.6.0: 1304 | version "0.6.0" 1305 | resolved "http://registry.npm.alibaba-inc.com/chai-spies/download/chai-spies-0.6.0.tgz#2cf8f360c26cc4fb309115defba576ad4f0b669f" 1306 | 1307 | chai@^3.0.0: 1308 | version "3.5.0" 1309 | resolved "http://registry.npm.alibaba-inc.com/chai/download/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 1310 | dependencies: 1311 | assertion-error "^1.0.1" 1312 | deep-eql "^0.1.3" 1313 | type-detect "^1.0.0" 1314 | 1315 | chalk@^1.1.1, chalk@^1.1.3: 1316 | version "1.1.3" 1317 | resolved "http://registry.npm.alibaba-inc.com/chalk/download/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1318 | dependencies: 1319 | ansi-styles "^2.2.1" 1320 | escape-string-regexp "^1.0.2" 1321 | has-ansi "^2.0.0" 1322 | strip-ansi "^3.0.0" 1323 | supports-color "^2.0.0" 1324 | 1325 | chokidar@^1.0.0, chokidar@^1.4.1: 1326 | version "1.7.0" 1327 | resolved "http://registry.npm.alibaba-inc.com/chokidar/download/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1328 | dependencies: 1329 | anymatch "^1.3.0" 1330 | async-each "^1.0.0" 1331 | glob-parent "^2.0.0" 1332 | inherits "^2.0.1" 1333 | is-binary-path "^1.0.0" 1334 | is-glob "^2.0.0" 1335 | path-is-absolute "^1.0.0" 1336 | readdirp "^2.0.0" 1337 | optionalDependencies: 1338 | fsevents "^1.0.0" 1339 | 1340 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 1341 | version "1.0.4" 1342 | resolved "http://registry.npm.alibaba-inc.com/cipher-base/download/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 1343 | dependencies: 1344 | inherits "^2.0.1" 1345 | safe-buffer "^5.0.1" 1346 | 1347 | circular-json@^0.4.0: 1348 | version "0.4.0" 1349 | resolved "http://registry.npm.alibaba-inc.com/circular-json/download/circular-json-0.4.0.tgz#c448ea998b7fe31ecf472ec29c6b608e2e2a62fd" 1350 | 1351 | cliui@^2.1.0: 1352 | version "2.1.0" 1353 | resolved "http://registry.npm.alibaba-inc.com/cliui/download/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1354 | dependencies: 1355 | center-align "^0.1.1" 1356 | right-align "^0.1.1" 1357 | wordwrap "0.0.2" 1358 | 1359 | co@^4.6.0: 1360 | version "4.6.0" 1361 | resolved "http://registry.npm.alibaba-inc.com/co/download/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1362 | 1363 | co@~3.0.6: 1364 | version "3.0.6" 1365 | resolved "http://registry.npm.alibaba-inc.com/co/download/co-3.0.6.tgz#1445f226c5eb956138e68c9ac30167ea7d2e6bda" 1366 | 1367 | code-point-at@^1.0.0: 1368 | version "1.1.0" 1369 | resolved "http://registry.npm.alibaba-inc.com/code-point-at/download/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1370 | 1371 | colors@^1.1.0: 1372 | version "1.1.2" 1373 | resolved "http://registry.npm.alibaba-inc.com/colors/download/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1374 | 1375 | combine-lists@^1.0.0: 1376 | version "1.0.1" 1377 | resolved "http://registry.npm.alibaba-inc.com/combine-lists/download/combine-lists-1.0.1.tgz#458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6" 1378 | dependencies: 1379 | lodash "^4.5.0" 1380 | 1381 | combine-source-map@~0.7.1: 1382 | version "0.7.2" 1383 | resolved "http://registry.npm.alibaba-inc.com/combine-source-map/download/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 1384 | dependencies: 1385 | convert-source-map "~1.1.0" 1386 | inline-source-map "~0.6.0" 1387 | lodash.memoize "~3.0.3" 1388 | source-map "~0.5.3" 1389 | 1390 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1391 | version "1.0.5" 1392 | resolved "http://registry.npm.alibaba-inc.com/combined-stream/download/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1393 | dependencies: 1394 | delayed-stream "~1.0.0" 1395 | 1396 | commander@0.6.1: 1397 | version "0.6.1" 1398 | resolved "http://registry.npm.alibaba-inc.com/commander/download/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 1399 | 1400 | commander@2.3.0: 1401 | version "2.3.0" 1402 | resolved "http://registry.npm.alibaba-inc.com/commander/download/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 1403 | 1404 | commander@^2.9.0: 1405 | version "2.12.2" 1406 | resolved "http://registry.npm.alibaba-inc.com/commander/download/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 1407 | 1408 | component-bind@1.0.0: 1409 | version "1.0.0" 1410 | resolved "http://registry.npm.alibaba-inc.com/component-bind/download/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 1411 | 1412 | component-emitter@1.2.1: 1413 | version "1.2.1" 1414 | resolved "http://registry.npm.alibaba-inc.com/component-emitter/download/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1415 | 1416 | component-inherit@0.0.3: 1417 | version "0.0.3" 1418 | resolved "http://registry.npm.alibaba-inc.com/component-inherit/download/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 1419 | 1420 | concat-map@0.0.1: 1421 | version "0.0.1" 1422 | resolved "http://registry.npm.alibaba-inc.com/concat-map/download/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1423 | 1424 | concat-stream@^1.4.7, concat-stream@~1.6.0: 1425 | version "1.6.0" 1426 | resolved "http://registry.npm.alibaba-inc.com/concat-stream/download/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1427 | dependencies: 1428 | inherits "^2.0.3" 1429 | readable-stream "^2.2.2" 1430 | typedarray "^0.0.6" 1431 | 1432 | concat-stream@~1.5.0, concat-stream@~1.5.1: 1433 | version "1.5.2" 1434 | resolved "http://registry.npm.alibaba-inc.com/concat-stream/download/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 1435 | dependencies: 1436 | inherits "~2.0.1" 1437 | readable-stream "~2.0.0" 1438 | typedarray "~0.0.5" 1439 | 1440 | connect@^3.6.0: 1441 | version "3.6.5" 1442 | resolved "http://registry.npm.alibaba-inc.com/connect/download/connect-3.6.5.tgz#fb8dde7ba0763877d0ec9df9dac0b4b40e72c7da" 1443 | dependencies: 1444 | debug "2.6.9" 1445 | finalhandler "1.0.6" 1446 | parseurl "~1.3.2" 1447 | utils-merge "1.0.1" 1448 | 1449 | console-browserify@^1.1.0: 1450 | version "1.1.0" 1451 | resolved "http://registry.npm.alibaba-inc.com/console-browserify/download/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1452 | dependencies: 1453 | date-now "^0.1.4" 1454 | 1455 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1456 | version "1.1.0" 1457 | resolved "http://registry.npm.alibaba-inc.com/console-control-strings/download/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1458 | 1459 | constants-browserify@~1.0.0: 1460 | version "1.0.0" 1461 | resolved "http://registry.npm.alibaba-inc.com/constants-browserify/download/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1462 | 1463 | content-type@~1.0.4: 1464 | version "1.0.4" 1465 | resolved "http://registry.npm.alibaba-inc.com/content-type/download/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 1466 | 1467 | convert-source-map@^1.0.0, convert-source-map@^1.1.3, convert-source-map@^1.5.0: 1468 | version "1.5.1" 1469 | resolved "http://registry.npm.alibaba-inc.com/convert-source-map/download/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1470 | 1471 | convert-source-map@~1.1.0: 1472 | version "1.1.3" 1473 | resolved "http://registry.npm.alibaba-inc.com/convert-source-map/download/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 1474 | 1475 | cookie@0.3.1: 1476 | version "0.3.1" 1477 | resolved "http://registry.npm.alibaba-inc.com/cookie/download/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1478 | 1479 | core-js@^1.0.0: 1480 | version "1.2.7" 1481 | resolved "http://registry.npm.alibaba-inc.com/core-js/download/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1482 | 1483 | core-js@^2.2.0, core-js@^2.4.0, core-js@^2.5.0: 1484 | version "2.5.3" 1485 | resolved "http://registry.npm.alibaba-inc.com/core-js/download/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1486 | 1487 | core-util-is@1.0.2, core-util-is@~1.0.0: 1488 | version "1.0.2" 1489 | resolved "http://registry.npm.alibaba-inc.com/core-util-is/download/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1490 | 1491 | create-ecdh@^4.0.0: 1492 | version "4.0.0" 1493 | resolved "http://registry.npm.alibaba-inc.com/create-ecdh/download/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1494 | dependencies: 1495 | bn.js "^4.1.0" 1496 | elliptic "^6.0.0" 1497 | 1498 | create-hash@^1.1.0, create-hash@^1.1.2: 1499 | version "1.1.3" 1500 | resolved "http://registry.npm.alibaba-inc.com/create-hash/download/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 1501 | dependencies: 1502 | cipher-base "^1.0.1" 1503 | inherits "^2.0.1" 1504 | ripemd160 "^2.0.0" 1505 | sha.js "^2.4.0" 1506 | 1507 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1508 | version "1.1.6" 1509 | resolved "http://registry.npm.alibaba-inc.com/create-hmac/download/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 1510 | dependencies: 1511 | cipher-base "^1.0.3" 1512 | create-hash "^1.1.0" 1513 | inherits "^2.0.1" 1514 | ripemd160 "^2.0.0" 1515 | safe-buffer "^5.0.1" 1516 | sha.js "^2.4.8" 1517 | 1518 | create-react-class@^15.6.2: 1519 | version "15.6.2" 1520 | resolved "http://registry.npm.alibaba-inc.com/create-react-class/download/create-react-class-15.6.2.tgz#cf1ed15f12aad7f14ef5f2dfe05e6c42f91ef02a" 1521 | dependencies: 1522 | fbjs "^0.8.9" 1523 | loose-envify "^1.3.1" 1524 | object-assign "^4.1.1" 1525 | 1526 | cryptiles@2.x.x: 1527 | version "2.0.5" 1528 | resolved "http://registry.npm.alibaba-inc.com/cryptiles/download/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1529 | dependencies: 1530 | boom "2.x.x" 1531 | 1532 | cryptiles@3.x.x: 1533 | version "3.1.2" 1534 | resolved "http://registry.npm.alibaba-inc.com/cryptiles/download/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 1535 | dependencies: 1536 | boom "5.x.x" 1537 | 1538 | crypto-browserify@^3.0.0: 1539 | version "3.12.0" 1540 | resolved "http://registry.npm.alibaba-inc.com/crypto-browserify/download/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1541 | dependencies: 1542 | browserify-cipher "^1.0.0" 1543 | browserify-sign "^4.0.0" 1544 | create-ecdh "^4.0.0" 1545 | create-hash "^1.1.0" 1546 | create-hmac "^1.1.0" 1547 | diffie-hellman "^5.0.0" 1548 | inherits "^2.0.1" 1549 | pbkdf2 "^3.0.3" 1550 | public-encrypt "^4.0.0" 1551 | randombytes "^2.0.0" 1552 | randomfill "^1.0.3" 1553 | 1554 | currently-unhandled@^0.4.1: 1555 | version "0.4.1" 1556 | resolved "http://registry.npm.alibaba-inc.com/currently-unhandled/download/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1557 | dependencies: 1558 | array-find-index "^1.0.1" 1559 | 1560 | custom-event@~1.0.0: 1561 | version "1.0.1" 1562 | resolved "http://registry.npm.alibaba-inc.com/custom-event/download/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" 1563 | 1564 | dashdash@^1.12.0: 1565 | version "1.14.1" 1566 | resolved "http://registry.npm.alibaba-inc.com/dashdash/download/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1567 | dependencies: 1568 | assert-plus "^1.0.0" 1569 | 1570 | data-uri-to-buffer@1: 1571 | version "1.2.0" 1572 | resolved "http://registry.npm.alibaba-inc.com/data-uri-to-buffer/download/data-uri-to-buffer-1.2.0.tgz#77163ea9c20d8641b4707e8f18abdf9a78f34835" 1573 | 1574 | date-format@^1.2.0: 1575 | version "1.2.0" 1576 | resolved "http://registry.npm.alibaba-inc.com/date-format/download/date-format-1.2.0.tgz#615e828e233dd1ab9bb9ae0950e0ceccfa6ecad8" 1577 | 1578 | date-now@^0.1.4: 1579 | version "0.1.4" 1580 | resolved "http://registry.npm.alibaba-inc.com/date-now/download/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1581 | 1582 | dateformat@^1.0.6: 1583 | version "1.0.12" 1584 | resolved "http://registry.npm.alibaba-inc.com/dateformat/download/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 1585 | dependencies: 1586 | get-stdin "^4.0.1" 1587 | meow "^3.3.0" 1588 | 1589 | debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.6.8, debug@~2.6.4, debug@~2.6.6, debug@~2.6.9: 1590 | version "2.6.9" 1591 | resolved "http://registry.npm.alibaba-inc.com/debug/download/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1592 | dependencies: 1593 | ms "2.0.0" 1594 | 1595 | debug@2.2.0, debug@~2.2.0: 1596 | version "2.2.0" 1597 | resolved "http://registry.npm.alibaba-inc.com/debug/download/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1598 | dependencies: 1599 | ms "0.7.1" 1600 | 1601 | debug@^3.1.0: 1602 | version "3.1.0" 1603 | resolved "http://registry.npm.alibaba-inc.com/debug/download/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1604 | dependencies: 1605 | ms "2.0.0" 1606 | 1607 | decamelize@^1.0.0, decamelize@^1.1.2: 1608 | version "1.2.0" 1609 | resolved "http://registry.npm.alibaba-inc.com/decamelize/download/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1610 | 1611 | deep-eql@^0.1.3: 1612 | version "0.1.3" 1613 | resolved "http://registry.npm.alibaba-inc.com/deep-eql/download/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1614 | dependencies: 1615 | type-detect "0.1.1" 1616 | 1617 | deep-extend@~0.4.0: 1618 | version "0.4.2" 1619 | resolved "http://registry.npm.alibaba-inc.com/deep-extend/download/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1620 | 1621 | deep-is@~0.1.3: 1622 | version "0.1.3" 1623 | resolved "http://registry.npm.alibaba-inc.com/deep-is/download/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1624 | 1625 | defined@^1.0.0: 1626 | version "1.0.0" 1627 | resolved "http://registry.npm.alibaba-inc.com/defined/download/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1628 | 1629 | degenerator@~1.0.2: 1630 | version "1.0.4" 1631 | resolved "http://registry.npm.alibaba-inc.com/degenerator/download/degenerator-1.0.4.tgz#fcf490a37ece266464d9cc431ab98c5819ced095" 1632 | dependencies: 1633 | ast-types "0.x.x" 1634 | escodegen "1.x.x" 1635 | esprima "3.x.x" 1636 | 1637 | delayed-stream@~1.0.0: 1638 | version "1.0.0" 1639 | resolved "http://registry.npm.alibaba-inc.com/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1640 | 1641 | delegates@^1.0.0: 1642 | version "1.0.0" 1643 | resolved "http://registry.npm.alibaba-inc.com/delegates/download/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1644 | 1645 | depd@1.1.1, depd@~1.1.1: 1646 | version "1.1.1" 1647 | resolved "http://registry.npm.alibaba-inc.com/depd/download/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 1648 | 1649 | deps-sort@^2.0.0: 1650 | version "2.0.0" 1651 | resolved "http://registry.npm.alibaba-inc.com/deps-sort/download/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 1652 | dependencies: 1653 | JSONStream "^1.0.3" 1654 | shasum "^1.0.0" 1655 | subarg "^1.0.0" 1656 | through2 "^2.0.0" 1657 | 1658 | des.js@^1.0.0: 1659 | version "1.0.0" 1660 | resolved "http://registry.npm.alibaba-inc.com/des.js/download/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1661 | dependencies: 1662 | inherits "^2.0.1" 1663 | minimalistic-assert "^1.0.0" 1664 | 1665 | detect-indent@^4.0.0: 1666 | version "4.0.0" 1667 | resolved "http://registry.npm.alibaba-inc.com/detect-indent/download/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1668 | dependencies: 1669 | repeating "^2.0.0" 1670 | 1671 | detect-libc@^1.0.2: 1672 | version "1.0.3" 1673 | resolved "http://registry.npm.alibaba-inc.com/detect-libc/download/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1674 | 1675 | detective@^4.0.0: 1676 | version "4.7.1" 1677 | resolved "http://registry.npm.alibaba-inc.com/detective/download/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e" 1678 | dependencies: 1679 | acorn "^5.2.1" 1680 | defined "^1.0.0" 1681 | 1682 | detective@^5.0.2: 1683 | version "5.0.2" 1684 | resolved "http://registry.npm.alibaba-inc.com/detective/download/detective-5.0.2.tgz#84ec2e1c581e74211e2ae4ffce1edf52c3263f84" 1685 | dependencies: 1686 | "@browserify/acorn5-object-spread" "^5.0.1" 1687 | acorn "^5.2.1" 1688 | defined "^1.0.0" 1689 | 1690 | di@^0.0.1: 1691 | version "0.0.1" 1692 | resolved "http://registry.npm.alibaba-inc.com/di/download/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" 1693 | 1694 | diff@1.4.0: 1695 | version "1.4.0" 1696 | resolved "http://registry.npm.alibaba-inc.com/diff/download/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1697 | 1698 | diffie-hellman@^5.0.0: 1699 | version "5.0.2" 1700 | resolved "http://registry.npm.alibaba-inc.com/diffie-hellman/download/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1701 | dependencies: 1702 | bn.js "^4.1.0" 1703 | miller-rabin "^4.0.0" 1704 | randombytes "^2.0.0" 1705 | 1706 | dom-serialize@^2.2.0: 1707 | version "2.2.1" 1708 | resolved "http://registry.npm.alibaba-inc.com/dom-serialize/download/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b" 1709 | dependencies: 1710 | custom-event "~1.0.0" 1711 | ent "~2.2.0" 1712 | extend "^3.0.0" 1713 | void-elements "^2.0.0" 1714 | 1715 | domain-browser@~1.1.0: 1716 | version "1.1.7" 1717 | resolved "http://registry.npm.alibaba-inc.com/domain-browser/download/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1718 | 1719 | double-ended-queue@^2.1.0-0: 1720 | version "2.1.0-0" 1721 | resolved "http://registry.npm.alibaba-inc.com/double-ended-queue/download/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" 1722 | 1723 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 1724 | version "0.1.4" 1725 | resolved "http://registry.npm.alibaba-inc.com/duplexer2/download/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1726 | dependencies: 1727 | readable-stream "^2.0.2" 1728 | 1729 | ecc-jsbn@~0.1.1: 1730 | version "0.1.1" 1731 | resolved "http://registry.npm.alibaba-inc.com/ecc-jsbn/download/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1732 | dependencies: 1733 | jsbn "~0.1.0" 1734 | 1735 | ee-first@1.1.1: 1736 | version "1.1.1" 1737 | resolved "http://registry.npm.alibaba-inc.com/ee-first/download/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1738 | 1739 | elliptic@^6.0.0: 1740 | version "6.4.0" 1741 | resolved "http://registry.npm.alibaba-inc.com/elliptic/download/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1742 | dependencies: 1743 | bn.js "^4.4.0" 1744 | brorand "^1.0.1" 1745 | hash.js "^1.0.0" 1746 | hmac-drbg "^1.0.0" 1747 | inherits "^2.0.1" 1748 | minimalistic-assert "^1.0.0" 1749 | minimalistic-crypto-utils "^1.0.0" 1750 | 1751 | encodeurl@~1.0.1: 1752 | version "1.0.1" 1753 | resolved "http://registry.npm.alibaba-inc.com/encodeurl/download/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1754 | 1755 | encoding@^0.1.11: 1756 | version "0.1.12" 1757 | resolved "http://registry.npm.alibaba-inc.com/encoding/download/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1758 | dependencies: 1759 | iconv-lite "~0.4.13" 1760 | 1761 | engine.io-client@~3.1.0: 1762 | version "3.1.4" 1763 | resolved "http://registry.npm.alibaba-inc.com/engine.io-client/download/engine.io-client-3.1.4.tgz#4fcf1370b47163bd2ce9be2733972430350d4ea1" 1764 | dependencies: 1765 | component-emitter "1.2.1" 1766 | component-inherit "0.0.3" 1767 | debug "~2.6.9" 1768 | engine.io-parser "~2.1.1" 1769 | has-cors "1.1.0" 1770 | indexof "0.0.1" 1771 | parseqs "0.0.5" 1772 | parseuri "0.0.5" 1773 | ws "~3.3.1" 1774 | xmlhttprequest-ssl "~1.5.4" 1775 | yeast "0.1.2" 1776 | 1777 | engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: 1778 | version "2.1.2" 1779 | resolved "http://registry.npm.alibaba-inc.com/engine.io-parser/download/engine.io-parser-2.1.2.tgz#4c0f4cff79aaeecbbdcfdea66a823c6085409196" 1780 | dependencies: 1781 | after "0.8.2" 1782 | arraybuffer.slice "~0.0.7" 1783 | base64-arraybuffer "0.1.5" 1784 | blob "0.0.4" 1785 | has-binary2 "~1.0.2" 1786 | 1787 | engine.io@~3.1.0: 1788 | version "3.1.4" 1789 | resolved "http://registry.npm.alibaba-inc.com/engine.io/download/engine.io-3.1.4.tgz#3d0211b70a552ce841ffc7da8627b301a9a4162e" 1790 | dependencies: 1791 | accepts "1.3.3" 1792 | base64id "1.0.0" 1793 | cookie "0.3.1" 1794 | debug "~2.6.9" 1795 | engine.io-parser "~2.1.0" 1796 | ws "~3.3.1" 1797 | optionalDependencies: 1798 | uws "~0.14.4" 1799 | 1800 | ent@~2.2.0: 1801 | version "2.2.0" 1802 | resolved "http://registry.npm.alibaba-inc.com/ent/download/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" 1803 | 1804 | error-ex@^1.2.0: 1805 | version "1.3.1" 1806 | resolved "http://registry.npm.alibaba-inc.com/error-ex/download/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1807 | dependencies: 1808 | is-arrayish "^0.2.1" 1809 | 1810 | escape-html@~1.0.3: 1811 | version "1.0.3" 1812 | resolved "http://registry.npm.alibaba-inc.com/escape-html/download/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1813 | 1814 | escape-string-regexp@1.0.2: 1815 | version "1.0.2" 1816 | resolved "http://registry.npm.alibaba-inc.com/escape-string-regexp/download/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 1817 | 1818 | escape-string-regexp@^1.0.2: 1819 | version "1.0.5" 1820 | resolved "http://registry.npm.alibaba-inc.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1821 | 1822 | escodegen@1.8.x: 1823 | version "1.8.1" 1824 | resolved "http://registry.npm.alibaba-inc.com/escodegen/download/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1825 | dependencies: 1826 | esprima "^2.7.1" 1827 | estraverse "^1.9.1" 1828 | esutils "^2.0.2" 1829 | optionator "^0.8.1" 1830 | optionalDependencies: 1831 | source-map "~0.2.0" 1832 | 1833 | escodegen@1.x.x: 1834 | version "1.9.0" 1835 | resolved "http://registry.npm.alibaba-inc.com/escodegen/download/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1836 | dependencies: 1837 | esprima "^3.1.3" 1838 | estraverse "^4.2.0" 1839 | esutils "^2.0.2" 1840 | optionator "^0.8.1" 1841 | optionalDependencies: 1842 | source-map "~0.5.6" 1843 | 1844 | esprima@2.7.x, esprima@^2.7.1: 1845 | version "2.7.3" 1846 | resolved "http://registry.npm.alibaba-inc.com/esprima/download/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1847 | 1848 | esprima@3.x.x, esprima@^3.1.3: 1849 | version "3.1.3" 1850 | resolved "http://registry.npm.alibaba-inc.com/esprima/download/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1851 | 1852 | esprima@^4.0.0: 1853 | version "4.0.0" 1854 | resolved "http://registry.npm.alibaba-inc.com/esprima/download/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1855 | 1856 | estraverse@^1.9.1: 1857 | version "1.9.3" 1858 | resolved "http://registry.npm.alibaba-inc.com/estraverse/download/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1859 | 1860 | estraverse@^4.2.0: 1861 | version "4.2.0" 1862 | resolved "http://registry.npm.alibaba-inc.com/estraverse/download/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1863 | 1864 | esutils@^2.0.2: 1865 | version "2.0.2" 1866 | resolved "http://registry.npm.alibaba-inc.com/esutils/download/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1867 | 1868 | eventemitter3@1.x.x: 1869 | version "1.2.0" 1870 | resolved "http://registry.npm.alibaba-inc.com/eventemitter3/download/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1871 | 1872 | events@~1.1.0: 1873 | version "1.1.1" 1874 | resolved "http://registry.npm.alibaba-inc.com/events/download/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1875 | 1876 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1877 | version "1.0.3" 1878 | resolved "http://registry.npm.alibaba-inc.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1879 | dependencies: 1880 | md5.js "^1.3.4" 1881 | safe-buffer "^5.1.1" 1882 | 1883 | expand-braces@^0.1.1: 1884 | version "0.1.2" 1885 | resolved "http://registry.npm.alibaba-inc.com/expand-braces/download/expand-braces-0.1.2.tgz#488b1d1d2451cb3d3a6b192cfc030f44c5855fea" 1886 | dependencies: 1887 | array-slice "^0.2.3" 1888 | array-unique "^0.2.1" 1889 | braces "^0.1.2" 1890 | 1891 | expand-brackets@^0.1.4: 1892 | version "0.1.5" 1893 | resolved "http://registry.npm.alibaba-inc.com/expand-brackets/download/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1894 | dependencies: 1895 | is-posix-bracket "^0.1.0" 1896 | 1897 | expand-range@^0.1.0: 1898 | version "0.1.1" 1899 | resolved "http://registry.npm.alibaba-inc.com/expand-range/download/expand-range-0.1.1.tgz#4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044" 1900 | dependencies: 1901 | is-number "^0.1.1" 1902 | repeat-string "^0.2.2" 1903 | 1904 | expand-range@^1.8.1: 1905 | version "1.8.2" 1906 | resolved "http://registry.npm.alibaba-inc.com/expand-range/download/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1907 | dependencies: 1908 | fill-range "^2.1.0" 1909 | 1910 | extend@3, extend@^3.0.0, extend@~3.0.0, extend@~3.0.1: 1911 | version "3.0.1" 1912 | resolved "http://registry.npm.alibaba-inc.com/extend/download/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1913 | 1914 | extglob@^0.3.1: 1915 | version "0.3.2" 1916 | resolved "http://registry.npm.alibaba-inc.com/extglob/download/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1917 | dependencies: 1918 | is-extglob "^1.0.0" 1919 | 1920 | extsprintf@1.3.0: 1921 | version "1.3.0" 1922 | resolved "http://registry.npm.alibaba-inc.com/extsprintf/download/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1923 | 1924 | extsprintf@^1.2.0: 1925 | version "1.4.0" 1926 | resolved "http://registry.npm.alibaba-inc.com/extsprintf/download/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1927 | 1928 | fast-deep-equal@^1.0.0: 1929 | version "1.0.0" 1930 | resolved "http://registry.npm.alibaba-inc.com/fast-deep-equal/download/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1931 | 1932 | fast-json-stable-stringify@^2.0.0: 1933 | version "2.0.0" 1934 | resolved "http://registry.npm.alibaba-inc.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1935 | 1936 | fast-levenshtein@~2.0.4: 1937 | version "2.0.6" 1938 | resolved "http://registry.npm.alibaba-inc.com/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1939 | 1940 | fbjs@^0.8.16, fbjs@^0.8.9: 1941 | version "0.8.16" 1942 | resolved "http://registry.npm.alibaba-inc.com/fbjs/download/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1943 | dependencies: 1944 | core-js "^1.0.0" 1945 | isomorphic-fetch "^2.1.1" 1946 | loose-envify "^1.0.0" 1947 | object-assign "^4.1.0" 1948 | promise "^7.1.1" 1949 | setimmediate "^1.0.5" 1950 | ua-parser-js "^0.7.9" 1951 | 1952 | file-uri-to-path@1: 1953 | version "1.0.0" 1954 | resolved "http://registry.npm.alibaba-inc.com/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 1955 | 1956 | filename-regex@^2.0.0: 1957 | version "2.0.1" 1958 | resolved "http://registry.npm.alibaba-inc.com/filename-regex/download/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1959 | 1960 | fill-range@^2.1.0: 1961 | version "2.2.3" 1962 | resolved "http://registry.npm.alibaba-inc.com/fill-range/download/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1963 | dependencies: 1964 | is-number "^2.1.0" 1965 | isobject "^2.0.0" 1966 | randomatic "^1.1.3" 1967 | repeat-element "^1.1.2" 1968 | repeat-string "^1.5.2" 1969 | 1970 | finalhandler@1.0.6: 1971 | version "1.0.6" 1972 | resolved "http://registry.npm.alibaba-inc.com/finalhandler/download/finalhandler-1.0.6.tgz#007aea33d1a4d3e42017f624848ad58d212f814f" 1973 | dependencies: 1974 | debug "2.6.9" 1975 | encodeurl "~1.0.1" 1976 | escape-html "~1.0.3" 1977 | on-finished "~2.3.0" 1978 | parseurl "~1.3.2" 1979 | statuses "~1.3.1" 1980 | unpipe "~1.0.0" 1981 | 1982 | find-up@^1.0.0: 1983 | version "1.1.2" 1984 | resolved "http://registry.npm.alibaba-inc.com/find-up/download/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1985 | dependencies: 1986 | path-exists "^2.0.0" 1987 | pinkie-promise "^2.0.0" 1988 | 1989 | follow-redirects@1.0.0: 1990 | version "1.0.0" 1991 | resolved "http://registry.npm.alibaba-inc.com/follow-redirects/download/follow-redirects-1.0.0.tgz#8e34298cbd2e176f254effec75a1c78cc849fd37" 1992 | dependencies: 1993 | debug "^2.2.0" 1994 | 1995 | for-in@^1.0.1: 1996 | version "1.0.2" 1997 | resolved "http://registry.npm.alibaba-inc.com/for-in/download/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1998 | 1999 | for-own@^0.1.4: 2000 | version "0.1.5" 2001 | resolved "http://registry.npm.alibaba-inc.com/for-own/download/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 2002 | dependencies: 2003 | for-in "^1.0.1" 2004 | 2005 | forever-agent@~0.6.1: 2006 | version "0.6.1" 2007 | resolved "http://registry.npm.alibaba-inc.com/forever-agent/download/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 2008 | 2009 | form-data@~2.0.0: 2010 | version "2.0.0" 2011 | resolved "http://registry.npm.alibaba-inc.com/form-data/download/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" 2012 | dependencies: 2013 | asynckit "^0.4.0" 2014 | combined-stream "^1.0.5" 2015 | mime-types "^2.1.11" 2016 | 2017 | form-data@~2.1.1: 2018 | version "2.1.4" 2019 | resolved "http://registry.npm.alibaba-inc.com/form-data/download/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 2020 | dependencies: 2021 | asynckit "^0.4.0" 2022 | combined-stream "^1.0.5" 2023 | mime-types "^2.1.12" 2024 | 2025 | form-data@~2.3.1: 2026 | version "2.3.1" 2027 | resolved "http://registry.npm.alibaba-inc.com/form-data/download/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 2028 | dependencies: 2029 | asynckit "^0.4.0" 2030 | combined-stream "^1.0.5" 2031 | mime-types "^2.1.12" 2032 | 2033 | fs-access@^1.0.0: 2034 | version "1.0.1" 2035 | resolved "http://registry.npm.alibaba-inc.com/fs-access/download/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 2036 | dependencies: 2037 | null-check "^1.0.0" 2038 | 2039 | fs.realpath@^1.0.0: 2040 | version "1.0.0" 2041 | resolved "http://registry.npm.alibaba-inc.com/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 2042 | 2043 | fsevents@^1.0.0: 2044 | version "1.1.3" 2045 | resolved "http://registry.npm.alibaba-inc.com/fsevents/download/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 2046 | dependencies: 2047 | nan "^2.3.0" 2048 | node-pre-gyp "^0.6.39" 2049 | 2050 | fstream-ignore@^1.0.5: 2051 | version "1.0.5" 2052 | resolved "http://registry.npm.alibaba-inc.com/fstream-ignore/download/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 2053 | dependencies: 2054 | fstream "^1.0.0" 2055 | inherits "2" 2056 | minimatch "^3.0.0" 2057 | 2058 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 2059 | version "1.0.11" 2060 | resolved "http://registry.npm.alibaba-inc.com/fstream/download/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 2061 | dependencies: 2062 | graceful-fs "^4.1.2" 2063 | inherits "~2.0.0" 2064 | mkdirp ">=0.5 0" 2065 | rimraf "2" 2066 | 2067 | ftp@~0.3.10: 2068 | version "0.3.10" 2069 | resolved "http://registry.npm.alibaba-inc.com/ftp/download/ftp-0.3.10.tgz#9197d861ad8142f3e63d5a83bfe4c59f7330885d" 2070 | dependencies: 2071 | readable-stream "1.1.x" 2072 | xregexp "2.0.0" 2073 | 2074 | function-bind@^1.0.2: 2075 | version "1.1.1" 2076 | resolved "http://registry.npm.alibaba-inc.com/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 2077 | 2078 | gauge@~2.7.3: 2079 | version "2.7.4" 2080 | resolved "http://registry.npm.alibaba-inc.com/gauge/download/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 2081 | dependencies: 2082 | aproba "^1.0.3" 2083 | console-control-strings "^1.0.0" 2084 | has-unicode "^2.0.0" 2085 | object-assign "^4.1.0" 2086 | signal-exit "^3.0.0" 2087 | string-width "^1.0.1" 2088 | strip-ansi "^3.0.1" 2089 | wide-align "^1.1.0" 2090 | 2091 | generate-function@^2.0.0: 2092 | version "2.0.0" 2093 | resolved "http://registry.npm.alibaba-inc.com/generate-function/download/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 2094 | 2095 | generate-object-property@^1.1.0: 2096 | version "1.2.0" 2097 | resolved "http://registry.npm.alibaba-inc.com/generate-object-property/download/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 2098 | dependencies: 2099 | is-property "^1.0.0" 2100 | 2101 | get-stdin@^4.0.1: 2102 | version "4.0.1" 2103 | resolved "http://registry.npm.alibaba-inc.com/get-stdin/download/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 2104 | 2105 | get-uri@2: 2106 | version "2.0.1" 2107 | resolved "http://registry.npm.alibaba-inc.com/get-uri/download/get-uri-2.0.1.tgz#dbdcacacd8c608a38316869368117697a1631c59" 2108 | dependencies: 2109 | data-uri-to-buffer "1" 2110 | debug "2" 2111 | extend "3" 2112 | file-uri-to-path "1" 2113 | ftp "~0.3.10" 2114 | readable-stream "2" 2115 | 2116 | getpass@^0.1.1: 2117 | version "0.1.7" 2118 | resolved "http://registry.npm.alibaba-inc.com/getpass/download/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 2119 | dependencies: 2120 | assert-plus "^1.0.0" 2121 | 2122 | glob-base@^0.3.0: 2123 | version "0.3.0" 2124 | resolved "http://registry.npm.alibaba-inc.com/glob-base/download/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2125 | dependencies: 2126 | glob-parent "^2.0.0" 2127 | is-glob "^2.0.0" 2128 | 2129 | glob-parent@^2.0.0: 2130 | version "2.0.0" 2131 | resolved "http://registry.npm.alibaba-inc.com/glob-parent/download/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2132 | dependencies: 2133 | is-glob "^2.0.0" 2134 | 2135 | glob@3.2.11: 2136 | version "3.2.11" 2137 | resolved "http://registry.npm.alibaba-inc.com/glob/download/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" 2138 | dependencies: 2139 | inherits "2" 2140 | minimatch "0.3" 2141 | 2142 | glob@^5.0.15: 2143 | version "5.0.15" 2144 | resolved "http://registry.npm.alibaba-inc.com/glob/download/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 2145 | dependencies: 2146 | inflight "^1.0.4" 2147 | inherits "2" 2148 | minimatch "2 || 3" 2149 | once "^1.3.0" 2150 | path-is-absolute "^1.0.0" 2151 | 2152 | glob@^7.0.5, glob@^7.1.0, glob@^7.1.1: 2153 | version "7.1.2" 2154 | resolved "http://registry.npm.alibaba-inc.com/glob/download/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 2155 | dependencies: 2156 | fs.realpath "^1.0.0" 2157 | inflight "^1.0.4" 2158 | inherits "2" 2159 | minimatch "^3.0.4" 2160 | once "^1.3.0" 2161 | path-is-absolute "^1.0.0" 2162 | 2163 | globals@^9.18.0: 2164 | version "9.18.0" 2165 | resolved "http://registry.npm.alibaba-inc.com/globals/download/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 2166 | 2167 | graceful-fs@^4.1.2: 2168 | version "4.1.11" 2169 | resolved "http://registry.npm.alibaba-inc.com/graceful-fs/download/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2170 | 2171 | growl@1.9.2: 2172 | version "1.9.2" 2173 | resolved "http://registry.npm.alibaba-inc.com/growl/download/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 2174 | 2175 | handlebars@^4.0.1: 2176 | version "4.0.11" 2177 | resolved "http://registry.npm.alibaba-inc.com/handlebars/download/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 2178 | dependencies: 2179 | async "^1.4.0" 2180 | optimist "^0.6.1" 2181 | source-map "^0.4.4" 2182 | optionalDependencies: 2183 | uglify-js "^2.6" 2184 | 2185 | har-schema@^1.0.5: 2186 | version "1.0.5" 2187 | resolved "http://registry.npm.alibaba-inc.com/har-schema/download/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2188 | 2189 | har-schema@^2.0.0: 2190 | version "2.0.0" 2191 | resolved "http://registry.npm.alibaba-inc.com/har-schema/download/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 2192 | 2193 | har-validator@~2.0.6: 2194 | version "2.0.6" 2195 | resolved "http://registry.npm.alibaba-inc.com/har-validator/download/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 2196 | dependencies: 2197 | chalk "^1.1.1" 2198 | commander "^2.9.0" 2199 | is-my-json-valid "^2.12.4" 2200 | pinkie-promise "^2.0.0" 2201 | 2202 | har-validator@~4.2.1: 2203 | version "4.2.1" 2204 | resolved "http://registry.npm.alibaba-inc.com/har-validator/download/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2205 | dependencies: 2206 | ajv "^4.9.1" 2207 | har-schema "^1.0.5" 2208 | 2209 | har-validator@~5.0.3: 2210 | version "5.0.3" 2211 | resolved "http://registry.npm.alibaba-inc.com/har-validator/download/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 2212 | dependencies: 2213 | ajv "^5.1.0" 2214 | har-schema "^2.0.0" 2215 | 2216 | has-ansi@^2.0.0: 2217 | version "2.0.0" 2218 | resolved "http://registry.npm.alibaba-inc.com/has-ansi/download/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2219 | dependencies: 2220 | ansi-regex "^2.0.0" 2221 | 2222 | has-binary2@~1.0.2: 2223 | version "1.0.2" 2224 | resolved "http://registry.npm.alibaba-inc.com/has-binary2/download/has-binary2-1.0.2.tgz#e83dba49f0b9be4d026d27365350d9f03f54be98" 2225 | dependencies: 2226 | isarray "2.0.1" 2227 | 2228 | has-cors@1.1.0: 2229 | version "1.1.0" 2230 | resolved "http://registry.npm.alibaba-inc.com/has-cors/download/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 2231 | 2232 | has-flag@^1.0.0: 2233 | version "1.0.0" 2234 | resolved "http://registry.npm.alibaba-inc.com/has-flag/download/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2235 | 2236 | has-unicode@^2.0.0: 2237 | version "2.0.1" 2238 | resolved "http://registry.npm.alibaba-inc.com/has-unicode/download/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2239 | 2240 | has@^1.0.0: 2241 | version "1.0.1" 2242 | resolved "http://registry.npm.alibaba-inc.com/has/download/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2243 | dependencies: 2244 | function-bind "^1.0.2" 2245 | 2246 | hash-base@^2.0.0: 2247 | version "2.0.2" 2248 | resolved "http://registry.npm.alibaba-inc.com/hash-base/download/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 2249 | dependencies: 2250 | inherits "^2.0.1" 2251 | 2252 | hash-base@^3.0.0: 2253 | version "3.0.4" 2254 | resolved "http://registry.npm.alibaba-inc.com/hash-base/download/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 2255 | dependencies: 2256 | inherits "^2.0.1" 2257 | safe-buffer "^5.0.1" 2258 | 2259 | hash.js@^1.0.0, hash.js@^1.0.3: 2260 | version "1.1.3" 2261 | resolved "http://registry.npm.alibaba-inc.com/hash.js/download/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 2262 | dependencies: 2263 | inherits "^2.0.3" 2264 | minimalistic-assert "^1.0.0" 2265 | 2266 | hat@^0.0.3: 2267 | version "0.0.3" 2268 | resolved "http://registry.npm.alibaba-inc.com/hat/download/hat-0.0.3.tgz#bb014a9e64b3788aed8005917413d4ff3d502d8a" 2269 | 2270 | hawk@3.1.3, hawk@~3.1.3: 2271 | version "3.1.3" 2272 | resolved "http://registry.npm.alibaba-inc.com/hawk/download/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2273 | dependencies: 2274 | boom "2.x.x" 2275 | cryptiles "2.x.x" 2276 | hoek "2.x.x" 2277 | sntp "1.x.x" 2278 | 2279 | hawk@~6.0.2: 2280 | version "6.0.2" 2281 | resolved "http://registry.npm.alibaba-inc.com/hawk/download/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 2282 | dependencies: 2283 | boom "4.x.x" 2284 | cryptiles "3.x.x" 2285 | hoek "4.x.x" 2286 | sntp "2.x.x" 2287 | 2288 | hipchat-notifier@^1.1.0: 2289 | version "1.1.0" 2290 | resolved "http://registry.npm.alibaba-inc.com/hipchat-notifier/download/hipchat-notifier-1.1.0.tgz#b6d249755437c191082367799d3ba9a0f23b231e" 2291 | dependencies: 2292 | lodash "^4.0.0" 2293 | request "^2.0.0" 2294 | 2295 | hmac-drbg@^1.0.0: 2296 | version "1.0.1" 2297 | resolved "http://registry.npm.alibaba-inc.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 2298 | dependencies: 2299 | hash.js "^1.0.3" 2300 | minimalistic-assert "^1.0.0" 2301 | minimalistic-crypto-utils "^1.0.1" 2302 | 2303 | hoek@2.x.x: 2304 | version "2.16.3" 2305 | resolved "http://registry.npm.alibaba-inc.com/hoek/download/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2306 | 2307 | hoek@4.x.x: 2308 | version "4.2.0" 2309 | resolved "http://registry.npm.alibaba-inc.com/hoek/download/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 2310 | 2311 | home-or-tmp@^2.0.0: 2312 | version "2.0.0" 2313 | resolved "http://registry.npm.alibaba-inc.com/home-or-tmp/download/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2314 | dependencies: 2315 | os-homedir "^1.0.0" 2316 | os-tmpdir "^1.0.1" 2317 | 2318 | hosted-git-info@^2.1.4: 2319 | version "2.5.0" 2320 | resolved "http://registry.npm.alibaba-inc.com/hosted-git-info/download/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 2321 | 2322 | htmlescape@^1.1.0: 2323 | version "1.1.1" 2324 | resolved "http://registry.npm.alibaba-inc.com/htmlescape/download/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 2325 | 2326 | http-errors@1.6.2, http-errors@~1.6.2: 2327 | version "1.6.2" 2328 | resolved "http://registry.npm.alibaba-inc.com/http-errors/download/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 2329 | dependencies: 2330 | depd "1.1.1" 2331 | inherits "2.0.3" 2332 | setprototypeof "1.0.3" 2333 | statuses ">= 1.3.1 < 2" 2334 | 2335 | http-proxy-agent@1: 2336 | version "1.0.0" 2337 | resolved "http://registry.npm.alibaba-inc.com/http-proxy-agent/download/http-proxy-agent-1.0.0.tgz#cc1ce38e453bf984a0f7702d2dd59c73d081284a" 2338 | dependencies: 2339 | agent-base "2" 2340 | debug "2" 2341 | extend "3" 2342 | 2343 | http-proxy@^1.13.0: 2344 | version "1.16.2" 2345 | resolved "http://registry.npm.alibaba-inc.com/http-proxy/download/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 2346 | dependencies: 2347 | eventemitter3 "1.x.x" 2348 | requires-port "1.x.x" 2349 | 2350 | http-signature@~1.1.0: 2351 | version "1.1.1" 2352 | resolved "http://registry.npm.alibaba-inc.com/http-signature/download/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2353 | dependencies: 2354 | assert-plus "^0.2.0" 2355 | jsprim "^1.2.2" 2356 | sshpk "^1.7.0" 2357 | 2358 | http-signature@~1.2.0: 2359 | version "1.2.0" 2360 | resolved "http://registry.npm.alibaba-inc.com/http-signature/download/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 2361 | dependencies: 2362 | assert-plus "^1.0.0" 2363 | jsprim "^1.2.2" 2364 | sshpk "^1.7.0" 2365 | 2366 | httpntlm@1.6.1: 2367 | version "1.6.1" 2368 | resolved "http://registry.npm.alibaba-inc.com/httpntlm/download/httpntlm-1.6.1.tgz#ad01527143a2e8773cfae6a96f58656bb52a34b2" 2369 | dependencies: 2370 | httpreq ">=0.4.22" 2371 | underscore "~1.7.0" 2372 | 2373 | httpreq@>=0.4.22: 2374 | version "0.4.24" 2375 | resolved "http://registry.npm.alibaba-inc.com/httpreq/download/httpreq-0.4.24.tgz#4335ffd82cd969668a39465c929ac61d6393627f" 2376 | 2377 | https-browserify@^1.0.0: 2378 | version "1.0.0" 2379 | resolved "http://registry.npm.alibaba-inc.com/https-browserify/download/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 2380 | 2381 | https-proxy-agent@1: 2382 | version "1.0.0" 2383 | resolved "http://registry.npm.alibaba-inc.com/https-proxy-agent/download/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" 2384 | dependencies: 2385 | agent-base "2" 2386 | debug "2" 2387 | extend "3" 2388 | 2389 | iconv-lite@0.4.15: 2390 | version "0.4.15" 2391 | resolved "http://registry.npm.alibaba-inc.com/iconv-lite/download/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 2392 | 2393 | iconv-lite@0.4.19, iconv-lite@~0.4.13: 2394 | version "0.4.19" 2395 | resolved "http://registry.npm.alibaba-inc.com/iconv-lite/download/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2396 | 2397 | ieee754@^1.1.4: 2398 | version "1.1.8" 2399 | resolved "http://registry.npm.alibaba-inc.com/ieee754/download/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 2400 | 2401 | indent-string@^2.1.0: 2402 | version "2.1.0" 2403 | resolved "http://registry.npm.alibaba-inc.com/indent-string/download/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2404 | dependencies: 2405 | repeating "^2.0.0" 2406 | 2407 | indexof@0.0.1: 2408 | version "0.0.1" 2409 | resolved "http://registry.npm.alibaba-inc.com/indexof/download/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2410 | 2411 | inflection@~1.10.0: 2412 | version "1.10.0" 2413 | resolved "http://registry.npm.alibaba-inc.com/inflection/download/inflection-1.10.0.tgz#5bffcb1197ad3e81050f8e17e21668087ee9eb2f" 2414 | 2415 | inflection@~1.3.0: 2416 | version "1.3.8" 2417 | resolved "http://registry.npm.alibaba-inc.com/inflection/download/inflection-1.3.8.tgz#cbd160da9f75b14c3cc63578d4f396784bf3014e" 2418 | 2419 | inflight@^1.0.4: 2420 | version "1.0.6" 2421 | resolved "http://registry.npm.alibaba-inc.com/inflight/download/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2422 | dependencies: 2423 | once "^1.3.0" 2424 | wrappy "1" 2425 | 2426 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2427 | version "2.0.3" 2428 | resolved "http://registry.npm.alibaba-inc.com/inherits/download/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2429 | 2430 | inherits@2.0.1: 2431 | version "2.0.1" 2432 | resolved "http://registry.npm.alibaba-inc.com/inherits/download/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2433 | 2434 | ini@~1.3.0: 2435 | version "1.3.5" 2436 | resolved "http://registry.npm.alibaba-inc.com/ini/download/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2437 | 2438 | inline-source-map@~0.6.0: 2439 | version "0.6.2" 2440 | resolved "http://registry.npm.alibaba-inc.com/inline-source-map/download/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 2441 | dependencies: 2442 | source-map "~0.5.3" 2443 | 2444 | insert-module-globals@^7.0.0: 2445 | version "7.0.1" 2446 | resolved "http://registry.npm.alibaba-inc.com/insert-module-globals/download/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 2447 | dependencies: 2448 | JSONStream "^1.0.3" 2449 | combine-source-map "~0.7.1" 2450 | concat-stream "~1.5.1" 2451 | is-buffer "^1.1.0" 2452 | lexical-scope "^1.2.0" 2453 | process "~0.11.0" 2454 | through2 "^2.0.0" 2455 | xtend "^4.0.0" 2456 | 2457 | invariant@^2.2.2: 2458 | version "2.2.2" 2459 | resolved "http://registry.npm.alibaba-inc.com/invariant/download/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2460 | dependencies: 2461 | loose-envify "^1.0.0" 2462 | 2463 | ip@1.0.1: 2464 | version "1.0.1" 2465 | resolved "http://registry.npm.alibaba-inc.com/ip/download/ip-1.0.1.tgz#c7e356cdea225ae71b36d70f2e71a92ba4e42590" 2466 | 2467 | ip@^1.1.2, ip@^1.1.4: 2468 | version "1.1.5" 2469 | resolved "http://registry.npm.alibaba-inc.com/ip/download/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 2470 | 2471 | is-arrayish@^0.2.1: 2472 | version "0.2.1" 2473 | resolved "http://registry.npm.alibaba-inc.com/is-arrayish/download/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2474 | 2475 | is-binary-path@^1.0.0: 2476 | version "1.0.1" 2477 | resolved "http://registry.npm.alibaba-inc.com/is-binary-path/download/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2478 | dependencies: 2479 | binary-extensions "^1.0.0" 2480 | 2481 | is-buffer@^1.1.0, is-buffer@^1.1.5: 2482 | version "1.1.6" 2483 | resolved "http://registry.npm.alibaba-inc.com/is-buffer/download/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2484 | 2485 | is-builtin-module@^1.0.0: 2486 | version "1.0.0" 2487 | resolved "http://registry.npm.alibaba-inc.com/is-builtin-module/download/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2488 | dependencies: 2489 | builtin-modules "^1.0.0" 2490 | 2491 | is-dotfile@^1.0.0: 2492 | version "1.0.3" 2493 | resolved "http://registry.npm.alibaba-inc.com/is-dotfile/download/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2494 | 2495 | is-equal-shallow@^0.1.3: 2496 | version "0.1.3" 2497 | resolved "http://registry.npm.alibaba-inc.com/is-equal-shallow/download/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2498 | dependencies: 2499 | is-primitive "^2.0.0" 2500 | 2501 | is-extendable@^0.1.1: 2502 | version "0.1.1" 2503 | resolved "http://registry.npm.alibaba-inc.com/is-extendable/download/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2504 | 2505 | is-extglob@^1.0.0: 2506 | version "1.0.0" 2507 | resolved "http://registry.npm.alibaba-inc.com/is-extglob/download/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2508 | 2509 | is-finite@^1.0.0: 2510 | version "1.0.2" 2511 | resolved "http://registry.npm.alibaba-inc.com/is-finite/download/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2512 | dependencies: 2513 | number-is-nan "^1.0.0" 2514 | 2515 | is-fullwidth-code-point@^1.0.0: 2516 | version "1.0.0" 2517 | resolved "http://registry.npm.alibaba-inc.com/is-fullwidth-code-point/download/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2518 | dependencies: 2519 | number-is-nan "^1.0.0" 2520 | 2521 | is-glob@^2.0.0, is-glob@^2.0.1: 2522 | version "2.0.1" 2523 | resolved "http://registry.npm.alibaba-inc.com/is-glob/download/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2524 | dependencies: 2525 | is-extglob "^1.0.0" 2526 | 2527 | is-my-json-valid@^2.12.4: 2528 | version "2.17.1" 2529 | resolved "http://registry.npm.alibaba-inc.com/is-my-json-valid/download/is-my-json-valid-2.17.1.tgz#3da98914a70a22f0a8563ef1511a246c6fc55471" 2530 | dependencies: 2531 | generate-function "^2.0.0" 2532 | generate-object-property "^1.1.0" 2533 | jsonpointer "^4.0.0" 2534 | xtend "^4.0.0" 2535 | 2536 | is-number@^0.1.1: 2537 | version "0.1.1" 2538 | resolved "http://registry.npm.alibaba-inc.com/is-number/download/is-number-0.1.1.tgz#69a7af116963d47206ec9bd9b48a14216f1e3806" 2539 | 2540 | is-number@^2.1.0: 2541 | version "2.1.0" 2542 | resolved "http://registry.npm.alibaba-inc.com/is-number/download/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2543 | dependencies: 2544 | kind-of "^3.0.2" 2545 | 2546 | is-number@^3.0.0: 2547 | version "3.0.0" 2548 | resolved "http://registry.npm.alibaba-inc.com/is-number/download/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2549 | dependencies: 2550 | kind-of "^3.0.2" 2551 | 2552 | is-posix-bracket@^0.1.0: 2553 | version "0.1.1" 2554 | resolved "http://registry.npm.alibaba-inc.com/is-posix-bracket/download/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2555 | 2556 | is-primitive@^2.0.0: 2557 | version "2.0.0" 2558 | resolved "http://registry.npm.alibaba-inc.com/is-primitive/download/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2559 | 2560 | is-property@^1.0.0: 2561 | version "1.0.2" 2562 | resolved "http://registry.npm.alibaba-inc.com/is-property/download/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2563 | 2564 | is-stream@^1.0.1, is-stream@^1.1.0: 2565 | version "1.1.0" 2566 | resolved "http://registry.npm.alibaba-inc.com/is-stream/download/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2567 | 2568 | is-typedarray@~1.0.0: 2569 | version "1.0.0" 2570 | resolved "http://registry.npm.alibaba-inc.com/is-typedarray/download/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2571 | 2572 | is-utf8@^0.2.0: 2573 | version "0.2.1" 2574 | resolved "http://registry.npm.alibaba-inc.com/is-utf8/download/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2575 | 2576 | isarray@0.0.1, isarray@~0.0.1: 2577 | version "0.0.1" 2578 | resolved "http://registry.npm.alibaba-inc.com/isarray/download/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2579 | 2580 | isarray@1.0.0, isarray@~1.0.0: 2581 | version "1.0.0" 2582 | resolved "http://registry.npm.alibaba-inc.com/isarray/download/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2583 | 2584 | isarray@2.0.1: 2585 | version "2.0.1" 2586 | resolved "http://registry.npm.alibaba-inc.com/isarray/download/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" 2587 | 2588 | isbinaryfile@^3.0.0: 2589 | version "3.0.2" 2590 | resolved "http://registry.npm.alibaba-inc.com/isbinaryfile/download/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" 2591 | 2592 | isexe@^2.0.0: 2593 | version "2.0.0" 2594 | resolved "http://registry.npm.alibaba-inc.com/isexe/download/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2595 | 2596 | isobject@^2.0.0: 2597 | version "2.1.0" 2598 | resolved "http://registry.npm.alibaba-inc.com/isobject/download/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2599 | dependencies: 2600 | isarray "1.0.0" 2601 | 2602 | isomorphic-fetch@^2.1.1: 2603 | version "2.2.1" 2604 | resolved "http://registry.npm.alibaba-inc.com/isomorphic-fetch/download/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2605 | dependencies: 2606 | node-fetch "^1.0.1" 2607 | whatwg-fetch ">=0.10.0" 2608 | 2609 | isstream@~0.1.2: 2610 | version "0.1.2" 2611 | resolved "http://registry.npm.alibaba-inc.com/isstream/download/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2612 | 2613 | istanbul-lib-coverage@^1.1.1: 2614 | version "1.1.1" 2615 | resolved "http://registry.npm.alibaba-inc.com/istanbul-lib-coverage/download/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2616 | 2617 | istanbul-lib-instrument@^1.8.0: 2618 | version "1.9.1" 2619 | resolved "http://registry.npm.alibaba-inc.com/istanbul-lib-instrument/download/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 2620 | dependencies: 2621 | babel-generator "^6.18.0" 2622 | babel-template "^6.16.0" 2623 | babel-traverse "^6.18.0" 2624 | babel-types "^6.18.0" 2625 | babylon "^6.18.0" 2626 | istanbul-lib-coverage "^1.1.1" 2627 | semver "^5.3.0" 2628 | 2629 | istanbul@^0.4.0: 2630 | version "0.4.5" 2631 | resolved "http://registry.npm.alibaba-inc.com/istanbul/download/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 2632 | dependencies: 2633 | abbrev "1.0.x" 2634 | async "1.x" 2635 | escodegen "1.8.x" 2636 | esprima "2.7.x" 2637 | glob "^5.0.15" 2638 | handlebars "^4.0.1" 2639 | js-yaml "3.x" 2640 | mkdirp "0.5.x" 2641 | nopt "3.x" 2642 | once "1.x" 2643 | resolve "1.1.x" 2644 | supports-color "^3.1.0" 2645 | which "^1.1.1" 2646 | wordwrap "^1.0.0" 2647 | 2648 | jade@0.26.3: 2649 | version "0.26.3" 2650 | resolved "http://registry.npm.alibaba-inc.com/jade/download/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 2651 | dependencies: 2652 | commander "0.6.1" 2653 | mkdirp "0.3.0" 2654 | 2655 | js-string-escape@^1.0.0: 2656 | version "1.0.1" 2657 | resolved "http://registry.npm.alibaba-inc.com/js-string-escape/download/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" 2658 | 2659 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2660 | version "3.0.2" 2661 | resolved "http://registry.npm.alibaba-inc.com/js-tokens/download/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2662 | 2663 | js-yaml@3.x: 2664 | version "3.10.0" 2665 | resolved "http://registry.npm.alibaba-inc.com/js-yaml/download/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2666 | dependencies: 2667 | argparse "^1.0.7" 2668 | esprima "^4.0.0" 2669 | 2670 | jsbn@~0.1.0: 2671 | version "0.1.1" 2672 | resolved "http://registry.npm.alibaba-inc.com/jsbn/download/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2673 | 2674 | jsesc@^1.3.0: 2675 | version "1.3.0" 2676 | resolved "http://registry.npm.alibaba-inc.com/jsesc/download/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2677 | 2678 | jsesc@~0.5.0: 2679 | version "0.5.0" 2680 | resolved "http://registry.npm.alibaba-inc.com/jsesc/download/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2681 | 2682 | json-schema-traverse@^0.3.0: 2683 | version "0.3.1" 2684 | resolved "http://registry.npm.alibaba-inc.com/json-schema-traverse/download/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2685 | 2686 | json-schema@0.2.3: 2687 | version "0.2.3" 2688 | resolved "http://registry.npm.alibaba-inc.com/json-schema/download/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2689 | 2690 | json-stable-stringify@^1.0.1: 2691 | version "1.0.1" 2692 | resolved "http://registry.npm.alibaba-inc.com/json-stable-stringify/download/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2693 | dependencies: 2694 | jsonify "~0.0.0" 2695 | 2696 | json-stable-stringify@~0.0.0: 2697 | version "0.0.1" 2698 | resolved "http://registry.npm.alibaba-inc.com/json-stable-stringify/download/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 2699 | dependencies: 2700 | jsonify "~0.0.0" 2701 | 2702 | json-stringify-safe@5.0.x, json-stringify-safe@~5.0.1: 2703 | version "5.0.1" 2704 | resolved "http://registry.npm.alibaba-inc.com/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2705 | 2706 | json5@^0.5.1: 2707 | version "0.5.1" 2708 | resolved "http://registry.npm.alibaba-inc.com/json5/download/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2709 | 2710 | jsonify@~0.0.0: 2711 | version "0.0.0" 2712 | resolved "http://registry.npm.alibaba-inc.com/jsonify/download/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2713 | 2714 | jsonparse@^1.2.0: 2715 | version "1.3.1" 2716 | resolved "http://registry.npm.alibaba-inc.com/jsonparse/download/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 2717 | 2718 | jsonpointer@^4.0.0: 2719 | version "4.0.1" 2720 | resolved "http://registry.npm.alibaba-inc.com/jsonpointer/download/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2721 | 2722 | jsprim@^1.2.2: 2723 | version "1.4.1" 2724 | resolved "http://registry.npm.alibaba-inc.com/jsprim/download/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2725 | dependencies: 2726 | assert-plus "1.0.0" 2727 | extsprintf "1.3.0" 2728 | json-schema "0.2.3" 2729 | verror "1.10.0" 2730 | 2731 | karma-browserify@^5.1.3: 2732 | version "5.1.0" 2733 | resolved "http://registry.npm.alibaba-inc.com/karma-browserify/download/karma-browserify-5.1.0.tgz#06819daf2c8ddf6c01ba446619c7b342e1eff765" 2734 | dependencies: 2735 | convert-source-map "^1.1.3" 2736 | hat "^0.0.3" 2737 | js-string-escape "^1.0.0" 2738 | lodash "^3.10.1" 2739 | minimatch "^3.0.0" 2740 | os-shim "^0.1.3" 2741 | 2742 | karma-chai@^0.1.0: 2743 | version "0.1.0" 2744 | resolved "http://registry.npm.alibaba-inc.com/karma-chai/download/karma-chai-0.1.0.tgz#bee5ad40400517811ae34bb945f762909108b79a" 2745 | 2746 | karma-chrome-launcher@^2.2.0: 2747 | version "2.2.0" 2748 | resolved "http://registry.npm.alibaba-inc.com/karma-chrome-launcher/download/karma-chrome-launcher-2.2.0.tgz#cf1b9d07136cc18fe239327d24654c3dbc368acf" 2749 | dependencies: 2750 | fs-access "^1.0.0" 2751 | which "^1.2.1" 2752 | 2753 | karma-coverage@^1.1.1: 2754 | version "1.1.1" 2755 | resolved "http://registry.npm.alibaba-inc.com/karma-coverage/download/karma-coverage-1.1.1.tgz#5aff8b39cf6994dc22de4c84362c76001b637cf6" 2756 | dependencies: 2757 | dateformat "^1.0.6" 2758 | istanbul "^0.4.0" 2759 | lodash "^3.8.0" 2760 | minimatch "^3.0.0" 2761 | source-map "^0.5.1" 2762 | 2763 | karma-firefox-launcher@^1.1.0: 2764 | version "1.1.0" 2765 | resolved "http://registry.npm.alibaba-inc.com/karma-firefox-launcher/download/karma-firefox-launcher-1.1.0.tgz#2c47030452f04531eb7d13d4fc7669630bb93339" 2766 | 2767 | karma-mocha@^1.3.0: 2768 | version "1.3.0" 2769 | resolved "http://registry.npm.alibaba-inc.com/karma-mocha/download/karma-mocha-1.3.0.tgz#eeaac7ffc0e201eb63c467440d2b69c7cf3778bf" 2770 | dependencies: 2771 | minimist "1.2.0" 2772 | 2773 | karma@^2.0.0: 2774 | version "2.0.0" 2775 | resolved "http://registry.npm.alibaba-inc.com/karma/download/karma-2.0.0.tgz#a02698dd7f0f05ff5eb66ab8f65582490b512e58" 2776 | dependencies: 2777 | bluebird "^3.3.0" 2778 | body-parser "^1.16.1" 2779 | browserify "^14.5.0" 2780 | chokidar "^1.4.1" 2781 | colors "^1.1.0" 2782 | combine-lists "^1.0.0" 2783 | connect "^3.6.0" 2784 | core-js "^2.2.0" 2785 | di "^0.0.1" 2786 | dom-serialize "^2.2.0" 2787 | expand-braces "^0.1.1" 2788 | glob "^7.1.1" 2789 | graceful-fs "^4.1.2" 2790 | http-proxy "^1.13.0" 2791 | isbinaryfile "^3.0.0" 2792 | lodash "^4.17.4" 2793 | log4js "^2.3.9" 2794 | mime "^1.3.4" 2795 | minimatch "^3.0.2" 2796 | optimist "^0.6.1" 2797 | qjobs "^1.1.4" 2798 | range-parser "^1.2.0" 2799 | rimraf "^2.6.0" 2800 | safe-buffer "^5.0.1" 2801 | socket.io "2.0.4" 2802 | source-map "^0.6.1" 2803 | tmp "0.0.33" 2804 | useragent "^2.1.12" 2805 | 2806 | kind-of@^3.0.2: 2807 | version "3.2.2" 2808 | resolved "http://registry.npm.alibaba-inc.com/kind-of/download/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2809 | dependencies: 2810 | is-buffer "^1.1.5" 2811 | 2812 | kind-of@^4.0.0: 2813 | version "4.0.0" 2814 | resolved "http://registry.npm.alibaba-inc.com/kind-of/download/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2815 | dependencies: 2816 | is-buffer "^1.1.5" 2817 | 2818 | labeled-stream-splicer@^2.0.0: 2819 | version "2.0.0" 2820 | resolved "http://registry.npm.alibaba-inc.com/labeled-stream-splicer/download/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 2821 | dependencies: 2822 | inherits "^2.0.1" 2823 | isarray "~0.0.1" 2824 | stream-splicer "^2.0.0" 2825 | 2826 | lazy-cache@^1.0.3: 2827 | version "1.0.4" 2828 | resolved "http://registry.npm.alibaba-inc.com/lazy-cache/download/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2829 | 2830 | levn@~0.3.0: 2831 | version "0.3.0" 2832 | resolved "http://registry.npm.alibaba-inc.com/levn/download/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2833 | dependencies: 2834 | prelude-ls "~1.1.2" 2835 | type-check "~0.3.2" 2836 | 2837 | lexical-scope@^1.2.0: 2838 | version "1.2.0" 2839 | resolved "http://registry.npm.alibaba-inc.com/lexical-scope/download/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 2840 | dependencies: 2841 | astw "^2.0.0" 2842 | 2843 | libbase64@0.1.0: 2844 | version "0.1.0" 2845 | resolved "http://registry.npm.alibaba-inc.com/libbase64/download/libbase64-0.1.0.tgz#62351a839563ac5ff5bd26f12f60e9830bb751e6" 2846 | 2847 | libmime@3.0.0: 2848 | version "3.0.0" 2849 | resolved "http://registry.npm.alibaba-inc.com/libmime/download/libmime-3.0.0.tgz#51a1a9e7448ecbd32cda54421675bb21bc093da6" 2850 | dependencies: 2851 | iconv-lite "0.4.15" 2852 | libbase64 "0.1.0" 2853 | libqp "1.1.0" 2854 | 2855 | libqp@1.1.0: 2856 | version "1.1.0" 2857 | resolved "http://registry.npm.alibaba-inc.com/libqp/download/libqp-1.1.0.tgz#f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8" 2858 | 2859 | load-json-file@^1.0.0: 2860 | version "1.1.0" 2861 | resolved "http://registry.npm.alibaba-inc.com/load-json-file/download/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2862 | dependencies: 2863 | graceful-fs "^4.1.2" 2864 | parse-json "^2.2.0" 2865 | pify "^2.0.0" 2866 | pinkie-promise "^2.0.0" 2867 | strip-bom "^2.0.0" 2868 | 2869 | lodash.assign@^4.0.0: 2870 | version "4.2.0" 2871 | resolved "http://registry.npm.alibaba-inc.com/lodash.assign/download/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2872 | 2873 | lodash.bind@^4.0.0: 2874 | version "4.2.1" 2875 | resolved "http://registry.npm.alibaba-inc.com/lodash.bind/download/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2876 | 2877 | lodash.defaults@^4.0.0: 2878 | version "4.2.0" 2879 | resolved "http://registry.npm.alibaba-inc.com/lodash.defaults/download/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2880 | 2881 | lodash.foreach@^4.0.0: 2882 | version "4.5.0" 2883 | resolved "http://registry.npm.alibaba-inc.com/lodash.foreach/download/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2884 | 2885 | lodash.memoize@~3.0.3: 2886 | version "3.0.4" 2887 | resolved "http://registry.npm.alibaba-inc.com/lodash.memoize/download/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 2888 | 2889 | lodash@^3.10.1, lodash@^3.8.0: 2890 | version "3.10.1" 2891 | resolved "http://registry.npm.alibaba-inc.com/lodash/download/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2892 | 2893 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4, lodash@^4.5.0: 2894 | version "4.17.4" 2895 | resolved "http://registry.npm.alibaba-inc.com/lodash/download/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2896 | 2897 | log4js@^2.3.9: 2898 | version "2.4.1" 2899 | resolved "http://registry.npm.alibaba-inc.com/log4js/download/log4js-2.4.1.tgz#b0c4e88133e0e3056afdc6f91f7f377576158778" 2900 | dependencies: 2901 | circular-json "^0.4.0" 2902 | date-format "^1.2.0" 2903 | debug "^3.1.0" 2904 | semver "^5.3.0" 2905 | streamroller "^0.7.0" 2906 | optionalDependencies: 2907 | axios "^0.15.3" 2908 | hipchat-notifier "^1.1.0" 2909 | loggly "^1.1.0" 2910 | mailgun-js "^0.7.0" 2911 | nodemailer "^2.5.0" 2912 | redis "^2.7.1" 2913 | slack-node "~0.2.0" 2914 | 2915 | loggly@^1.1.0: 2916 | version "1.1.1" 2917 | resolved "http://registry.npm.alibaba-inc.com/loggly/download/loggly-1.1.1.tgz#0a0fc1d3fa3a5ec44fdc7b897beba2a4695cebee" 2918 | dependencies: 2919 | json-stringify-safe "5.0.x" 2920 | request "2.75.x" 2921 | timespan "2.3.x" 2922 | 2923 | longest@^1.0.1: 2924 | version "1.0.1" 2925 | resolved "http://registry.npm.alibaba-inc.com/longest/download/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2926 | 2927 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 2928 | version "1.3.1" 2929 | resolved "http://registry.npm.alibaba-inc.com/loose-envify/download/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2930 | dependencies: 2931 | js-tokens "^3.0.0" 2932 | 2933 | loud-rejection@^1.0.0: 2934 | version "1.6.0" 2935 | resolved "http://registry.npm.alibaba-inc.com/loud-rejection/download/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2936 | dependencies: 2937 | currently-unhandled "^0.4.1" 2938 | signal-exit "^3.0.0" 2939 | 2940 | lru-cache@2: 2941 | version "2.7.3" 2942 | resolved "http://registry.npm.alibaba-inc.com/lru-cache/download/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 2943 | 2944 | lru-cache@2.2.x: 2945 | version "2.2.4" 2946 | resolved "http://registry.npm.alibaba-inc.com/lru-cache/download/lru-cache-2.2.4.tgz#6c658619becf14031d0d0b594b16042ce4dc063d" 2947 | 2948 | lru-cache@~2.6.5: 2949 | version "2.6.5" 2950 | resolved "http://registry.npm.alibaba-inc.com/lru-cache/download/lru-cache-2.6.5.tgz#e56d6354148ede8d7707b58d143220fd08df0fd5" 2951 | 2952 | mailcomposer@4.0.1: 2953 | version "4.0.1" 2954 | resolved "http://registry.npm.alibaba-inc.com/mailcomposer/download/mailcomposer-4.0.1.tgz#0e1c44b2a07cf740ee17dc149ba009f19cadfeb4" 2955 | dependencies: 2956 | buildmail "4.0.1" 2957 | libmime "3.0.0" 2958 | 2959 | mailgun-js@^0.7.0: 2960 | version "0.7.15" 2961 | resolved "http://registry.npm.alibaba-inc.com/mailgun-js/download/mailgun-js-0.7.15.tgz#ee366a20dac64c3c15c03d6c1b3e0ed795252abb" 2962 | dependencies: 2963 | async "~2.1.2" 2964 | debug "~2.2.0" 2965 | form-data "~2.1.1" 2966 | inflection "~1.10.0" 2967 | is-stream "^1.1.0" 2968 | path-proxy "~1.0.0" 2969 | proxy-agent "~2.0.0" 2970 | q "~1.4.0" 2971 | tsscmp "~1.0.0" 2972 | 2973 | map-obj@^1.0.0, map-obj@^1.0.1: 2974 | version "1.0.1" 2975 | resolved "http://registry.npm.alibaba-inc.com/map-obj/download/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2976 | 2977 | md5.js@^1.3.4: 2978 | version "1.3.4" 2979 | resolved "http://registry.npm.alibaba-inc.com/md5.js/download/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 2980 | dependencies: 2981 | hash-base "^3.0.0" 2982 | inherits "^2.0.1" 2983 | 2984 | media-typer@0.3.0: 2985 | version "0.3.0" 2986 | resolved "http://registry.npm.alibaba-inc.com/media-typer/download/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2987 | 2988 | meow@^3.3.0: 2989 | version "3.7.0" 2990 | resolved "http://registry.npm.alibaba-inc.com/meow/download/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2991 | dependencies: 2992 | camelcase-keys "^2.0.0" 2993 | decamelize "^1.1.2" 2994 | loud-rejection "^1.0.0" 2995 | map-obj "^1.0.1" 2996 | minimist "^1.1.3" 2997 | normalize-package-data "^2.3.4" 2998 | object-assign "^4.0.1" 2999 | read-pkg-up "^1.0.1" 3000 | redent "^1.0.0" 3001 | trim-newlines "^1.0.0" 3002 | 3003 | micromatch@^2.1.5: 3004 | version "2.3.11" 3005 | resolved "http://registry.npm.alibaba-inc.com/micromatch/download/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 3006 | dependencies: 3007 | arr-diff "^2.0.0" 3008 | array-unique "^0.2.1" 3009 | braces "^1.8.2" 3010 | expand-brackets "^0.1.4" 3011 | extglob "^0.3.1" 3012 | filename-regex "^2.0.0" 3013 | is-extglob "^1.0.0" 3014 | is-glob "^2.0.1" 3015 | kind-of "^3.0.2" 3016 | normalize-path "^2.0.1" 3017 | object.omit "^2.0.0" 3018 | parse-glob "^3.0.4" 3019 | regex-cache "^0.4.2" 3020 | 3021 | miller-rabin@^4.0.0: 3022 | version "4.0.1" 3023 | resolved "http://registry.npm.alibaba-inc.com/miller-rabin/download/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 3024 | dependencies: 3025 | bn.js "^4.0.0" 3026 | brorand "^1.0.1" 3027 | 3028 | mime-db@~1.30.0: 3029 | version "1.30.0" 3030 | resolved "http://registry.npm.alibaba-inc.com/mime-db/download/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 3031 | 3032 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.17, mime-types@~2.1.7: 3033 | version "2.1.17" 3034 | resolved "http://registry.npm.alibaba-inc.com/mime-types/download/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 3035 | dependencies: 3036 | mime-db "~1.30.0" 3037 | 3038 | mime@^1.3.4: 3039 | version "1.6.0" 3040 | resolved "http://registry.npm.alibaba-inc.com/mime/download/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 3041 | 3042 | minifyify@~7.3.5: 3043 | version "7.3.5" 3044 | resolved "http://registry.npm.alibaba-inc.com/minifyify/download/minifyify-7.3.5.tgz#9f4bb0c8692502478d8ee85b10bd7248570629ae" 3045 | dependencies: 3046 | concat-stream "^1.4.7" 3047 | convert-source-map "^1.0.0" 3048 | lodash.assign "^4.0.0" 3049 | lodash.bind "^4.0.0" 3050 | lodash.defaults "^4.0.0" 3051 | lodash.foreach "^4.0.0" 3052 | mkdirp "^0.5.0" 3053 | source-map "^0.5.3" 3054 | through "^2.3.6" 3055 | tmp "0.0.28" 3056 | transform-filter "^0.1.1" 3057 | uglify-js "^2.6.1" 3058 | 3059 | minimalistic-assert@^1.0.0: 3060 | version "1.0.0" 3061 | resolved "http://registry.npm.alibaba-inc.com/minimalistic-assert/download/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 3062 | 3063 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 3064 | version "1.0.1" 3065 | resolved "http://registry.npm.alibaba-inc.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 3066 | 3067 | minimatch@0.3: 3068 | version "0.3.0" 3069 | resolved "http://registry.npm.alibaba-inc.com/minimatch/download/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" 3070 | dependencies: 3071 | lru-cache "2" 3072 | sigmund "~1.0.0" 3073 | 3074 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 3075 | version "3.0.4" 3076 | resolved "http://registry.npm.alibaba-inc.com/minimatch/download/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 3077 | dependencies: 3078 | brace-expansion "^1.1.7" 3079 | 3080 | minimist@0.0.8: 3081 | version "0.0.8" 3082 | resolved "http://registry.npm.alibaba-inc.com/minimist/download/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3083 | 3084 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 3085 | version "1.2.0" 3086 | resolved "http://registry.npm.alibaba-inc.com/minimist/download/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3087 | 3088 | minimist@~0.0.1: 3089 | version "0.0.10" 3090 | resolved "http://registry.npm.alibaba-inc.com/minimist/download/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 3091 | 3092 | mkdirp@0.3.0: 3093 | version "0.3.0" 3094 | resolved "http://registry.npm.alibaba-inc.com/mkdirp/download/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 3095 | 3096 | mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 3097 | version "0.5.1" 3098 | resolved "http://registry.npm.alibaba-inc.com/mkdirp/download/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3099 | dependencies: 3100 | minimist "0.0.8" 3101 | 3102 | mocha@^2.2.5: 3103 | version "2.5.3" 3104 | resolved "http://registry.npm.alibaba-inc.com/mocha/download/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" 3105 | dependencies: 3106 | commander "2.3.0" 3107 | debug "2.2.0" 3108 | diff "1.4.0" 3109 | escape-string-regexp "1.0.2" 3110 | glob "3.2.11" 3111 | growl "1.9.2" 3112 | jade "0.26.3" 3113 | mkdirp "0.5.1" 3114 | supports-color "1.2.0" 3115 | to-iso-string "0.0.2" 3116 | 3117 | module-deps@^4.0.8: 3118 | version "4.1.1" 3119 | resolved "http://registry.npm.alibaba-inc.com/module-deps/download/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 3120 | dependencies: 3121 | JSONStream "^1.0.3" 3122 | browser-resolve "^1.7.0" 3123 | cached-path-relative "^1.0.0" 3124 | concat-stream "~1.5.0" 3125 | defined "^1.0.0" 3126 | detective "^4.0.0" 3127 | duplexer2 "^0.1.2" 3128 | inherits "^2.0.1" 3129 | parents "^1.0.0" 3130 | readable-stream "^2.0.2" 3131 | resolve "^1.1.3" 3132 | stream-combiner2 "^1.1.1" 3133 | subarg "^1.0.0" 3134 | through2 "^2.0.0" 3135 | xtend "^4.0.0" 3136 | 3137 | module-deps@^5.0.0: 3138 | version "5.0.1" 3139 | resolved "http://registry.npm.alibaba-inc.com/module-deps/download/module-deps-5.0.1.tgz#3bc47c14b0a6d925aff2ec4a177b456a96ae0396" 3140 | dependencies: 3141 | JSONStream "^1.0.3" 3142 | browser-resolve "^1.7.0" 3143 | cached-path-relative "^1.0.0" 3144 | concat-stream "~1.6.0" 3145 | defined "^1.0.0" 3146 | detective "^5.0.2" 3147 | duplexer2 "^0.1.2" 3148 | inherits "^2.0.1" 3149 | parents "^1.0.0" 3150 | readable-stream "^2.0.2" 3151 | resolve "^1.1.3" 3152 | stream-combiner2 "^1.1.1" 3153 | subarg "^1.0.0" 3154 | through2 "^2.0.0" 3155 | xtend "^4.0.0" 3156 | 3157 | ms@0.7.1: 3158 | version "0.7.1" 3159 | resolved "http://registry.npm.alibaba-inc.com/ms/download/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 3160 | 3161 | ms@2.0.0: 3162 | version "2.0.0" 3163 | resolved "http://registry.npm.alibaba-inc.com/ms/download/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3164 | 3165 | multimatch@^2.0.0: 3166 | version "2.1.0" 3167 | resolved "http://registry.npm.alibaba-inc.com/multimatch/download/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 3168 | dependencies: 3169 | array-differ "^1.0.0" 3170 | array-union "^1.0.1" 3171 | arrify "^1.0.0" 3172 | minimatch "^3.0.0" 3173 | 3174 | nan@^2.3.0: 3175 | version "2.8.0" 3176 | resolved "http://registry.npm.alibaba-inc.com/nan/download/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 3177 | 3178 | negotiator@0.6.1: 3179 | version "0.6.1" 3180 | resolved "http://registry.npm.alibaba-inc.com/negotiator/download/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 3181 | 3182 | netmask@~1.0.4: 3183 | version "1.0.6" 3184 | resolved "http://registry.npm.alibaba-inc.com/netmask/download/netmask-1.0.6.tgz#20297e89d86f6f6400f250d9f4f6b4c1945fcd35" 3185 | 3186 | node-fetch@^1.0.1: 3187 | version "1.7.3" 3188 | resolved "http://registry.npm.alibaba-inc.com/node-fetch/download/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 3189 | dependencies: 3190 | encoding "^0.1.11" 3191 | is-stream "^1.0.1" 3192 | 3193 | node-pre-gyp@^0.6.39: 3194 | version "0.6.39" 3195 | resolved "http://registry.npm.alibaba-inc.com/node-pre-gyp/download/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 3196 | dependencies: 3197 | detect-libc "^1.0.2" 3198 | hawk "3.1.3" 3199 | mkdirp "^0.5.1" 3200 | nopt "^4.0.1" 3201 | npmlog "^4.0.2" 3202 | rc "^1.1.7" 3203 | request "2.81.0" 3204 | rimraf "^2.6.1" 3205 | semver "^5.3.0" 3206 | tar "^2.2.1" 3207 | tar-pack "^3.4.0" 3208 | 3209 | node-uuid@~1.4.7: 3210 | version "1.4.8" 3211 | resolved "http://registry.npm.alibaba-inc.com/node-uuid/download/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 3212 | 3213 | nodemailer-direct-transport@3.3.2: 3214 | version "3.3.2" 3215 | resolved "http://registry.npm.alibaba-inc.com/nodemailer-direct-transport/download/nodemailer-direct-transport-3.3.2.tgz#e96fafb90358560947e569017d97e60738a50a86" 3216 | dependencies: 3217 | nodemailer-shared "1.1.0" 3218 | smtp-connection "2.12.0" 3219 | 3220 | nodemailer-fetch@1.6.0: 3221 | version "1.6.0" 3222 | resolved "http://registry.npm.alibaba-inc.com/nodemailer-fetch/download/nodemailer-fetch-1.6.0.tgz#79c4908a1c0f5f375b73fe888da9828f6dc963a4" 3223 | 3224 | nodemailer-shared@1.1.0: 3225 | version "1.1.0" 3226 | resolved "http://registry.npm.alibaba-inc.com/nodemailer-shared/download/nodemailer-shared-1.1.0.tgz#cf5994e2fd268d00f5cf0fa767a08169edb07ec0" 3227 | dependencies: 3228 | nodemailer-fetch "1.6.0" 3229 | 3230 | nodemailer-smtp-pool@2.8.2: 3231 | version "2.8.2" 3232 | resolved "http://registry.npm.alibaba-inc.com/nodemailer-smtp-pool/download/nodemailer-smtp-pool-2.8.2.tgz#2eb94d6cf85780b1b4725ce853b9cbd5e8da8c72" 3233 | dependencies: 3234 | nodemailer-shared "1.1.0" 3235 | nodemailer-wellknown "0.1.10" 3236 | smtp-connection "2.12.0" 3237 | 3238 | nodemailer-smtp-transport@2.7.2: 3239 | version "2.7.2" 3240 | resolved "http://registry.npm.alibaba-inc.com/nodemailer-smtp-transport/download/nodemailer-smtp-transport-2.7.2.tgz#03d71c76314f14ac7dbc7bf033a6a6d16d67fb77" 3241 | dependencies: 3242 | nodemailer-shared "1.1.0" 3243 | nodemailer-wellknown "0.1.10" 3244 | smtp-connection "2.12.0" 3245 | 3246 | nodemailer-wellknown@0.1.10: 3247 | version "0.1.10" 3248 | resolved "http://registry.npm.alibaba-inc.com/nodemailer-wellknown/download/nodemailer-wellknown-0.1.10.tgz#586db8101db30cb4438eb546737a41aad0cf13d5" 3249 | 3250 | nodemailer@^2.5.0: 3251 | version "2.7.2" 3252 | resolved "http://registry.npm.alibaba-inc.com/nodemailer/download/nodemailer-2.7.2.tgz#f242e649aeeae39b6c7ed740ef7b061c404d30f9" 3253 | dependencies: 3254 | libmime "3.0.0" 3255 | mailcomposer "4.0.1" 3256 | nodemailer-direct-transport "3.3.2" 3257 | nodemailer-shared "1.1.0" 3258 | nodemailer-smtp-pool "2.8.2" 3259 | nodemailer-smtp-transport "2.7.2" 3260 | socks "1.1.9" 3261 | 3262 | nopt@3.x: 3263 | version "3.0.6" 3264 | resolved "http://registry.npm.alibaba-inc.com/nopt/download/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 3265 | dependencies: 3266 | abbrev "1" 3267 | 3268 | nopt@^4.0.1: 3269 | version "4.0.1" 3270 | resolved "http://registry.npm.alibaba-inc.com/nopt/download/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3271 | dependencies: 3272 | abbrev "1" 3273 | osenv "^0.1.4" 3274 | 3275 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 3276 | version "2.4.0" 3277 | resolved "http://registry.npm.alibaba-inc.com/normalize-package-data/download/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 3278 | dependencies: 3279 | hosted-git-info "^2.1.4" 3280 | is-builtin-module "^1.0.0" 3281 | semver "2 || 3 || 4 || 5" 3282 | validate-npm-package-license "^3.0.1" 3283 | 3284 | normalize-path@^2.0.0, normalize-path@^2.0.1: 3285 | version "2.1.1" 3286 | resolved "http://registry.npm.alibaba-inc.com/normalize-path/download/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3287 | dependencies: 3288 | remove-trailing-separator "^1.0.1" 3289 | 3290 | npmlog@^4.0.2: 3291 | version "4.1.2" 3292 | resolved "http://registry.npm.alibaba-inc.com/npmlog/download/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 3293 | dependencies: 3294 | are-we-there-yet "~1.1.2" 3295 | console-control-strings "~1.1.0" 3296 | gauge "~2.7.3" 3297 | set-blocking "~2.0.0" 3298 | 3299 | null-check@^1.0.0: 3300 | version "1.0.0" 3301 | resolved "http://registry.npm.alibaba-inc.com/null-check/download/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 3302 | 3303 | number-is-nan@^1.0.0: 3304 | version "1.0.1" 3305 | resolved "http://registry.npm.alibaba-inc.com/number-is-nan/download/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3306 | 3307 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 3308 | version "0.8.2" 3309 | resolved "http://registry.npm.alibaba-inc.com/oauth-sign/download/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3310 | 3311 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 3312 | version "4.1.1" 3313 | resolved "http://registry.npm.alibaba-inc.com/object-assign/download/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3314 | 3315 | object-component@0.0.3: 3316 | version "0.0.3" 3317 | resolved "http://registry.npm.alibaba-inc.com/object-component/download/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 3318 | 3319 | object.omit@^2.0.0: 3320 | version "2.0.1" 3321 | resolved "http://registry.npm.alibaba-inc.com/object.omit/download/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3322 | dependencies: 3323 | for-own "^0.1.4" 3324 | is-extendable "^0.1.1" 3325 | 3326 | on-finished@~2.3.0: 3327 | version "2.3.0" 3328 | resolved "http://registry.npm.alibaba-inc.com/on-finished/download/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 3329 | dependencies: 3330 | ee-first "1.1.1" 3331 | 3332 | once@1.x, once@^1.3.0, once@^1.3.3: 3333 | version "1.4.0" 3334 | resolved "http://registry.npm.alibaba-inc.com/once/download/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3335 | dependencies: 3336 | wrappy "1" 3337 | 3338 | optimist@^0.6.1: 3339 | version "0.6.1" 3340 | resolved "http://registry.npm.alibaba-inc.com/optimist/download/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3341 | dependencies: 3342 | minimist "~0.0.1" 3343 | wordwrap "~0.0.2" 3344 | 3345 | optionator@^0.8.1: 3346 | version "0.8.2" 3347 | resolved "http://registry.npm.alibaba-inc.com/optionator/download/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3348 | dependencies: 3349 | deep-is "~0.1.3" 3350 | fast-levenshtein "~2.0.4" 3351 | levn "~0.3.0" 3352 | prelude-ls "~1.1.2" 3353 | type-check "~0.3.2" 3354 | wordwrap "~1.0.0" 3355 | 3356 | os-browserify@~0.3.0: 3357 | version "0.3.0" 3358 | resolved "http://registry.npm.alibaba-inc.com/os-browserify/download/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 3359 | 3360 | os-homedir@^1.0.0: 3361 | version "1.0.2" 3362 | resolved "http://registry.npm.alibaba-inc.com/os-homedir/download/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3363 | 3364 | os-shim@^0.1.3: 3365 | version "0.1.3" 3366 | resolved "http://registry.npm.alibaba-inc.com/os-shim/download/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 3367 | 3368 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: 3369 | version "1.0.2" 3370 | resolved "http://registry.npm.alibaba-inc.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3371 | 3372 | osenv@^0.1.4: 3373 | version "0.1.4" 3374 | resolved "http://registry.npm.alibaba-inc.com/osenv/download/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3375 | dependencies: 3376 | os-homedir "^1.0.0" 3377 | os-tmpdir "^1.0.0" 3378 | 3379 | outpipe@^1.1.0: 3380 | version "1.1.1" 3381 | resolved "http://registry.npm.alibaba-inc.com/outpipe/download/outpipe-1.1.1.tgz#50cf8616365e87e031e29a5ec9339a3da4725fa2" 3382 | dependencies: 3383 | shell-quote "^1.4.2" 3384 | 3385 | pac-proxy-agent@1: 3386 | version "1.1.0" 3387 | resolved "http://registry.npm.alibaba-inc.com/pac-proxy-agent/download/pac-proxy-agent-1.1.0.tgz#34a385dfdf61d2f0ecace08858c745d3e791fd4d" 3388 | dependencies: 3389 | agent-base "2" 3390 | debug "2" 3391 | extend "3" 3392 | get-uri "2" 3393 | http-proxy-agent "1" 3394 | https-proxy-agent "1" 3395 | pac-resolver "~2.0.0" 3396 | raw-body "2" 3397 | socks-proxy-agent "2" 3398 | 3399 | pac-resolver@~2.0.0: 3400 | version "2.0.0" 3401 | resolved "http://registry.npm.alibaba-inc.com/pac-resolver/download/pac-resolver-2.0.0.tgz#99b88d2f193fbdeefc1c9a529c1f3260ab5277cd" 3402 | dependencies: 3403 | co "~3.0.6" 3404 | degenerator "~1.0.2" 3405 | ip "1.0.1" 3406 | netmask "~1.0.4" 3407 | thunkify "~2.1.1" 3408 | 3409 | pako@~1.0.5: 3410 | version "1.0.6" 3411 | resolved "http://registry.npm.alibaba-inc.com/pako/download/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 3412 | 3413 | parents@^1.0.0, parents@^1.0.1: 3414 | version "1.0.1" 3415 | resolved "http://registry.npm.alibaba-inc.com/parents/download/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 3416 | dependencies: 3417 | path-platform "~0.11.15" 3418 | 3419 | parse-asn1@^5.0.0: 3420 | version "5.1.0" 3421 | resolved "http://registry.npm.alibaba-inc.com/parse-asn1/download/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 3422 | dependencies: 3423 | asn1.js "^4.0.0" 3424 | browserify-aes "^1.0.0" 3425 | create-hash "^1.1.0" 3426 | evp_bytestokey "^1.0.0" 3427 | pbkdf2 "^3.0.3" 3428 | 3429 | parse-glob@^3.0.4: 3430 | version "3.0.4" 3431 | resolved "http://registry.npm.alibaba-inc.com/parse-glob/download/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3432 | dependencies: 3433 | glob-base "^0.3.0" 3434 | is-dotfile "^1.0.0" 3435 | is-extglob "^1.0.0" 3436 | is-glob "^2.0.0" 3437 | 3438 | parse-json@^2.2.0: 3439 | version "2.2.0" 3440 | resolved "http://registry.npm.alibaba-inc.com/parse-json/download/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3441 | dependencies: 3442 | error-ex "^1.2.0" 3443 | 3444 | parseqs@0.0.5: 3445 | version "0.0.5" 3446 | resolved "http://registry.npm.alibaba-inc.com/parseqs/download/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 3447 | dependencies: 3448 | better-assert "~1.0.0" 3449 | 3450 | parseuri@0.0.5: 3451 | version "0.0.5" 3452 | resolved "http://registry.npm.alibaba-inc.com/parseuri/download/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 3453 | dependencies: 3454 | better-assert "~1.0.0" 3455 | 3456 | parseurl@~1.3.2: 3457 | version "1.3.2" 3458 | resolved "http://registry.npm.alibaba-inc.com/parseurl/download/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 3459 | 3460 | path-browserify@~0.0.0: 3461 | version "0.0.0" 3462 | resolved "http://registry.npm.alibaba-inc.com/path-browserify/download/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3463 | 3464 | path-exists@^2.0.0: 3465 | version "2.1.0" 3466 | resolved "http://registry.npm.alibaba-inc.com/path-exists/download/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3467 | dependencies: 3468 | pinkie-promise "^2.0.0" 3469 | 3470 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3471 | version "1.0.1" 3472 | resolved "http://registry.npm.alibaba-inc.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3473 | 3474 | path-parse@^1.0.5: 3475 | version "1.0.5" 3476 | resolved "http://registry.npm.alibaba-inc.com/path-parse/download/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3477 | 3478 | path-platform@~0.11.15: 3479 | version "0.11.15" 3480 | resolved "http://registry.npm.alibaba-inc.com/path-platform/download/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 3481 | 3482 | path-proxy@~1.0.0: 3483 | version "1.0.0" 3484 | resolved "http://registry.npm.alibaba-inc.com/path-proxy/download/path-proxy-1.0.0.tgz#18e8a36859fc9d2f1a53b48dee138543c020de5e" 3485 | dependencies: 3486 | inflection "~1.3.0" 3487 | 3488 | path-type@^1.0.0: 3489 | version "1.1.0" 3490 | resolved "http://registry.npm.alibaba-inc.com/path-type/download/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3491 | dependencies: 3492 | graceful-fs "^4.1.2" 3493 | pify "^2.0.0" 3494 | pinkie-promise "^2.0.0" 3495 | 3496 | pbkdf2@^3.0.3: 3497 | version "3.0.14" 3498 | resolved "http://registry.npm.alibaba-inc.com/pbkdf2/download/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 3499 | dependencies: 3500 | create-hash "^1.1.2" 3501 | create-hmac "^1.1.4" 3502 | ripemd160 "^2.0.1" 3503 | safe-buffer "^5.0.1" 3504 | sha.js "^2.4.8" 3505 | 3506 | performance-now@^0.2.0: 3507 | version "0.2.0" 3508 | resolved "http://registry.npm.alibaba-inc.com/performance-now/download/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3509 | 3510 | performance-now@^2.1.0: 3511 | version "2.1.0" 3512 | resolved "http://registry.npm.alibaba-inc.com/performance-now/download/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3513 | 3514 | pify@^2.0.0: 3515 | version "2.3.0" 3516 | resolved "http://registry.npm.alibaba-inc.com/pify/download/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3517 | 3518 | pinkie-promise@^2.0.0: 3519 | version "2.0.1" 3520 | resolved "http://registry.npm.alibaba-inc.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3521 | dependencies: 3522 | pinkie "^2.0.0" 3523 | 3524 | pinkie@^2.0.0: 3525 | version "2.0.4" 3526 | resolved "http://registry.npm.alibaba-inc.com/pinkie/download/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3527 | 3528 | prelude-ls@~1.1.2: 3529 | version "1.1.2" 3530 | resolved "http://registry.npm.alibaba-inc.com/prelude-ls/download/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3531 | 3532 | preserve@^0.2.0: 3533 | version "0.2.0" 3534 | resolved "http://registry.npm.alibaba-inc.com/preserve/download/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3535 | 3536 | private@^0.1.6, private@^0.1.7: 3537 | version "0.1.8" 3538 | resolved "http://registry.npm.alibaba-inc.com/private/download/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3539 | 3540 | process-nextick-args@~1.0.6: 3541 | version "1.0.7" 3542 | resolved "http://registry.npm.alibaba-inc.com/process-nextick-args/download/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3543 | 3544 | process@~0.11.0: 3545 | version "0.11.10" 3546 | resolved "http://registry.npm.alibaba-inc.com/process/download/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 3547 | 3548 | promise@^7.1.1: 3549 | version "7.3.1" 3550 | resolved "http://registry.npm.alibaba-inc.com/promise/download/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 3551 | dependencies: 3552 | asap "~2.0.3" 3553 | 3554 | prop-types@^15.6.0: 3555 | version "15.6.0" 3556 | resolved "http://registry.npm.alibaba-inc.com/prop-types/download/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 3557 | dependencies: 3558 | fbjs "^0.8.16" 3559 | loose-envify "^1.3.1" 3560 | object-assign "^4.1.1" 3561 | 3562 | proxy-agent@~2.0.0: 3563 | version "2.0.0" 3564 | resolved "http://registry.npm.alibaba-inc.com/proxy-agent/download/proxy-agent-2.0.0.tgz#57eb5347aa805d74ec681cb25649dba39c933499" 3565 | dependencies: 3566 | agent-base "2" 3567 | debug "2" 3568 | extend "3" 3569 | http-proxy-agent "1" 3570 | https-proxy-agent "1" 3571 | lru-cache "~2.6.5" 3572 | pac-proxy-agent "1" 3573 | socks-proxy-agent "2" 3574 | 3575 | public-encrypt@^4.0.0: 3576 | version "4.0.0" 3577 | resolved "http://registry.npm.alibaba-inc.com/public-encrypt/download/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3578 | dependencies: 3579 | bn.js "^4.1.0" 3580 | browserify-rsa "^4.0.0" 3581 | create-hash "^1.1.0" 3582 | parse-asn1 "^5.0.0" 3583 | randombytes "^2.0.1" 3584 | 3585 | punycode@1.3.2: 3586 | version "1.3.2" 3587 | resolved "http://registry.npm.alibaba-inc.com/punycode/download/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3588 | 3589 | punycode@1.4.1, punycode@^1.3.2, punycode@^1.4.1: 3590 | version "1.4.1" 3591 | resolved "http://registry.npm.alibaba-inc.com/punycode/download/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3592 | 3593 | q@~1.4.0: 3594 | version "1.4.1" 3595 | resolved "http://registry.npm.alibaba-inc.com/q/download/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 3596 | 3597 | qjobs@^1.1.4: 3598 | version "1.1.5" 3599 | resolved "http://registry.npm.alibaba-inc.com/qjobs/download/qjobs-1.1.5.tgz#659de9f2cf8dcc27a1481276f205377272382e73" 3600 | 3601 | qs@6.5.1, qs@~6.5.1: 3602 | version "6.5.1" 3603 | resolved "http://registry.npm.alibaba-inc.com/qs/download/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3604 | 3605 | qs@~6.2.0: 3606 | version "6.2.3" 3607 | resolved "http://registry.npm.alibaba-inc.com/qs/download/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" 3608 | 3609 | qs@~6.4.0: 3610 | version "6.4.0" 3611 | resolved "http://registry.npm.alibaba-inc.com/qs/download/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3612 | 3613 | querystring-es3@~0.2.0: 3614 | version "0.2.1" 3615 | resolved "http://registry.npm.alibaba-inc.com/querystring-es3/download/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3616 | 3617 | querystring@0.2.0: 3618 | version "0.2.0" 3619 | resolved "http://registry.npm.alibaba-inc.com/querystring/download/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3620 | 3621 | randomatic@^1.1.3: 3622 | version "1.1.7" 3623 | resolved "http://registry.npm.alibaba-inc.com/randomatic/download/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3624 | dependencies: 3625 | is-number "^3.0.0" 3626 | kind-of "^4.0.0" 3627 | 3628 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 3629 | version "2.0.6" 3630 | resolved "http://registry.npm.alibaba-inc.com/randombytes/download/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 3631 | dependencies: 3632 | safe-buffer "^5.1.0" 3633 | 3634 | randomfill@^1.0.3: 3635 | version "1.0.3" 3636 | resolved "http://registry.npm.alibaba-inc.com/randomfill/download/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 3637 | dependencies: 3638 | randombytes "^2.0.5" 3639 | safe-buffer "^5.1.0" 3640 | 3641 | range-parser@^1.2.0: 3642 | version "1.2.0" 3643 | resolved "http://registry.npm.alibaba-inc.com/range-parser/download/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3644 | 3645 | raw-body@2, raw-body@2.3.2: 3646 | version "2.3.2" 3647 | resolved "http://registry.npm.alibaba-inc.com/raw-body/download/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 3648 | dependencies: 3649 | bytes "3.0.0" 3650 | http-errors "1.6.2" 3651 | iconv-lite "0.4.19" 3652 | unpipe "1.0.0" 3653 | 3654 | rc@^1.1.7: 3655 | version "1.2.3" 3656 | resolved "http://registry.npm.alibaba-inc.com/rc/download/rc-1.2.3.tgz#51575a900f8dd68381c710b4712c2154c3e2035b" 3657 | dependencies: 3658 | deep-extend "~0.4.0" 3659 | ini "~1.3.0" 3660 | minimist "^1.2.0" 3661 | strip-json-comments "~2.0.1" 3662 | 3663 | react-dom@^16.0.0: 3664 | version "16.2.0" 3665 | resolved "http://registry.npm.alibaba-inc.com/react-dom/download/react-dom-16.2.0.tgz#69003178601c0ca19b709b33a83369fe6124c044" 3666 | dependencies: 3667 | fbjs "^0.8.16" 3668 | loose-envify "^1.1.0" 3669 | object-assign "^4.1.1" 3670 | prop-types "^15.6.0" 3671 | 3672 | react@^16.0.0: 3673 | version "16.2.0" 3674 | resolved "http://registry.npm.alibaba-inc.com/react/download/react-16.2.0.tgz#a31bd2dab89bff65d42134fa187f24d054c273ba" 3675 | dependencies: 3676 | fbjs "^0.8.16" 3677 | loose-envify "^1.1.0" 3678 | object-assign "^4.1.1" 3679 | prop-types "^15.6.0" 3680 | 3681 | read-only-stream@^2.0.0: 3682 | version "2.0.0" 3683 | resolved "http://registry.npm.alibaba-inc.com/read-only-stream/download/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 3684 | dependencies: 3685 | readable-stream "^2.0.2" 3686 | 3687 | read-pkg-up@^1.0.1: 3688 | version "1.0.1" 3689 | resolved "http://registry.npm.alibaba-inc.com/read-pkg-up/download/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3690 | dependencies: 3691 | find-up "^1.0.0" 3692 | read-pkg "^1.0.0" 3693 | 3694 | read-pkg@^1.0.0: 3695 | version "1.1.0" 3696 | resolved "http://registry.npm.alibaba-inc.com/read-pkg/download/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3697 | dependencies: 3698 | load-json-file "^1.0.0" 3699 | normalize-package-data "^2.3.2" 3700 | path-type "^1.0.0" 3701 | 3702 | readable-stream@1.1.x: 3703 | version "1.1.14" 3704 | resolved "http://registry.npm.alibaba-inc.com/readable-stream/download/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 3705 | dependencies: 3706 | core-util-is "~1.0.0" 3707 | inherits "~2.0.1" 3708 | isarray "0.0.1" 3709 | string_decoder "~0.10.x" 3710 | 3711 | readable-stream@2, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.6, readable-stream@^2.3.0: 3712 | version "2.3.3" 3713 | resolved "http://registry.npm.alibaba-inc.com/readable-stream/download/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3714 | dependencies: 3715 | core-util-is "~1.0.0" 3716 | inherits "~2.0.3" 3717 | isarray "~1.0.0" 3718 | process-nextick-args "~1.0.6" 3719 | safe-buffer "~5.1.1" 3720 | string_decoder "~1.0.3" 3721 | util-deprecate "~1.0.1" 3722 | 3723 | readable-stream@~2.0.0, readable-stream@~2.0.5: 3724 | version "2.0.6" 3725 | resolved "http://registry.npm.alibaba-inc.com/readable-stream/download/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3726 | dependencies: 3727 | core-util-is "~1.0.0" 3728 | inherits "~2.0.1" 3729 | isarray "~1.0.0" 3730 | process-nextick-args "~1.0.6" 3731 | string_decoder "~0.10.x" 3732 | util-deprecate "~1.0.1" 3733 | 3734 | readdirp@^2.0.0: 3735 | version "2.1.0" 3736 | resolved "http://registry.npm.alibaba-inc.com/readdirp/download/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3737 | dependencies: 3738 | graceful-fs "^4.1.2" 3739 | minimatch "^3.0.2" 3740 | readable-stream "^2.0.2" 3741 | set-immediate-shim "^1.0.1" 3742 | 3743 | redent@^1.0.0: 3744 | version "1.0.0" 3745 | resolved "http://registry.npm.alibaba-inc.com/redent/download/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3746 | dependencies: 3747 | indent-string "^2.1.0" 3748 | strip-indent "^1.0.1" 3749 | 3750 | redis-commands@^1.2.0: 3751 | version "1.3.1" 3752 | resolved "http://registry.npm.alibaba-inc.com/redis-commands/download/redis-commands-1.3.1.tgz#81d826f45fa9c8b2011f4cd7a0fe597d241d442b" 3753 | 3754 | redis-parser@^2.6.0: 3755 | version "2.6.0" 3756 | resolved "http://registry.npm.alibaba-inc.com/redis-parser/download/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" 3757 | 3758 | redis@^2.7.1: 3759 | version "2.8.0" 3760 | resolved "http://registry.npm.alibaba-inc.com/redis/download/redis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" 3761 | dependencies: 3762 | double-ended-queue "^2.1.0-0" 3763 | redis-commands "^1.2.0" 3764 | redis-parser "^2.6.0" 3765 | 3766 | regenerate@^1.2.1: 3767 | version "1.3.3" 3768 | resolved "http://registry.npm.alibaba-inc.com/regenerate/download/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 3769 | 3770 | regenerator-runtime@^0.11.0: 3771 | version "0.11.1" 3772 | resolved "http://registry.npm.alibaba-inc.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3773 | 3774 | regenerator-transform@^0.10.0: 3775 | version "0.10.1" 3776 | resolved "http://registry.npm.alibaba-inc.com/regenerator-transform/download/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3777 | dependencies: 3778 | babel-runtime "^6.18.0" 3779 | babel-types "^6.19.0" 3780 | private "^0.1.6" 3781 | 3782 | regex-cache@^0.4.2: 3783 | version "0.4.4" 3784 | resolved "http://registry.npm.alibaba-inc.com/regex-cache/download/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3785 | dependencies: 3786 | is-equal-shallow "^0.1.3" 3787 | 3788 | regexpu-core@^2.0.0: 3789 | version "2.0.0" 3790 | resolved "http://registry.npm.alibaba-inc.com/regexpu-core/download/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3791 | dependencies: 3792 | regenerate "^1.2.1" 3793 | regjsgen "^0.2.0" 3794 | regjsparser "^0.1.4" 3795 | 3796 | regjsgen@^0.2.0: 3797 | version "0.2.0" 3798 | resolved "http://registry.npm.alibaba-inc.com/regjsgen/download/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3799 | 3800 | regjsparser@^0.1.4: 3801 | version "0.1.5" 3802 | resolved "http://registry.npm.alibaba-inc.com/regjsparser/download/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3803 | dependencies: 3804 | jsesc "~0.5.0" 3805 | 3806 | remove-trailing-separator@^1.0.1: 3807 | version "1.1.0" 3808 | resolved "http://registry.npm.alibaba-inc.com/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3809 | 3810 | repeat-element@^1.1.2: 3811 | version "1.1.2" 3812 | resolved "http://registry.npm.alibaba-inc.com/repeat-element/download/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3813 | 3814 | repeat-string@^0.2.2: 3815 | version "0.2.2" 3816 | resolved "http://registry.npm.alibaba-inc.com/repeat-string/download/repeat-string-0.2.2.tgz#c7a8d3236068362059a7e4651fc6884e8b1fb4ae" 3817 | 3818 | repeat-string@^1.5.2: 3819 | version "1.6.1" 3820 | resolved "http://registry.npm.alibaba-inc.com/repeat-string/download/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3821 | 3822 | repeating@^2.0.0: 3823 | version "2.0.1" 3824 | resolved "http://registry.npm.alibaba-inc.com/repeating/download/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3825 | dependencies: 3826 | is-finite "^1.0.0" 3827 | 3828 | request@2.75.x: 3829 | version "2.75.0" 3830 | resolved "http://registry.npm.alibaba-inc.com/request/download/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" 3831 | dependencies: 3832 | aws-sign2 "~0.6.0" 3833 | aws4 "^1.2.1" 3834 | bl "~1.1.2" 3835 | caseless "~0.11.0" 3836 | combined-stream "~1.0.5" 3837 | extend "~3.0.0" 3838 | forever-agent "~0.6.1" 3839 | form-data "~2.0.0" 3840 | har-validator "~2.0.6" 3841 | hawk "~3.1.3" 3842 | http-signature "~1.1.0" 3843 | is-typedarray "~1.0.0" 3844 | isstream "~0.1.2" 3845 | json-stringify-safe "~5.0.1" 3846 | mime-types "~2.1.7" 3847 | node-uuid "~1.4.7" 3848 | oauth-sign "~0.8.1" 3849 | qs "~6.2.0" 3850 | stringstream "~0.0.4" 3851 | tough-cookie "~2.3.0" 3852 | tunnel-agent "~0.4.1" 3853 | 3854 | request@2.81.0: 3855 | version "2.81.0" 3856 | resolved "http://registry.npm.alibaba-inc.com/request/download/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3857 | dependencies: 3858 | aws-sign2 "~0.6.0" 3859 | aws4 "^1.2.1" 3860 | caseless "~0.12.0" 3861 | combined-stream "~1.0.5" 3862 | extend "~3.0.0" 3863 | forever-agent "~0.6.1" 3864 | form-data "~2.1.1" 3865 | har-validator "~4.2.1" 3866 | hawk "~3.1.3" 3867 | http-signature "~1.1.0" 3868 | is-typedarray "~1.0.0" 3869 | isstream "~0.1.2" 3870 | json-stringify-safe "~5.0.1" 3871 | mime-types "~2.1.7" 3872 | oauth-sign "~0.8.1" 3873 | performance-now "^0.2.0" 3874 | qs "~6.4.0" 3875 | safe-buffer "^5.0.1" 3876 | stringstream "~0.0.4" 3877 | tough-cookie "~2.3.0" 3878 | tunnel-agent "^0.6.0" 3879 | uuid "^3.0.0" 3880 | 3881 | request@^2.0.0, request@^2.74.0: 3882 | version "2.83.0" 3883 | resolved "http://registry.npm.alibaba-inc.com/request/download/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 3884 | dependencies: 3885 | aws-sign2 "~0.7.0" 3886 | aws4 "^1.6.0" 3887 | caseless "~0.12.0" 3888 | combined-stream "~1.0.5" 3889 | extend "~3.0.1" 3890 | forever-agent "~0.6.1" 3891 | form-data "~2.3.1" 3892 | har-validator "~5.0.3" 3893 | hawk "~6.0.2" 3894 | http-signature "~1.2.0" 3895 | is-typedarray "~1.0.0" 3896 | isstream "~0.1.2" 3897 | json-stringify-safe "~5.0.1" 3898 | mime-types "~2.1.17" 3899 | oauth-sign "~0.8.2" 3900 | performance-now "^2.1.0" 3901 | qs "~6.5.1" 3902 | safe-buffer "^5.1.1" 3903 | stringstream "~0.0.5" 3904 | tough-cookie "~2.3.3" 3905 | tunnel-agent "^0.6.0" 3906 | uuid "^3.1.0" 3907 | 3908 | requestretry@^1.2.2: 3909 | version "1.12.2" 3910 | resolved "http://registry.npm.alibaba-inc.com/requestretry/download/requestretry-1.12.2.tgz#13ce38a4ce4e809f3c9ec6d4ca3b7b9ba4acf26c" 3911 | dependencies: 3912 | extend "^3.0.0" 3913 | lodash "^4.15.0" 3914 | request "^2.74.0" 3915 | when "^3.7.7" 3916 | 3917 | requires-port@1.x.x: 3918 | version "1.0.0" 3919 | resolved "http://registry.npm.alibaba-inc.com/requires-port/download/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3920 | 3921 | resolve@1.1.7, resolve@1.1.x: 3922 | version "1.1.7" 3923 | resolved "http://registry.npm.alibaba-inc.com/resolve/download/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3924 | 3925 | resolve@^1.1.3, resolve@^1.1.4: 3926 | version "1.5.0" 3927 | resolved "http://registry.npm.alibaba-inc.com/resolve/download/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3928 | dependencies: 3929 | path-parse "^1.0.5" 3930 | 3931 | right-align@^0.1.1: 3932 | version "0.1.3" 3933 | resolved "http://registry.npm.alibaba-inc.com/right-align/download/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3934 | dependencies: 3935 | align-text "^0.1.1" 3936 | 3937 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.0, rimraf@^2.6.1: 3938 | version "2.6.2" 3939 | resolved "http://registry.npm.alibaba-inc.com/rimraf/download/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3940 | dependencies: 3941 | glob "^7.0.5" 3942 | 3943 | ripemd160@^2.0.0, ripemd160@^2.0.1: 3944 | version "2.0.1" 3945 | resolved "http://registry.npm.alibaba-inc.com/ripemd160/download/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 3946 | dependencies: 3947 | hash-base "^2.0.0" 3948 | inherits "^2.0.1" 3949 | 3950 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3951 | version "5.1.1" 3952 | resolved "http://registry.npm.alibaba-inc.com/safe-buffer/download/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3953 | 3954 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3955 | version "5.4.1" 3956 | resolved "http://registry.npm.alibaba-inc.com/semver/download/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3957 | 3958 | semver@~5.0.1: 3959 | version "5.0.3" 3960 | resolved "http://registry.npm.alibaba-inc.com/semver/download/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" 3961 | 3962 | set-blocking@~2.0.0: 3963 | version "2.0.0" 3964 | resolved "http://registry.npm.alibaba-inc.com/set-blocking/download/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3965 | 3966 | set-immediate-shim@^1.0.1: 3967 | version "1.0.1" 3968 | resolved "http://registry.npm.alibaba-inc.com/set-immediate-shim/download/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3969 | 3970 | setimmediate@^1.0.5: 3971 | version "1.0.5" 3972 | resolved "http://registry.npm.alibaba-inc.com/setimmediate/download/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3973 | 3974 | setprototypeof@1.0.3: 3975 | version "1.0.3" 3976 | resolved "http://registry.npm.alibaba-inc.com/setprototypeof/download/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3977 | 3978 | sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: 3979 | version "2.4.9" 3980 | resolved "http://registry.npm.alibaba-inc.com/sha.js/download/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 3981 | dependencies: 3982 | inherits "^2.0.1" 3983 | safe-buffer "^5.0.1" 3984 | 3985 | shasum@^1.0.0: 3986 | version "1.0.2" 3987 | resolved "http://registry.npm.alibaba-inc.com/shasum/download/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 3988 | dependencies: 3989 | json-stable-stringify "~0.0.0" 3990 | sha.js "~2.4.4" 3991 | 3992 | shell-quote@^1.4.2, shell-quote@^1.6.1: 3993 | version "1.6.1" 3994 | resolved "http://registry.npm.alibaba-inc.com/shell-quote/download/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3995 | dependencies: 3996 | array-filter "~0.0.0" 3997 | array-map "~0.0.0" 3998 | array-reduce "~0.0.0" 3999 | jsonify "~0.0.0" 4000 | 4001 | sigmund@~1.0.0: 4002 | version "1.0.1" 4003 | resolved "http://registry.npm.alibaba-inc.com/sigmund/download/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 4004 | 4005 | signal-exit@^3.0.0: 4006 | version "3.0.2" 4007 | resolved "http://registry.npm.alibaba-inc.com/signal-exit/download/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 4008 | 4009 | slack-node@~0.2.0: 4010 | version "0.2.0" 4011 | resolved "http://registry.npm.alibaba-inc.com/slack-node/download/slack-node-0.2.0.tgz#de4b8dddaa8b793f61dbd2938104fdabf37dfa30" 4012 | dependencies: 4013 | requestretry "^1.2.2" 4014 | 4015 | slash@^1.0.0: 4016 | version "1.0.0" 4017 | resolved "http://registry.npm.alibaba-inc.com/slash/download/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 4018 | 4019 | smart-buffer@^1.0.13, smart-buffer@^1.0.4: 4020 | version "1.1.15" 4021 | resolved "http://registry.npm.alibaba-inc.com/smart-buffer/download/smart-buffer-1.1.15.tgz#7f114b5b65fab3e2a35aa775bb12f0d1c649bf16" 4022 | 4023 | smtp-connection@2.12.0: 4024 | version "2.12.0" 4025 | resolved "http://registry.npm.alibaba-inc.com/smtp-connection/download/smtp-connection-2.12.0.tgz#d76ef9127cb23c2259edb1e8349c2e8d5e2d74c1" 4026 | dependencies: 4027 | httpntlm "1.6.1" 4028 | nodemailer-shared "1.1.0" 4029 | 4030 | sntp@1.x.x: 4031 | version "1.0.9" 4032 | resolved "http://registry.npm.alibaba-inc.com/sntp/download/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 4033 | dependencies: 4034 | hoek "2.x.x" 4035 | 4036 | sntp@2.x.x: 4037 | version "2.1.0" 4038 | resolved "http://registry.npm.alibaba-inc.com/sntp/download/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 4039 | dependencies: 4040 | hoek "4.x.x" 4041 | 4042 | socket.io-adapter@~1.1.0: 4043 | version "1.1.1" 4044 | resolved "http://registry.npm.alibaba-inc.com/socket.io-adapter/download/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" 4045 | 4046 | socket.io-client@2.0.4: 4047 | version "2.0.4" 4048 | resolved "http://registry.npm.alibaba-inc.com/socket.io-client/download/socket.io-client-2.0.4.tgz#0918a552406dc5e540b380dcd97afc4a64332f8e" 4049 | dependencies: 4050 | backo2 "1.0.2" 4051 | base64-arraybuffer "0.1.5" 4052 | component-bind "1.0.0" 4053 | component-emitter "1.2.1" 4054 | debug "~2.6.4" 4055 | engine.io-client "~3.1.0" 4056 | has-cors "1.1.0" 4057 | indexof "0.0.1" 4058 | object-component "0.0.3" 4059 | parseqs "0.0.5" 4060 | parseuri "0.0.5" 4061 | socket.io-parser "~3.1.1" 4062 | to-array "0.1.4" 4063 | 4064 | socket.io-parser@~3.1.1: 4065 | version "3.1.2" 4066 | resolved "http://registry.npm.alibaba-inc.com/socket.io-parser/download/socket.io-parser-3.1.2.tgz#dbc2282151fc4faebbe40aeedc0772eba619f7f2" 4067 | dependencies: 4068 | component-emitter "1.2.1" 4069 | debug "~2.6.4" 4070 | has-binary2 "~1.0.2" 4071 | isarray "2.0.1" 4072 | 4073 | socket.io@2.0.4: 4074 | version "2.0.4" 4075 | resolved "http://registry.npm.alibaba-inc.com/socket.io/download/socket.io-2.0.4.tgz#c1a4590ceff87ecf13c72652f046f716b29e6014" 4076 | dependencies: 4077 | debug "~2.6.6" 4078 | engine.io "~3.1.0" 4079 | socket.io-adapter "~1.1.0" 4080 | socket.io-client "2.0.4" 4081 | socket.io-parser "~3.1.1" 4082 | 4083 | socks-proxy-agent@2: 4084 | version "2.1.1" 4085 | resolved "http://registry.npm.alibaba-inc.com/socks-proxy-agent/download/socks-proxy-agent-2.1.1.tgz#86ebb07193258637870e13b7bd99f26c663df3d3" 4086 | dependencies: 4087 | agent-base "2" 4088 | extend "3" 4089 | socks "~1.1.5" 4090 | 4091 | socks@1.1.9: 4092 | version "1.1.9" 4093 | resolved "http://registry.npm.alibaba-inc.com/socks/download/socks-1.1.9.tgz#628d7e4d04912435445ac0b6e459376cb3e6d691" 4094 | dependencies: 4095 | ip "^1.1.2" 4096 | smart-buffer "^1.0.4" 4097 | 4098 | socks@~1.1.5: 4099 | version "1.1.10" 4100 | resolved "http://registry.npm.alibaba-inc.com/socks/download/socks-1.1.10.tgz#5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a" 4101 | dependencies: 4102 | ip "^1.1.4" 4103 | smart-buffer "^1.0.13" 4104 | 4105 | source-map-support@^0.4.15: 4106 | version "0.4.18" 4107 | resolved "http://registry.npm.alibaba-inc.com/source-map-support/download/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 4108 | dependencies: 4109 | source-map "^0.5.6" 4110 | 4111 | source-map@^0.4.4: 4112 | version "0.4.4" 4113 | resolved "http://registry.npm.alibaba-inc.com/source-map/download/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 4114 | dependencies: 4115 | amdefine ">=0.0.4" 4116 | 4117 | source-map@^0.5.1, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3, source-map@~0.5.6: 4118 | version "0.5.7" 4119 | resolved "http://registry.npm.alibaba-inc.com/source-map/download/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 4120 | 4121 | source-map@^0.6.1: 4122 | version "0.6.1" 4123 | resolved "http://registry.npm.alibaba-inc.com/source-map/download/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 4124 | 4125 | source-map@~0.2.0: 4126 | version "0.2.0" 4127 | resolved "http://registry.npm.alibaba-inc.com/source-map/download/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 4128 | dependencies: 4129 | amdefine ">=0.0.4" 4130 | 4131 | spdx-correct@~1.0.0: 4132 | version "1.0.2" 4133 | resolved "http://registry.npm.alibaba-inc.com/spdx-correct/download/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 4134 | dependencies: 4135 | spdx-license-ids "^1.0.2" 4136 | 4137 | spdx-expression-parse@~1.0.0: 4138 | version "1.0.4" 4139 | resolved "http://registry.npm.alibaba-inc.com/spdx-expression-parse/download/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 4140 | 4141 | spdx-license-ids@^1.0.2: 4142 | version "1.2.2" 4143 | resolved "http://registry.npm.alibaba-inc.com/spdx-license-ids/download/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 4144 | 4145 | sprintf-js@~1.0.2: 4146 | version "1.0.3" 4147 | resolved "http://registry.npm.alibaba-inc.com/sprintf-js/download/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4148 | 4149 | sshpk@^1.7.0: 4150 | version "1.13.1" 4151 | resolved "http://registry.npm.alibaba-inc.com/sshpk/download/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 4152 | dependencies: 4153 | asn1 "~0.2.3" 4154 | assert-plus "^1.0.0" 4155 | dashdash "^1.12.0" 4156 | getpass "^0.1.1" 4157 | optionalDependencies: 4158 | bcrypt-pbkdf "^1.0.0" 4159 | ecc-jsbn "~0.1.1" 4160 | jsbn "~0.1.0" 4161 | tweetnacl "~0.14.0" 4162 | 4163 | "statuses@>= 1.3.1 < 2": 4164 | version "1.4.0" 4165 | resolved "http://registry.npm.alibaba-inc.com/statuses/download/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 4166 | 4167 | statuses@~1.3.1: 4168 | version "1.3.1" 4169 | resolved "http://registry.npm.alibaba-inc.com/statuses/download/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 4170 | 4171 | stream-browserify@^2.0.0: 4172 | version "2.0.1" 4173 | resolved "http://registry.npm.alibaba-inc.com/stream-browserify/download/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 4174 | dependencies: 4175 | inherits "~2.0.1" 4176 | readable-stream "^2.0.2" 4177 | 4178 | stream-combiner2@^1.1.1: 4179 | version "1.1.1" 4180 | resolved "http://registry.npm.alibaba-inc.com/stream-combiner2/download/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 4181 | dependencies: 4182 | duplexer2 "~0.1.0" 4183 | readable-stream "^2.0.2" 4184 | 4185 | stream-http@^2.0.0: 4186 | version "2.7.2" 4187 | resolved "http://registry.npm.alibaba-inc.com/stream-http/download/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 4188 | dependencies: 4189 | builtin-status-codes "^3.0.0" 4190 | inherits "^2.0.1" 4191 | readable-stream "^2.2.6" 4192 | to-arraybuffer "^1.0.0" 4193 | xtend "^4.0.0" 4194 | 4195 | stream-splicer@^2.0.0: 4196 | version "2.0.0" 4197 | resolved "http://registry.npm.alibaba-inc.com/stream-splicer/download/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 4198 | dependencies: 4199 | inherits "^2.0.1" 4200 | readable-stream "^2.0.2" 4201 | 4202 | streamroller@^0.7.0: 4203 | version "0.7.0" 4204 | resolved "http://registry.npm.alibaba-inc.com/streamroller/download/streamroller-0.7.0.tgz#a1d1b7cf83d39afb0d63049a5acbf93493bdf64b" 4205 | dependencies: 4206 | date-format "^1.2.0" 4207 | debug "^3.1.0" 4208 | mkdirp "^0.5.1" 4209 | readable-stream "^2.3.0" 4210 | 4211 | string-width@^1.0.1, string-width@^1.0.2: 4212 | version "1.0.2" 4213 | resolved "http://registry.npm.alibaba-inc.com/string-width/download/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4214 | dependencies: 4215 | code-point-at "^1.0.0" 4216 | is-fullwidth-code-point "^1.0.0" 4217 | strip-ansi "^3.0.0" 4218 | 4219 | string_decoder@~0.10.x: 4220 | version "0.10.31" 4221 | resolved "http://registry.npm.alibaba-inc.com/string_decoder/download/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 4222 | 4223 | string_decoder@~1.0.0, string_decoder@~1.0.3: 4224 | version "1.0.3" 4225 | resolved "http://registry.npm.alibaba-inc.com/string_decoder/download/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 4226 | dependencies: 4227 | safe-buffer "~5.1.0" 4228 | 4229 | stringstream@~0.0.4, stringstream@~0.0.5: 4230 | version "0.0.5" 4231 | resolved "http://registry.npm.alibaba-inc.com/stringstream/download/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4232 | 4233 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4234 | version "3.0.1" 4235 | resolved "http://registry.npm.alibaba-inc.com/strip-ansi/download/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4236 | dependencies: 4237 | ansi-regex "^2.0.0" 4238 | 4239 | strip-bom@^2.0.0: 4240 | version "2.0.0" 4241 | resolved "http://registry.npm.alibaba-inc.com/strip-bom/download/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4242 | dependencies: 4243 | is-utf8 "^0.2.0" 4244 | 4245 | strip-indent@^1.0.1: 4246 | version "1.0.1" 4247 | resolved "http://registry.npm.alibaba-inc.com/strip-indent/download/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4248 | dependencies: 4249 | get-stdin "^4.0.1" 4250 | 4251 | strip-json-comments@~2.0.1: 4252 | version "2.0.1" 4253 | resolved "http://registry.npm.alibaba-inc.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4254 | 4255 | subarg@^1.0.0: 4256 | version "1.0.0" 4257 | resolved "http://registry.npm.alibaba-inc.com/subarg/download/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 4258 | dependencies: 4259 | minimist "^1.1.0" 4260 | 4261 | supports-color@1.2.0: 4262 | version "1.2.0" 4263 | resolved "http://registry.npm.alibaba-inc.com/supports-color/download/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 4264 | 4265 | supports-color@^2.0.0: 4266 | version "2.0.0" 4267 | resolved "http://registry.npm.alibaba-inc.com/supports-color/download/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4268 | 4269 | supports-color@^3.1.0: 4270 | version "3.2.3" 4271 | resolved "http://registry.npm.alibaba-inc.com/supports-color/download/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4272 | dependencies: 4273 | has-flag "^1.0.0" 4274 | 4275 | syntax-error@^1.1.1: 4276 | version "1.3.0" 4277 | resolved "http://registry.npm.alibaba-inc.com/syntax-error/download/syntax-error-1.3.0.tgz#1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1" 4278 | dependencies: 4279 | acorn "^4.0.3" 4280 | 4281 | tar-pack@^3.4.0: 4282 | version "3.4.1" 4283 | resolved "http://registry.npm.alibaba-inc.com/tar-pack/download/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 4284 | dependencies: 4285 | debug "^2.2.0" 4286 | fstream "^1.0.10" 4287 | fstream-ignore "^1.0.5" 4288 | once "^1.3.3" 4289 | readable-stream "^2.1.4" 4290 | rimraf "^2.5.1" 4291 | tar "^2.2.1" 4292 | uid-number "^0.0.6" 4293 | 4294 | tar@^2.2.1: 4295 | version "2.2.1" 4296 | resolved "http://registry.npm.alibaba-inc.com/tar/download/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4297 | dependencies: 4298 | block-stream "*" 4299 | fstream "^1.0.2" 4300 | inherits "2" 4301 | 4302 | through2@^2.0.0: 4303 | version "2.0.3" 4304 | resolved "http://registry.npm.alibaba-inc.com/through2/download/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 4305 | dependencies: 4306 | readable-stream "^2.1.5" 4307 | xtend "~4.0.1" 4308 | 4309 | "through@>=2.2.7 <3", through@^2.3.6, through@^2.3.8: 4310 | version "2.3.8" 4311 | resolved "http://registry.npm.alibaba-inc.com/through/download/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4312 | 4313 | thunkify@~2.1.1: 4314 | version "2.1.2" 4315 | resolved "http://registry.npm.alibaba-inc.com/thunkify/download/thunkify-2.1.2.tgz#faa0e9d230c51acc95ca13a361ac05ca7e04553d" 4316 | 4317 | timers-browserify@^1.0.1: 4318 | version "1.4.2" 4319 | resolved "http://registry.npm.alibaba-inc.com/timers-browserify/download/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 4320 | dependencies: 4321 | process "~0.11.0" 4322 | 4323 | timespan@2.3.x: 4324 | version "2.3.0" 4325 | resolved "http://registry.npm.alibaba-inc.com/timespan/download/timespan-2.3.0.tgz#4902ce040bd13d845c8f59b27e9d59bad6f39929" 4326 | 4327 | tmp@0.0.28: 4328 | version "0.0.28" 4329 | resolved "http://registry.npm.alibaba-inc.com/tmp/download/tmp-0.0.28.tgz#172735b7f614ea7af39664fa84cf0de4e515d120" 4330 | dependencies: 4331 | os-tmpdir "~1.0.1" 4332 | 4333 | tmp@0.0.33, tmp@0.0.x: 4334 | version "0.0.33" 4335 | resolved "http://registry.npm.alibaba-inc.com/tmp/download/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 4336 | dependencies: 4337 | os-tmpdir "~1.0.2" 4338 | 4339 | to-array@0.1.4: 4340 | version "0.1.4" 4341 | resolved "http://registry.npm.alibaba-inc.com/to-array/download/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 4342 | 4343 | to-arraybuffer@^1.0.0: 4344 | version "1.0.1" 4345 | resolved "http://registry.npm.alibaba-inc.com/to-arraybuffer/download/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 4346 | 4347 | to-fast-properties@^1.0.3: 4348 | version "1.0.3" 4349 | resolved "http://registry.npm.alibaba-inc.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4350 | 4351 | to-iso-string@0.0.2: 4352 | version "0.0.2" 4353 | resolved "http://registry.npm.alibaba-inc.com/to-iso-string/download/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" 4354 | 4355 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 4356 | version "2.3.3" 4357 | resolved "http://registry.npm.alibaba-inc.com/tough-cookie/download/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 4358 | dependencies: 4359 | punycode "^1.4.1" 4360 | 4361 | transform-filter@^0.1.1: 4362 | version "0.1.1" 4363 | resolved "http://registry.npm.alibaba-inc.com/transform-filter/download/transform-filter-0.1.1.tgz#806f851b6e440b23788fd38ca0431b502025ba59" 4364 | dependencies: 4365 | multimatch "^2.0.0" 4366 | through "^2.3.6" 4367 | 4368 | trim-newlines@^1.0.0: 4369 | version "1.0.0" 4370 | resolved "http://registry.npm.alibaba-inc.com/trim-newlines/download/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4371 | 4372 | trim-right@^1.0.1: 4373 | version "1.0.1" 4374 | resolved "http://registry.npm.alibaba-inc.com/trim-right/download/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4375 | 4376 | tsscmp@~1.0.0: 4377 | version "1.0.5" 4378 | resolved "http://registry.npm.alibaba-inc.com/tsscmp/download/tsscmp-1.0.5.tgz#7dc4a33af71581ab4337da91d85ca5427ebd9a97" 4379 | 4380 | tty-browserify@~0.0.0: 4381 | version "0.0.0" 4382 | resolved "http://registry.npm.alibaba-inc.com/tty-browserify/download/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 4383 | 4384 | tunnel-agent@^0.6.0: 4385 | version "0.6.0" 4386 | resolved "http://registry.npm.alibaba-inc.com/tunnel-agent/download/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4387 | dependencies: 4388 | safe-buffer "^5.0.1" 4389 | 4390 | tunnel-agent@~0.4.1: 4391 | version "0.4.3" 4392 | resolved "http://registry.npm.alibaba-inc.com/tunnel-agent/download/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 4393 | 4394 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4395 | version "0.14.5" 4396 | resolved "http://registry.npm.alibaba-inc.com/tweetnacl/download/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4397 | 4398 | type-check@~0.3.2: 4399 | version "0.3.2" 4400 | resolved "http://registry.npm.alibaba-inc.com/type-check/download/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4401 | dependencies: 4402 | prelude-ls "~1.1.2" 4403 | 4404 | type-detect@0.1.1: 4405 | version "0.1.1" 4406 | resolved "http://registry.npm.alibaba-inc.com/type-detect/download/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 4407 | 4408 | type-detect@^1.0.0: 4409 | version "1.0.0" 4410 | resolved "http://registry.npm.alibaba-inc.com/type-detect/download/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 4411 | 4412 | type-is@~1.6.15: 4413 | version "1.6.15" 4414 | resolved "http://registry.npm.alibaba-inc.com/type-is/download/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 4415 | dependencies: 4416 | media-typer "0.3.0" 4417 | mime-types "~2.1.15" 4418 | 4419 | typedarray@^0.0.6, typedarray@~0.0.5: 4420 | version "0.0.6" 4421 | resolved "http://registry.npm.alibaba-inc.com/typedarray/download/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4422 | 4423 | ua-parser-js@^0.7.9: 4424 | version "0.7.17" 4425 | resolved "http://registry.npm.alibaba-inc.com/ua-parser-js/download/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 4426 | 4427 | uglify-js@^2.6, uglify-js@^2.6.1: 4428 | version "2.8.29" 4429 | resolved "http://registry.npm.alibaba-inc.com/uglify-js/download/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 4430 | dependencies: 4431 | source-map "~0.5.1" 4432 | yargs "~3.10.0" 4433 | optionalDependencies: 4434 | uglify-to-browserify "~1.0.0" 4435 | 4436 | uglify-to-browserify@~1.0.0: 4437 | version "1.0.2" 4438 | resolved "http://registry.npm.alibaba-inc.com/uglify-to-browserify/download/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4439 | 4440 | uid-number@^0.0.6: 4441 | version "0.0.6" 4442 | resolved "http://registry.npm.alibaba-inc.com/uid-number/download/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4443 | 4444 | ultron@~1.1.0: 4445 | version "1.1.1" 4446 | resolved "http://registry.npm.alibaba-inc.com/ultron/download/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" 4447 | 4448 | umd@^3.0.0: 4449 | version "3.0.1" 4450 | resolved "http://registry.npm.alibaba-inc.com/umd/download/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 4451 | 4452 | underscore@~1.7.0: 4453 | version "1.7.0" 4454 | resolved "http://registry.npm.alibaba-inc.com/underscore/download/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" 4455 | 4456 | unpipe@1.0.0, unpipe@~1.0.0: 4457 | version "1.0.0" 4458 | resolved "http://registry.npm.alibaba-inc.com/unpipe/download/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 4459 | 4460 | url@~0.11.0: 4461 | version "0.11.0" 4462 | resolved "http://registry.npm.alibaba-inc.com/url/download/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4463 | dependencies: 4464 | punycode "1.3.2" 4465 | querystring "0.2.0" 4466 | 4467 | useragent@^2.1.12: 4468 | version "2.2.1" 4469 | resolved "http://registry.npm.alibaba-inc.com/useragent/download/useragent-2.2.1.tgz#cf593ef4f2d175875e8bb658ea92e18a4fd06d8e" 4470 | dependencies: 4471 | lru-cache "2.2.x" 4472 | tmp "0.0.x" 4473 | 4474 | util-deprecate@~1.0.1: 4475 | version "1.0.2" 4476 | resolved "http://registry.npm.alibaba-inc.com/util-deprecate/download/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4477 | 4478 | util@0.10.3, util@~0.10.1: 4479 | version "0.10.3" 4480 | resolved "http://registry.npm.alibaba-inc.com/util/download/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4481 | dependencies: 4482 | inherits "2.0.1" 4483 | 4484 | utils-merge@1.0.1: 4485 | version "1.0.1" 4486 | resolved "http://registry.npm.alibaba-inc.com/utils-merge/download/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 4487 | 4488 | uuid@^3.0.0, uuid@^3.1.0: 4489 | version "3.1.0" 4490 | resolved "http://registry.npm.alibaba-inc.com/uuid/download/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 4491 | 4492 | uws@~0.14.4: 4493 | version "0.14.5" 4494 | resolved "http://registry.npm.alibaba-inc.com/uws/download/uws-0.14.5.tgz#67aaf33c46b2a587a5f6666d00f7691328f149dc" 4495 | 4496 | validate-npm-package-license@^3.0.1: 4497 | version "3.0.1" 4498 | resolved "http://registry.npm.alibaba-inc.com/validate-npm-package-license/download/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4499 | dependencies: 4500 | spdx-correct "~1.0.0" 4501 | spdx-expression-parse "~1.0.0" 4502 | 4503 | verror@1.10.0: 4504 | version "1.10.0" 4505 | resolved "http://registry.npm.alibaba-inc.com/verror/download/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4506 | dependencies: 4507 | assert-plus "^1.0.0" 4508 | core-util-is "1.0.2" 4509 | extsprintf "^1.2.0" 4510 | 4511 | vm-browserify@~0.0.1: 4512 | version "0.0.4" 4513 | resolved "http://registry.npm.alibaba-inc.com/vm-browserify/download/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4514 | dependencies: 4515 | indexof "0.0.1" 4516 | 4517 | void-elements@^2.0.0: 4518 | version "2.0.1" 4519 | resolved "http://registry.npm.alibaba-inc.com/void-elements/download/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" 4520 | 4521 | watchify@~3.9.0: 4522 | version "3.9.0" 4523 | resolved "http://registry.npm.alibaba-inc.com/watchify/download/watchify-3.9.0.tgz#f075fd2e8a86acde84cedba6e5c2a0bedd523d9e" 4524 | dependencies: 4525 | anymatch "^1.3.0" 4526 | browserify "^14.0.0" 4527 | chokidar "^1.0.0" 4528 | defined "^1.0.0" 4529 | outpipe "^1.1.0" 4530 | through2 "^2.0.0" 4531 | xtend "^4.0.0" 4532 | 4533 | whatwg-fetch@>=0.10.0: 4534 | version "2.0.3" 4535 | resolved "http://registry.npm.alibaba-inc.com/whatwg-fetch/download/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 4536 | 4537 | when@^3.7.7: 4538 | version "3.7.8" 4539 | resolved "http://registry.npm.alibaba-inc.com/when/download/when-3.7.8.tgz#c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82" 4540 | 4541 | which@^1.1.1, which@^1.2.1: 4542 | version "1.3.0" 4543 | resolved "http://registry.npm.alibaba-inc.com/which/download/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4544 | dependencies: 4545 | isexe "^2.0.0" 4546 | 4547 | wide-align@^1.1.0: 4548 | version "1.1.2" 4549 | resolved "http://registry.npm.alibaba-inc.com/wide-align/download/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4550 | dependencies: 4551 | string-width "^1.0.2" 4552 | 4553 | window-size@0.1.0: 4554 | version "0.1.0" 4555 | resolved "http://registry.npm.alibaba-inc.com/window-size/download/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4556 | 4557 | wordwrap@0.0.2: 4558 | version "0.0.2" 4559 | resolved "http://registry.npm.alibaba-inc.com/wordwrap/download/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4560 | 4561 | wordwrap@^1.0.0, wordwrap@~1.0.0: 4562 | version "1.0.0" 4563 | resolved "http://registry.npm.alibaba-inc.com/wordwrap/download/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4564 | 4565 | wordwrap@~0.0.2: 4566 | version "0.0.3" 4567 | resolved "http://registry.npm.alibaba-inc.com/wordwrap/download/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4568 | 4569 | wrappy@1: 4570 | version "1.0.2" 4571 | resolved "http://registry.npm.alibaba-inc.com/wrappy/download/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4572 | 4573 | ws@~3.3.1: 4574 | version "3.3.3" 4575 | resolved "http://registry.npm.alibaba-inc.com/ws/download/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" 4576 | dependencies: 4577 | async-limiter "~1.0.0" 4578 | safe-buffer "~5.1.0" 4579 | ultron "~1.1.0" 4580 | 4581 | xmlhttprequest-ssl@~1.5.4: 4582 | version "1.5.4" 4583 | resolved "http://registry.npm.alibaba-inc.com/xmlhttprequest-ssl/download/xmlhttprequest-ssl-1.5.4.tgz#04f560915724b389088715cc0ed7813e9677bf57" 4584 | 4585 | xregexp@2.0.0: 4586 | version "2.0.0" 4587 | resolved "http://registry.npm.alibaba-inc.com/xregexp/download/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" 4588 | 4589 | xtend@^4.0.0, xtend@~4.0.1: 4590 | version "4.0.1" 4591 | resolved "http://registry.npm.alibaba-inc.com/xtend/download/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4592 | 4593 | yargs@~3.10.0: 4594 | version "3.10.0" 4595 | resolved "http://registry.npm.alibaba-inc.com/yargs/download/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4596 | dependencies: 4597 | camelcase "^1.0.2" 4598 | cliui "^2.1.0" 4599 | decamelize "^1.0.0" 4600 | window-size "0.1.0" 4601 | 4602 | yeast@0.1.2: 4603 | version "0.1.2" 4604 | resolved "http://registry.npm.alibaba-inc.com/yeast/download/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 4605 | --------------------------------------------------------------------------------