├── example └── app │ ├── .watchmanconfig │ ├── app.json │ ├── .babelrc │ ├── App.test.js │ ├── .gitignore │ ├── lib │ ├── index.js │ ├── utils.js │ ├── ActionSheetIOS.js │ ├── options.js │ ├── styles.js │ └── ActionSheetCustom.js │ ├── App.js │ ├── package.json │ ├── ExampleA.js │ ├── ExampleB.js │ ├── .flowconfig │ └── README.md ├── .babelrc ├── docs ├── ios-custom.png └── ios-native.png ├── .editorconfig ├── lib ├── index.js ├── utils.js ├── ActionSheetIOS.js ├── options.js ├── styles.js └── ActionSheetCustom.js ├── .gitignore ├── tests ├── ActionSheetCustom.test.js └── __snapshots__ │ └── ActionSheetCustom.test.js.snap ├── LICENSE ├── package.json ├── README.md └── yarn.lock /example/app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env", "react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /example/app/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "sdkVersion": "26.0.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /docs/ios-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefe/react-native-actionsheet/HEAD/docs/ios-custom.png -------------------------------------------------------------------------------- /docs/ios-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefe/react-native-actionsheet/HEAD/docs/ios-native.png -------------------------------------------------------------------------------- /example/app/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["babel-preset-expo"], 3 | "env": { 4 | "development": { 5 | "plugins": ["transform-react-jsx-source"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false 15 | -------------------------------------------------------------------------------- /example/app/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './App'; 3 | 4 | import renderer from 'react-test-renderer'; 5 | 6 | it('renders without crashing', () => { 7 | const rendered = renderer.create().toJSON(); 8 | expect(rendered).toBeTruthy(); 9 | }); 10 | -------------------------------------------------------------------------------- /example/app/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # expo 4 | .expo/ 5 | 6 | # dependencies 7 | /node_modules 8 | 9 | # misc 10 | .env.local 11 | .env.development.local 12 | .env.test.local 13 | .env.production.local 14 | 15 | npm-debug.log* 16 | yarn-debug.log* 17 | yarn-error.log* 18 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | import { Platform } from 'react-native' 2 | import _ActionSheetIOS from './ActionSheetIOS' 3 | import _ActionSheetCustom from './ActionSheetCustom' 4 | 5 | export const ActionSheetCustom = _ActionSheetCustom 6 | 7 | let ActionSheet 8 | 9 | if (Platform.OS === 'ios') { 10 | ActionSheet = _ActionSheetIOS 11 | } else { 12 | ActionSheet = _ActionSheetCustom 13 | } 14 | 15 | export default ActionSheet 16 | -------------------------------------------------------------------------------- /example/app/lib/index.js: -------------------------------------------------------------------------------- 1 | import { Platform } from 'react-native' 2 | import _ActionSheetIOS from './ActionSheetIOS' 3 | import _ActionSheetCustom from './ActionSheetCustom' 4 | 5 | export const ActionSheetCustom = _ActionSheetCustom 6 | 7 | let ActionSheet 8 | 9 | if (Platform.OS === 'ios') { 10 | ActionSheet = _ActionSheetIOS 11 | } else { 12 | ActionSheet = _ActionSheetCustom 13 | } 14 | 15 | export default ActionSheet 16 | -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- 1 | export function isset (prop) { 2 | return typeof prop !== 'undefined' 3 | } 4 | 5 | export function merge (target, source) { 6 | Object.keys(source).forEach((key) => { 7 | if (Object.prototype.toString.call(source).slice(8, -1) === 'Object') { 8 | target[key] = merge(target[key] || {}, source[key]) 9 | } else { 10 | target[key] = source[key] 11 | } 12 | }) 13 | return target 14 | } 15 | -------------------------------------------------------------------------------- /example/app/lib/utils.js: -------------------------------------------------------------------------------- 1 | export function isset (prop) { 2 | return typeof prop !== 'undefined' 3 | } 4 | 5 | export function merge (target, source) { 6 | Object.keys(source).forEach((key) => { 7 | if (Object.prototype.toString.call(source).slice(8, -1) === 'Object') { 8 | target[key] = merge(target[key] || {}, source[key]) 9 | } else { 10 | target[key] = source[key] 11 | } 12 | }) 13 | return target 14 | } 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IJ 26 | # 27 | .idea 28 | .gradle 29 | local.properties 30 | 31 | # node.js 32 | # 33 | node_modules/ 34 | npm-debug.log 35 | 36 | .vscode 37 | -------------------------------------------------------------------------------- /tests/ActionSheetCustom.test.js: -------------------------------------------------------------------------------- 1 | import 'react-native' 2 | import React from 'react' 3 | import renderer from 'react-test-renderer' 4 | 5 | import ExampleA from '../Examples/Basic/ExampleA' 6 | import ExampleB from '../Examples/Basic/ExampleB' 7 | 8 | test('ExampleA render correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ).toJSON() 12 | expect(tree).toMatchSnapshot() 13 | }) 14 | 15 | test('ExampleB render correctly', () => { 16 | const tree = renderer.create( 17 | 18 | ).toJSON() 19 | expect(tree).toMatchSnapshot() 20 | }) 21 | -------------------------------------------------------------------------------- /example/app/App.js: -------------------------------------------------------------------------------- 1 | import { View, StyleSheet, Text } from 'react-native' 2 | import React from 'react' 3 | import ExampleA from './ExampleA' 4 | import ExampleB from './ExampleB' 5 | 6 | class Example extends React.Component { 7 | render () { 8 | return ( 9 | 10 | 11 | 12 | 13 | ) 14 | } 15 | } 16 | 17 | const styles = StyleSheet.create({ 18 | wrapper: { 19 | flex: 1, 20 | alignItems: 'center', 21 | justifyContent: 'center' 22 | } 23 | }) 24 | 25 | export default Example 26 | -------------------------------------------------------------------------------- /example/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "react-native-scripts": "1.13.1", 7 | "jest-expo": "26.0.0", 8 | "react-test-renderer": "16.3.0-alpha.1" 9 | }, 10 | "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", 11 | "scripts": { 12 | "start": "react-native-scripts start", 13 | "eject": "react-native-scripts eject", 14 | "android": "react-native-scripts android", 15 | "ios": "react-native-scripts ios", 16 | "test": "jest" 17 | }, 18 | "jest": { 19 | "preset": "jest-expo" 20 | }, 21 | "dependencies": { 22 | "expo": "^26.0.0", 23 | "react": "16.3.0-alpha.1", 24 | "react-native": "0.54.0" 25 | } 26 | } -------------------------------------------------------------------------------- /lib/ActionSheetIOS.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Wrap ActionSheetIOS Api as a component. 3 | * @see http://facebook.github.io/react-native/docs/actionsheetios.html 4 | */ 5 | 6 | import React from 'react' 7 | import { ActionSheetIOS } from 'react-native' 8 | import optionsSchema from './options' 9 | 10 | class ActionSheet extends React.Component { 11 | // shold not update whenever, because nothing rendered 12 | shouldComponentUpdate () { 13 | return false 14 | } 15 | 16 | show () { 17 | const props = this.props 18 | const options = {} 19 | optionsSchema.forEach((name) => { 20 | const value = props[name] 21 | if (typeof value !== 'undefined') { 22 | options[name] = value 23 | } 24 | }) 25 | const callback = options.onPress 26 | delete options.onPress 27 | ActionSheetIOS.showActionSheetWithOptions(options, callback) 28 | } 29 | 30 | // need not render anything 31 | render () { 32 | return null 33 | } 34 | } 35 | 36 | export default ActionSheet 37 | -------------------------------------------------------------------------------- /example/app/lib/ActionSheetIOS.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Wrap ActionSheetIOS Api as a component. 3 | * @see http://facebook.github.io/react-native/docs/actionsheetios.html 4 | */ 5 | 6 | import React from 'react' 7 | import { ActionSheetIOS } from 'react-native' 8 | import optionsSchema from './options' 9 | 10 | class ActionSheet extends React.Component { 11 | // shold not update whenever, because nothing rendered 12 | shouldComponentUpdate () { 13 | return false 14 | } 15 | 16 | show () { 17 | const props = this.props 18 | const options = {} 19 | optionsSchema.forEach((name) => { 20 | const value = props[name] 21 | if (typeof value !== 'undefined') { 22 | options[name] = value 23 | } 24 | }) 25 | const callback = options.onPress 26 | delete options.onPress 27 | ActionSheetIOS.showActionSheetWithOptions(options, callback) 28 | } 29 | 30 | // need not render anything 31 | render () { 32 | return null 33 | } 34 | } 35 | 36 | export default ActionSheet 37 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 beefe 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 | -------------------------------------------------------------------------------- /lib/options.js: -------------------------------------------------------------------------------- 1 | /** 2 | * define all valid options 3 | */ 4 | 5 | export default [ 6 | /** 7 | * a list of button titles (required) 8 | * @type string[] 9 | * @example 10 | * ['cancel', 'Apple', 'Banana'] 11 | */ 12 | 'options', 13 | 14 | /** 15 | * index of cancel button in options 16 | * @type int 17 | */ 18 | 'cancelButtonIndex', 19 | 20 | /** 21 | * index of destructive button in options 22 | * @type int 23 | */ 24 | 'destructiveButtonIndex', 25 | 26 | /** 27 | * a title to show above the action sheet 28 | * @type string 29 | */ 30 | 'title', 31 | 32 | /** 33 | * a message to show below the title 34 | * @type string 35 | */ 36 | 'message', 37 | 38 | /** 39 | * the color used for non-destructive button titles 40 | * @type string 41 | * @see http://facebook.github.io/react-native/docs/colors.html 42 | */ 43 | 'tintColor', 44 | 45 | /** 46 | * The 'callback' function takes one parameter, the zero-based index of the selected item 47 | * @type (buttonIndex) => void 48 | * @example 49 | * (buttonIndex) => if (buttonIndex === 1) { // do something } 50 | */ 51 | 'onPress' 52 | ] 53 | -------------------------------------------------------------------------------- /example/app/lib/options.js: -------------------------------------------------------------------------------- 1 | /** 2 | * define all valid options 3 | */ 4 | 5 | export default [ 6 | /** 7 | * a list of button titles (required) 8 | * @type string[] 9 | * @example 10 | * ['cancel', 'Apple', 'Banana'] 11 | */ 12 | 'options', 13 | 14 | /** 15 | * index of cancel button in options 16 | * @type int 17 | */ 18 | 'cancelButtonIndex', 19 | 20 | /** 21 | * index of destructive button in options 22 | * @type int 23 | */ 24 | 'destructiveButtonIndex', 25 | 26 | /** 27 | * a title to show above the action sheet 28 | * @type string 29 | */ 30 | 'title', 31 | 32 | /** 33 | * a message to show below the title 34 | * @type string 35 | */ 36 | 'message', 37 | 38 | /** 39 | * the color used for non-destructive button titles 40 | * @type string 41 | * @see http://facebook.github.io/react-native/docs/colors.html 42 | */ 43 | 'tintColor', 44 | 45 | /** 46 | * The 'callback' function takes one parameter, the zero-based index of the selected item 47 | * @type (buttonIndex) => void 48 | * @example 49 | * (buttonIndex) => if (buttonIndex === 1) { // do something } 50 | */ 51 | 'onPress' 52 | ] 53 | -------------------------------------------------------------------------------- /lib/styles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet } from 'react-native' 2 | export const hairlineWidth = StyleSheet.hairlineWidth 3 | export default { 4 | overlay: { 5 | position: 'absolute', 6 | top: 0, 7 | right: 0, 8 | bottom: 0, 9 | left: 0, 10 | opacity: 0.4, 11 | backgroundColor: '#000' 12 | }, 13 | wrapper: { 14 | flex: 1, 15 | flexDirection: 'row' 16 | }, 17 | body: { 18 | flex: 1, 19 | alignSelf: 'flex-end', 20 | backgroundColor: '#e5e5e5' 21 | }, 22 | titleBox: { 23 | height: 40, 24 | alignItems: 'center', 25 | justifyContent: 'center', 26 | backgroundColor: '#fff' 27 | }, 28 | titleText: { 29 | color: '#757575', 30 | fontSize: 14 31 | }, 32 | messageBox: { 33 | height: 30, 34 | paddingLeft: 10, 35 | paddingRight: 10, 36 | paddingBottom: 10, 37 | alignItems: 'center', 38 | justifyContent: 'center', 39 | backgroundColor: '#fff' 40 | }, 41 | messageText: { 42 | color: '#9a9a9a', 43 | fontSize: 12 44 | }, 45 | buttonBox: { 46 | height: 50, 47 | marginTop: hairlineWidth, 48 | alignItems: 'center', 49 | justifyContent: 'center', 50 | backgroundColor: '#fff' 51 | }, 52 | buttonText: { 53 | fontSize: 18 54 | }, 55 | cancelButtonBox: { 56 | height: 50, 57 | marginTop: 6, 58 | alignItems: 'center', 59 | justifyContent: 'center', 60 | backgroundColor: '#fff' 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /example/app/lib/styles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet } from 'react-native' 2 | export const hairlineWidth = StyleSheet.hairlineWidth 3 | export default { 4 | overlay: { 5 | position: 'absolute', 6 | top: 0, 7 | right: 0, 8 | bottom: 0, 9 | left: 0, 10 | opacity: 0.4, 11 | backgroundColor: '#000' 12 | }, 13 | wrapper: { 14 | flex: 1, 15 | flexDirection: 'row' 16 | }, 17 | body: { 18 | flex: 1, 19 | alignSelf: 'flex-end', 20 | backgroundColor: '#e5e5e5' 21 | }, 22 | titleBox: { 23 | height: 40, 24 | alignItems: 'center', 25 | justifyContent: 'center', 26 | backgroundColor: '#fff' 27 | }, 28 | titleText: { 29 | color: '#757575', 30 | fontSize: 14 31 | }, 32 | messageBox: { 33 | height: 30, 34 | paddingLeft: 10, 35 | paddingRight: 10, 36 | paddingBottom: 10, 37 | alignItems: 'center', 38 | justifyContent: 'center', 39 | backgroundColor: '#fff' 40 | }, 41 | messageText: { 42 | color: '#9a9a9a', 43 | fontSize: 12 44 | }, 45 | buttonBox: { 46 | height: 50, 47 | marginTop: hairlineWidth, 48 | alignItems: 'center', 49 | justifyContent: 'center', 50 | backgroundColor: '#fff' 51 | }, 52 | buttonText: { 53 | fontSize: 18 54 | }, 55 | cancelButtonBox: { 56 | height: 50, 57 | marginTop: 6, 58 | alignItems: 'center', 59 | justifyContent: 'center', 60 | backgroundColor: '#fff' 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-actionsheet", 3 | "version": "2.4.2", 4 | "description": "Cross platform ActionSheet. This component implements a custom ActionSheet and provides the same way to drawing it on the defferent platforms(iOS and Android). Actually, In order to keep the best effect, it still uses the ActionSheetIOS on iOS.", 5 | "main": "lib/index.js", 6 | "scripts": { 7 | "lint": "standard lib/**/*.js", 8 | "test": "jest --no-cache" 9 | }, 10 | "jest": { 11 | "preset": "react-native", 12 | "modulePathIgnorePatterns": [ 13 | "/Examples" 14 | ] 15 | }, 16 | "files": [ 17 | "lib" 18 | ], 19 | "repository": { 20 | "type": "git", 21 | "url": "git+https://github.com/beefe/react-native-actionsheet.git" 22 | }, 23 | "keywords": [ 24 | "actionsheet", 25 | "action sheet", 26 | "react-native", 27 | "react-native-action-sheet", 28 | "react-native-actionsheet", 29 | "custom-action-sheet" 30 | ], 31 | "author": "xiaoyann", 32 | "license": "MIT", 33 | "bugs": { 34 | "url": "https://github.com/beefe/react-native-actionsheet/issues" 35 | }, 36 | "homepage": "https://github.com/beefe/react-native-actionsheet#readme", 37 | "peerDependencies": { 38 | "prop-types": ">=15.4.0", 39 | "react": ">=15.4.0", 40 | "react-native": "*" 41 | }, 42 | "devDependencies": { 43 | "babel-eslint": "^8.2.2", 44 | "babel-jest": "^21.2.0", 45 | "babel-preset-env": "^1.6.1", 46 | "babel-preset-react-native": "^4.0.0", 47 | "jest": "^21.2.1", 48 | "react-test-renderer": "15.4.0", 49 | "standard": "*" 50 | }, 51 | "standard": { 52 | "parser": "babel-eslint" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /example/app/ExampleA.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { View, Text, StyleSheet } from 'react-native' 3 | import ActionSheet from './lib' 4 | 5 | const CANCEL_INDEX = 0 6 | const DESTRUCTIVE_INDEX = 4 7 | const options = [ 'Cancel', 'Apple', 'Banana', 'Watermelon', 'Durian' ] 8 | const title = 'Which one do you like ?' 9 | const message = 'In botany, a fruit is the seed-bearing structure in flowering plants (also known as angiosperms) formed from the ovary after flowering.' 10 | 11 | class ExampleA extends React.Component { 12 | state = { 13 | selected: '' 14 | } 15 | 16 | showActionSheet = () => { 17 | this.ActionSheet.show() 18 | } 19 | 20 | handlePress = (buttonIndex) => { 21 | this.setState({ selected: buttonIndex }) 22 | } 23 | 24 | render () { 25 | return ( 26 | 27 | I like {options[this.state.selected] || '...'} 28 | Example A 29 | { this.ActionSheet = o }} 31 | title={title} 32 | message={message} 33 | options={options} 34 | cancelButtonIndex={CANCEL_INDEX} 35 | destructiveButtonIndex={DESTRUCTIVE_INDEX} 36 | onPress={this.handlePress} 37 | /> 38 | 39 | ) 40 | } 41 | } 42 | 43 | const styles = StyleSheet.create({ 44 | wrapper: { 45 | flex: 1, 46 | alignItems: 'center', 47 | justifyContent: 'center' 48 | }, 49 | button: { 50 | width: 200, 51 | marginBottom: 10, 52 | paddingTop: 15, 53 | paddingBottom: 15, 54 | textAlign: 'center', 55 | color: '#fff', 56 | backgroundColor: '#38f' 57 | } 58 | }) 59 | 60 | export default ExampleA 61 | -------------------------------------------------------------------------------- /example/app/ExampleB.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { View, Text, StyleSheet } from 'react-native' 3 | import { ActionSheetCustom as ActionSheet } from './lib' 4 | 5 | const CANCEL_INDEX = 0 6 | const DESTRUCTIVE_INDEX = 4 7 | const options = [ 8 | 'Cancel', 9 | 'Apple', 10 | 'Banana', 11 | 'Watermelon', 12 | 'Durian' 13 | ] 14 | const title = 'Which one do you like?' 15 | const message = 'In botany, a fruit is the seed-bearing structure in flowering plants (also known as angiosperms) formed from the ovary after flowering.' 16 | 17 | class ExampleB extends React.Component { 18 | constructor (props) { 19 | super(props) 20 | this.state = { 21 | selected: '' 22 | } 23 | this.handlePress = this.handlePress.bind(this) 24 | this.showActionSheet = this.showActionSheet.bind(this) 25 | } 26 | 27 | showActionSheet () { 28 | this.ActionSheet.show() 29 | } 30 | 31 | handlePress (buttonIndex) { 32 | this.setState({ selected: buttonIndex }) 33 | } 34 | 35 | render () { 36 | return ( 37 | 38 | I like {options[this.state.selected] || '...'} 39 | Example B 40 | { this.ActionSheet = o }} 42 | title={title} 43 | message={message} 44 | options={options} 45 | cancelButtonIndex={CANCEL_INDEX} 46 | destructiveButtonIndex={DESTRUCTIVE_INDEX} 47 | onPress={this.handlePress} 48 | styles={{messageBox: { height: 60 }}} 49 | /> 50 | 51 | ) 52 | } 53 | } 54 | 55 | const styles = StyleSheet.create({ 56 | wrapper: { 57 | flex: 1, 58 | alignItems: 'center', 59 | justifyContent: 'center' 60 | }, 61 | button: { 62 | width: 200, 63 | marginBottom: 10, 64 | paddingTop: 15, 65 | paddingBottom: 15, 66 | textAlign: 'center', 67 | color: '#fff', 68 | backgroundColor: '#38f' 69 | } 70 | }) 71 | 72 | export default ExampleB 73 | -------------------------------------------------------------------------------- /example/app/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore templates for 'react-native init' 6 | /node_modules/react-native/local-cli/templates/.* 7 | 8 | ; Ignore RN jest 9 | /node_modules/react-native/jest/.* 10 | 11 | ; Ignore RNTester 12 | /node_modules/react-native/RNTester/.* 13 | 14 | ; Ignore the website subdir 15 | /node_modules/react-native/website/.* 16 | 17 | ; Ignore the Dangerfile 18 | /node_modules/react-native/danger/dangerfile.js 19 | 20 | ; Ignore Fbemitter 21 | /node_modules/fbemitter/.* 22 | 23 | ; Ignore "BUCK" generated dirs 24 | /node_modules/react-native/\.buckd/ 25 | 26 | ; Ignore unexpected extra "@providesModule" 27 | .*/node_modules/.*/node_modules/fbjs/.* 28 | 29 | ; Ignore polyfills 30 | /node_modules/react-native/Libraries/polyfills/.* 31 | 32 | ; Ignore various node_modules 33 | /node_modules/react-native-gesture-handler/.* 34 | /node_modules/expo/.* 35 | /node_modules/react-navigation/.* 36 | /node_modules/xdl/.* 37 | /node_modules/reqwest/.* 38 | /node_modules/metro-bundler/.* 39 | 40 | [include] 41 | 42 | [libs] 43 | node_modules/react-native/Libraries/react-native/react-native-interface.js 44 | node_modules/react-native/flow/ 45 | node_modules/expo/flow/ 46 | 47 | [options] 48 | emoji=true 49 | 50 | module.system=haste 51 | 52 | module.file_ext=.js 53 | module.file_ext=.jsx 54 | module.file_ext=.json 55 | module.file_ext=.ios.js 56 | 57 | munge_underscores=true 58 | 59 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 60 | 61 | suppress_type=$FlowIssue 62 | suppress_type=$FlowFixMe 63 | suppress_type=$FlowFixMeProps 64 | suppress_type=$FlowFixMeState 65 | suppress_type=$FixMe 66 | 67 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\) 68 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\)?:? #[0-9]+ 69 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 70 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 71 | 72 | unsafe.enable_getters_and_setters=true 73 | 74 | [version] 75 | ^0.56.0 76 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-actionsheet 2 | Cross platform ActionSheet. This component implements a custom ActionSheet and provides the same way to drawing it on the defferent platforms(iOS and Android). Actually, In order to keep the best effect, it still uses the ActionSheetIOS on iOS. 3 | 4 | 5 | 6 | 7 | 10 | 13 | 14 | 15 |
8 | 9 | 11 | 12 |
16 | 17 | ## Install 18 | 19 | ``` 20 | npm install react-native-actionsheet --save 21 | ``` 22 | 23 | ## Usage 24 | 25 | ```js 26 | import ActionSheet from 'react-native-actionsheet' 27 | 28 | class Demo extends React.Component { 29 | showActionSheet = () => { 30 | this.ActionSheet.show() 31 | } 32 | render() { 33 | return ( 34 | 35 | Open ActionSheet 36 | this.ActionSheet = o} 38 | title={'Which one do you like ?'} 39 | options={['Apple', 'Banana', 'cancel']} 40 | cancelButtonIndex={2} 41 | destructiveButtonIndex={1} 42 | onPress={(index) => { /* do something */ }} 43 | /> 44 | 45 | ) 46 | } 47 | } 48 | ``` 49 | 50 | 51 | ### Use ActionSheetCustom directly 52 | 53 | so you can customize option and title 54 | 55 | ```js 56 | import { ActionSheetCustom as ActionSheet } from 'react-native-actionsheet' 57 | 58 | const options = [ 59 | 'Cancel', 60 | 'Apple', 61 | Banana, 62 | 'Watermelon', 63 | Durian 64 | ] 65 | 66 | class Demo extends React.Component { 67 | showActionSheet = () => { 68 | this.ActionSheet.show() 69 | } 70 | render() { 71 | return ( 72 | 73 | Open ActionSheet 74 | this.ActionSheet = o} 76 | title={Which one do you like?} 77 | options={options} 78 | cancelButtonIndex={0} 79 | destructiveButtonIndex={4} 80 | onPress={(index) => { /* do something */ }} 81 | /> 82 | 83 | ) 84 | } 85 | } 86 | ``` 87 | 88 | ### How to redesign style ? 89 | 90 | The style of ActionSheet is defined in [lib/styles.js](https://github.com/beefe/react-native-actionsheet/blob/master/lib/styles.js). We can pass the `styles` prop to cover default style. See [Example](https://github.com/beefe/react-native-actionsheet/blob/master/example/app/ExampleB.js#L48) . 91 | 92 | ```javascript 93 | // example 94 | 95 | const styles = { 96 | titleBox: { 97 | background: 'pink' 98 | }, 99 | titleText: { 100 | fontSize: 16, 101 | color: '#000' 102 | } 103 | } 104 | 105 | 109 | ``` 110 | 111 | ## Props 112 | 113 | https://github.com/beefe/react-native-actionsheet/blob/master/lib/options.js 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 |
Prop nameDescriptionTypeDefault
titlePropTypes.string or PropTypes.element
messagePropTypes.string or PropTypes.element
optionsPropTypes.arrayOf([PropTypes.string, PropTypes.element])
tintColorPropTypes.string
cancelButtonIndexPropTypes.number
destructiveButtonIndexPropTypes.number
onPressPropTypes.func(index) => {}
stylesonly for ActionSheetCustom{}
171 | -------------------------------------------------------------------------------- /lib/ActionSheetCustom.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Text, View, Dimensions, Modal, TouchableHighlight, Animated, ScrollView, Easing } from 'react-native' 3 | import * as utils from './utils' 4 | import styles2 from './styles' 5 | 6 | const WARN_COLOR = '#FF3B30' 7 | const MAX_HEIGHT = Dimensions.get('window').height * 0.7 8 | 9 | class ActionSheet extends React.Component { 10 | static defaultProps = { 11 | tintColor: '#007AFF', 12 | buttonUnderlayColor: '#F4F4F4', 13 | onPress: () => {}, 14 | styles: {} 15 | } 16 | 17 | constructor (props) { 18 | super(props) 19 | this.scrollEnabled = false 20 | this.translateY = this._calculateHeight(props) 21 | this.state = { 22 | visible: false, 23 | sheetAnim: new Animated.Value(this.translateY) 24 | } 25 | } 26 | 27 | componentWillReceiveProps (nextProps) { 28 | this.translateY = this._calculateHeight(nextProps) 29 | } 30 | 31 | get styles () { 32 | const { styles } = this.props 33 | const obj = {} 34 | Object.keys(styles2).forEach((key) => { 35 | const arr = [styles2[key]] 36 | if (styles[key]) { 37 | arr.push(styles[key]) 38 | } 39 | obj[key] = arr 40 | }) 41 | return obj 42 | } 43 | 44 | show = () => { 45 | this.setState({visible: true}, () => { 46 | this._showSheet() 47 | }) 48 | } 49 | 50 | hide = (index) => { 51 | this._hideSheet(() => { 52 | this.setState({visible: false}, () => { 53 | this.props.onPress(index) 54 | }) 55 | }) 56 | } 57 | 58 | _cancel = () => { 59 | const { cancelButtonIndex } = this.props 60 | // 保持和 ActionSheetIOS 一致, 61 | // 未设置 cancelButtonIndex 时,点击背景不隐藏 ActionSheet 62 | if (utils.isset(cancelButtonIndex)) { 63 | this.hide(cancelButtonIndex) 64 | } 65 | } 66 | 67 | _showSheet = () => { 68 | Animated.timing(this.state.sheetAnim, { 69 | toValue: 0, 70 | duration: 250, 71 | easing: Easing.out(Easing.ease) 72 | }).start() 73 | } 74 | 75 | _hideSheet (callback) { 76 | Animated.timing(this.state.sheetAnim, { 77 | toValue: this.translateY, 78 | duration: 200 79 | }).start(callback) 80 | } 81 | 82 | /** 83 | * elements: titleBox, messageBox, buttonBox, cancelButtonBox 84 | * box size: height, marginTop, marginBottom 85 | */ 86 | _calculateHeight (props) { 87 | const styles = this.styles 88 | 89 | const getHeight = (name) => { 90 | const style = styles[name][styles[name].length - 1] 91 | let h = 0 92 | ;['height', 'marginTop', 'marginBottom'].forEach((attrName) => { 93 | if (typeof style[attrName] !== 'undefined') { 94 | h += style[attrName] 95 | } 96 | }) 97 | return h 98 | } 99 | 100 | let height = 0 101 | if (props.title) height += getHeight('titleBox') 102 | if (props.message) height += getHeight('messageBox') 103 | if (utils.isset(props.cancelButtonIndex)) { 104 | height += getHeight('cancelButtonBox') 105 | height += (props.options.length - 1) * getHeight('buttonBox') 106 | } else { 107 | height += props.options.length * getHeight('buttonBox') 108 | } 109 | 110 | if (height > MAX_HEIGHT) { 111 | this.scrollEnabled = true 112 | height = MAX_HEIGHT 113 | } else { 114 | this.scrollEnabled = false 115 | } 116 | 117 | return height 118 | } 119 | 120 | _renderTitle () { 121 | const { title } = this.props 122 | const styles = this.styles 123 | if (!title) return null 124 | return ( 125 | 126 | {React.isValidElement(title) ? title : ( 127 | {title} 128 | )} 129 | 130 | ) 131 | } 132 | 133 | _renderMessage () { 134 | const { message } = this.props 135 | const styles = this.styles 136 | if (!message) return null 137 | return ( 138 | 139 | {React.isValidElement(message) ? message : ( 140 | {message} 141 | )} 142 | 143 | ) 144 | } 145 | 146 | _renderCancelButton () { 147 | const { options, cancelButtonIndex } = this.props 148 | if (!utils.isset(cancelButtonIndex)) return null 149 | return this._createButton(options[cancelButtonIndex], cancelButtonIndex) 150 | } 151 | 152 | _createButton (title, index) { 153 | const styles = this.styles 154 | const { buttonUnderlayColor, cancelButtonIndex, destructiveButtonIndex, tintColor } = this.props 155 | const fontColor = destructiveButtonIndex === index ? WARN_COLOR : tintColor 156 | const buttonBoxStyle = cancelButtonIndex === index ? styles.cancelButtonBox : styles.buttonBox 157 | return ( 158 | this.hide(index)} 164 | > 165 | {React.isValidElement(title) ? title : ( 166 | {title} 167 | )} 168 | 169 | ) 170 | } 171 | 172 | _renderOptions () { 173 | const { cancelButtonIndex } = this.props 174 | return this.props.options.map((title, index) => { 175 | return cancelButtonIndex === index ? null : this._createButton(title, index) 176 | }) 177 | } 178 | 179 | render () { 180 | const styles = this.styles 181 | const { visible, sheetAnim } = this.state 182 | return ( 183 | 188 | 189 | 193 | 199 | {this._renderTitle()} 200 | {this._renderMessage()} 201 | {this._renderOptions()} 202 | {this._renderCancelButton()} 203 | 204 | 205 | 206 | ) 207 | } 208 | } 209 | 210 | export default ActionSheet 211 | -------------------------------------------------------------------------------- /example/app/lib/ActionSheetCustom.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Text, View, Dimensions, Modal, TouchableHighlight, Animated, ScrollView, Easing } from 'react-native' 3 | import * as utils from './utils' 4 | import styles2 from './styles' 5 | 6 | const WARN_COLOR = '#FF3B30' 7 | const MAX_HEIGHT = Dimensions.get('window').height * 0.7 8 | 9 | class ActionSheet extends React.Component { 10 | static defaultProps = { 11 | tintColor: '#007AFF', 12 | buttonUnderlayColor: '#F4F4F4', 13 | onPress: () => {}, 14 | styles: {} 15 | } 16 | 17 | constructor (props) { 18 | super(props) 19 | this.scrollEnabled = false 20 | this.translateY = this._calculateHeight(props) 21 | this.state = { 22 | visible: false, 23 | sheetAnim: new Animated.Value(this.translateY) 24 | } 25 | } 26 | 27 | componentWillReceiveProps (nextProps) { 28 | this.translateY = this._calculateHeight(nextProps) 29 | } 30 | 31 | get styles () { 32 | const { styles } = this.props 33 | const obj = {} 34 | Object.keys(styles2).forEach((key) => { 35 | const arr = [styles2[key]] 36 | if (styles[key]) { 37 | arr.push(styles[key]) 38 | } 39 | obj[key] = arr 40 | }) 41 | return obj 42 | } 43 | 44 | show = () => { 45 | this.setState({visible: true}, () => { 46 | this._showSheet() 47 | }) 48 | } 49 | 50 | hide = (index) => { 51 | this._hideSheet(() => { 52 | this.setState({visible: false}, () => { 53 | this.props.onPress(index) 54 | }) 55 | }) 56 | } 57 | 58 | _cancel = () => { 59 | const { cancelButtonIndex } = this.props 60 | // 保持和 ActionSheetIOS 一致, 61 | // 未设置 cancelButtonIndex 时,点击背景不隐藏 ActionSheet 62 | if (utils.isset(cancelButtonIndex)) { 63 | this.hide(cancelButtonIndex) 64 | } 65 | } 66 | 67 | _showSheet = () => { 68 | Animated.timing(this.state.sheetAnim, { 69 | toValue: 0, 70 | duration: 250, 71 | easing: Easing.out(Easing.ease) 72 | }).start() 73 | } 74 | 75 | _hideSheet (callback) { 76 | Animated.timing(this.state.sheetAnim, { 77 | toValue: this.translateY, 78 | duration: 200 79 | }).start(callback) 80 | } 81 | 82 | /** 83 | * elements: titleBox, messageBox, buttonBox, cancelButtonBox 84 | * box size: height, marginTop, marginBottom 85 | */ 86 | _calculateHeight (props) { 87 | const styles = this.styles 88 | 89 | const getHeight = (name) => { 90 | const style = styles[name][styles[name].length - 1] 91 | let h = 0 92 | ;['height', 'marginTop', 'marginBottom'].forEach((attrName) => { 93 | if (typeof style[attrName] !== 'undefined') { 94 | h += style[attrName] 95 | } 96 | }) 97 | return h 98 | } 99 | 100 | let height = 0 101 | if (props.title) height += getHeight('titleBox') 102 | if (props.message) height += getHeight('messageBox') 103 | if (utils.isset(props.cancelButtonIndex)) { 104 | height += getHeight('cancelButtonBox') 105 | height += (props.options.length - 1) * getHeight('buttonBox') 106 | } else { 107 | height += props.options.length * getHeight('buttonBox') 108 | } 109 | 110 | if (height > MAX_HEIGHT) { 111 | this.scrollEnabled = true 112 | height = MAX_HEIGHT 113 | } else { 114 | this.scrollEnabled = false 115 | } 116 | 117 | return height 118 | } 119 | 120 | _renderTitle () { 121 | const { title } = this.props 122 | const styles = this.styles 123 | if (!title) return null 124 | return ( 125 | 126 | {React.isValidElement(title) ? title : ( 127 | {title} 128 | )} 129 | 130 | ) 131 | } 132 | 133 | _renderMessage () { 134 | const { message } = this.props 135 | const styles = this.styles 136 | if (!message) return null 137 | return ( 138 | 139 | {React.isValidElement(message) ? message : ( 140 | {message} 141 | )} 142 | 143 | ) 144 | } 145 | 146 | _renderCancelButton () { 147 | const { options, cancelButtonIndex } = this.props 148 | if (!utils.isset(cancelButtonIndex)) return null 149 | return this._createButton(options[cancelButtonIndex], cancelButtonIndex) 150 | } 151 | 152 | _createButton (title, index) { 153 | const styles = this.styles 154 | const { buttonUnderlayColor, cancelButtonIndex, destructiveButtonIndex, tintColor } = this.props 155 | const fontColor = destructiveButtonIndex === index ? WARN_COLOR : tintColor 156 | const buttonBoxStyle = cancelButtonIndex === index ? styles.cancelButtonBox : styles.buttonBox 157 | return ( 158 | this.hide(index)} 164 | > 165 | {React.isValidElement(title) ? title : ( 166 | {title} 167 | )} 168 | 169 | ) 170 | } 171 | 172 | _renderOptions () { 173 | const { cancelButtonIndex } = this.props 174 | return this.props.options.map((title, index) => { 175 | return cancelButtonIndex === index ? null : this._createButton(title, index) 176 | }) 177 | } 178 | 179 | render () { 180 | const styles = this.styles 181 | const { visible, sheetAnim } = this.state 182 | return ( 183 | 188 | 189 | 193 | 199 | {this._renderTitle()} 200 | {this._renderMessage()} 201 | {this._renderOptions()} 202 | {this._renderCancelButton()} 203 | 204 | 205 | 206 | ) 207 | } 208 | } 209 | 210 | export default ActionSheet 211 | -------------------------------------------------------------------------------- /tests/__snapshots__/ActionSheetCustom.test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`ExampleA render correctly 1`] = ` 4 | 13 | 23 | I like 24 | 25 | 42 | Example A 43 | 44 | 45 | `; 46 | 47 | exports[`ExampleB render correctly 1`] = ` 48 | 57 | 67 | I like 68 | 69 | 86 | Example B 87 | 88 | 94 | 102 | 119 | 134 | 144 | 155 | Which one do you like? 156 | 157 | 158 | 169 | 180 | custom message custom message custom message custom message custom message custom message 181 | 182 | 183 | 187 | 219 | 234 | Apple 235 | 236 | 237 | 269 | 279 | Banana 280 | 281 | 282 | 314 | 329 | Watermelon 330 | 331 | 332 | 364 | 374 | Durian 375 | 376 | 377 | 378 | 412 | 428 | Cancel 429 | 430 | 431 | 432 | 433 | 434 | 435 | `; 436 | -------------------------------------------------------------------------------- /example/app/README.md: -------------------------------------------------------------------------------- 1 | This project was bootstrapped with [Create React Native App](https://github.com/react-community/create-react-native-app). 2 | 3 | Below you'll find information about performing common tasks. The most recent version of this guide is available [here](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/README.md). 4 | 5 | ## Table of Contents 6 | 7 | * [Updating to New Releases](#updating-to-new-releases) 8 | * [Available Scripts](#available-scripts) 9 | * [npm start](#npm-start) 10 | * [npm test](#npm-test) 11 | * [npm run ios](#npm-run-ios) 12 | * [npm run android](#npm-run-android) 13 | * [npm run eject](#npm-run-eject) 14 | * [Writing and Running Tests](#writing-and-running-tests) 15 | * [Environment Variables](#environment-variables) 16 | * [Configuring Packager IP Address](#configuring-packager-ip-address) 17 | * [Adding Flow](#adding-flow) 18 | * [Customizing App Display Name and Icon](#customizing-app-display-name-and-icon) 19 | * [Sharing and Deployment](#sharing-and-deployment) 20 | * [Publishing to Expo's React Native Community](#publishing-to-expos-react-native-community) 21 | * [Building an Expo "standalone" app](#building-an-expo-standalone-app) 22 | * [Ejecting from Create React Native App](#ejecting-from-create-react-native-app) 23 | * [Build Dependencies (Xcode & Android Studio)](#build-dependencies-xcode-android-studio) 24 | * [Should I Use ExpoKit?](#should-i-use-expokit) 25 | * [Troubleshooting](#troubleshooting) 26 | * [Networking](#networking) 27 | * [iOS Simulator won't open](#ios-simulator-wont-open) 28 | * [QR Code does not scan](#qr-code-does-not-scan) 29 | 30 | ## Updating to New Releases 31 | 32 | You should only need to update the global installation of `create-react-native-app` very rarely, ideally never. 33 | 34 | Updating the `react-native-scripts` dependency of your app should be as simple as bumping the version number in `package.json` and reinstalling your project's dependencies. 35 | 36 | Upgrading to a new version of React Native requires updating the `react-native`, `react`, and `expo` package versions, and setting the correct `sdkVersion` in `app.json`. See the [versioning guide](https://github.com/react-community/create-react-native-app/blob/master/VERSIONS.md) for up-to-date information about package version compatibility. 37 | 38 | ## Available Scripts 39 | 40 | If Yarn was installed when the project was initialized, then dependencies will have been installed via Yarn, and you should probably use it to run these commands as well. Unlike dependency installation, command running syntax is identical for Yarn and NPM at the time of this writing. 41 | 42 | ### `npm start` 43 | 44 | Runs your app in development mode. 45 | 46 | Open it in the [Expo app](https://expo.io) on your phone to view it. It will reload if you save edits to your files, and you will see build errors and logs in the terminal. 47 | 48 | Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the `--reset-cache` flag to the start script: 49 | 50 | ``` 51 | npm start --reset-cache 52 | # or 53 | yarn start --reset-cache 54 | ``` 55 | 56 | #### `npm test` 57 | 58 | Runs the [jest](https://github.com/facebook/jest) test runner on your tests. 59 | 60 | #### `npm run ios` 61 | 62 | Like `npm start`, but also attempts to open your app in the iOS Simulator if you're on a Mac and have it installed. 63 | 64 | #### `npm run android` 65 | 66 | Like `npm start`, but also attempts to open your app on a connected Android device or emulator. Requires an installation of Android build tools (see [React Native docs](https://facebook.github.io/react-native/docs/getting-started.html) for detailed setup). We also recommend installing Genymotion as your Android emulator. Once you've finished setting up the native build environment, there are two options for making the right copy of `adb` available to Create React Native App: 67 | 68 | ##### Using Android Studio's `adb` 69 | 70 | 1. Make sure that you can run adb from your terminal. 71 | 2. Open Genymotion and navigate to `Settings -> ADB`. Select “Use custom Android SDK tools” and update with your [Android SDK directory](https://stackoverflow.com/questions/25176594/android-sdk-location). 72 | 73 | ##### Using Genymotion's `adb` 74 | 75 | 1. Find Genymotion’s copy of adb. On macOS for example, this is normally `/Applications/Genymotion.app/Contents/MacOS/tools/`. 76 | 2. Add the Genymotion tools directory to your path (instructions for [Mac](http://osxdaily.com/2014/08/14/add-new-path-to-path-command-line/), [Linux](http://www.computerhope.com/issues/ch001647.htm), and [Windows](https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/)). 77 | 3. Make sure that you can run adb from your terminal. 78 | 79 | #### `npm run eject` 80 | 81 | This will start the process of "ejecting" from Create React Native App's build scripts. You'll be asked a couple of questions about how you'd like to build your project. 82 | 83 | **Warning:** Running eject is a permanent action (aside from whatever version control system you use). An ejected app will require you to have an [Xcode and/or Android Studio environment](https://facebook.github.io/react-native/docs/getting-started.html) set up. 84 | 85 | ## Customizing App Display Name and Icon 86 | 87 | You can edit `app.json` to include [configuration keys](https://docs.expo.io/versions/latest/guides/configuration.html) under the `expo` key. 88 | 89 | To change your app's display name, set the `expo.name` key in `app.json` to an appropriate string. 90 | 91 | To set an app icon, set the `expo.icon` key in `app.json` to be either a local path or a URL. It's recommended that you use a 512x512 png file with transparency. 92 | 93 | ## Writing and Running Tests 94 | 95 | This project is set up to use [jest](https://facebook.github.io/jest/) for tests. You can configure whatever testing strategy you like, but jest works out of the box. Create test files in directories called `__tests__` or with the `.test` extension to have the files loaded by jest. See the [the template project](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/App.test.js) for an example test. The [jest documentation](https://facebook.github.io/jest/docs/en/getting-started.html) is also a wonderful resource, as is the [React Native testing tutorial](https://facebook.github.io/jest/docs/en/tutorial-react-native.html). 96 | 97 | ## Environment Variables 98 | 99 | You can configure some of Create React Native App's behavior using environment variables. 100 | 101 | ### Configuring Packager IP Address 102 | 103 | When starting your project, you'll see something like this for your project URL: 104 | 105 | ``` 106 | exp://192.168.0.2:19000 107 | ``` 108 | 109 | The "manifest" at that URL tells the Expo app how to retrieve and load your app's JavaScript bundle, so even if you load it in the app via a URL like `exp://localhost:19000`, the Expo client app will still try to retrieve your app at the IP address that the start script provides. 110 | 111 | In some cases, this is less than ideal. This might be the case if you need to run your project inside of a virtual machine and you have to access the packager via a different IP address than the one which prints by default. In order to override the IP address or hostname that is detected by Create React Native App, you can specify your own hostname via the `REACT_NATIVE_PACKAGER_HOSTNAME` environment variable: 112 | 113 | Mac and Linux: 114 | 115 | ``` 116 | REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' npm start 117 | ``` 118 | 119 | Windows: 120 | ``` 121 | set REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' 122 | npm start 123 | ``` 124 | 125 | The above example would cause the development server to listen on `exp://my-custom-ip-address-or-hostname:19000`. 126 | 127 | ## Adding Flow 128 | 129 | Flow is a static type checker that helps you write code with fewer bugs. Check out this [introduction to using static types in JavaScript](https://medium.com/@preethikasireddy/why-use-static-types-in-javascript-part-1-8382da1e0adb) if you are new to this concept. 130 | 131 | React Native works with [Flow](http://flowtype.org/) out of the box, as long as your Flow version matches the one used in the version of React Native. 132 | 133 | To add a local dependency to the correct Flow version to a Create React Native App project, follow these steps: 134 | 135 | 1. Find the Flow `[version]` at the bottom of the included [.flowconfig](.flowconfig) 136 | 2. Run `npm install --save-dev flow-bin@x.y.z` (or `yarn add --dev flow-bin@x.y.z`), where `x.y.z` is the .flowconfig version number. 137 | 3. Add `"flow": "flow"` to the `scripts` section of your `package.json`. 138 | 4. Add `// @flow` to any files you want to type check (for example, to `App.js`). 139 | 140 | Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors. 141 | You can optionally use a [plugin for your IDE or editor](https://flow.org/en/docs/editors/) for a better integrated experience. 142 | 143 | To learn more about Flow, check out [its documentation](https://flow.org/). 144 | 145 | ## Sharing and Deployment 146 | 147 | Create React Native App does a lot of work to make app setup and development simple and straightforward, but it's very difficult to do the same for deploying to Apple's App Store or Google's Play Store without relying on a hosted service. 148 | 149 | ### Publishing to Expo's React Native Community 150 | 151 | Expo provides free hosting for the JS-only apps created by CRNA, allowing you to share your app through the Expo client app. This requires registration for an Expo account. 152 | 153 | Install the `exp` command-line tool, and run the publish command: 154 | 155 | ``` 156 | $ npm i -g exp 157 | $ exp publish 158 | ``` 159 | 160 | ### Building an Expo "standalone" app 161 | 162 | You can also use a service like [Expo's standalone builds](https://docs.expo.io/versions/latest/guides/building-standalone-apps.html) if you want to get an IPA/APK for distribution without having to build the native code yourself. 163 | 164 | ### Ejecting from Create React Native App 165 | 166 | If you want to build and deploy your app yourself, you'll need to eject from CRNA and use Xcode and Android Studio. 167 | 168 | This is usually as simple as running `npm run eject` in your project, which will walk you through the process. Make sure to install `react-native-cli` and follow the [native code getting started guide for React Native](https://facebook.github.io/react-native/docs/getting-started.html). 169 | 170 | #### Should I Use ExpoKit? 171 | 172 | If you have made use of Expo APIs while working on your project, then those API calls will stop working if you eject to a regular React Native project. If you want to continue using those APIs, you can eject to "React Native + ExpoKit" which will still allow you to build your own native code and continue using the Expo APIs. See the [ejecting guide](https://github.com/react-community/create-react-native-app/blob/master/EJECTING.md) for more details about this option. 173 | 174 | ## Troubleshooting 175 | 176 | ### Networking 177 | 178 | If you're unable to load your app on your phone due to a network timeout or a refused connection, a good first step is to verify that your phone and computer are on the same network and that they can reach each other. Create React Native App needs access to ports 19000 and 19001 so ensure that your network and firewall settings allow access from your device to your computer on both of these ports. 179 | 180 | Try opening a web browser on your phone and opening the URL that the packager script prints, replacing `exp://` with `http://`. So, for example, if underneath the QR code in your terminal you see: 181 | 182 | ``` 183 | exp://192.168.0.1:19000 184 | ``` 185 | 186 | Try opening Safari or Chrome on your phone and loading 187 | 188 | ``` 189 | http://192.168.0.1:19000 190 | ``` 191 | 192 | and 193 | 194 | ``` 195 | http://192.168.0.1:19001 196 | ``` 197 | 198 | If this works, but you're still unable to load your app by scanning the QR code, please open an issue on the [Create React Native App repository](https://github.com/react-community/create-react-native-app) with details about these steps and any other error messages you may have received. 199 | 200 | If you're not able to load the `http` URL in your phone's web browser, try using the tethering/mobile hotspot feature on your phone (beware of data usage, though), connecting your computer to that WiFi network, and restarting the packager. If you are using a VPN you may need to disable it. 201 | 202 | ### iOS Simulator won't open 203 | 204 | If you're on a Mac, there are a few errors that users sometimes see when attempting to `npm run ios`: 205 | 206 | * "non-zero exit code: 107" 207 | * "You may need to install Xcode" but it is already installed 208 | * and others 209 | 210 | There are a few steps you may want to take to troubleshoot these kinds of errors: 211 | 212 | 1. Make sure Xcode is installed and open it to accept the license agreement if it prompts you. You can install it from the Mac App Store. 213 | 2. Open Xcode's Preferences, the Locations tab, and make sure that the `Command Line Tools` menu option is set to something. Sometimes when the CLI tools are first installed by Homebrew this option is left blank, which can prevent Apple utilities from finding the simulator. Make sure to re-run `npm/yarn run ios` after doing so. 214 | 3. If that doesn't work, open the Simulator, and under the app menu select `Reset Contents and Settings...`. After that has finished, quit the Simulator, and re-run `npm/yarn run ios`. 215 | 216 | ### QR Code does not scan 217 | 218 | If you're not able to scan the QR code, make sure your phone's camera is focusing correctly, and also make sure that the contrast on the two colors in your terminal is high enough. For example, WebStorm's default themes may [not have enough contrast](https://github.com/react-community/create-react-native-app/issues/49) for terminal QR codes to be scannable with the system barcode scanners that the Expo app uses. 219 | 220 | If this causes problems for you, you may want to try changing your terminal's color theme to have more contrast, or running Create React Native App from a different terminal. You can also manually enter the URL printed by the packager script in the Expo app's search bar to load it manually. 221 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.42", "@babel/code-frame@^7.0.0-beta.40": 6 | version "7.0.0-beta.42" 7 | resolved "http://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.0.0-beta.42.tgz#a9c83233fa7cd06b39dc77adbb908616ff4f1962" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.42" 10 | 11 | "@babel/generator@7.0.0-beta.42": 12 | version "7.0.0-beta.42" 13 | resolved "http://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.0.0-beta.42.tgz#777bb50f39c94a7e57f73202d833141f8159af33" 14 | dependencies: 15 | "@babel/types" "7.0.0-beta.42" 16 | jsesc "^2.5.1" 17 | lodash "^4.2.0" 18 | source-map "^0.5.0" 19 | trim-right "^1.0.1" 20 | 21 | "@babel/helper-function-name@7.0.0-beta.42": 22 | version "7.0.0-beta.42" 23 | resolved "http://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.0.0-beta.42.tgz#b38b8f4f85168d1812c543dd700b5d549b0c4658" 24 | dependencies: 25 | "@babel/helper-get-function-arity" "7.0.0-beta.42" 26 | "@babel/template" "7.0.0-beta.42" 27 | "@babel/types" "7.0.0-beta.42" 28 | 29 | "@babel/helper-get-function-arity@7.0.0-beta.42": 30 | version "7.0.0-beta.42" 31 | resolved "http://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.0.0-beta.42.tgz#ad072e32f912c033053fc80478169aeadc22191e" 32 | dependencies: 33 | "@babel/types" "7.0.0-beta.42" 34 | 35 | "@babel/helper-split-export-declaration@7.0.0-beta.42": 36 | version "7.0.0-beta.42" 37 | resolved "http://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.0.0-beta.42.tgz#0d0d5254220a9cc4e7e226240306b939dc210ee7" 38 | dependencies: 39 | "@babel/types" "7.0.0-beta.42" 40 | 41 | "@babel/highlight@7.0.0-beta.42": 42 | version "7.0.0-beta.42" 43 | resolved "http://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.0.0-beta.42.tgz#a502a1c0d6f99b2b0e81d468a1b0c0e81e3f3623" 44 | dependencies: 45 | chalk "^2.0.0" 46 | esutils "^2.0.2" 47 | js-tokens "^3.0.0" 48 | 49 | "@babel/template@7.0.0-beta.42": 50 | version "7.0.0-beta.42" 51 | resolved "http://registry.npm.taobao.org/@babel/template/download/@babel/template-7.0.0-beta.42.tgz#7186d4e70d44cdec975049ba0a73bdaf5cdee052" 52 | dependencies: 53 | "@babel/code-frame" "7.0.0-beta.42" 54 | "@babel/types" "7.0.0-beta.42" 55 | babylon "7.0.0-beta.42" 56 | lodash "^4.2.0" 57 | 58 | "@babel/traverse@^7.0.0-beta.40": 59 | version "7.0.0-beta.42" 60 | resolved "http://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.0.0-beta.42.tgz#f4bf4d1e33d41baf45205e2d0463591d57326285" 61 | dependencies: 62 | "@babel/code-frame" "7.0.0-beta.42" 63 | "@babel/generator" "7.0.0-beta.42" 64 | "@babel/helper-function-name" "7.0.0-beta.42" 65 | "@babel/helper-split-export-declaration" "7.0.0-beta.42" 66 | "@babel/types" "7.0.0-beta.42" 67 | babylon "7.0.0-beta.42" 68 | debug "^3.1.0" 69 | globals "^11.1.0" 70 | invariant "^2.2.0" 71 | lodash "^4.2.0" 72 | 73 | "@babel/types@7.0.0-beta.42", "@babel/types@^7.0.0-beta.40": 74 | version "7.0.0-beta.42" 75 | resolved "http://registry.npm.taobao.org/@babel/types/download/@babel/types-7.0.0-beta.42.tgz#1e2118767684880f6963801b272fd2b3348efacc" 76 | dependencies: 77 | esutils "^2.0.2" 78 | lodash "^4.2.0" 79 | to-fast-properties "^2.0.0" 80 | 81 | abab@^1.0.3: 82 | version "1.0.4" 83 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 84 | 85 | abbrev@1: 86 | version "1.1.1" 87 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 88 | 89 | acorn-globals@^3.1.0: 90 | version "3.1.0" 91 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 92 | dependencies: 93 | acorn "^4.0.4" 94 | 95 | acorn-jsx@^3.0.0: 96 | version "3.0.1" 97 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 98 | dependencies: 99 | acorn "^3.0.4" 100 | 101 | acorn@^3.0.4: 102 | version "3.3.0" 103 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 104 | 105 | acorn@^4.0.4: 106 | version "4.0.13" 107 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 108 | 109 | acorn@^5.5.0: 110 | version "5.5.3" 111 | resolved "http://registry.npm.taobao.org/acorn/download/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 112 | 113 | ajv-keywords@^2.1.0: 114 | version "2.1.0" 115 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0" 116 | 117 | ajv@^4.9.1: 118 | version "4.11.8" 119 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 120 | dependencies: 121 | co "^4.6.0" 122 | json-stable-stringify "^1.0.1" 123 | 124 | ajv@^5.1.0, ajv@^5.2.3: 125 | version "5.2.3" 126 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2" 127 | dependencies: 128 | co "^4.6.0" 129 | fast-deep-equal "^1.0.0" 130 | json-schema-traverse "^0.3.0" 131 | json-stable-stringify "^1.0.1" 132 | 133 | ajv@^5.3.0: 134 | version "5.5.2" 135 | resolved "http://registry.npm.taobao.org/ajv/download/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 136 | dependencies: 137 | co "^4.6.0" 138 | fast-deep-equal "^1.0.0" 139 | fast-json-stable-stringify "^2.0.0" 140 | json-schema-traverse "^0.3.0" 141 | 142 | align-text@^0.1.1, align-text@^0.1.3: 143 | version "0.1.4" 144 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 145 | dependencies: 146 | kind-of "^3.0.2" 147 | longest "^1.0.1" 148 | repeat-string "^1.5.2" 149 | 150 | amdefine@>=0.0.4: 151 | version "1.0.1" 152 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 153 | 154 | ansi-escapes@^3.0.0: 155 | version "3.0.0" 156 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 157 | 158 | ansi-regex@^2.0.0: 159 | version "2.1.1" 160 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 161 | 162 | ansi-regex@^3.0.0: 163 | version "3.0.0" 164 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 165 | 166 | ansi-styles@^2.2.1: 167 | version "2.2.1" 168 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 169 | 170 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 171 | version "3.2.0" 172 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 173 | dependencies: 174 | color-convert "^1.9.0" 175 | 176 | anymatch@^1.3.0: 177 | version "1.3.2" 178 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 179 | dependencies: 180 | micromatch "^2.1.5" 181 | normalize-path "^2.0.0" 182 | 183 | append-transform@^0.4.0: 184 | version "0.4.0" 185 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 186 | dependencies: 187 | default-require-extensions "^1.0.0" 188 | 189 | aproba@^1.0.3: 190 | version "1.2.0" 191 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 192 | 193 | are-we-there-yet@~1.1.2: 194 | version "1.1.4" 195 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 196 | dependencies: 197 | delegates "^1.0.0" 198 | readable-stream "^2.0.6" 199 | 200 | argparse@^1.0.7: 201 | version "1.0.9" 202 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 203 | dependencies: 204 | sprintf-js "~1.0.2" 205 | 206 | arr-diff@^2.0.0: 207 | version "2.0.0" 208 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 209 | dependencies: 210 | arr-flatten "^1.0.1" 211 | 212 | arr-flatten@^1.0.1: 213 | version "1.1.0" 214 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 215 | 216 | array-equal@^1.0.0: 217 | version "1.0.0" 218 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 219 | 220 | array-includes@^3.0.3: 221 | version "3.0.3" 222 | resolved "http://registry.npm.taobao.org/array-includes/download/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 223 | dependencies: 224 | define-properties "^1.1.2" 225 | es-abstract "^1.7.0" 226 | 227 | array-union@^1.0.1: 228 | version "1.0.2" 229 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 230 | dependencies: 231 | array-uniq "^1.0.1" 232 | 233 | array-uniq@^1.0.1: 234 | version "1.0.3" 235 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 236 | 237 | array-unique@^0.2.1: 238 | version "0.2.1" 239 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 240 | 241 | arrify@^1.0.0, arrify@^1.0.1: 242 | version "1.0.1" 243 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 244 | 245 | asap@~2.0.3: 246 | version "2.0.6" 247 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 248 | 249 | asn1@~0.2.3: 250 | version "0.2.3" 251 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 252 | 253 | assert-plus@1.0.0, assert-plus@^1.0.0: 254 | version "1.0.0" 255 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 256 | 257 | assert-plus@^0.2.0: 258 | version "0.2.0" 259 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 260 | 261 | astral-regex@^1.0.0: 262 | version "1.0.0" 263 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 264 | 265 | async@^1.4.0: 266 | version "1.5.2" 267 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 268 | 269 | async@^2.1.4: 270 | version "2.5.0" 271 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 272 | dependencies: 273 | lodash "^4.14.0" 274 | 275 | asynckit@^0.4.0: 276 | version "0.4.0" 277 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 278 | 279 | aws-sign2@~0.6.0: 280 | version "0.6.0" 281 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 282 | 283 | aws-sign2@~0.7.0: 284 | version "0.7.0" 285 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 286 | 287 | aws4@^1.2.1, aws4@^1.6.0: 288 | version "1.6.0" 289 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 290 | 291 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 292 | version "6.26.0" 293 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 294 | dependencies: 295 | chalk "^1.1.3" 296 | esutils "^2.0.2" 297 | js-tokens "^3.0.2" 298 | 299 | babel-core@^6.0.0, babel-core@^6.26.0: 300 | version "6.26.0" 301 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 302 | dependencies: 303 | babel-code-frame "^6.26.0" 304 | babel-generator "^6.26.0" 305 | babel-helpers "^6.24.1" 306 | babel-messages "^6.23.0" 307 | babel-register "^6.26.0" 308 | babel-runtime "^6.26.0" 309 | babel-template "^6.26.0" 310 | babel-traverse "^6.26.0" 311 | babel-types "^6.26.0" 312 | babylon "^6.18.0" 313 | convert-source-map "^1.5.0" 314 | debug "^2.6.8" 315 | json5 "^0.5.1" 316 | lodash "^4.17.4" 317 | minimatch "^3.0.4" 318 | path-is-absolute "^1.0.1" 319 | private "^0.1.7" 320 | slash "^1.0.0" 321 | source-map "^0.5.6" 322 | 323 | babel-eslint@^8.2.2: 324 | version "8.2.2" 325 | resolved "http://registry.npm.taobao.org/babel-eslint/download/babel-eslint-8.2.2.tgz#1102273354c6f0b29b4ea28a65f97d122296b68b" 326 | dependencies: 327 | "@babel/code-frame" "^7.0.0-beta.40" 328 | "@babel/traverse" "^7.0.0-beta.40" 329 | "@babel/types" "^7.0.0-beta.40" 330 | babylon "^7.0.0-beta.40" 331 | eslint-scope "~3.7.1" 332 | eslint-visitor-keys "^1.0.0" 333 | 334 | babel-generator@^6.18.0, babel-generator@^6.26.0: 335 | version "6.26.0" 336 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 337 | dependencies: 338 | babel-messages "^6.23.0" 339 | babel-runtime "^6.26.0" 340 | babel-types "^6.26.0" 341 | detect-indent "^4.0.0" 342 | jsesc "^1.3.0" 343 | lodash "^4.17.4" 344 | source-map "^0.5.6" 345 | trim-right "^1.0.1" 346 | 347 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 348 | version "6.24.1" 349 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 350 | dependencies: 351 | babel-helper-explode-assignable-expression "^6.24.1" 352 | babel-runtime "^6.22.0" 353 | babel-types "^6.24.1" 354 | 355 | babel-helper-builder-react-jsx@^6.24.1: 356 | version "6.26.0" 357 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 358 | dependencies: 359 | babel-runtime "^6.26.0" 360 | babel-types "^6.26.0" 361 | esutils "^2.0.2" 362 | 363 | babel-helper-call-delegate@^6.24.1: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 366 | dependencies: 367 | babel-helper-hoist-variables "^6.24.1" 368 | babel-runtime "^6.22.0" 369 | babel-traverse "^6.24.1" 370 | babel-types "^6.24.1" 371 | 372 | babel-helper-define-map@^6.24.1: 373 | version "6.26.0" 374 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 375 | dependencies: 376 | babel-helper-function-name "^6.24.1" 377 | babel-runtime "^6.26.0" 378 | babel-types "^6.26.0" 379 | lodash "^4.17.4" 380 | 381 | babel-helper-explode-assignable-expression@^6.24.1: 382 | version "6.24.1" 383 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 384 | dependencies: 385 | babel-runtime "^6.22.0" 386 | babel-traverse "^6.24.1" 387 | babel-types "^6.24.1" 388 | 389 | babel-helper-function-name@^6.24.1: 390 | version "6.24.1" 391 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 392 | dependencies: 393 | babel-helper-get-function-arity "^6.24.1" 394 | babel-runtime "^6.22.0" 395 | babel-template "^6.24.1" 396 | babel-traverse "^6.24.1" 397 | babel-types "^6.24.1" 398 | 399 | babel-helper-get-function-arity@^6.24.1: 400 | version "6.24.1" 401 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 402 | dependencies: 403 | babel-runtime "^6.22.0" 404 | babel-types "^6.24.1" 405 | 406 | babel-helper-hoist-variables@^6.24.1: 407 | version "6.24.1" 408 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | babel-types "^6.24.1" 412 | 413 | babel-helper-optimise-call-expression@^6.24.1: 414 | version "6.24.1" 415 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 416 | dependencies: 417 | babel-runtime "^6.22.0" 418 | babel-types "^6.24.1" 419 | 420 | babel-helper-regex@^6.24.1: 421 | version "6.26.0" 422 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 423 | dependencies: 424 | babel-runtime "^6.26.0" 425 | babel-types "^6.26.0" 426 | lodash "^4.17.4" 427 | 428 | babel-helper-remap-async-to-generator@^6.24.1: 429 | version "6.24.1" 430 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 431 | dependencies: 432 | babel-helper-function-name "^6.24.1" 433 | babel-runtime "^6.22.0" 434 | babel-template "^6.24.1" 435 | babel-traverse "^6.24.1" 436 | babel-types "^6.24.1" 437 | 438 | babel-helper-replace-supers@^6.24.1: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 441 | dependencies: 442 | babel-helper-optimise-call-expression "^6.24.1" 443 | babel-messages "^6.23.0" 444 | babel-runtime "^6.22.0" 445 | babel-template "^6.24.1" 446 | babel-traverse "^6.24.1" 447 | babel-types "^6.24.1" 448 | 449 | babel-helpers@^6.24.1: 450 | version "6.24.1" 451 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 452 | dependencies: 453 | babel-runtime "^6.22.0" 454 | babel-template "^6.24.1" 455 | 456 | babel-jest@^21.2.0: 457 | version "21.2.0" 458 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" 459 | dependencies: 460 | babel-plugin-istanbul "^4.0.0" 461 | babel-preset-jest "^21.2.0" 462 | 463 | babel-messages@^6.23.0: 464 | version "6.23.0" 465 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 466 | dependencies: 467 | babel-runtime "^6.22.0" 468 | 469 | babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.5.0: 470 | version "6.22.0" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 472 | dependencies: 473 | babel-runtime "^6.22.0" 474 | 475 | babel-plugin-istanbul@^4.0.0: 476 | version "4.1.5" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 478 | dependencies: 479 | find-up "^2.1.0" 480 | istanbul-lib-instrument "^1.7.5" 481 | test-exclude "^4.1.1" 482 | 483 | babel-plugin-jest-hoist@^21.2.0: 484 | version "21.2.0" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" 486 | 487 | babel-plugin-react-transform@^3.0.0: 488 | version "3.0.0" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-3.0.0.tgz#402f25137b7bb66e9b54ead75557dfbc7ecaaa74" 490 | dependencies: 491 | lodash "^4.6.1" 492 | 493 | babel-plugin-syntax-async-functions@^6.5.0, babel-plugin-syntax-async-functions@^6.8.0: 494 | version "6.13.0" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 496 | 497 | babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0: 498 | version "6.13.0" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 500 | 501 | babel-plugin-syntax-dynamic-import@^6.18.0: 502 | version "6.18.0" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 504 | 505 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 506 | version "6.13.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 508 | 509 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0: 510 | version "6.18.0" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 512 | 513 | babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: 514 | version "6.18.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 516 | 517 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 518 | version "6.13.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 520 | 521 | babel-plugin-syntax-trailing-function-commas@^6.22.0, babel-plugin-syntax-trailing-function-commas@^6.5.0: 522 | version "6.22.0" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 524 | 525 | babel-plugin-transform-async-to-generator@^6.22.0: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 528 | dependencies: 529 | babel-helper-remap-async-to-generator "^6.24.1" 530 | babel-plugin-syntax-async-functions "^6.8.0" 531 | babel-runtime "^6.22.0" 532 | 533 | babel-plugin-transform-class-properties@^6.5.0: 534 | version "6.24.1" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 536 | dependencies: 537 | babel-helper-function-name "^6.24.1" 538 | babel-plugin-syntax-class-properties "^6.8.0" 539 | babel-runtime "^6.22.0" 540 | babel-template "^6.24.1" 541 | 542 | babel-plugin-transform-es2015-arrow-functions@^6.22.0, babel-plugin-transform-es2015-arrow-functions@^6.5.0: 543 | version "6.22.0" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 545 | dependencies: 546 | babel-runtime "^6.22.0" 547 | 548 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 549 | version "6.22.0" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 551 | dependencies: 552 | babel-runtime "^6.22.0" 553 | 554 | babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.5.0: 555 | version "6.26.0" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 557 | dependencies: 558 | babel-runtime "^6.26.0" 559 | babel-template "^6.26.0" 560 | babel-traverse "^6.26.0" 561 | babel-types "^6.26.0" 562 | lodash "^4.17.4" 563 | 564 | babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.5.0: 565 | version "6.24.1" 566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 567 | dependencies: 568 | babel-helper-define-map "^6.24.1" 569 | babel-helper-function-name "^6.24.1" 570 | babel-helper-optimise-call-expression "^6.24.1" 571 | babel-helper-replace-supers "^6.24.1" 572 | babel-messages "^6.23.0" 573 | babel-runtime "^6.22.0" 574 | babel-template "^6.24.1" 575 | babel-traverse "^6.24.1" 576 | babel-types "^6.24.1" 577 | 578 | babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.5.0: 579 | version "6.24.1" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 581 | dependencies: 582 | babel-runtime "^6.22.0" 583 | babel-template "^6.24.1" 584 | 585 | babel-plugin-transform-es2015-destructuring@^6.23.0, babel-plugin-transform-es2015-destructuring@^6.5.0: 586 | version "6.23.0" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 588 | dependencies: 589 | babel-runtime "^6.22.0" 590 | 591 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 592 | version "6.24.1" 593 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 594 | dependencies: 595 | babel-runtime "^6.22.0" 596 | babel-types "^6.24.1" 597 | 598 | babel-plugin-transform-es2015-for-of@^6.23.0, babel-plugin-transform-es2015-for-of@^6.5.0: 599 | version "6.23.0" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 601 | dependencies: 602 | babel-runtime "^6.22.0" 603 | 604 | babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.5.0: 605 | version "6.24.1" 606 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 607 | dependencies: 608 | babel-helper-function-name "^6.24.1" 609 | babel-runtime "^6.22.0" 610 | babel-types "^6.24.1" 611 | 612 | babel-plugin-transform-es2015-literals@^6.22.0, babel-plugin-transform-es2015-literals@^6.5.0: 613 | version "6.22.0" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 615 | dependencies: 616 | babel-runtime "^6.22.0" 617 | 618 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 619 | version "6.24.1" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 621 | dependencies: 622 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 623 | babel-runtime "^6.22.0" 624 | babel-template "^6.24.1" 625 | 626 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1, babel-plugin-transform-es2015-modules-commonjs@^6.5.0: 627 | version "6.26.0" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 629 | dependencies: 630 | babel-plugin-transform-strict-mode "^6.24.1" 631 | babel-runtime "^6.26.0" 632 | babel-template "^6.26.0" 633 | babel-types "^6.26.0" 634 | 635 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 636 | version "6.24.1" 637 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 638 | dependencies: 639 | babel-helper-hoist-variables "^6.24.1" 640 | babel-runtime "^6.22.0" 641 | babel-template "^6.24.1" 642 | 643 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 644 | version "6.24.1" 645 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 646 | dependencies: 647 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 648 | babel-runtime "^6.22.0" 649 | babel-template "^6.24.1" 650 | 651 | babel-plugin-transform-es2015-object-super@^6.22.0: 652 | version "6.24.1" 653 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 654 | dependencies: 655 | babel-helper-replace-supers "^6.24.1" 656 | babel-runtime "^6.22.0" 657 | 658 | babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.5.0: 659 | version "6.24.1" 660 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 661 | dependencies: 662 | babel-helper-call-delegate "^6.24.1" 663 | babel-helper-get-function-arity "^6.24.1" 664 | babel-runtime "^6.22.0" 665 | babel-template "^6.24.1" 666 | babel-traverse "^6.24.1" 667 | babel-types "^6.24.1" 668 | 669 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.5.0: 670 | version "6.24.1" 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 672 | dependencies: 673 | babel-runtime "^6.22.0" 674 | babel-types "^6.24.1" 675 | 676 | babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.5.0: 677 | version "6.22.0" 678 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 679 | dependencies: 680 | babel-runtime "^6.22.0" 681 | 682 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 683 | version "6.24.1" 684 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 685 | dependencies: 686 | babel-helper-regex "^6.24.1" 687 | babel-runtime "^6.22.0" 688 | babel-types "^6.24.1" 689 | 690 | babel-plugin-transform-es2015-template-literals@^6.22.0, babel-plugin-transform-es2015-template-literals@^6.5.0: 691 | version "6.22.0" 692 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 693 | dependencies: 694 | babel-runtime "^6.22.0" 695 | 696 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 697 | version "6.23.0" 698 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 699 | dependencies: 700 | babel-runtime "^6.22.0" 701 | 702 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 703 | version "6.24.1" 704 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 705 | dependencies: 706 | babel-helper-regex "^6.24.1" 707 | babel-runtime "^6.22.0" 708 | regexpu-core "^2.0.0" 709 | 710 | babel-plugin-transform-exponentiation-operator@^6.22.0: 711 | version "6.24.1" 712 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 713 | dependencies: 714 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 715 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 716 | babel-runtime "^6.22.0" 717 | 718 | babel-plugin-transform-flow-strip-types@^6.5.0: 719 | version "6.22.0" 720 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 721 | dependencies: 722 | babel-plugin-syntax-flow "^6.18.0" 723 | babel-runtime "^6.22.0" 724 | 725 | babel-plugin-transform-object-assign@^6.5.0: 726 | version "6.22.0" 727 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" 728 | dependencies: 729 | babel-runtime "^6.22.0" 730 | 731 | babel-plugin-transform-object-rest-spread@^6.5.0: 732 | version "6.26.0" 733 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 734 | dependencies: 735 | babel-plugin-syntax-object-rest-spread "^6.8.0" 736 | babel-runtime "^6.26.0" 737 | 738 | babel-plugin-transform-react-display-name@^6.5.0: 739 | version "6.25.0" 740 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 741 | dependencies: 742 | babel-runtime "^6.22.0" 743 | 744 | babel-plugin-transform-react-jsx-source@^6.5.0: 745 | version "6.22.0" 746 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 747 | dependencies: 748 | babel-plugin-syntax-jsx "^6.8.0" 749 | babel-runtime "^6.22.0" 750 | 751 | babel-plugin-transform-react-jsx@^6.5.0: 752 | version "6.24.1" 753 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 754 | dependencies: 755 | babel-helper-builder-react-jsx "^6.24.1" 756 | babel-plugin-syntax-jsx "^6.8.0" 757 | babel-runtime "^6.22.0" 758 | 759 | babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.5.0: 760 | version "6.26.0" 761 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 762 | dependencies: 763 | regenerator-transform "^0.10.0" 764 | 765 | babel-plugin-transform-strict-mode@^6.24.1: 766 | version "6.24.1" 767 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 768 | dependencies: 769 | babel-runtime "^6.22.0" 770 | babel-types "^6.24.1" 771 | 772 | babel-preset-env@^1.6.1: 773 | version "1.6.1" 774 | resolved "http://registry.npm.taobao.org/babel-preset-env/download/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 775 | dependencies: 776 | babel-plugin-check-es2015-constants "^6.22.0" 777 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 778 | babel-plugin-transform-async-to-generator "^6.22.0" 779 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 780 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 781 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 782 | babel-plugin-transform-es2015-classes "^6.23.0" 783 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 784 | babel-plugin-transform-es2015-destructuring "^6.23.0" 785 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 786 | babel-plugin-transform-es2015-for-of "^6.23.0" 787 | babel-plugin-transform-es2015-function-name "^6.22.0" 788 | babel-plugin-transform-es2015-literals "^6.22.0" 789 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 790 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 791 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 792 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 793 | babel-plugin-transform-es2015-object-super "^6.22.0" 794 | babel-plugin-transform-es2015-parameters "^6.23.0" 795 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 796 | babel-plugin-transform-es2015-spread "^6.22.0" 797 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 798 | babel-plugin-transform-es2015-template-literals "^6.22.0" 799 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 800 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 801 | babel-plugin-transform-exponentiation-operator "^6.22.0" 802 | babel-plugin-transform-regenerator "^6.22.0" 803 | browserslist "^2.1.2" 804 | invariant "^2.2.2" 805 | semver "^5.3.0" 806 | 807 | babel-preset-jest@^21.2.0: 808 | version "21.2.0" 809 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" 810 | dependencies: 811 | babel-plugin-jest-hoist "^21.2.0" 812 | babel-plugin-syntax-object-rest-spread "^6.13.0" 813 | 814 | babel-preset-react-native@^4.0.0: 815 | version "4.0.0" 816 | resolved "https://registry.yarnpkg.com/babel-preset-react-native/-/babel-preset-react-native-4.0.0.tgz#3df80dd33a453888cdd33bdb87224d17a5d73959" 817 | dependencies: 818 | babel-plugin-check-es2015-constants "^6.5.0" 819 | babel-plugin-react-transform "^3.0.0" 820 | babel-plugin-syntax-async-functions "^6.5.0" 821 | babel-plugin-syntax-class-properties "^6.5.0" 822 | babel-plugin-syntax-dynamic-import "^6.18.0" 823 | babel-plugin-syntax-flow "^6.5.0" 824 | babel-plugin-syntax-jsx "^6.5.0" 825 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 826 | babel-plugin-transform-class-properties "^6.5.0" 827 | babel-plugin-transform-es2015-arrow-functions "^6.5.0" 828 | babel-plugin-transform-es2015-block-scoping "^6.5.0" 829 | babel-plugin-transform-es2015-classes "^6.5.0" 830 | babel-plugin-transform-es2015-computed-properties "^6.5.0" 831 | babel-plugin-transform-es2015-destructuring "^6.5.0" 832 | babel-plugin-transform-es2015-for-of "^6.5.0" 833 | babel-plugin-transform-es2015-function-name "^6.5.0" 834 | babel-plugin-transform-es2015-literals "^6.5.0" 835 | babel-plugin-transform-es2015-modules-commonjs "^6.5.0" 836 | babel-plugin-transform-es2015-parameters "^6.5.0" 837 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 838 | babel-plugin-transform-es2015-spread "^6.5.0" 839 | babel-plugin-transform-es2015-template-literals "^6.5.0" 840 | babel-plugin-transform-flow-strip-types "^6.5.0" 841 | babel-plugin-transform-object-assign "^6.5.0" 842 | babel-plugin-transform-object-rest-spread "^6.5.0" 843 | babel-plugin-transform-react-display-name "^6.5.0" 844 | babel-plugin-transform-react-jsx "^6.5.0" 845 | babel-plugin-transform-react-jsx-source "^6.5.0" 846 | babel-plugin-transform-regenerator "^6.5.0" 847 | babel-template "^6.24.1" 848 | react-transform-hmr "^1.0.4" 849 | 850 | babel-register@^6.26.0: 851 | version "6.26.0" 852 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 853 | dependencies: 854 | babel-core "^6.26.0" 855 | babel-runtime "^6.26.0" 856 | core-js "^2.5.0" 857 | home-or-tmp "^2.0.0" 858 | lodash "^4.17.4" 859 | mkdirp "^0.5.1" 860 | source-map-support "^0.4.15" 861 | 862 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 863 | version "6.26.0" 864 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 865 | dependencies: 866 | core-js "^2.4.0" 867 | regenerator-runtime "^0.11.0" 868 | 869 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 870 | version "6.26.0" 871 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 872 | dependencies: 873 | babel-runtime "^6.26.0" 874 | babel-traverse "^6.26.0" 875 | babel-types "^6.26.0" 876 | babylon "^6.18.0" 877 | lodash "^4.17.4" 878 | 879 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 880 | version "6.26.0" 881 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 882 | dependencies: 883 | babel-code-frame "^6.26.0" 884 | babel-messages "^6.23.0" 885 | babel-runtime "^6.26.0" 886 | babel-types "^6.26.0" 887 | babylon "^6.18.0" 888 | debug "^2.6.8" 889 | globals "^9.18.0" 890 | invariant "^2.2.2" 891 | lodash "^4.17.4" 892 | 893 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 894 | version "6.26.0" 895 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 896 | dependencies: 897 | babel-runtime "^6.26.0" 898 | esutils "^2.0.2" 899 | lodash "^4.17.4" 900 | to-fast-properties "^1.0.3" 901 | 902 | babylon@7.0.0-beta.42, babylon@^7.0.0-beta.40: 903 | version "7.0.0-beta.42" 904 | resolved "http://registry.npm.taobao.org/babylon/download/babylon-7.0.0-beta.42.tgz#67cfabcd4f3ec82999d29031ccdea89d0ba99657" 905 | 906 | babylon@^6.18.0: 907 | version "6.18.0" 908 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 909 | 910 | balanced-match@^1.0.0: 911 | version "1.0.0" 912 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 913 | 914 | bcrypt-pbkdf@^1.0.0: 915 | version "1.0.1" 916 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 917 | dependencies: 918 | tweetnacl "^0.14.3" 919 | 920 | block-stream@*: 921 | version "0.0.9" 922 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 923 | dependencies: 924 | inherits "~2.0.0" 925 | 926 | boom@2.x.x: 927 | version "2.10.1" 928 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 929 | dependencies: 930 | hoek "2.x.x" 931 | 932 | boom@4.x.x: 933 | version "4.3.1" 934 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 935 | dependencies: 936 | hoek "4.x.x" 937 | 938 | boom@5.x.x: 939 | version "5.2.0" 940 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 941 | dependencies: 942 | hoek "4.x.x" 943 | 944 | brace-expansion@^1.1.7: 945 | version "1.1.8" 946 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 947 | dependencies: 948 | balanced-match "^1.0.0" 949 | concat-map "0.0.1" 950 | 951 | braces@^1.8.2: 952 | version "1.8.5" 953 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 954 | dependencies: 955 | expand-range "^1.8.1" 956 | preserve "^0.2.0" 957 | repeat-element "^1.1.2" 958 | 959 | browser-resolve@^1.11.2: 960 | version "1.11.2" 961 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 962 | dependencies: 963 | resolve "1.1.7" 964 | 965 | browserslist@^2.1.2: 966 | version "2.4.0" 967 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.4.0.tgz#693ee93d01e66468a6348da5498e011f578f87f8" 968 | dependencies: 969 | caniuse-lite "^1.0.30000718" 970 | electron-to-chromium "^1.3.18" 971 | 972 | bser@^2.0.0: 973 | version "2.0.0" 974 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 975 | dependencies: 976 | node-int64 "^0.4.0" 977 | 978 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 979 | version "1.1.1" 980 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 981 | 982 | caller-path@^0.1.0: 983 | version "0.1.0" 984 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 985 | dependencies: 986 | callsites "^0.2.0" 987 | 988 | callsites@^0.2.0: 989 | version "0.2.0" 990 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 991 | 992 | callsites@^2.0.0: 993 | version "2.0.0" 994 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 995 | 996 | camelcase@^1.0.2: 997 | version "1.2.1" 998 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 999 | 1000 | camelcase@^4.1.0: 1001 | version "4.1.0" 1002 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 1003 | 1004 | caniuse-lite@^1.0.30000718: 1005 | version "1.0.30000740" 1006 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000740.tgz#f2c4c04d6564eb812e61006841700ad557f6f973" 1007 | 1008 | caseless@~0.12.0: 1009 | version "0.12.0" 1010 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1011 | 1012 | center-align@^0.1.1: 1013 | version "0.1.3" 1014 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1015 | dependencies: 1016 | align-text "^0.1.3" 1017 | lazy-cache "^1.0.3" 1018 | 1019 | chalk@^1.1.3: 1020 | version "1.1.3" 1021 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1022 | dependencies: 1023 | ansi-styles "^2.2.1" 1024 | escape-string-regexp "^1.0.2" 1025 | has-ansi "^2.0.0" 1026 | strip-ansi "^3.0.0" 1027 | supports-color "^2.0.0" 1028 | 1029 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 1030 | version "2.1.0" 1031 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 1032 | dependencies: 1033 | ansi-styles "^3.1.0" 1034 | escape-string-regexp "^1.0.5" 1035 | supports-color "^4.0.0" 1036 | 1037 | ci-info@^1.0.0: 1038 | version "1.1.1" 1039 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 1040 | 1041 | circular-json@^0.3.1: 1042 | version "0.3.3" 1043 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1044 | 1045 | cli-cursor@^2.1.0: 1046 | version "2.1.0" 1047 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1048 | dependencies: 1049 | restore-cursor "^2.0.0" 1050 | 1051 | cli-width@^2.0.0: 1052 | version "2.2.0" 1053 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1054 | 1055 | cliui@^2.1.0: 1056 | version "2.1.0" 1057 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1058 | dependencies: 1059 | center-align "^0.1.1" 1060 | right-align "^0.1.1" 1061 | wordwrap "0.0.2" 1062 | 1063 | cliui@^3.2.0: 1064 | version "3.2.0" 1065 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1066 | dependencies: 1067 | string-width "^1.0.1" 1068 | strip-ansi "^3.0.1" 1069 | wrap-ansi "^2.0.0" 1070 | 1071 | co@^4.6.0: 1072 | version "4.6.0" 1073 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1074 | 1075 | code-point-at@^1.0.0: 1076 | version "1.1.0" 1077 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1078 | 1079 | color-convert@^1.9.0: 1080 | version "1.9.0" 1081 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1082 | dependencies: 1083 | color-name "^1.1.1" 1084 | 1085 | color-name@^1.1.1: 1086 | version "1.1.3" 1087 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1088 | 1089 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1090 | version "1.0.5" 1091 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1092 | dependencies: 1093 | delayed-stream "~1.0.0" 1094 | 1095 | concat-map@0.0.1: 1096 | version "0.0.1" 1097 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1098 | 1099 | concat-stream@^1.6.0: 1100 | version "1.6.0" 1101 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1102 | dependencies: 1103 | inherits "^2.0.3" 1104 | readable-stream "^2.2.2" 1105 | typedarray "^0.0.6" 1106 | 1107 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1108 | version "1.1.0" 1109 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1110 | 1111 | contains-path@^0.1.0: 1112 | version "0.1.0" 1113 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1114 | 1115 | content-type-parser@^1.0.1: 1116 | version "1.0.1" 1117 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1118 | 1119 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 1120 | version "1.5.0" 1121 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1122 | 1123 | core-js@^1.0.0: 1124 | version "1.2.7" 1125 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1126 | 1127 | core-js@^2.4.0, core-js@^2.5.0: 1128 | version "2.5.1" 1129 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1130 | 1131 | core-util-is@1.0.2, core-util-is@~1.0.0: 1132 | version "1.0.2" 1133 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1134 | 1135 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1136 | version "5.1.0" 1137 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1138 | dependencies: 1139 | lru-cache "^4.0.1" 1140 | shebang-command "^1.2.0" 1141 | which "^1.2.9" 1142 | 1143 | cryptiles@2.x.x: 1144 | version "2.0.5" 1145 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1146 | dependencies: 1147 | boom "2.x.x" 1148 | 1149 | cryptiles@3.x.x: 1150 | version "3.1.2" 1151 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 1152 | dependencies: 1153 | boom "5.x.x" 1154 | 1155 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1156 | version "0.3.2" 1157 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1158 | 1159 | "cssstyle@>= 0.2.37 < 0.3.0": 1160 | version "0.2.37" 1161 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1162 | dependencies: 1163 | cssom "0.3.x" 1164 | 1165 | dashdash@^1.12.0: 1166 | version "1.14.1" 1167 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1168 | dependencies: 1169 | assert-plus "^1.0.0" 1170 | 1171 | debug-log@^1.0.0: 1172 | version "1.0.1" 1173 | resolved "http://registry.npm.taobao.org/debug-log/download/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1174 | 1175 | debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1176 | version "2.6.9" 1177 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1178 | dependencies: 1179 | ms "2.0.0" 1180 | 1181 | debug@^3.1.0: 1182 | version "3.1.0" 1183 | resolved "http://registry.npm.taobao.org/debug/download/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1184 | dependencies: 1185 | ms "2.0.0" 1186 | 1187 | decamelize@^1.0.0, decamelize@^1.1.1: 1188 | version "1.2.0" 1189 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1190 | 1191 | deep-extend@~0.4.0: 1192 | version "0.4.2" 1193 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1194 | 1195 | deep-is@~0.1.3: 1196 | version "0.1.3" 1197 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1198 | 1199 | default-require-extensions@^1.0.0: 1200 | version "1.0.0" 1201 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1202 | dependencies: 1203 | strip-bom "^2.0.0" 1204 | 1205 | define-properties@^1.1.2: 1206 | version "1.1.2" 1207 | resolved "http://registry.npm.taobao.org/define-properties/download/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1208 | dependencies: 1209 | foreach "^2.0.5" 1210 | object-keys "^1.0.8" 1211 | 1212 | deglob@^2.1.0: 1213 | version "2.1.0" 1214 | resolved "http://registry.npm.taobao.org/deglob/download/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 1215 | dependencies: 1216 | find-root "^1.0.0" 1217 | glob "^7.0.5" 1218 | ignore "^3.0.9" 1219 | pkg-config "^1.1.0" 1220 | run-parallel "^1.1.2" 1221 | uniq "^1.0.1" 1222 | 1223 | del@^2.0.2: 1224 | version "2.2.2" 1225 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1226 | dependencies: 1227 | globby "^5.0.0" 1228 | is-path-cwd "^1.0.0" 1229 | is-path-in-cwd "^1.0.0" 1230 | object-assign "^4.0.1" 1231 | pify "^2.0.0" 1232 | pinkie-promise "^2.0.0" 1233 | rimraf "^2.2.8" 1234 | 1235 | delayed-stream@~1.0.0: 1236 | version "1.0.0" 1237 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1238 | 1239 | delegates@^1.0.0: 1240 | version "1.0.0" 1241 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1242 | 1243 | detect-indent@^4.0.0: 1244 | version "4.0.0" 1245 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1246 | dependencies: 1247 | repeating "^2.0.0" 1248 | 1249 | diff@^3.2.0: 1250 | version "3.3.1" 1251 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1252 | 1253 | doctrine@1.5.0: 1254 | version "1.5.0" 1255 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1256 | dependencies: 1257 | esutils "^2.0.2" 1258 | isarray "^1.0.0" 1259 | 1260 | doctrine@^2.0.2, doctrine@^2.1.0: 1261 | version "2.1.0" 1262 | resolved "http://registry.npm.taobao.org/doctrine/download/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1263 | dependencies: 1264 | esutils "^2.0.2" 1265 | 1266 | dom-walk@^0.1.0: 1267 | version "0.1.1" 1268 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 1269 | 1270 | ecc-jsbn@~0.1.1: 1271 | version "0.1.1" 1272 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1273 | dependencies: 1274 | jsbn "~0.1.0" 1275 | 1276 | electron-to-chromium@^1.3.18: 1277 | version "1.3.23" 1278 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.23.tgz#e6668ab18cb69afb8f577c8a9fc23d002788be74" 1279 | 1280 | encoding@^0.1.11: 1281 | version "0.1.12" 1282 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1283 | dependencies: 1284 | iconv-lite "~0.4.13" 1285 | 1286 | errno@^0.1.4: 1287 | version "0.1.4" 1288 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1289 | dependencies: 1290 | prr "~0.0.0" 1291 | 1292 | error-ex@^1.2.0, error-ex@^1.3.1: 1293 | version "1.3.1" 1294 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1295 | dependencies: 1296 | is-arrayish "^0.2.1" 1297 | 1298 | es-abstract@^1.7.0: 1299 | version "1.11.0" 1300 | resolved "http://registry.npm.taobao.org/es-abstract/download/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" 1301 | dependencies: 1302 | es-to-primitive "^1.1.1" 1303 | function-bind "^1.1.1" 1304 | has "^1.0.1" 1305 | is-callable "^1.1.3" 1306 | is-regex "^1.0.4" 1307 | 1308 | es-to-primitive@^1.1.1: 1309 | version "1.1.1" 1310 | resolved "http://registry.npm.taobao.org/es-to-primitive/download/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1311 | dependencies: 1312 | is-callable "^1.1.1" 1313 | is-date-object "^1.0.1" 1314 | is-symbol "^1.0.1" 1315 | 1316 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1317 | version "1.0.5" 1318 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1319 | 1320 | escodegen@^1.6.1: 1321 | version "1.9.0" 1322 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1323 | dependencies: 1324 | esprima "^3.1.3" 1325 | estraverse "^4.2.0" 1326 | esutils "^2.0.2" 1327 | optionator "^0.8.1" 1328 | optionalDependencies: 1329 | source-map "~0.5.6" 1330 | 1331 | eslint-config-standard-jsx@5.0.0: 1332 | version "5.0.0" 1333 | resolved "http://registry.npm.taobao.org/eslint-config-standard-jsx/download/eslint-config-standard-jsx-5.0.0.tgz#4abfac554f38668e0078c664569e7b2384e5d2aa" 1334 | 1335 | eslint-config-standard@11.0.0: 1336 | version "11.0.0" 1337 | resolved "http://registry.npm.taobao.org/eslint-config-standard/download/eslint-config-standard-11.0.0.tgz#87ee0d3c9d95382dc761958cbb23da9eea31e0ba" 1338 | 1339 | eslint-import-resolver-node@^0.3.1: 1340 | version "0.3.1" 1341 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 1342 | dependencies: 1343 | debug "^2.6.8" 1344 | resolve "^1.2.0" 1345 | 1346 | eslint-module-utils@^2.1.1: 1347 | version "2.2.0" 1348 | resolved "http://registry.npm.taobao.org/eslint-module-utils/download/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 1349 | dependencies: 1350 | debug "^2.6.8" 1351 | pkg-dir "^1.0.0" 1352 | 1353 | eslint-plugin-import@~2.9.0: 1354 | version "2.9.0" 1355 | resolved "http://registry.npm.taobao.org/eslint-plugin-import/download/eslint-plugin-import-2.9.0.tgz#26002efbfca5989b7288ac047508bd24f217b169" 1356 | dependencies: 1357 | builtin-modules "^1.1.1" 1358 | contains-path "^0.1.0" 1359 | debug "^2.6.8" 1360 | doctrine "1.5.0" 1361 | eslint-import-resolver-node "^0.3.1" 1362 | eslint-module-utils "^2.1.1" 1363 | has "^1.0.1" 1364 | lodash "^4.17.4" 1365 | minimatch "^3.0.3" 1366 | read-pkg-up "^2.0.0" 1367 | 1368 | eslint-plugin-node@~6.0.0: 1369 | version "6.0.1" 1370 | resolved "http://registry.npm.taobao.org/eslint-plugin-node/download/eslint-plugin-node-6.0.1.tgz#bf19642298064379315d7a4b2a75937376fa05e4" 1371 | dependencies: 1372 | ignore "^3.3.6" 1373 | minimatch "^3.0.4" 1374 | resolve "^1.3.3" 1375 | semver "^5.4.1" 1376 | 1377 | eslint-plugin-promise@~3.7.0: 1378 | version "3.7.0" 1379 | resolved "http://registry.npm.taobao.org/eslint-plugin-promise/download/eslint-plugin-promise-3.7.0.tgz#f4bde5c2c77cdd69557a8f69a24d1ad3cfc9e67e" 1380 | 1381 | eslint-plugin-react@~7.7.0: 1382 | version "7.7.0" 1383 | resolved "http://registry.npm.taobao.org/eslint-plugin-react/download/eslint-plugin-react-7.7.0.tgz#f606c719dbd8a1a2b3d25c16299813878cca0160" 1384 | dependencies: 1385 | doctrine "^2.0.2" 1386 | has "^1.0.1" 1387 | jsx-ast-utils "^2.0.1" 1388 | prop-types "^15.6.0" 1389 | 1390 | eslint-plugin-standard@~3.0.1: 1391 | version "3.0.1" 1392 | resolved "http://registry.npm.taobao.org/eslint-plugin-standard/download/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 1393 | 1394 | eslint-scope@^3.7.1, eslint-scope@~3.7.1: 1395 | version "3.7.1" 1396 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1397 | dependencies: 1398 | esrecurse "^4.1.0" 1399 | estraverse "^4.1.1" 1400 | 1401 | eslint-visitor-keys@^1.0.0: 1402 | version "1.0.0" 1403 | resolved "http://registry.npm.taobao.org/eslint-visitor-keys/download/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1404 | 1405 | eslint@~4.18.0: 1406 | version "4.18.2" 1407 | resolved "http://registry.npm.taobao.org/eslint/download/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45" 1408 | dependencies: 1409 | ajv "^5.3.0" 1410 | babel-code-frame "^6.22.0" 1411 | chalk "^2.1.0" 1412 | concat-stream "^1.6.0" 1413 | cross-spawn "^5.1.0" 1414 | debug "^3.1.0" 1415 | doctrine "^2.1.0" 1416 | eslint-scope "^3.7.1" 1417 | eslint-visitor-keys "^1.0.0" 1418 | espree "^3.5.2" 1419 | esquery "^1.0.0" 1420 | esutils "^2.0.2" 1421 | file-entry-cache "^2.0.0" 1422 | functional-red-black-tree "^1.0.1" 1423 | glob "^7.1.2" 1424 | globals "^11.0.1" 1425 | ignore "^3.3.3" 1426 | imurmurhash "^0.1.4" 1427 | inquirer "^3.0.6" 1428 | is-resolvable "^1.0.0" 1429 | js-yaml "^3.9.1" 1430 | json-stable-stringify-without-jsonify "^1.0.1" 1431 | levn "^0.3.0" 1432 | lodash "^4.17.4" 1433 | minimatch "^3.0.2" 1434 | mkdirp "^0.5.1" 1435 | natural-compare "^1.4.0" 1436 | optionator "^0.8.2" 1437 | path-is-inside "^1.0.2" 1438 | pluralize "^7.0.0" 1439 | progress "^2.0.0" 1440 | require-uncached "^1.0.3" 1441 | semver "^5.3.0" 1442 | strip-ansi "^4.0.0" 1443 | strip-json-comments "~2.0.1" 1444 | table "4.0.2" 1445 | text-table "~0.2.0" 1446 | 1447 | espree@^3.5.2: 1448 | version "3.5.4" 1449 | resolved "http://registry.npm.taobao.org/espree/download/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1450 | dependencies: 1451 | acorn "^5.5.0" 1452 | acorn-jsx "^3.0.0" 1453 | 1454 | esprima@^3.1.3: 1455 | version "3.1.3" 1456 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1457 | 1458 | esprima@^4.0.0: 1459 | version "4.0.0" 1460 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1461 | 1462 | esquery@^1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1465 | dependencies: 1466 | estraverse "^4.0.0" 1467 | 1468 | esrecurse@^4.1.0: 1469 | version "4.2.0" 1470 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1471 | dependencies: 1472 | estraverse "^4.1.0" 1473 | object-assign "^4.0.1" 1474 | 1475 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1476 | version "4.2.0" 1477 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1478 | 1479 | esutils@^2.0.2: 1480 | version "2.0.2" 1481 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1482 | 1483 | exec-sh@^0.2.0: 1484 | version "0.2.1" 1485 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1486 | dependencies: 1487 | merge "^1.1.3" 1488 | 1489 | execa@^0.7.0: 1490 | version "0.7.0" 1491 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1492 | dependencies: 1493 | cross-spawn "^5.0.1" 1494 | get-stream "^3.0.0" 1495 | is-stream "^1.1.0" 1496 | npm-run-path "^2.0.0" 1497 | p-finally "^1.0.0" 1498 | signal-exit "^3.0.0" 1499 | strip-eof "^1.0.0" 1500 | 1501 | expand-brackets@^0.1.4: 1502 | version "0.1.5" 1503 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1504 | dependencies: 1505 | is-posix-bracket "^0.1.0" 1506 | 1507 | expand-range@^1.8.1: 1508 | version "1.8.2" 1509 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1510 | dependencies: 1511 | fill-range "^2.1.0" 1512 | 1513 | expect@^21.2.1: 1514 | version "21.2.1" 1515 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 1516 | dependencies: 1517 | ansi-styles "^3.2.0" 1518 | jest-diff "^21.2.1" 1519 | jest-get-type "^21.2.0" 1520 | jest-matcher-utils "^21.2.1" 1521 | jest-message-util "^21.2.1" 1522 | jest-regex-util "^21.2.0" 1523 | 1524 | extend@~3.0.0, extend@~3.0.1: 1525 | version "3.0.1" 1526 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1527 | 1528 | external-editor@^2.0.4: 1529 | version "2.0.5" 1530 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" 1531 | dependencies: 1532 | iconv-lite "^0.4.17" 1533 | jschardet "^1.4.2" 1534 | tmp "^0.0.33" 1535 | 1536 | extglob@^0.3.1: 1537 | version "0.3.2" 1538 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1539 | dependencies: 1540 | is-extglob "^1.0.0" 1541 | 1542 | extsprintf@1.3.0, extsprintf@^1.2.0: 1543 | version "1.3.0" 1544 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1545 | 1546 | fast-deep-equal@^1.0.0: 1547 | version "1.0.0" 1548 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1549 | 1550 | fast-json-stable-stringify@^2.0.0: 1551 | version "2.0.0" 1552 | resolved "http://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1553 | 1554 | fast-levenshtein@~2.0.4: 1555 | version "2.0.6" 1556 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1557 | 1558 | fb-watchman@^2.0.0: 1559 | version "2.0.0" 1560 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1561 | dependencies: 1562 | bser "^2.0.0" 1563 | 1564 | fbjs@^0.8.16: 1565 | version "0.8.16" 1566 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1567 | dependencies: 1568 | core-js "^1.0.0" 1569 | isomorphic-fetch "^2.1.1" 1570 | loose-envify "^1.0.0" 1571 | object-assign "^4.1.0" 1572 | promise "^7.1.1" 1573 | setimmediate "^1.0.5" 1574 | ua-parser-js "^0.7.9" 1575 | 1576 | figures@^2.0.0: 1577 | version "2.0.0" 1578 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1579 | dependencies: 1580 | escape-string-regexp "^1.0.5" 1581 | 1582 | file-entry-cache@^2.0.0: 1583 | version "2.0.0" 1584 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1585 | dependencies: 1586 | flat-cache "^1.2.1" 1587 | object-assign "^4.0.1" 1588 | 1589 | filename-regex@^2.0.0: 1590 | version "2.0.1" 1591 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1592 | 1593 | fileset@^2.0.2: 1594 | version "2.0.3" 1595 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1596 | dependencies: 1597 | glob "^7.0.3" 1598 | minimatch "^3.0.3" 1599 | 1600 | fill-range@^2.1.0: 1601 | version "2.2.3" 1602 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1603 | dependencies: 1604 | is-number "^2.1.0" 1605 | isobject "^2.0.0" 1606 | randomatic "^1.1.3" 1607 | repeat-element "^1.1.2" 1608 | repeat-string "^1.5.2" 1609 | 1610 | find-root@^1.0.0: 1611 | version "1.1.0" 1612 | resolved "http://registry.npm.taobao.org/find-root/download/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 1613 | 1614 | find-up@^1.0.0: 1615 | version "1.1.2" 1616 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1617 | dependencies: 1618 | path-exists "^2.0.0" 1619 | pinkie-promise "^2.0.0" 1620 | 1621 | find-up@^2.0.0, find-up@^2.1.0: 1622 | version "2.1.0" 1623 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1624 | dependencies: 1625 | locate-path "^2.0.0" 1626 | 1627 | flat-cache@^1.2.1: 1628 | version "1.3.0" 1629 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1630 | dependencies: 1631 | circular-json "^0.3.1" 1632 | del "^2.0.2" 1633 | graceful-fs "^4.1.2" 1634 | write "^0.2.1" 1635 | 1636 | for-in@^1.0.1: 1637 | version "1.0.2" 1638 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1639 | 1640 | for-own@^0.1.4: 1641 | version "0.1.5" 1642 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1643 | dependencies: 1644 | for-in "^1.0.1" 1645 | 1646 | foreach@^2.0.5: 1647 | version "2.0.5" 1648 | resolved "http://registry.npm.taobao.org/foreach/download/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1649 | 1650 | forever-agent@~0.6.1: 1651 | version "0.6.1" 1652 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1653 | 1654 | form-data@~2.1.1: 1655 | version "2.1.4" 1656 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1657 | dependencies: 1658 | asynckit "^0.4.0" 1659 | combined-stream "^1.0.5" 1660 | mime-types "^2.1.12" 1661 | 1662 | form-data@~2.3.1: 1663 | version "2.3.1" 1664 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1665 | dependencies: 1666 | asynckit "^0.4.0" 1667 | combined-stream "^1.0.5" 1668 | mime-types "^2.1.12" 1669 | 1670 | fs.realpath@^1.0.0: 1671 | version "1.0.0" 1672 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1673 | 1674 | fsevents@^1.1.1: 1675 | version "1.1.2" 1676 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1677 | dependencies: 1678 | nan "^2.3.0" 1679 | node-pre-gyp "^0.6.36" 1680 | 1681 | fstream-ignore@^1.0.5: 1682 | version "1.0.5" 1683 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1684 | dependencies: 1685 | fstream "^1.0.0" 1686 | inherits "2" 1687 | minimatch "^3.0.0" 1688 | 1689 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1690 | version "1.0.11" 1691 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1692 | dependencies: 1693 | graceful-fs "^4.1.2" 1694 | inherits "~2.0.0" 1695 | mkdirp ">=0.5 0" 1696 | rimraf "2" 1697 | 1698 | function-bind@^1.0.2, function-bind@^1.1.1: 1699 | version "1.1.1" 1700 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1701 | 1702 | functional-red-black-tree@^1.0.1: 1703 | version "1.0.1" 1704 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1705 | 1706 | gauge@~2.7.3: 1707 | version "2.7.4" 1708 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1709 | dependencies: 1710 | aproba "^1.0.3" 1711 | console-control-strings "^1.0.0" 1712 | has-unicode "^2.0.0" 1713 | object-assign "^4.1.0" 1714 | signal-exit "^3.0.0" 1715 | string-width "^1.0.1" 1716 | strip-ansi "^3.0.1" 1717 | wide-align "^1.1.0" 1718 | 1719 | get-caller-file@^1.0.1: 1720 | version "1.0.2" 1721 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1722 | 1723 | get-stdin@^6.0.0: 1724 | version "6.0.0" 1725 | resolved "http://registry.npm.taobao.org/get-stdin/download/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1726 | 1727 | get-stream@^3.0.0: 1728 | version "3.0.0" 1729 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1730 | 1731 | getpass@^0.1.1: 1732 | version "0.1.7" 1733 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1734 | dependencies: 1735 | assert-plus "^1.0.0" 1736 | 1737 | glob-base@^0.3.0: 1738 | version "0.3.0" 1739 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1740 | dependencies: 1741 | glob-parent "^2.0.0" 1742 | is-glob "^2.0.0" 1743 | 1744 | glob-parent@^2.0.0: 1745 | version "2.0.0" 1746 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1747 | dependencies: 1748 | is-glob "^2.0.0" 1749 | 1750 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1751 | version "7.1.2" 1752 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1753 | dependencies: 1754 | fs.realpath "^1.0.0" 1755 | inflight "^1.0.4" 1756 | inherits "2" 1757 | minimatch "^3.0.4" 1758 | once "^1.3.0" 1759 | path-is-absolute "^1.0.0" 1760 | 1761 | global@^4.3.0: 1762 | version "4.3.2" 1763 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" 1764 | dependencies: 1765 | min-document "^2.19.0" 1766 | process "~0.5.1" 1767 | 1768 | globals@^11.0.1, globals@^11.1.0: 1769 | version "11.4.0" 1770 | resolved "http://registry.npm.taobao.org/globals/download/globals-11.4.0.tgz#b85c793349561c16076a3c13549238a27945f1bc" 1771 | 1772 | globals@^9.18.0: 1773 | version "9.18.0" 1774 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1775 | 1776 | globby@^5.0.0: 1777 | version "5.0.0" 1778 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1779 | dependencies: 1780 | array-union "^1.0.1" 1781 | arrify "^1.0.0" 1782 | glob "^7.0.3" 1783 | object-assign "^4.0.1" 1784 | pify "^2.0.0" 1785 | pinkie-promise "^2.0.0" 1786 | 1787 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1788 | version "4.1.11" 1789 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1790 | 1791 | growly@^1.3.0: 1792 | version "1.3.0" 1793 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1794 | 1795 | handlebars@^4.0.3: 1796 | version "4.0.10" 1797 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1798 | dependencies: 1799 | async "^1.4.0" 1800 | optimist "^0.6.1" 1801 | source-map "^0.4.4" 1802 | optionalDependencies: 1803 | uglify-js "^2.6" 1804 | 1805 | har-schema@^1.0.5: 1806 | version "1.0.5" 1807 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1808 | 1809 | har-schema@^2.0.0: 1810 | version "2.0.0" 1811 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1812 | 1813 | har-validator@~4.2.1: 1814 | version "4.2.1" 1815 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1816 | dependencies: 1817 | ajv "^4.9.1" 1818 | har-schema "^1.0.5" 1819 | 1820 | har-validator@~5.0.3: 1821 | version "5.0.3" 1822 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1823 | dependencies: 1824 | ajv "^5.1.0" 1825 | har-schema "^2.0.0" 1826 | 1827 | has-ansi@^2.0.0: 1828 | version "2.0.0" 1829 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1830 | dependencies: 1831 | ansi-regex "^2.0.0" 1832 | 1833 | has-flag@^1.0.0: 1834 | version "1.0.0" 1835 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1836 | 1837 | has-flag@^2.0.0: 1838 | version "2.0.0" 1839 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1840 | 1841 | has-unicode@^2.0.0: 1842 | version "2.0.1" 1843 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1844 | 1845 | has@^1.0.1: 1846 | version "1.0.1" 1847 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1848 | dependencies: 1849 | function-bind "^1.0.2" 1850 | 1851 | hawk@3.1.3, hawk@~3.1.3: 1852 | version "3.1.3" 1853 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1854 | dependencies: 1855 | boom "2.x.x" 1856 | cryptiles "2.x.x" 1857 | hoek "2.x.x" 1858 | sntp "1.x.x" 1859 | 1860 | hawk@~6.0.2: 1861 | version "6.0.2" 1862 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1863 | dependencies: 1864 | boom "4.x.x" 1865 | cryptiles "3.x.x" 1866 | hoek "4.x.x" 1867 | sntp "2.x.x" 1868 | 1869 | hoek@2.x.x: 1870 | version "2.16.3" 1871 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1872 | 1873 | hoek@4.x.x: 1874 | version "4.2.0" 1875 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1876 | 1877 | home-or-tmp@^2.0.0: 1878 | version "2.0.0" 1879 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1880 | dependencies: 1881 | os-homedir "^1.0.0" 1882 | os-tmpdir "^1.0.1" 1883 | 1884 | hosted-git-info@^2.1.4: 1885 | version "2.5.0" 1886 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1887 | 1888 | html-encoding-sniffer@^1.0.1: 1889 | version "1.0.1" 1890 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1891 | dependencies: 1892 | whatwg-encoding "^1.0.1" 1893 | 1894 | http-signature@~1.1.0: 1895 | version "1.1.1" 1896 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1897 | dependencies: 1898 | assert-plus "^0.2.0" 1899 | jsprim "^1.2.2" 1900 | sshpk "^1.7.0" 1901 | 1902 | http-signature@~1.2.0: 1903 | version "1.2.0" 1904 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1905 | dependencies: 1906 | assert-plus "^1.0.0" 1907 | jsprim "^1.2.2" 1908 | sshpk "^1.7.0" 1909 | 1910 | iconv-lite@0.4.13: 1911 | version "0.4.13" 1912 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1913 | 1914 | iconv-lite@^0.4.17, iconv-lite@~0.4.13: 1915 | version "0.4.19" 1916 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1917 | 1918 | ignore@^3.0.9, ignore@^3.3.6: 1919 | version "3.3.7" 1920 | resolved "http://registry.npm.taobao.org/ignore/download/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1921 | 1922 | ignore@^3.3.3: 1923 | version "3.3.5" 1924 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" 1925 | 1926 | imurmurhash@^0.1.4: 1927 | version "0.1.4" 1928 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1929 | 1930 | inflight@^1.0.4: 1931 | version "1.0.6" 1932 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1933 | dependencies: 1934 | once "^1.3.0" 1935 | wrappy "1" 1936 | 1937 | inherits@2, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1938 | version "2.0.3" 1939 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1940 | 1941 | ini@~1.3.0: 1942 | version "1.3.4" 1943 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1944 | 1945 | inquirer@^3.0.6: 1946 | version "3.3.0" 1947 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1948 | dependencies: 1949 | ansi-escapes "^3.0.0" 1950 | chalk "^2.0.0" 1951 | cli-cursor "^2.1.0" 1952 | cli-width "^2.0.0" 1953 | external-editor "^2.0.4" 1954 | figures "^2.0.0" 1955 | lodash "^4.3.0" 1956 | mute-stream "0.0.7" 1957 | run-async "^2.2.0" 1958 | rx-lite "^4.0.8" 1959 | rx-lite-aggregates "^4.0.8" 1960 | string-width "^2.1.0" 1961 | strip-ansi "^4.0.0" 1962 | through "^2.3.6" 1963 | 1964 | invariant@^2.2.0: 1965 | version "2.2.4" 1966 | resolved "http://registry.npm.taobao.org/invariant/download/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1967 | dependencies: 1968 | loose-envify "^1.0.0" 1969 | 1970 | invariant@^2.2.2: 1971 | version "2.2.2" 1972 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1973 | dependencies: 1974 | loose-envify "^1.0.0" 1975 | 1976 | invert-kv@^1.0.0: 1977 | version "1.0.0" 1978 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1979 | 1980 | is-arrayish@^0.2.1: 1981 | version "0.2.1" 1982 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1983 | 1984 | is-buffer@^1.1.5: 1985 | version "1.1.5" 1986 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1987 | 1988 | is-builtin-module@^1.0.0: 1989 | version "1.0.0" 1990 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1991 | dependencies: 1992 | builtin-modules "^1.0.0" 1993 | 1994 | is-callable@^1.1.1, is-callable@^1.1.3: 1995 | version "1.1.3" 1996 | resolved "http://registry.npm.taobao.org/is-callable/download/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1997 | 1998 | is-ci@^1.0.10: 1999 | version "1.0.10" 2000 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2001 | dependencies: 2002 | ci-info "^1.0.0" 2003 | 2004 | is-date-object@^1.0.1: 2005 | version "1.0.1" 2006 | resolved "http://registry.npm.taobao.org/is-date-object/download/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2007 | 2008 | is-dotfile@^1.0.0: 2009 | version "1.0.3" 2010 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2011 | 2012 | is-equal-shallow@^0.1.3: 2013 | version "0.1.3" 2014 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2015 | dependencies: 2016 | is-primitive "^2.0.0" 2017 | 2018 | is-extendable@^0.1.1: 2019 | version "0.1.1" 2020 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2021 | 2022 | is-extglob@^1.0.0: 2023 | version "1.0.0" 2024 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2025 | 2026 | is-finite@^1.0.0: 2027 | version "1.0.2" 2028 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2029 | dependencies: 2030 | number-is-nan "^1.0.0" 2031 | 2032 | is-fullwidth-code-point@^1.0.0: 2033 | version "1.0.0" 2034 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2035 | dependencies: 2036 | number-is-nan "^1.0.0" 2037 | 2038 | is-fullwidth-code-point@^2.0.0: 2039 | version "2.0.0" 2040 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2041 | 2042 | is-glob@^2.0.0, is-glob@^2.0.1: 2043 | version "2.0.1" 2044 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2045 | dependencies: 2046 | is-extglob "^1.0.0" 2047 | 2048 | is-number@^2.1.0: 2049 | version "2.1.0" 2050 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2051 | dependencies: 2052 | kind-of "^3.0.2" 2053 | 2054 | is-number@^3.0.0: 2055 | version "3.0.0" 2056 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2057 | dependencies: 2058 | kind-of "^3.0.2" 2059 | 2060 | is-path-cwd@^1.0.0: 2061 | version "1.0.0" 2062 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2063 | 2064 | is-path-in-cwd@^1.0.0: 2065 | version "1.0.0" 2066 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2067 | dependencies: 2068 | is-path-inside "^1.0.0" 2069 | 2070 | is-path-inside@^1.0.0: 2071 | version "1.0.0" 2072 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2073 | dependencies: 2074 | path-is-inside "^1.0.1" 2075 | 2076 | is-posix-bracket@^0.1.0: 2077 | version "0.1.1" 2078 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2079 | 2080 | is-primitive@^2.0.0: 2081 | version "2.0.0" 2082 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2083 | 2084 | is-promise@^2.1.0: 2085 | version "2.1.0" 2086 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2087 | 2088 | is-regex@^1.0.4: 2089 | version "1.0.4" 2090 | resolved "http://registry.npm.taobao.org/is-regex/download/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2091 | dependencies: 2092 | has "^1.0.1" 2093 | 2094 | is-resolvable@^1.0.0: 2095 | version "1.0.0" 2096 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2097 | dependencies: 2098 | tryit "^1.0.1" 2099 | 2100 | is-stream@^1.0.1, is-stream@^1.1.0: 2101 | version "1.1.0" 2102 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2103 | 2104 | is-symbol@^1.0.1: 2105 | version "1.0.1" 2106 | resolved "http://registry.npm.taobao.org/is-symbol/download/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2107 | 2108 | is-typedarray@~1.0.0: 2109 | version "1.0.0" 2110 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2111 | 2112 | is-utf8@^0.2.0: 2113 | version "0.2.1" 2114 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2115 | 2116 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2117 | version "1.0.0" 2118 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2119 | 2120 | isexe@^2.0.0: 2121 | version "2.0.0" 2122 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2123 | 2124 | isobject@^2.0.0: 2125 | version "2.1.0" 2126 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2127 | dependencies: 2128 | isarray "1.0.0" 2129 | 2130 | isomorphic-fetch@^2.1.1: 2131 | version "2.2.1" 2132 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2133 | dependencies: 2134 | node-fetch "^1.0.1" 2135 | whatwg-fetch ">=0.10.0" 2136 | 2137 | isstream@~0.1.2: 2138 | version "0.1.2" 2139 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2140 | 2141 | istanbul-api@^1.1.1: 2142 | version "1.1.14" 2143 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" 2144 | dependencies: 2145 | async "^2.1.4" 2146 | fileset "^2.0.2" 2147 | istanbul-lib-coverage "^1.1.1" 2148 | istanbul-lib-hook "^1.0.7" 2149 | istanbul-lib-instrument "^1.8.0" 2150 | istanbul-lib-report "^1.1.1" 2151 | istanbul-lib-source-maps "^1.2.1" 2152 | istanbul-reports "^1.1.2" 2153 | js-yaml "^3.7.0" 2154 | mkdirp "^0.5.1" 2155 | once "^1.4.0" 2156 | 2157 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 2158 | version "1.1.1" 2159 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2160 | 2161 | istanbul-lib-hook@^1.0.7: 2162 | version "1.0.7" 2163 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 2164 | dependencies: 2165 | append-transform "^0.4.0" 2166 | 2167 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: 2168 | version "1.8.0" 2169 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" 2170 | dependencies: 2171 | babel-generator "^6.18.0" 2172 | babel-template "^6.16.0" 2173 | babel-traverse "^6.18.0" 2174 | babel-types "^6.18.0" 2175 | babylon "^6.18.0" 2176 | istanbul-lib-coverage "^1.1.1" 2177 | semver "^5.3.0" 2178 | 2179 | istanbul-lib-report@^1.1.1: 2180 | version "1.1.1" 2181 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 2182 | dependencies: 2183 | istanbul-lib-coverage "^1.1.1" 2184 | mkdirp "^0.5.1" 2185 | path-parse "^1.0.5" 2186 | supports-color "^3.1.2" 2187 | 2188 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 2189 | version "1.2.1" 2190 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 2191 | dependencies: 2192 | debug "^2.6.3" 2193 | istanbul-lib-coverage "^1.1.1" 2194 | mkdirp "^0.5.1" 2195 | rimraf "^2.6.1" 2196 | source-map "^0.5.3" 2197 | 2198 | istanbul-reports@^1.1.2: 2199 | version "1.1.2" 2200 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 2201 | dependencies: 2202 | handlebars "^4.0.3" 2203 | 2204 | jest-changed-files@^21.2.0: 2205 | version "21.2.0" 2206 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" 2207 | dependencies: 2208 | throat "^4.0.0" 2209 | 2210 | jest-cli@^21.2.1: 2211 | version "21.2.1" 2212 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" 2213 | dependencies: 2214 | ansi-escapes "^3.0.0" 2215 | chalk "^2.0.1" 2216 | glob "^7.1.2" 2217 | graceful-fs "^4.1.11" 2218 | is-ci "^1.0.10" 2219 | istanbul-api "^1.1.1" 2220 | istanbul-lib-coverage "^1.0.1" 2221 | istanbul-lib-instrument "^1.4.2" 2222 | istanbul-lib-source-maps "^1.1.0" 2223 | jest-changed-files "^21.2.0" 2224 | jest-config "^21.2.1" 2225 | jest-environment-jsdom "^21.2.1" 2226 | jest-haste-map "^21.2.0" 2227 | jest-message-util "^21.2.1" 2228 | jest-regex-util "^21.2.0" 2229 | jest-resolve-dependencies "^21.2.0" 2230 | jest-runner "^21.2.1" 2231 | jest-runtime "^21.2.1" 2232 | jest-snapshot "^21.2.1" 2233 | jest-util "^21.2.1" 2234 | micromatch "^2.3.11" 2235 | node-notifier "^5.0.2" 2236 | pify "^3.0.0" 2237 | slash "^1.0.0" 2238 | string-length "^2.0.0" 2239 | strip-ansi "^4.0.0" 2240 | which "^1.2.12" 2241 | worker-farm "^1.3.1" 2242 | yargs "^9.0.0" 2243 | 2244 | jest-config@^21.2.1: 2245 | version "21.2.1" 2246 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" 2247 | dependencies: 2248 | chalk "^2.0.1" 2249 | glob "^7.1.1" 2250 | jest-environment-jsdom "^21.2.1" 2251 | jest-environment-node "^21.2.1" 2252 | jest-get-type "^21.2.0" 2253 | jest-jasmine2 "^21.2.1" 2254 | jest-regex-util "^21.2.0" 2255 | jest-resolve "^21.2.0" 2256 | jest-util "^21.2.1" 2257 | jest-validate "^21.2.1" 2258 | pretty-format "^21.2.1" 2259 | 2260 | jest-diff@^21.2.1: 2261 | version "21.2.1" 2262 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 2263 | dependencies: 2264 | chalk "^2.0.1" 2265 | diff "^3.2.0" 2266 | jest-get-type "^21.2.0" 2267 | pretty-format "^21.2.1" 2268 | 2269 | jest-docblock@^21.2.0: 2270 | version "21.2.0" 2271 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 2272 | 2273 | jest-environment-jsdom@^21.2.1: 2274 | version "21.2.1" 2275 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" 2276 | dependencies: 2277 | jest-mock "^21.2.0" 2278 | jest-util "^21.2.1" 2279 | jsdom "^9.12.0" 2280 | 2281 | jest-environment-node@^21.2.1: 2282 | version "21.2.1" 2283 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" 2284 | dependencies: 2285 | jest-mock "^21.2.0" 2286 | jest-util "^21.2.1" 2287 | 2288 | jest-get-type@^21.2.0: 2289 | version "21.2.0" 2290 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 2291 | 2292 | jest-haste-map@^21.2.0: 2293 | version "21.2.0" 2294 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 2295 | dependencies: 2296 | fb-watchman "^2.0.0" 2297 | graceful-fs "^4.1.11" 2298 | jest-docblock "^21.2.0" 2299 | micromatch "^2.3.11" 2300 | sane "^2.0.0" 2301 | worker-farm "^1.3.1" 2302 | 2303 | jest-jasmine2@^21.2.1: 2304 | version "21.2.1" 2305 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" 2306 | dependencies: 2307 | chalk "^2.0.1" 2308 | expect "^21.2.1" 2309 | graceful-fs "^4.1.11" 2310 | jest-diff "^21.2.1" 2311 | jest-matcher-utils "^21.2.1" 2312 | jest-message-util "^21.2.1" 2313 | jest-snapshot "^21.2.1" 2314 | p-cancelable "^0.3.0" 2315 | 2316 | jest-matcher-utils@^21.2.1: 2317 | version "21.2.1" 2318 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 2319 | dependencies: 2320 | chalk "^2.0.1" 2321 | jest-get-type "^21.2.0" 2322 | pretty-format "^21.2.1" 2323 | 2324 | jest-message-util@^21.2.1: 2325 | version "21.2.1" 2326 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 2327 | dependencies: 2328 | chalk "^2.0.1" 2329 | micromatch "^2.3.11" 2330 | slash "^1.0.0" 2331 | 2332 | jest-mock@^21.2.0: 2333 | version "21.2.0" 2334 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" 2335 | 2336 | jest-regex-util@^21.2.0: 2337 | version "21.2.0" 2338 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 2339 | 2340 | jest-resolve-dependencies@^21.2.0: 2341 | version "21.2.0" 2342 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" 2343 | dependencies: 2344 | jest-regex-util "^21.2.0" 2345 | 2346 | jest-resolve@^21.2.0: 2347 | version "21.2.0" 2348 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" 2349 | dependencies: 2350 | browser-resolve "^1.11.2" 2351 | chalk "^2.0.1" 2352 | is-builtin-module "^1.0.0" 2353 | 2354 | jest-runner@^21.2.1: 2355 | version "21.2.1" 2356 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" 2357 | dependencies: 2358 | jest-config "^21.2.1" 2359 | jest-docblock "^21.2.0" 2360 | jest-haste-map "^21.2.0" 2361 | jest-jasmine2 "^21.2.1" 2362 | jest-message-util "^21.2.1" 2363 | jest-runtime "^21.2.1" 2364 | jest-util "^21.2.1" 2365 | pify "^3.0.0" 2366 | throat "^4.0.0" 2367 | worker-farm "^1.3.1" 2368 | 2369 | jest-runtime@^21.2.1: 2370 | version "21.2.1" 2371 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" 2372 | dependencies: 2373 | babel-core "^6.0.0" 2374 | babel-jest "^21.2.0" 2375 | babel-plugin-istanbul "^4.0.0" 2376 | chalk "^2.0.1" 2377 | convert-source-map "^1.4.0" 2378 | graceful-fs "^4.1.11" 2379 | jest-config "^21.2.1" 2380 | jest-haste-map "^21.2.0" 2381 | jest-regex-util "^21.2.0" 2382 | jest-resolve "^21.2.0" 2383 | jest-util "^21.2.1" 2384 | json-stable-stringify "^1.0.1" 2385 | micromatch "^2.3.11" 2386 | slash "^1.0.0" 2387 | strip-bom "3.0.0" 2388 | write-file-atomic "^2.1.0" 2389 | yargs "^9.0.0" 2390 | 2391 | jest-snapshot@^21.2.1: 2392 | version "21.2.1" 2393 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" 2394 | dependencies: 2395 | chalk "^2.0.1" 2396 | jest-diff "^21.2.1" 2397 | jest-matcher-utils "^21.2.1" 2398 | mkdirp "^0.5.1" 2399 | natural-compare "^1.4.0" 2400 | pretty-format "^21.2.1" 2401 | 2402 | jest-util@^21.2.1: 2403 | version "21.2.1" 2404 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" 2405 | dependencies: 2406 | callsites "^2.0.0" 2407 | chalk "^2.0.1" 2408 | graceful-fs "^4.1.11" 2409 | jest-message-util "^21.2.1" 2410 | jest-mock "^21.2.0" 2411 | jest-validate "^21.2.1" 2412 | mkdirp "^0.5.1" 2413 | 2414 | jest-validate@^21.2.1: 2415 | version "21.2.1" 2416 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 2417 | dependencies: 2418 | chalk "^2.0.1" 2419 | jest-get-type "^21.2.0" 2420 | leven "^2.1.0" 2421 | pretty-format "^21.2.1" 2422 | 2423 | jest@^21.2.1: 2424 | version "21.2.1" 2425 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" 2426 | dependencies: 2427 | jest-cli "^21.2.1" 2428 | 2429 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2430 | version "3.0.2" 2431 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2432 | 2433 | js-yaml@^3.7.0, js-yaml@^3.9.1: 2434 | version "3.10.0" 2435 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2436 | dependencies: 2437 | argparse "^1.0.7" 2438 | esprima "^4.0.0" 2439 | 2440 | jsbn@~0.1.0: 2441 | version "0.1.1" 2442 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2443 | 2444 | jschardet@^1.4.2: 2445 | version "1.5.1" 2446 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 2447 | 2448 | jsdom@^9.12.0: 2449 | version "9.12.0" 2450 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2451 | dependencies: 2452 | abab "^1.0.3" 2453 | acorn "^4.0.4" 2454 | acorn-globals "^3.1.0" 2455 | array-equal "^1.0.0" 2456 | content-type-parser "^1.0.1" 2457 | cssom ">= 0.3.2 < 0.4.0" 2458 | cssstyle ">= 0.2.37 < 0.3.0" 2459 | escodegen "^1.6.1" 2460 | html-encoding-sniffer "^1.0.1" 2461 | nwmatcher ">= 1.3.9 < 2.0.0" 2462 | parse5 "^1.5.1" 2463 | request "^2.79.0" 2464 | sax "^1.2.1" 2465 | symbol-tree "^3.2.1" 2466 | tough-cookie "^2.3.2" 2467 | webidl-conversions "^4.0.0" 2468 | whatwg-encoding "^1.0.1" 2469 | whatwg-url "^4.3.0" 2470 | xml-name-validator "^2.0.1" 2471 | 2472 | jsesc@^1.3.0: 2473 | version "1.3.0" 2474 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2475 | 2476 | jsesc@^2.5.1: 2477 | version "2.5.1" 2478 | resolved "http://registry.npm.taobao.org/jsesc/download/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 2479 | 2480 | jsesc@~0.5.0: 2481 | version "0.5.0" 2482 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2483 | 2484 | json-parse-better-errors@^1.0.1: 2485 | version "1.0.2" 2486 | resolved "http://registry.npm.taobao.org/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2487 | 2488 | json-schema-traverse@^0.3.0: 2489 | version "0.3.1" 2490 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2491 | 2492 | json-schema@0.2.3: 2493 | version "0.2.3" 2494 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2495 | 2496 | json-stable-stringify-without-jsonify@^1.0.1: 2497 | version "1.0.1" 2498 | resolved "http://registry.npm.taobao.org/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2499 | 2500 | json-stable-stringify@^1.0.1: 2501 | version "1.0.1" 2502 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2503 | dependencies: 2504 | jsonify "~0.0.0" 2505 | 2506 | json-stringify-safe@~5.0.1: 2507 | version "5.0.1" 2508 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2509 | 2510 | json5@^0.5.1: 2511 | version "0.5.1" 2512 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2513 | 2514 | jsonify@~0.0.0: 2515 | version "0.0.0" 2516 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2517 | 2518 | jsprim@^1.2.2: 2519 | version "1.4.1" 2520 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2521 | dependencies: 2522 | assert-plus "1.0.0" 2523 | extsprintf "1.3.0" 2524 | json-schema "0.2.3" 2525 | verror "1.10.0" 2526 | 2527 | jsx-ast-utils@^2.0.1: 2528 | version "2.0.1" 2529 | resolved "http://registry.npm.taobao.org/jsx-ast-utils/download/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" 2530 | dependencies: 2531 | array-includes "^3.0.3" 2532 | 2533 | kind-of@^3.0.2: 2534 | version "3.2.2" 2535 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2536 | dependencies: 2537 | is-buffer "^1.1.5" 2538 | 2539 | kind-of@^4.0.0: 2540 | version "4.0.0" 2541 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2542 | dependencies: 2543 | is-buffer "^1.1.5" 2544 | 2545 | lazy-cache@^1.0.3: 2546 | version "1.0.4" 2547 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2548 | 2549 | lcid@^1.0.0: 2550 | version "1.0.0" 2551 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2552 | dependencies: 2553 | invert-kv "^1.0.0" 2554 | 2555 | leven@^2.1.0: 2556 | version "2.1.0" 2557 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2558 | 2559 | levn@^0.3.0, levn@~0.3.0: 2560 | version "0.3.0" 2561 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2562 | dependencies: 2563 | prelude-ls "~1.1.2" 2564 | type-check "~0.3.2" 2565 | 2566 | load-json-file@^1.0.0: 2567 | version "1.1.0" 2568 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2569 | dependencies: 2570 | graceful-fs "^4.1.2" 2571 | parse-json "^2.2.0" 2572 | pify "^2.0.0" 2573 | pinkie-promise "^2.0.0" 2574 | strip-bom "^2.0.0" 2575 | 2576 | load-json-file@^2.0.0: 2577 | version "2.0.0" 2578 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2579 | dependencies: 2580 | graceful-fs "^4.1.2" 2581 | parse-json "^2.2.0" 2582 | pify "^2.0.0" 2583 | strip-bom "^3.0.0" 2584 | 2585 | load-json-file@^4.0.0: 2586 | version "4.0.0" 2587 | resolved "http://registry.npm.taobao.org/load-json-file/download/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2588 | dependencies: 2589 | graceful-fs "^4.1.2" 2590 | parse-json "^4.0.0" 2591 | pify "^3.0.0" 2592 | strip-bom "^3.0.0" 2593 | 2594 | locate-path@^2.0.0: 2595 | version "2.0.0" 2596 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2597 | dependencies: 2598 | p-locate "^2.0.0" 2599 | path-exists "^3.0.0" 2600 | 2601 | lodash@^4.14.0, lodash@^4.17.4, lodash@^4.3.0, lodash@^4.6.1: 2602 | version "4.17.4" 2603 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2604 | 2605 | lodash@^4.2.0: 2606 | version "4.17.5" 2607 | resolved "http://registry.npm.taobao.org/lodash/download/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 2608 | 2609 | longest@^1.0.1: 2610 | version "1.0.1" 2611 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2612 | 2613 | loose-envify@^1.0.0, loose-envify@^1.3.1: 2614 | version "1.3.1" 2615 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2616 | dependencies: 2617 | js-tokens "^3.0.0" 2618 | 2619 | lru-cache@^4.0.1: 2620 | version "4.1.1" 2621 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2622 | dependencies: 2623 | pseudomap "^1.0.2" 2624 | yallist "^2.1.2" 2625 | 2626 | makeerror@1.0.x: 2627 | version "1.0.11" 2628 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2629 | dependencies: 2630 | tmpl "1.0.x" 2631 | 2632 | mem@^1.1.0: 2633 | version "1.1.0" 2634 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2635 | dependencies: 2636 | mimic-fn "^1.0.0" 2637 | 2638 | merge@^1.1.3: 2639 | version "1.2.0" 2640 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2641 | 2642 | micromatch@^2.1.5, micromatch@^2.3.11: 2643 | version "2.3.11" 2644 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2645 | dependencies: 2646 | arr-diff "^2.0.0" 2647 | array-unique "^0.2.1" 2648 | braces "^1.8.2" 2649 | expand-brackets "^0.1.4" 2650 | extglob "^0.3.1" 2651 | filename-regex "^2.0.0" 2652 | is-extglob "^1.0.0" 2653 | is-glob "^2.0.1" 2654 | kind-of "^3.0.2" 2655 | normalize-path "^2.0.1" 2656 | object.omit "^2.0.0" 2657 | parse-glob "^3.0.4" 2658 | regex-cache "^0.4.2" 2659 | 2660 | mime-db@~1.30.0: 2661 | version "1.30.0" 2662 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2663 | 2664 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2665 | version "2.1.17" 2666 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2667 | dependencies: 2668 | mime-db "~1.30.0" 2669 | 2670 | mimic-fn@^1.0.0: 2671 | version "1.1.0" 2672 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2673 | 2674 | min-document@^2.19.0: 2675 | version "2.19.0" 2676 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 2677 | dependencies: 2678 | dom-walk "^0.1.0" 2679 | 2680 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2681 | version "3.0.4" 2682 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2683 | dependencies: 2684 | brace-expansion "^1.1.7" 2685 | 2686 | minimist@0.0.8: 2687 | version "0.0.8" 2688 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2689 | 2690 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: 2691 | version "1.2.0" 2692 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2693 | 2694 | minimist@~0.0.1: 2695 | version "0.0.10" 2696 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2697 | 2698 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2699 | version "0.5.1" 2700 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2701 | dependencies: 2702 | minimist "0.0.8" 2703 | 2704 | ms@2.0.0: 2705 | version "2.0.0" 2706 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2707 | 2708 | mute-stream@0.0.7: 2709 | version "0.0.7" 2710 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2711 | 2712 | nan@^2.3.0: 2713 | version "2.7.0" 2714 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 2715 | 2716 | natural-compare@^1.4.0: 2717 | version "1.4.0" 2718 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2719 | 2720 | node-fetch@^1.0.1: 2721 | version "1.7.3" 2722 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2723 | dependencies: 2724 | encoding "^0.1.11" 2725 | is-stream "^1.0.1" 2726 | 2727 | node-int64@^0.4.0: 2728 | version "0.4.0" 2729 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2730 | 2731 | node-notifier@^5.0.2: 2732 | version "5.1.2" 2733 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2734 | dependencies: 2735 | growly "^1.3.0" 2736 | semver "^5.3.0" 2737 | shellwords "^0.1.0" 2738 | which "^1.2.12" 2739 | 2740 | node-pre-gyp@^0.6.36: 2741 | version "0.6.38" 2742 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 2743 | dependencies: 2744 | hawk "3.1.3" 2745 | mkdirp "^0.5.1" 2746 | nopt "^4.0.1" 2747 | npmlog "^4.0.2" 2748 | rc "^1.1.7" 2749 | request "2.81.0" 2750 | rimraf "^2.6.1" 2751 | semver "^5.3.0" 2752 | tar "^2.2.1" 2753 | tar-pack "^3.4.0" 2754 | 2755 | nopt@^4.0.1: 2756 | version "4.0.1" 2757 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2758 | dependencies: 2759 | abbrev "1" 2760 | osenv "^0.1.4" 2761 | 2762 | normalize-package-data@^2.3.2: 2763 | version "2.4.0" 2764 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2765 | dependencies: 2766 | hosted-git-info "^2.1.4" 2767 | is-builtin-module "^1.0.0" 2768 | semver "2 || 3 || 4 || 5" 2769 | validate-npm-package-license "^3.0.1" 2770 | 2771 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2772 | version "2.1.1" 2773 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2774 | dependencies: 2775 | remove-trailing-separator "^1.0.1" 2776 | 2777 | npm-run-path@^2.0.0: 2778 | version "2.0.2" 2779 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2780 | dependencies: 2781 | path-key "^2.0.0" 2782 | 2783 | npmlog@^4.0.2: 2784 | version "4.1.2" 2785 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2786 | dependencies: 2787 | are-we-there-yet "~1.1.2" 2788 | console-control-strings "~1.1.0" 2789 | gauge "~2.7.3" 2790 | set-blocking "~2.0.0" 2791 | 2792 | number-is-nan@^1.0.0: 2793 | version "1.0.1" 2794 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2795 | 2796 | "nwmatcher@>= 1.3.9 < 2.0.0": 2797 | version "1.4.2" 2798 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.2.tgz#c5e545ab40d22a56b0326531c4beaed7a888b3ea" 2799 | 2800 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2801 | version "0.8.2" 2802 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2803 | 2804 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2805 | version "4.1.1" 2806 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2807 | 2808 | object-keys@^1.0.8: 2809 | version "1.0.11" 2810 | resolved "http://registry.npm.taobao.org/object-keys/download/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2811 | 2812 | object.omit@^2.0.0: 2813 | version "2.0.1" 2814 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2815 | dependencies: 2816 | for-own "^0.1.4" 2817 | is-extendable "^0.1.1" 2818 | 2819 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2820 | version "1.4.0" 2821 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2822 | dependencies: 2823 | wrappy "1" 2824 | 2825 | onetime@^2.0.0: 2826 | version "2.0.1" 2827 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2828 | dependencies: 2829 | mimic-fn "^1.0.0" 2830 | 2831 | optimist@^0.6.1: 2832 | version "0.6.1" 2833 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2834 | dependencies: 2835 | minimist "~0.0.1" 2836 | wordwrap "~0.0.2" 2837 | 2838 | optionator@^0.8.1, optionator@^0.8.2: 2839 | version "0.8.2" 2840 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2841 | dependencies: 2842 | deep-is "~0.1.3" 2843 | fast-levenshtein "~2.0.4" 2844 | levn "~0.3.0" 2845 | prelude-ls "~1.1.2" 2846 | type-check "~0.3.2" 2847 | wordwrap "~1.0.0" 2848 | 2849 | os-homedir@^1.0.0: 2850 | version "1.0.2" 2851 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2852 | 2853 | os-locale@^2.0.0: 2854 | version "2.1.0" 2855 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2856 | dependencies: 2857 | execa "^0.7.0" 2858 | lcid "^1.0.0" 2859 | mem "^1.1.0" 2860 | 2861 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2862 | version "1.0.2" 2863 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2864 | 2865 | osenv@^0.1.4: 2866 | version "0.1.4" 2867 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2868 | dependencies: 2869 | os-homedir "^1.0.0" 2870 | os-tmpdir "^1.0.0" 2871 | 2872 | p-cancelable@^0.3.0: 2873 | version "0.3.0" 2874 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 2875 | 2876 | p-finally@^1.0.0: 2877 | version "1.0.0" 2878 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2879 | 2880 | p-limit@^1.1.0: 2881 | version "1.1.0" 2882 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2883 | 2884 | p-locate@^2.0.0: 2885 | version "2.0.0" 2886 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2887 | dependencies: 2888 | p-limit "^1.1.0" 2889 | 2890 | parse-glob@^3.0.4: 2891 | version "3.0.4" 2892 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2893 | dependencies: 2894 | glob-base "^0.3.0" 2895 | is-dotfile "^1.0.0" 2896 | is-extglob "^1.0.0" 2897 | is-glob "^2.0.0" 2898 | 2899 | parse-json@^2.2.0: 2900 | version "2.2.0" 2901 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2902 | dependencies: 2903 | error-ex "^1.2.0" 2904 | 2905 | parse-json@^4.0.0: 2906 | version "4.0.0" 2907 | resolved "http://registry.npm.taobao.org/parse-json/download/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2908 | dependencies: 2909 | error-ex "^1.3.1" 2910 | json-parse-better-errors "^1.0.1" 2911 | 2912 | parse5@^1.5.1: 2913 | version "1.5.1" 2914 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2915 | 2916 | path-exists@^2.0.0: 2917 | version "2.1.0" 2918 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2919 | dependencies: 2920 | pinkie-promise "^2.0.0" 2921 | 2922 | path-exists@^3.0.0: 2923 | version "3.0.0" 2924 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2925 | 2926 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2927 | version "1.0.1" 2928 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2929 | 2930 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2931 | version "1.0.2" 2932 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2933 | 2934 | path-key@^2.0.0: 2935 | version "2.0.1" 2936 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2937 | 2938 | path-parse@^1.0.5: 2939 | version "1.0.5" 2940 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2941 | 2942 | path-type@^1.0.0: 2943 | version "1.1.0" 2944 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2945 | dependencies: 2946 | graceful-fs "^4.1.2" 2947 | pify "^2.0.0" 2948 | pinkie-promise "^2.0.0" 2949 | 2950 | path-type@^2.0.0: 2951 | version "2.0.0" 2952 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2953 | dependencies: 2954 | pify "^2.0.0" 2955 | 2956 | performance-now@^0.2.0: 2957 | version "0.2.0" 2958 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2959 | 2960 | performance-now@^2.1.0: 2961 | version "2.1.0" 2962 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2963 | 2964 | pify@^2.0.0: 2965 | version "2.3.0" 2966 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2967 | 2968 | pify@^3.0.0: 2969 | version "3.0.0" 2970 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2971 | 2972 | pinkie-promise@^2.0.0: 2973 | version "2.0.1" 2974 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2975 | dependencies: 2976 | pinkie "^2.0.0" 2977 | 2978 | pinkie@^2.0.0: 2979 | version "2.0.4" 2980 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2981 | 2982 | pkg-conf@^2.0.0: 2983 | version "2.1.0" 2984 | resolved "http://registry.npm.taobao.org/pkg-conf/download/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" 2985 | dependencies: 2986 | find-up "^2.0.0" 2987 | load-json-file "^4.0.0" 2988 | 2989 | pkg-config@^1.1.0: 2990 | version "1.1.1" 2991 | resolved "http://registry.npm.taobao.org/pkg-config/download/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 2992 | dependencies: 2993 | debug-log "^1.0.0" 2994 | find-root "^1.0.0" 2995 | xtend "^4.0.1" 2996 | 2997 | pkg-dir@^1.0.0: 2998 | version "1.0.0" 2999 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3000 | dependencies: 3001 | find-up "^1.0.0" 3002 | 3003 | pluralize@^7.0.0: 3004 | version "7.0.0" 3005 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3006 | 3007 | prelude-ls@~1.1.2: 3008 | version "1.1.2" 3009 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3010 | 3011 | preserve@^0.2.0: 3012 | version "0.2.0" 3013 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3014 | 3015 | pretty-format@^21.2.1: 3016 | version "21.2.1" 3017 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 3018 | dependencies: 3019 | ansi-regex "^3.0.0" 3020 | ansi-styles "^3.2.0" 3021 | 3022 | private@^0.1.6, private@^0.1.7: 3023 | version "0.1.7" 3024 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3025 | 3026 | process-nextick-args@~1.0.6: 3027 | version "1.0.7" 3028 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3029 | 3030 | process@~0.5.1: 3031 | version "0.5.2" 3032 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 3033 | 3034 | progress@^2.0.0: 3035 | version "2.0.0" 3036 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3037 | 3038 | promise@^7.1.1: 3039 | version "7.3.1" 3040 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 3041 | dependencies: 3042 | asap "~2.0.3" 3043 | 3044 | prop-types@^15.6.0: 3045 | version "15.6.1" 3046 | resolved "http://registry.npm.taobao.org/prop-types/download/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" 3047 | dependencies: 3048 | fbjs "^0.8.16" 3049 | loose-envify "^1.3.1" 3050 | object-assign "^4.1.1" 3051 | 3052 | prr@~0.0.0: 3053 | version "0.0.0" 3054 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3055 | 3056 | pseudomap@^1.0.2: 3057 | version "1.0.2" 3058 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3059 | 3060 | punycode@^1.4.1: 3061 | version "1.4.1" 3062 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3063 | 3064 | qs@~6.4.0: 3065 | version "6.4.0" 3066 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3067 | 3068 | qs@~6.5.1: 3069 | version "6.5.1" 3070 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3071 | 3072 | randomatic@^1.1.3: 3073 | version "1.1.7" 3074 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3075 | dependencies: 3076 | is-number "^3.0.0" 3077 | kind-of "^4.0.0" 3078 | 3079 | rc@^1.1.7: 3080 | version "1.2.1" 3081 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3082 | dependencies: 3083 | deep-extend "~0.4.0" 3084 | ini "~1.3.0" 3085 | minimist "^1.2.0" 3086 | strip-json-comments "~2.0.1" 3087 | 3088 | react-deep-force-update@^1.0.0: 3089 | version "1.1.1" 3090 | resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.1.1.tgz#bcd31478027b64b3339f108921ab520b4313dc2c" 3091 | 3092 | react-proxy@^1.1.7: 3093 | version "1.1.8" 3094 | resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a" 3095 | dependencies: 3096 | lodash "^4.6.1" 3097 | react-deep-force-update "^1.0.0" 3098 | 3099 | react-test-renderer@15.4.0: 3100 | version "15.4.0" 3101 | resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-15.4.0.tgz#80138338e40903821847c3e4edd87d0d74c77cc8" 3102 | 3103 | react-transform-hmr@^1.0.4: 3104 | version "1.0.4" 3105 | resolved "https://registry.yarnpkg.com/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb" 3106 | dependencies: 3107 | global "^4.3.0" 3108 | react-proxy "^1.1.7" 3109 | 3110 | read-pkg-up@^1.0.1: 3111 | version "1.0.1" 3112 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3113 | dependencies: 3114 | find-up "^1.0.0" 3115 | read-pkg "^1.0.0" 3116 | 3117 | read-pkg-up@^2.0.0: 3118 | version "2.0.0" 3119 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3120 | dependencies: 3121 | find-up "^2.0.0" 3122 | read-pkg "^2.0.0" 3123 | 3124 | read-pkg@^1.0.0: 3125 | version "1.1.0" 3126 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3127 | dependencies: 3128 | load-json-file "^1.0.0" 3129 | normalize-package-data "^2.3.2" 3130 | path-type "^1.0.0" 3131 | 3132 | read-pkg@^2.0.0: 3133 | version "2.0.0" 3134 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3135 | dependencies: 3136 | load-json-file "^2.0.0" 3137 | normalize-package-data "^2.3.2" 3138 | path-type "^2.0.0" 3139 | 3140 | readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 3141 | version "2.3.3" 3142 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3143 | dependencies: 3144 | core-util-is "~1.0.0" 3145 | inherits "~2.0.3" 3146 | isarray "~1.0.0" 3147 | process-nextick-args "~1.0.6" 3148 | safe-buffer "~5.1.1" 3149 | string_decoder "~1.0.3" 3150 | util-deprecate "~1.0.1" 3151 | 3152 | regenerate@^1.2.1: 3153 | version "1.3.3" 3154 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 3155 | 3156 | regenerator-runtime@^0.11.0: 3157 | version "0.11.0" 3158 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 3159 | 3160 | regenerator-transform@^0.10.0: 3161 | version "0.10.1" 3162 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3163 | dependencies: 3164 | babel-runtime "^6.18.0" 3165 | babel-types "^6.19.0" 3166 | private "^0.1.6" 3167 | 3168 | regex-cache@^0.4.2: 3169 | version "0.4.4" 3170 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3171 | dependencies: 3172 | is-equal-shallow "^0.1.3" 3173 | 3174 | regexpu-core@^2.0.0: 3175 | version "2.0.0" 3176 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3177 | dependencies: 3178 | regenerate "^1.2.1" 3179 | regjsgen "^0.2.0" 3180 | regjsparser "^0.1.4" 3181 | 3182 | regjsgen@^0.2.0: 3183 | version "0.2.0" 3184 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3185 | 3186 | regjsparser@^0.1.4: 3187 | version "0.1.5" 3188 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3189 | dependencies: 3190 | jsesc "~0.5.0" 3191 | 3192 | remove-trailing-separator@^1.0.1: 3193 | version "1.1.0" 3194 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3195 | 3196 | repeat-element@^1.1.2: 3197 | version "1.1.2" 3198 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3199 | 3200 | repeat-string@^1.5.2: 3201 | version "1.6.1" 3202 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3203 | 3204 | repeating@^2.0.0: 3205 | version "2.0.1" 3206 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3207 | dependencies: 3208 | is-finite "^1.0.0" 3209 | 3210 | request@2.81.0: 3211 | version "2.81.0" 3212 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3213 | dependencies: 3214 | aws-sign2 "~0.6.0" 3215 | aws4 "^1.2.1" 3216 | caseless "~0.12.0" 3217 | combined-stream "~1.0.5" 3218 | extend "~3.0.0" 3219 | forever-agent "~0.6.1" 3220 | form-data "~2.1.1" 3221 | har-validator "~4.2.1" 3222 | hawk "~3.1.3" 3223 | http-signature "~1.1.0" 3224 | is-typedarray "~1.0.0" 3225 | isstream "~0.1.2" 3226 | json-stringify-safe "~5.0.1" 3227 | mime-types "~2.1.7" 3228 | oauth-sign "~0.8.1" 3229 | performance-now "^0.2.0" 3230 | qs "~6.4.0" 3231 | safe-buffer "^5.0.1" 3232 | stringstream "~0.0.4" 3233 | tough-cookie "~2.3.0" 3234 | tunnel-agent "^0.6.0" 3235 | uuid "^3.0.0" 3236 | 3237 | request@^2.79.0: 3238 | version "2.83.0" 3239 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 3240 | dependencies: 3241 | aws-sign2 "~0.7.0" 3242 | aws4 "^1.6.0" 3243 | caseless "~0.12.0" 3244 | combined-stream "~1.0.5" 3245 | extend "~3.0.1" 3246 | forever-agent "~0.6.1" 3247 | form-data "~2.3.1" 3248 | har-validator "~5.0.3" 3249 | hawk "~6.0.2" 3250 | http-signature "~1.2.0" 3251 | is-typedarray "~1.0.0" 3252 | isstream "~0.1.2" 3253 | json-stringify-safe "~5.0.1" 3254 | mime-types "~2.1.17" 3255 | oauth-sign "~0.8.2" 3256 | performance-now "^2.1.0" 3257 | qs "~6.5.1" 3258 | safe-buffer "^5.1.1" 3259 | stringstream "~0.0.5" 3260 | tough-cookie "~2.3.3" 3261 | tunnel-agent "^0.6.0" 3262 | uuid "^3.1.0" 3263 | 3264 | require-directory@^2.1.1: 3265 | version "2.1.1" 3266 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3267 | 3268 | require-main-filename@^1.0.1: 3269 | version "1.0.1" 3270 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3271 | 3272 | require-uncached@^1.0.3: 3273 | version "1.0.3" 3274 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3275 | dependencies: 3276 | caller-path "^0.1.0" 3277 | resolve-from "^1.0.0" 3278 | 3279 | resolve-from@^1.0.0: 3280 | version "1.0.1" 3281 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3282 | 3283 | resolve@1.1.7: 3284 | version "1.1.7" 3285 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3286 | 3287 | resolve@^1.2.0, resolve@^1.3.3: 3288 | version "1.4.0" 3289 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 3290 | dependencies: 3291 | path-parse "^1.0.5" 3292 | 3293 | restore-cursor@^2.0.0: 3294 | version "2.0.0" 3295 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3296 | dependencies: 3297 | onetime "^2.0.0" 3298 | signal-exit "^3.0.2" 3299 | 3300 | right-align@^0.1.1: 3301 | version "0.1.3" 3302 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3303 | dependencies: 3304 | align-text "^0.1.1" 3305 | 3306 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3307 | version "2.6.2" 3308 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3309 | dependencies: 3310 | glob "^7.0.5" 3311 | 3312 | run-async@^2.2.0: 3313 | version "2.3.0" 3314 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3315 | dependencies: 3316 | is-promise "^2.1.0" 3317 | 3318 | run-parallel@^1.1.2: 3319 | version "1.1.8" 3320 | resolved "http://registry.npm.taobao.org/run-parallel/download/run-parallel-1.1.8.tgz#70e4e788f13a1ad9603254f6a2277f3843a5845c" 3321 | 3322 | rx-lite-aggregates@^4.0.8: 3323 | version "4.0.8" 3324 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3325 | dependencies: 3326 | rx-lite "*" 3327 | 3328 | rx-lite@*, rx-lite@^4.0.8: 3329 | version "4.0.8" 3330 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3331 | 3332 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3333 | version "5.1.1" 3334 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3335 | 3336 | sane@^2.0.0: 3337 | version "2.2.0" 3338 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 3339 | dependencies: 3340 | anymatch "^1.3.0" 3341 | exec-sh "^0.2.0" 3342 | fb-watchman "^2.0.0" 3343 | minimatch "^3.0.2" 3344 | minimist "^1.1.1" 3345 | walker "~1.0.5" 3346 | watch "~0.18.0" 3347 | optionalDependencies: 3348 | fsevents "^1.1.1" 3349 | 3350 | sax@^1.2.1: 3351 | version "1.2.4" 3352 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3353 | 3354 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3355 | version "5.4.1" 3356 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3357 | 3358 | semver@^5.4.1: 3359 | version "5.5.0" 3360 | resolved "http://registry.npm.taobao.org/semver/download/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3361 | 3362 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3363 | version "2.0.0" 3364 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3365 | 3366 | setimmediate@^1.0.5: 3367 | version "1.0.5" 3368 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3369 | 3370 | shebang-command@^1.2.0: 3371 | version "1.2.0" 3372 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3373 | dependencies: 3374 | shebang-regex "^1.0.0" 3375 | 3376 | shebang-regex@^1.0.0: 3377 | version "1.0.0" 3378 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3379 | 3380 | shellwords@^0.1.0: 3381 | version "0.1.1" 3382 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3383 | 3384 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3385 | version "3.0.2" 3386 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3387 | 3388 | slash@^1.0.0: 3389 | version "1.0.0" 3390 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3391 | 3392 | slice-ansi@1.0.0: 3393 | version "1.0.0" 3394 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3395 | dependencies: 3396 | is-fullwidth-code-point "^2.0.0" 3397 | 3398 | sntp@1.x.x: 3399 | version "1.0.9" 3400 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3401 | dependencies: 3402 | hoek "2.x.x" 3403 | 3404 | sntp@2.x.x: 3405 | version "2.0.2" 3406 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.0.2.tgz#5064110f0af85f7cfdb7d6b67a40028ce52b4b2b" 3407 | dependencies: 3408 | hoek "4.x.x" 3409 | 3410 | source-map-support@^0.4.15: 3411 | version "0.4.18" 3412 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3413 | dependencies: 3414 | source-map "^0.5.6" 3415 | 3416 | source-map@^0.4.4: 3417 | version "0.4.4" 3418 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3419 | dependencies: 3420 | amdefine ">=0.0.4" 3421 | 3422 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 3423 | version "0.5.7" 3424 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3425 | 3426 | spdx-correct@~1.0.0: 3427 | version "1.0.2" 3428 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3429 | dependencies: 3430 | spdx-license-ids "^1.0.2" 3431 | 3432 | spdx-expression-parse@~1.0.0: 3433 | version "1.0.4" 3434 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3435 | 3436 | spdx-license-ids@^1.0.2: 3437 | version "1.2.2" 3438 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3439 | 3440 | sprintf-js@~1.0.2: 3441 | version "1.0.3" 3442 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3443 | 3444 | sshpk@^1.7.0: 3445 | version "1.13.1" 3446 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3447 | dependencies: 3448 | asn1 "~0.2.3" 3449 | assert-plus "^1.0.0" 3450 | dashdash "^1.12.0" 3451 | getpass "^0.1.1" 3452 | optionalDependencies: 3453 | bcrypt-pbkdf "^1.0.0" 3454 | ecc-jsbn "~0.1.1" 3455 | jsbn "~0.1.0" 3456 | tweetnacl "~0.14.0" 3457 | 3458 | standard-engine@~8.0.0: 3459 | version "8.0.1" 3460 | resolved "http://registry.npm.taobao.org/standard-engine/download/standard-engine-8.0.1.tgz#0b77be8d7ab963675717dbeac1ef1d6675fb62f0" 3461 | dependencies: 3462 | deglob "^2.1.0" 3463 | get-stdin "^6.0.0" 3464 | minimist "^1.1.0" 3465 | pkg-conf "^2.0.0" 3466 | 3467 | standard@^11.0.1: 3468 | version "11.0.1" 3469 | resolved "http://registry.npm.taobao.org/standard/download/standard-11.0.1.tgz#49be40c76f1d564964b22bbf7309929ad0335e29" 3470 | dependencies: 3471 | eslint "~4.18.0" 3472 | eslint-config-standard "11.0.0" 3473 | eslint-config-standard-jsx "5.0.0" 3474 | eslint-plugin-import "~2.9.0" 3475 | eslint-plugin-node "~6.0.0" 3476 | eslint-plugin-promise "~3.7.0" 3477 | eslint-plugin-react "~7.7.0" 3478 | eslint-plugin-standard "~3.0.1" 3479 | standard-engine "~8.0.0" 3480 | 3481 | string-length@^2.0.0: 3482 | version "2.0.0" 3483 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3484 | dependencies: 3485 | astral-regex "^1.0.0" 3486 | strip-ansi "^4.0.0" 3487 | 3488 | string-width@^1.0.1, string-width@^1.0.2: 3489 | version "1.0.2" 3490 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3491 | dependencies: 3492 | code-point-at "^1.0.0" 3493 | is-fullwidth-code-point "^1.0.0" 3494 | strip-ansi "^3.0.0" 3495 | 3496 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3497 | version "2.1.1" 3498 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3499 | dependencies: 3500 | is-fullwidth-code-point "^2.0.0" 3501 | strip-ansi "^4.0.0" 3502 | 3503 | string_decoder@~1.0.3: 3504 | version "1.0.3" 3505 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3506 | dependencies: 3507 | safe-buffer "~5.1.0" 3508 | 3509 | stringstream@~0.0.4, stringstream@~0.0.5: 3510 | version "0.0.5" 3511 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3512 | 3513 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3514 | version "3.0.1" 3515 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3516 | dependencies: 3517 | ansi-regex "^2.0.0" 3518 | 3519 | strip-ansi@^4.0.0: 3520 | version "4.0.0" 3521 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3522 | dependencies: 3523 | ansi-regex "^3.0.0" 3524 | 3525 | strip-bom@3.0.0, strip-bom@^3.0.0: 3526 | version "3.0.0" 3527 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3528 | 3529 | strip-bom@^2.0.0: 3530 | version "2.0.0" 3531 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3532 | dependencies: 3533 | is-utf8 "^0.2.0" 3534 | 3535 | strip-eof@^1.0.0: 3536 | version "1.0.0" 3537 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3538 | 3539 | strip-json-comments@~2.0.1: 3540 | version "2.0.1" 3541 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3542 | 3543 | supports-color@^2.0.0: 3544 | version "2.0.0" 3545 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3546 | 3547 | supports-color@^3.1.2: 3548 | version "3.2.3" 3549 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3550 | dependencies: 3551 | has-flag "^1.0.0" 3552 | 3553 | supports-color@^4.0.0: 3554 | version "4.4.0" 3555 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3556 | dependencies: 3557 | has-flag "^2.0.0" 3558 | 3559 | symbol-tree@^3.2.1: 3560 | version "3.2.2" 3561 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3562 | 3563 | table@4.0.2: 3564 | version "4.0.2" 3565 | resolved "http://registry.npm.taobao.org/table/download/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3566 | dependencies: 3567 | ajv "^5.2.3" 3568 | ajv-keywords "^2.1.0" 3569 | chalk "^2.1.0" 3570 | lodash "^4.17.4" 3571 | slice-ansi "1.0.0" 3572 | string-width "^2.1.1" 3573 | 3574 | tar-pack@^3.4.0: 3575 | version "3.4.0" 3576 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3577 | dependencies: 3578 | debug "^2.2.0" 3579 | fstream "^1.0.10" 3580 | fstream-ignore "^1.0.5" 3581 | once "^1.3.3" 3582 | readable-stream "^2.1.4" 3583 | rimraf "^2.5.1" 3584 | tar "^2.2.1" 3585 | uid-number "^0.0.6" 3586 | 3587 | tar@^2.2.1: 3588 | version "2.2.1" 3589 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3590 | dependencies: 3591 | block-stream "*" 3592 | fstream "^1.0.2" 3593 | inherits "2" 3594 | 3595 | test-exclude@^4.1.1: 3596 | version "4.1.1" 3597 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3598 | dependencies: 3599 | arrify "^1.0.1" 3600 | micromatch "^2.3.11" 3601 | object-assign "^4.1.0" 3602 | read-pkg-up "^1.0.1" 3603 | require-main-filename "^1.0.1" 3604 | 3605 | text-table@~0.2.0: 3606 | version "0.2.0" 3607 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3608 | 3609 | throat@^4.0.0: 3610 | version "4.1.0" 3611 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3612 | 3613 | through@^2.3.6: 3614 | version "2.3.8" 3615 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3616 | 3617 | tmp@^0.0.33: 3618 | version "0.0.33" 3619 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3620 | dependencies: 3621 | os-tmpdir "~1.0.2" 3622 | 3623 | tmpl@1.0.x: 3624 | version "1.0.4" 3625 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3626 | 3627 | to-fast-properties@^1.0.3: 3628 | version "1.0.3" 3629 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3630 | 3631 | to-fast-properties@^2.0.0: 3632 | version "2.0.0" 3633 | resolved "http://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3634 | 3635 | tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3636 | version "2.3.3" 3637 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3638 | dependencies: 3639 | punycode "^1.4.1" 3640 | 3641 | tr46@~0.0.3: 3642 | version "0.0.3" 3643 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3644 | 3645 | trim-right@^1.0.1: 3646 | version "1.0.1" 3647 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3648 | 3649 | tryit@^1.0.1: 3650 | version "1.0.3" 3651 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3652 | 3653 | tunnel-agent@^0.6.0: 3654 | version "0.6.0" 3655 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3656 | dependencies: 3657 | safe-buffer "^5.0.1" 3658 | 3659 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3660 | version "0.14.5" 3661 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3662 | 3663 | type-check@~0.3.2: 3664 | version "0.3.2" 3665 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3666 | dependencies: 3667 | prelude-ls "~1.1.2" 3668 | 3669 | typedarray@^0.0.6: 3670 | version "0.0.6" 3671 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3672 | 3673 | ua-parser-js@^0.7.9: 3674 | version "0.7.14" 3675 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" 3676 | 3677 | uglify-js@^2.6: 3678 | version "2.8.29" 3679 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3680 | dependencies: 3681 | source-map "~0.5.1" 3682 | yargs "~3.10.0" 3683 | optionalDependencies: 3684 | uglify-to-browserify "~1.0.0" 3685 | 3686 | uglify-to-browserify@~1.0.0: 3687 | version "1.0.2" 3688 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3689 | 3690 | uid-number@^0.0.6: 3691 | version "0.0.6" 3692 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3693 | 3694 | uniq@^1.0.1: 3695 | version "1.0.1" 3696 | resolved "http://registry.npm.taobao.org/uniq/download/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3697 | 3698 | util-deprecate@~1.0.1: 3699 | version "1.0.2" 3700 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3701 | 3702 | uuid@^3.0.0, uuid@^3.1.0: 3703 | version "3.1.0" 3704 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3705 | 3706 | validate-npm-package-license@^3.0.1: 3707 | version "3.0.1" 3708 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3709 | dependencies: 3710 | spdx-correct "~1.0.0" 3711 | spdx-expression-parse "~1.0.0" 3712 | 3713 | verror@1.10.0: 3714 | version "1.10.0" 3715 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3716 | dependencies: 3717 | assert-plus "^1.0.0" 3718 | core-util-is "1.0.2" 3719 | extsprintf "^1.2.0" 3720 | 3721 | walker@~1.0.5: 3722 | version "1.0.7" 3723 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3724 | dependencies: 3725 | makeerror "1.0.x" 3726 | 3727 | watch@~0.18.0: 3728 | version "0.18.0" 3729 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3730 | dependencies: 3731 | exec-sh "^0.2.0" 3732 | minimist "^1.2.0" 3733 | 3734 | webidl-conversions@^3.0.0: 3735 | version "3.0.1" 3736 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3737 | 3738 | webidl-conversions@^4.0.0: 3739 | version "4.0.2" 3740 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3741 | 3742 | whatwg-encoding@^1.0.1: 3743 | version "1.0.1" 3744 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3745 | dependencies: 3746 | iconv-lite "0.4.13" 3747 | 3748 | whatwg-fetch@>=0.10.0: 3749 | version "2.0.3" 3750 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3751 | 3752 | whatwg-url@^4.3.0: 3753 | version "4.8.0" 3754 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3755 | dependencies: 3756 | tr46 "~0.0.3" 3757 | webidl-conversions "^3.0.0" 3758 | 3759 | which-module@^2.0.0: 3760 | version "2.0.0" 3761 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3762 | 3763 | which@^1.2.12, which@^1.2.9: 3764 | version "1.3.0" 3765 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3766 | dependencies: 3767 | isexe "^2.0.0" 3768 | 3769 | wide-align@^1.1.0: 3770 | version "1.1.2" 3771 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3772 | dependencies: 3773 | string-width "^1.0.2" 3774 | 3775 | window-size@0.1.0: 3776 | version "0.1.0" 3777 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3778 | 3779 | wordwrap@0.0.2: 3780 | version "0.0.2" 3781 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3782 | 3783 | wordwrap@~0.0.2: 3784 | version "0.0.3" 3785 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3786 | 3787 | wordwrap@~1.0.0: 3788 | version "1.0.0" 3789 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3790 | 3791 | worker-farm@^1.3.1: 3792 | version "1.5.0" 3793 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 3794 | dependencies: 3795 | errno "^0.1.4" 3796 | xtend "^4.0.1" 3797 | 3798 | wrap-ansi@^2.0.0: 3799 | version "2.1.0" 3800 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3801 | dependencies: 3802 | string-width "^1.0.1" 3803 | strip-ansi "^3.0.1" 3804 | 3805 | wrappy@1: 3806 | version "1.0.2" 3807 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3808 | 3809 | write-file-atomic@^2.1.0: 3810 | version "2.3.0" 3811 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3812 | dependencies: 3813 | graceful-fs "^4.1.11" 3814 | imurmurhash "^0.1.4" 3815 | signal-exit "^3.0.2" 3816 | 3817 | write@^0.2.1: 3818 | version "0.2.1" 3819 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3820 | dependencies: 3821 | mkdirp "^0.5.1" 3822 | 3823 | xml-name-validator@^2.0.1: 3824 | version "2.0.1" 3825 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3826 | 3827 | xtend@^4.0.1: 3828 | version "4.0.1" 3829 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3830 | 3831 | y18n@^3.2.1: 3832 | version "3.2.1" 3833 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3834 | 3835 | yallist@^2.1.2: 3836 | version "2.1.2" 3837 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3838 | 3839 | yargs-parser@^7.0.0: 3840 | version "7.0.0" 3841 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3842 | dependencies: 3843 | camelcase "^4.1.0" 3844 | 3845 | yargs@^9.0.0: 3846 | version "9.0.1" 3847 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 3848 | dependencies: 3849 | camelcase "^4.1.0" 3850 | cliui "^3.2.0" 3851 | decamelize "^1.1.1" 3852 | get-caller-file "^1.0.1" 3853 | os-locale "^2.0.0" 3854 | read-pkg-up "^2.0.0" 3855 | require-directory "^2.1.1" 3856 | require-main-filename "^1.0.1" 3857 | set-blocking "^2.0.0" 3858 | string-width "^2.0.0" 3859 | which-module "^2.0.0" 3860 | y18n "^3.2.1" 3861 | yargs-parser "^7.0.0" 3862 | 3863 | yargs@~3.10.0: 3864 | version "3.10.0" 3865 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3866 | dependencies: 3867 | camelcase "^1.0.2" 3868 | cliui "^2.1.0" 3869 | decamelize "^1.0.0" 3870 | window-size "0.1.0" 3871 | --------------------------------------------------------------------------------