├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── mohtada │ └── nestedscrollview │ ├── ReactNestedScrollView.java │ ├── ReactNestedScrollViewHelper.java │ ├── ReactNestedScrollViewManager.java │ └── ReactNestedScrollViewPackage.java ├── app.json ├── index.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | emoji=true 26 | 27 | module.system=haste 28 | 29 | experimental.strict_type_args=true 30 | 31 | munge_underscores=true 32 | 33 | 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' 34 | 35 | suppress_type=$FlowIssue 36 | suppress_type=$FlowFixMe 37 | suppress_type=$FixMe 38 | 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-2]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-2]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 41 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 42 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 43 | 44 | unsafe.enable_getters_and_setters=true 45 | 46 | [version] 47 | ^0.42.0 48 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.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/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Mohtada Hassanpour 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-nested-scrollview 2 | React native wrapper for android NestedScrollView. 3 | It's extract from [react-native-bottom-sheet-behavior](https://github.com/cesardeazevedo/react-native-bottom-sheet-behavior) 4 | 5 | ## Install 6 | 7 | `$ npm install react-native-nested-scrollview` 8 | 9 | ### Install with RNPM 10 | 11 | `$ react-native link react-native-nested-scrollview` 12 | 13 | ### Install Manually 14 | 15 | Edit the current files as follows. 16 | 17 | MainApplication.java 18 | 19 | ```diff 20 | 21 | + import com.mohtada.nestedscrollview.NestedScrollViewPackage; 22 | 23 | public class MainApplication extends Application implements ReactApplication { 24 | 25 | @Override 26 | protected List getPackages() { 27 | return Arrays.asList( 28 | new MainReactPackage(), 29 | + new NestedScrollViewPackage() 30 | ); 31 | } 32 | } 33 | 34 | ``` 35 | 36 | android/app/build.gradle 37 | 38 | 39 | ```diff 40 | 41 | dependencies { 42 | compile fileTree(dir: "libs", include: ["*.jar"]) 43 | compile "com.android.support:appcompat-v7:23.0.1" 44 | compile "com.facebook.react:react-native:+" // From node_modules 45 | + compile project(':react-native-nested-scrollview') 46 | } 47 | 48 | ``` 49 | 50 | android/settings.gradle 51 | 52 | ```diff 53 | 54 | include ':app' 55 | 56 | + include ':react-native-nested-scrollview' 57 | + project(':react-native-nested-scrollview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-nested-scrollview/android') 58 | 59 | ``` 60 | 61 | ## Usage 62 | 63 | You should use `NestedScrollView` instead of `ScrollView`. 64 | 65 | ```js 66 | 67 | import NestedScrollView from 'react-native-nested-scrollview'; 68 | 69 | ``` 70 | 71 | ```jsx 72 | 73 | render() { 74 | return ( 75 | 76 | 77 | 78 | 79 | ); 80 | } 81 | 82 | ``` -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.library" 2 | 3 | android { 4 | compileSdkVersion 24 5 | buildToolsVersion "23.0.3" 6 | 7 | defaultConfig { 8 | minSdkVersion 16 9 | targetSdkVersion 23 10 | versionCode 1 11 | versionName "1.0" 12 | } 13 | } 14 | 15 | buildscript { 16 | repositories { 17 | jcenter() 18 | } 19 | dependencies { 20 | classpath 'com.android.tools.build:gradle:2.1.0' 21 | } 22 | } 23 | 24 | allprojects { 25 | repositories { 26 | mavenLocal() 27 | jcenter() 28 | maven { 29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 30 | url "$rootDir/../node_modules/react-native/android" 31 | } 32 | } 33 | } 34 | 35 | dependencies { 36 | compile "com.facebook.react:react-native:+" 37 | compile "com.android.support:appcompat-v7:24.1.1" 38 | compile 'com.android.support:design:24.1.1' 39 | } 40 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohtada-h/react-native-nested-scrollview/38329e85b2a588e0e2522c58248af3548b3755c9/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /android/src/main/java/com/mohtada/nestedscrollview/ReactNestedScrollView.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | package com.mohtada.nestedscrollview; 11 | 12 | import javax.annotation.Nullable; 13 | 14 | import java.lang.reflect.Field; 15 | 16 | import android.graphics.Canvas; 17 | import android.graphics.Color; 18 | import android.graphics.Rect; 19 | import android.graphics.drawable.ColorDrawable; 20 | import android.graphics.drawable.Drawable; 21 | import android.support.v4.widget.NestedScrollView; 22 | import android.util.Log; 23 | import android.view.MotionEvent; 24 | import android.view.View; 25 | import android.widget.OverScroller; 26 | import android.widget.ScrollView; 27 | 28 | import com.facebook.react.bridge.ReactContext; 29 | import com.facebook.react.common.ReactConstants; 30 | import com.facebook.react.views.scroll.FpsListener; 31 | import com.facebook.react.views.scroll.OnScrollDispatchHelper; 32 | import com.facebook.react.uimanager.MeasureSpecAssertions; 33 | import com.facebook.react.uimanager.events.NativeGestureUtil; 34 | import com.facebook.react.uimanager.ReactClippingViewGroup; 35 | import com.facebook.react.uimanager.ReactClippingViewGroupHelper; 36 | import com.facebook.infer.annotation.Assertions; 37 | 38 | /** 39 | * Forked from https://github.com/facebook/react-native/blob/v0.35.0/Libraries/Components/ScrollView/ScrollView.js 40 | * 41 | * A simple subclass of ScrollView that doesn't dispatch measure and layout to its children and has 42 | * a scroll listener to send scroll events to JS. 43 | * 44 | *

ReactScrollView only supports vertical scrolling. For horizontal scrolling, 45 | * use {@link ReactHorizontalScrollView}. 46 | */ 47 | public class ReactNestedScrollView extends NestedScrollView implements ReactClippingViewGroup { 48 | 49 | public static final String TAG = "ReactNestedScrollView"; 50 | 51 | private static Field sScrollerField; 52 | private static boolean sTriedToGetScrollerField = false; 53 | 54 | private final OnScrollDispatchHelper mOnScrollDispatchHelper = new OnScrollDispatchHelper(); 55 | private final OverScroller mScroller; 56 | 57 | private @Nullable Rect mClippingRect; 58 | private boolean mDoneFlinging; 59 | private boolean mDragging; 60 | private boolean mFlinging; 61 | private boolean mRemoveClippedSubviews; 62 | private boolean mScrollEnabled = true; 63 | private boolean mSendMomentumEvents; 64 | private @Nullable FpsListener mFpsListener = null; 65 | private @Nullable String mScrollPerfTag; 66 | private @Nullable Drawable mEndBackground; 67 | private int mEndFillColor = Color.TRANSPARENT; 68 | 69 | public ReactNestedScrollView(ReactContext context) { 70 | this(context, null); 71 | } 72 | 73 | public ReactNestedScrollView(ReactContext context, @Nullable FpsListener fpsListener) { 74 | super(context); 75 | this.setTag(TAG); 76 | mFpsListener = fpsListener; 77 | 78 | if (!sTriedToGetScrollerField) { 79 | sTriedToGetScrollerField = true; 80 | try { 81 | sScrollerField = NestedScrollView.class.getDeclaredField("mScroller"); 82 | sScrollerField.setAccessible(true); 83 | } catch (NoSuchFieldException e) { 84 | Log.w( 85 | ReactConstants.TAG, 86 | "Failed to get mScroller field for ScrollView! " + 87 | "This app will exhibit the bounce-back scrolling bug :("); 88 | } 89 | } 90 | 91 | if (sScrollerField != null) { 92 | try { 93 | Object scroller = sScrollerField.get(this); 94 | if (scroller instanceof OverScroller) { 95 | mScroller = (OverScroller) scroller; 96 | } else { 97 | Log.w( 98 | ReactConstants.TAG, 99 | "Failed to cast mScroller field in ScrollView (probably due to OEM changes to AOSP)! " + 100 | "This app will exhibit the bounce-back scrolling bug :("); 101 | mScroller = null; 102 | } 103 | } catch (IllegalAccessException e) { 104 | throw new RuntimeException("Failed to get mScroller from ScrollView!", e); 105 | } 106 | } else { 107 | mScroller = null; 108 | } 109 | } 110 | 111 | public void setSendMomentumEvents(boolean sendMomentumEvents) { 112 | mSendMomentumEvents = sendMomentumEvents; 113 | } 114 | 115 | public void setScrollPerfTag(String scrollPerfTag) { 116 | mScrollPerfTag = scrollPerfTag; 117 | } 118 | 119 | public void setScrollEnabled(boolean scrollEnabled) { 120 | mScrollEnabled = scrollEnabled; 121 | } 122 | 123 | @Override 124 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 125 | MeasureSpecAssertions.assertExplicitMeasureSpec(widthMeasureSpec, heightMeasureSpec); 126 | 127 | setMeasuredDimension( 128 | MeasureSpec.getSize(widthMeasureSpec), 129 | MeasureSpec.getSize(heightMeasureSpec)); 130 | } 131 | 132 | @Override 133 | protected void onLayout(boolean changed, int l, int t, int r, int b) { 134 | // Call with the present values in order to re-layout if necessary 135 | scrollTo(getScrollX(), getScrollY()); 136 | } 137 | 138 | @Override 139 | protected void onSizeChanged(int w, int h, int oldw, int oldh) { 140 | super.onSizeChanged(w, h, oldw, oldh); 141 | if (mRemoveClippedSubviews) { 142 | updateClippingRect(); 143 | } 144 | } 145 | 146 | // Not Working with NestedScrollView 147 | // @Override 148 | // protected void onAttachedToWindow() { 149 | // super.onAttachedToWindow(); 150 | // if (mRemoveClippedSubviews) { 151 | // updateClippingRect(); 152 | // } 153 | // } 154 | 155 | @Override 156 | protected void onScrollChanged(int x, int y, int oldX, int oldY) { 157 | super.onScrollChanged(x, y, oldX, oldY); 158 | 159 | if (mOnScrollDispatchHelper.onScrollChanged(x, y)) { 160 | if (mRemoveClippedSubviews) { 161 | updateClippingRect(); 162 | } 163 | 164 | if (mFlinging) { 165 | mDoneFlinging = false; 166 | } 167 | 168 | ReactNestedScrollViewHelper.emitScrollEvent(this); 169 | } 170 | } 171 | 172 | @Override 173 | public boolean onInterceptTouchEvent(MotionEvent ev) { 174 | if (!mScrollEnabled) { 175 | return false; 176 | } 177 | 178 | if (super.onInterceptTouchEvent(ev)) { 179 | NativeGestureUtil.notifyNativeGestureStarted(this, ev); 180 | ReactNestedScrollViewHelper.emitScrollBeginDragEvent(this); 181 | mDragging = true; 182 | enableFpsListener(); 183 | return true; 184 | } 185 | 186 | return false; 187 | } 188 | 189 | @Override 190 | public boolean onTouchEvent(MotionEvent ev) { 191 | if (!mScrollEnabled) { 192 | return false; 193 | } 194 | 195 | int action = ev.getAction() & MotionEvent.ACTION_MASK; 196 | if (action == MotionEvent.ACTION_UP && mDragging) { 197 | ReactNestedScrollViewHelper.emitScrollEndDragEvent(this); 198 | mDragging = false; 199 | disableFpsListener(); 200 | } 201 | return super.onTouchEvent(ev); 202 | } 203 | 204 | @Override 205 | public void setRemoveClippedSubviews(boolean removeClippedSubviews) { 206 | if (removeClippedSubviews && mClippingRect == null) { 207 | mClippingRect = new Rect(); 208 | } 209 | mRemoveClippedSubviews = removeClippedSubviews; 210 | updateClippingRect(); 211 | } 212 | 213 | @Override 214 | public boolean getRemoveClippedSubviews() { 215 | return mRemoveClippedSubviews; 216 | } 217 | 218 | @Override 219 | public void updateClippingRect() { 220 | if (!mRemoveClippedSubviews) { 221 | return; 222 | } 223 | 224 | Assertions.assertNotNull(mClippingRect); 225 | 226 | ReactClippingViewGroupHelper.calculateClippingRect(this, mClippingRect); 227 | View contentView = getChildAt(0); 228 | if (contentView instanceof ReactClippingViewGroup) { 229 | ((ReactClippingViewGroup) contentView).updateClippingRect(); 230 | } 231 | } 232 | 233 | @Override 234 | public void getClippingRect(Rect outClippingRect) { 235 | outClippingRect.set(Assertions.assertNotNull(mClippingRect)); 236 | } 237 | 238 | @Override 239 | public void fling(int velocityY) { 240 | if (mScroller != null) { 241 | // FB SCROLLVIEW CHANGE 242 | 243 | // We provide our own version of fling that uses a different call to the standard OverScroller 244 | // which takes into account the possibility of adding new content while the ScrollView is 245 | // animating. Because we give essentially no max Y for the fling, the fling will continue as long 246 | // as there is content. See #onOverScrolled() to see the second part of this change which properly 247 | // aborts the scroller animation when we get to the bottom of the ScrollView content. 248 | 249 | int scrollWindowHeight = getHeight() - getPaddingBottom() - getPaddingTop(); 250 | 251 | mScroller.fling( 252 | getScrollX(), 253 | getScrollY(), 254 | 0, 255 | velocityY, 256 | 0, 257 | 0, 258 | 0, 259 | Integer.MAX_VALUE, 260 | 0, 261 | scrollWindowHeight / 2); 262 | 263 | postInvalidateOnAnimation(); 264 | 265 | // END FB SCROLLVIEW CHANGE 266 | } else { 267 | super.fling(velocityY); 268 | } 269 | 270 | if (mSendMomentumEvents || isScrollPerfLoggingEnabled()) { 271 | mFlinging = true; 272 | enableFpsListener(); 273 | ReactNestedScrollViewHelper.emitScrollMomentumBeginEvent(this); 274 | Runnable r = new Runnable() { 275 | @Override 276 | public void run() { 277 | if (mDoneFlinging) { 278 | mFlinging = false; 279 | disableFpsListener(); 280 | ReactNestedScrollViewHelper.emitScrollMomentumEndEvent(ReactNestedScrollView.this); 281 | } else { 282 | mDoneFlinging = true; 283 | ReactNestedScrollView.this.postOnAnimationDelayed(this, ReactNestedScrollViewHelper.MOMENTUM_DELAY); 284 | } 285 | } 286 | }; 287 | postOnAnimationDelayed(r, ReactNestedScrollViewHelper.MOMENTUM_DELAY); 288 | } 289 | } 290 | 291 | private void enableFpsListener() { 292 | if (isScrollPerfLoggingEnabled()) { 293 | Assertions.assertNotNull(mFpsListener); 294 | Assertions.assertNotNull(mScrollPerfTag); 295 | mFpsListener.enable(mScrollPerfTag); 296 | } 297 | } 298 | 299 | private void disableFpsListener() { 300 | if (isScrollPerfLoggingEnabled()) { 301 | Assertions.assertNotNull(mFpsListener); 302 | Assertions.assertNotNull(mScrollPerfTag); 303 | mFpsListener.disable(mScrollPerfTag); 304 | } 305 | } 306 | 307 | private boolean isScrollPerfLoggingEnabled() { 308 | return mFpsListener != null && mScrollPerfTag != null && !mScrollPerfTag.isEmpty(); 309 | } 310 | 311 | @Override 312 | public void draw(Canvas canvas) { 313 | if (mEndFillColor != Color.TRANSPARENT) { 314 | final View content = getChildAt(0); 315 | if (mEndBackground != null && content != null && content.getBottom() < getHeight()) { 316 | mEndBackground.setBounds(0, content.getBottom(), getWidth(), getHeight()); 317 | mEndBackground.draw(canvas); 318 | } 319 | } 320 | super.draw(canvas); 321 | } 322 | 323 | public void setEndFillColor(int color) { 324 | if (color != mEndFillColor) { 325 | mEndFillColor = color; 326 | mEndBackground = new ColorDrawable(mEndFillColor); 327 | } 328 | } 329 | 330 | @Override 331 | protected void onOverScrolled(int scrollX, int scrollY, boolean clampedX, boolean clampedY) { 332 | if (mScroller != null) { 333 | // FB SCROLLVIEW CHANGE 334 | 335 | // This is part two of the reimplementation of fling to fix the bounce-back bug. See #fling() for 336 | // more information. 337 | 338 | if (!mScroller.isFinished() && mScroller.getCurrY() != mScroller.getFinalY()) { 339 | int scrollRange = Math.max( 340 | 0, 341 | getChildAt(0).getHeight() - (getHeight() - getPaddingBottom() - getPaddingTop())); 342 | if (scrollY >= scrollRange) { 343 | mScroller.abortAnimation(); 344 | } 345 | } 346 | 347 | // END FB SCROLLVIEW CHANGE 348 | } 349 | 350 | super.onOverScrolled(scrollX, scrollY, clampedX, clampedY); 351 | } 352 | } 353 | -------------------------------------------------------------------------------- /android/src/main/java/com/mohtada/nestedscrollview/ReactNestedScrollViewHelper.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | package com.mohtada.nestedscrollview; 11 | 12 | import android.view.View; 13 | import android.view.ViewGroup; 14 | 15 | import com.facebook.react.bridge.JSApplicationIllegalArgumentException; 16 | import android.os.SystemClock; 17 | import com.facebook.react.views.scroll.ScrollEvent; 18 | import com.facebook.react.views.scroll.ScrollEventType; 19 | import com.facebook.react.bridge.ReactContext; 20 | import com.facebook.react.uimanager.UIManagerModule; 21 | 22 | /** 23 | * Helper class that deals with emitting Scroll Events. 24 | * 25 | * Forked from https://github.com/facebook/react-native/blob/v0.42.0/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewHelper.java 26 | */ 27 | public class ReactNestedScrollViewHelper { 28 | 29 | public static final long MOMENTUM_DELAY = 20; 30 | public static final String OVER_SCROLL_ALWAYS = "always"; 31 | public static final String AUTO = "auto"; 32 | public static final String OVER_SCROLL_NEVER = "never"; 33 | 34 | /** 35 | * Shared by {@link ReactScrollView} and {@link ReactHorizontalScrollView}. 36 | */ 37 | public static void emitScrollEvent(ViewGroup scrollView) { 38 | emitScrollEvent(scrollView, ScrollEventType.SCROLL); 39 | } 40 | 41 | public static void emitScrollBeginDragEvent(ViewGroup scrollView) { 42 | emitScrollEvent(scrollView, ScrollEventType.BEGIN_DRAG); 43 | } 44 | 45 | public static void emitScrollEndDragEvent(ViewGroup scrollView) { 46 | emitScrollEvent(scrollView, ScrollEventType.END_DRAG); 47 | } 48 | 49 | public static void emitScrollMomentumBeginEvent(ViewGroup scrollView) { 50 | emitScrollEvent(scrollView, ScrollEventType.MOMENTUM_BEGIN); 51 | } 52 | 53 | public static void emitScrollMomentumEndEvent(ViewGroup scrollView) { 54 | emitScrollEvent(scrollView, ScrollEventType.MOMENTUM_END); 55 | } 56 | 57 | private static void emitScrollEvent(ViewGroup scrollView, ScrollEventType scrollEventType) { 58 | View contentView = scrollView.getChildAt(0); 59 | 60 | if (contentView == null) { 61 | return; 62 | } 63 | 64 | ReactContext reactContext = (ReactContext) scrollView.getContext(); 65 | reactContext.getNativeModule(UIManagerModule.class).getEventDispatcher().dispatchEvent( 66 | ScrollEvent.obtain( 67 | scrollView.getId(), 68 | scrollEventType, 69 | scrollView.getScrollX(), 70 | scrollView.getScrollY(), 71 | contentView.getWidth(), 72 | contentView.getHeight(), 73 | scrollView.getWidth(), 74 | scrollView.getHeight())); 75 | } 76 | 77 | public static int parseOverScrollMode(String jsOverScrollMode) { 78 | if (jsOverScrollMode == null || jsOverScrollMode.equals(AUTO)) { 79 | return View.OVER_SCROLL_IF_CONTENT_SCROLLS; 80 | } else if (jsOverScrollMode.equals(OVER_SCROLL_ALWAYS)) { 81 | return View.OVER_SCROLL_ALWAYS; 82 | } else if (jsOverScrollMode.equals(OVER_SCROLL_NEVER)) { 83 | return View.OVER_SCROLL_NEVER; 84 | } else { 85 | throw new JSApplicationIllegalArgumentException("wrong overScrollMode: " + jsOverScrollMode); 86 | } 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /android/src/main/java/com/mohtada/nestedscrollview/ReactNestedScrollViewManager.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | package com.mohtada.nestedscrollview; 11 | 12 | import javax.annotation.Nullable; 13 | 14 | import java.util.Map; 15 | 16 | import android.graphics.Color; 17 | 18 | import com.facebook.react.bridge.ReadableArray; 19 | import com.facebook.react.common.MapBuilder; 20 | import com.facebook.react.views.scroll.FpsListener; 21 | import com.facebook.react.uimanager.annotations.ReactProp; 22 | import com.facebook.react.uimanager.ThemedReactContext; 23 | import com.facebook.react.uimanager.ViewGroupManager; 24 | import com.facebook.react.views.scroll.ScrollEventType; 25 | import com.facebook.react.uimanager.ReactClippingViewGroupHelper; 26 | import com.facebook.react.views.scroll.ReactScrollViewHelper; 27 | import com.facebook.react.views.scroll.ReactScrollViewCommandHelper; 28 | 29 | /** 30 | * Forked from https://github.com/facebook/react-native/blob/v0.42.0/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.java 31 | * 32 | * View manager for {@link ReactScrollView} components. 33 | * 34 | *

Note that {@link ReactScrollView} and {@link ReactHorizontalScrollView} are exposed to JS 35 | * as a single ScrollView component, configured via the {@code horizontal} boolean property. 36 | */ 37 | public class ReactNestedScrollViewManager 38 | extends ViewGroupManager 39 | implements ReactScrollViewCommandHelper.ScrollCommandHandler { 40 | 41 | private static final String REACT_CLASS = "RCTNestedScrollView"; 42 | private @Nullable FpsListener mFpsListener = null; 43 | 44 | public ReactNestedScrollViewManager() { 45 | this(null); 46 | } 47 | 48 | public ReactNestedScrollViewManager(@Nullable FpsListener fpsListener) { 49 | mFpsListener = fpsListener; 50 | } 51 | 52 | @Override 53 | public String getName() { 54 | return REACT_CLASS; 55 | } 56 | 57 | @Override 58 | public ReactNestedScrollView createViewInstance(ThemedReactContext context) { 59 | return new ReactNestedScrollView(context, mFpsListener); 60 | } 61 | 62 | @ReactProp(name = "scrollEnabled", defaultBoolean = true) 63 | public void setScrollEnabled(ReactNestedScrollView view, boolean value) { 64 | view.setScrollEnabled(value); 65 | } 66 | 67 | @ReactProp(name = "showsVerticalScrollIndicator") 68 | public void setShowsVerticalScrollIndicator(ReactNestedScrollView view, boolean value) { 69 | view.setVerticalScrollBarEnabled(value); 70 | } 71 | 72 | @ReactProp(name = ReactClippingViewGroupHelper.PROP_REMOVE_CLIPPED_SUBVIEWS) 73 | public void setRemoveClippedSubviews(ReactNestedScrollView view, boolean removeClippedSubviews) { 74 | view.setRemoveClippedSubviews(removeClippedSubviews); 75 | } 76 | 77 | /** 78 | * Computing momentum events is potentially expensive since we post a runnable on the UI thread 79 | * to see when it is done. We only do that if {@param sendMomentumEvents} is set to true. This 80 | * is handled automatically in js by checking if there is a listener on the momentum events. 81 | * 82 | * @param view 83 | * @param sendMomentumEvents 84 | */ 85 | @ReactProp(name = "sendMomentumEvents") 86 | public void setSendMomentumEvents(ReactNestedScrollView view, boolean sendMomentumEvents) { 87 | view.setSendMomentumEvents(sendMomentumEvents); 88 | } 89 | 90 | /** 91 | * Tag used for logging scroll performance on this scroll view. Will force momentum events to be 92 | * turned on (see setSendMomentumEvents). 93 | * 94 | * @param view 95 | * @param scrollPerfTag 96 | */ 97 | @ReactProp(name = "scrollPerfTag") 98 | public void setScrollPerfTag(ReactNestedScrollView view, String scrollPerfTag) { 99 | view.setScrollPerfTag(scrollPerfTag); 100 | } 101 | 102 | /** 103 | * When set, fills the rest of the scrollview with a color to avoid setting a background and 104 | * creating unnecessary overdraw. 105 | * @param view 106 | * @param color 107 | */ 108 | @ReactProp(name = "endFillColor", defaultInt = Color.TRANSPARENT, customType = "Color") 109 | public void setBottomFillColor(ReactNestedScrollView view, int color) { 110 | view.setEndFillColor(color); 111 | } 112 | 113 | /** 114 | * Controls overScroll behaviour 115 | */ 116 | @ReactProp(name = "overScrollMode") 117 | public void setOverScrollMode(ReactNestedScrollView view, String value) { 118 | view.setOverScrollMode(ReactScrollViewHelper.parseOverScrollMode(value)); 119 | } 120 | 121 | @Override 122 | public @Nullable Map getCommandsMap() { 123 | return ReactScrollViewCommandHelper.getCommandsMap(); 124 | } 125 | 126 | @Override 127 | public void receiveCommand( 128 | ReactNestedScrollView scrollView, 129 | int commandId, 130 | @Nullable ReadableArray args) { 131 | ReactScrollViewCommandHelper.receiveCommand(this, scrollView, commandId, args); 132 | } 133 | 134 | @Override 135 | public void scrollTo( 136 | ReactNestedScrollView scrollView, 137 | ReactScrollViewCommandHelper.ScrollToCommandData data) { 138 | if (data.mAnimated) { 139 | scrollView.smoothScrollTo(data.mDestX, data.mDestY); 140 | } else { 141 | scrollView.scrollTo(data.mDestX, data.mDestY); 142 | } 143 | } 144 | 145 | @Override 146 | public void scrollToEnd( 147 | ReactNestedScrollView scrollView, 148 | ReactScrollViewCommandHelper.ScrollToEndCommandData data) { 149 | // ScrollView always has one child - the scrollable area 150 | int bottom = 151 | scrollView.getChildAt(0).getHeight() + scrollView.getPaddingBottom(); 152 | if (data.mAnimated) { 153 | scrollView.smoothScrollTo(scrollView.getScrollX(), bottom); 154 | } else { 155 | scrollView.scrollTo(scrollView.getScrollX(), bottom); 156 | } 157 | } 158 | 159 | @Override 160 | public @Nullable Map getExportedCustomDirectEventTypeConstants() { 161 | return createExportedCustomDirectEventTypeConstants(); 162 | } 163 | 164 | public static Map createExportedCustomDirectEventTypeConstants() { 165 | return MapBuilder.builder() 166 | .put(ScrollEventType.SCROLL.getJSEventName(), MapBuilder.of("registrationName", "onScroll")) 167 | .put(ScrollEventType.BEGIN_DRAG.getJSEventName(), MapBuilder.of("registrationName", "onScrollBeginDrag")) 168 | .put(ScrollEventType.END_DRAG.getJSEventName(), MapBuilder.of("registrationName", "onScrollEndDrag")) 169 | .put(ScrollEventType.ANIMATION_END.getJSEventName(), MapBuilder.of("registrationName", "onScrollAnimationEnd")) 170 | .put(ScrollEventType.MOMENTUM_BEGIN.getJSEventName(), MapBuilder.of("registrationName", "onMomentumScrollBegin")) 171 | .put(ScrollEventType.MOMENTUM_END.getJSEventName(), MapBuilder.of("registrationName", "onMomentumScrollEnd")) 172 | .build(); 173 | } 174 | } 175 | -------------------------------------------------------------------------------- /android/src/main/java/com/mohtada/nestedscrollview/ReactNestedScrollViewPackage.java: -------------------------------------------------------------------------------- 1 | package com.mohtada.nestedscrollview; 2 | 3 | import com.facebook.react.ReactPackage; 4 | import com.facebook.react.bridge.JavaScriptModule; 5 | import com.facebook.react.bridge.NativeModule; 6 | import com.facebook.react.bridge.ReactApplicationContext; 7 | import com.facebook.react.uimanager.ViewManager; 8 | 9 | import java.util.Arrays; 10 | import java.util.Collections; 11 | import java.util.List; 12 | 13 | public class ReactNestedScrollViewPackage implements ReactPackage { 14 | @Override 15 | public List createNativeModules(ReactApplicationContext reactApplicationContext) { 16 | return Collections.emptyList(); 17 | } 18 | 19 | @Override 20 | public List> createJSModules() { 21 | return Collections.emptyList(); 22 | } 23 | 24 | @Override 25 | public List createViewManagers(ReactApplicationContext reactApplicationContext) { 26 | return Arrays.asList( 27 | new ReactNestedScrollViewManager() 28 | ); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NestedScrollView", 3 | "displayName": "NestedScrollView" 4 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | * 9 | * @providesModule NestedScrollView 10 | * @flow 11 | */ 12 | 'use strict'; 13 | 14 | const React = require('react'); 15 | 16 | const { 17 | View, 18 | Platform, 19 | StyleSheet, 20 | PointPropType, 21 | EdgeInsetsPropType, 22 | findNodeHandle, 23 | requireNativeComponent, 24 | } = require('react-native'); 25 | 26 | const ViewStylePropTypes = require('react-native/Libraries/Components/View/ViewStylePropTypes'); 27 | const StyleSheetPropType = require('react-native/Libraries/StyleSheet/StyleSheetPropType'); 28 | const ColorPropType = require('react-native/Libraries/StyleSheet/ColorPropType'); 29 | const flattenStyle = require('react-native/Libraries/StyleSheet/flattenStyle'); 30 | const ScrollResponder = require('react-native/Libraries/Components/ScrollResponder'); 31 | const processDecelerationRate = require('react-native/Libraries/Components/ScrollView/processDecelerationRate'); 32 | 33 | const dismissKeyboard = require('react-native/Libraries/Utilities/dismissKeyboard'); 34 | const invariant = require('fbjs/lib/invariant'); 35 | const PropTypes = React.PropTypes; 36 | 37 | /** 38 | * Forked from https://github.com/facebook/react-native/blob/v0.42.0/Libraries/Components/ScrollView/ScrollView.js 39 | * 40 | * Component that wraps platform ScrollView while providing 41 | * integration with touch locking "responder" system. 42 | * 43 | * Keep in mind that ScrollViews must have a bounded height in order to work, 44 | * since they contain unbounded-height children into a bounded container (via 45 | * a scroll interaction). In order to bound the height of a ScrollView, either 46 | * set the height of the view directly (discouraged) or make sure all parent 47 | * views have bounded height. Forgetting to transfer `{flex: 1}` down the 48 | * view stack can lead to errors here, which the element inspector makes 49 | * easy to debug. 50 | * 51 | * Doesn't yet support other contained responders from blocking this scroll 52 | * view from becoming the responder. 53 | */ 54 | const ScrollView = React.createClass({ 55 | propTypes: { 56 | ...View.propTypes, 57 | /** 58 | * Controls whether iOS should automatically adjust the content inset 59 | * for scroll views that are placed behind a navigation bar or 60 | * tab bar/ toolbar. The default value is true. 61 | * @platform ios 62 | */ 63 | automaticallyAdjustContentInsets: PropTypes.bool, 64 | /** 65 | * The amount by which the scroll view content is inset from the edges 66 | * of the scroll view. Defaults to `{top: 0, left: 0, bottom: 0, right: 0}`. 67 | * @platform ios 68 | */ 69 | contentInset: EdgeInsetsPropType, 70 | /** 71 | * Used to manually set the starting scroll offset. 72 | * The default value is `{x: 0, y: 0}`. 73 | * @platform ios 74 | */ 75 | contentOffset: PointPropType, 76 | /** 77 | * When true, the scroll view bounces when it reaches the end of the 78 | * content if the content is larger then the scroll view along the axis of 79 | * the scroll direction. When false, it disables all bouncing even if 80 | * the `alwaysBounce*` props are true. The default value is true. 81 | * @platform ios 82 | */ 83 | bounces: PropTypes.bool, 84 | /** 85 | * When true, gestures can drive zoom past min/max and the zoom will animate 86 | * to the min/max value at gesture end, otherwise the zoom will not exceed 87 | * the limits. 88 | * @platform ios 89 | */ 90 | bouncesZoom: PropTypes.bool, 91 | /** 92 | * When true, the scroll view bounces horizontally when it reaches the end 93 | * even if the content is smaller than the scroll view itself. The default 94 | * value is true when `horizontal={true}` and false otherwise. 95 | * @platform ios 96 | */ 97 | alwaysBounceHorizontal: PropTypes.bool, 98 | /** 99 | * When true, the scroll view bounces vertically when it reaches the end 100 | * even if the content is smaller than the scroll view itself. The default 101 | * value is false when `horizontal={true}` and true otherwise. 102 | * @platform ios 103 | */ 104 | alwaysBounceVertical: PropTypes.bool, 105 | /** 106 | * When true, the scroll view automatically centers the content when the 107 | * content is smaller than the scroll view bounds; when the content is 108 | * larger than the scroll view, this property has no effect. The default 109 | * value is false. 110 | * @platform ios 111 | */ 112 | centerContent: PropTypes.bool, 113 | /** 114 | * These styles will be applied to the scroll view content container which 115 | * wraps all of the child views. Example: 116 | * 117 | * return ( 118 | * 119 | * 120 | * ); 121 | * ... 122 | * const styles = StyleSheet.create({ 123 | * contentContainer: { 124 | * paddingVertical: 20 125 | * } 126 | * }); 127 | */ 128 | contentContainerStyle: StyleSheetPropType(ViewStylePropTypes), 129 | /** 130 | * A floating-point number that determines how quickly the scroll view 131 | * decelerates after the user lifts their finger. You may also use string 132 | * shortcuts `"normal"` and `"fast"` which match the underlying iOS settings 133 | * for `UIScrollViewDecelerationRateNormal` and 134 | * `UIScrollViewDecelerationRateFast` respectively. 135 | * - normal: 0.998 (the default) 136 | * - fast: 0.99 137 | * @platform ios 138 | */ 139 | decelerationRate: PropTypes.oneOfType([ 140 | PropTypes.oneOf(['fast', 'normal']), 141 | PropTypes.number, 142 | ]), 143 | /** 144 | * When true, the scroll view's children are arranged horizontally in a row 145 | * instead of vertically in a column. The default value is false. 146 | */ 147 | horizontal: PropTypes.bool, 148 | /** 149 | * The style of the scroll indicators. 150 | * - `default` (the default), same as `black`. 151 | * - `black`, scroll indicator is black. This style is good against a white content background. 152 | * - `white`, scroll indicator is white. This style is good against a black content background. 153 | * @platform ios 154 | */ 155 | indicatorStyle: PropTypes.oneOf([ 156 | 'default', // default 157 | 'black', 158 | 'white', 159 | ]), 160 | /** 161 | * When true, the ScrollView will try to lock to only vertical or horizontal 162 | * scrolling while dragging. The default value is false. 163 | * @platform ios 164 | */ 165 | directionalLockEnabled: PropTypes.bool, 166 | /** 167 | * When false, once tracking starts, won't try to drag if the touch moves. 168 | * The default value is true. 169 | * @platform ios 170 | */ 171 | canCancelContentTouches: PropTypes.bool, 172 | /** 173 | * Determines whether the keyboard gets dismissed in response to a drag. 174 | * - 'none' (the default), drags do not dismiss the keyboard. 175 | * - 'on-drag', the keyboard is dismissed when a drag begins. 176 | * - 'interactive', the keyboard is dismissed interactively with the drag and moves in 177 | * synchrony with the touch; dragging upwards cancels the dismissal. 178 | * On android this is not supported and it will have the same behavior as 'none'. 179 | */ 180 | keyboardDismissMode: PropTypes.oneOf([ 181 | 'none', // default 182 | 'interactive', 183 | 'on-drag', 184 | ]), 185 | /** 186 | * Determines when the keyboard should stay visible after a tap. 187 | * 188 | * - 'never' (the default), tapping outside of the focused text input when the keyboard 189 | * is up dismisses the keyboard. When this happens, children won't receive the tap. 190 | * - 'always', the keyboard will not dismiss automatically, and the scroll view will not 191 | * catch taps, but children of the scroll view can catch taps. 192 | * - 'handled', the keyboard will not dismiss automatically when the tap was handled by 193 | * a children, (or captured by an ancestor). 194 | * - false, deprecated, use 'never' instead 195 | * - true, deprecated, use 'always' instead 196 | */ 197 | keyboardShouldPersistTaps: PropTypes.oneOf(['always', 'never', 'handled', false, true]), 198 | /** 199 | * The maximum allowed zoom scale. The default value is 1.0. 200 | * @platform ios 201 | */ 202 | maximumZoomScale: PropTypes.number, 203 | /** 204 | * The minimum allowed zoom scale. The default value is 1.0. 205 | * @platform ios 206 | */ 207 | minimumZoomScale: PropTypes.number, 208 | /** 209 | * Fires at most once per frame during scrolling. The frequency of the 210 | * events can be controlled using the `scrollEventThrottle` prop. 211 | */ 212 | onScroll: PropTypes.func, 213 | /** 214 | * Called when a scrolling animation ends. 215 | * @platform ios 216 | */ 217 | onScrollAnimationEnd: PropTypes.func, 218 | /** 219 | * Called when scrollable content view of the ScrollView changes. 220 | * 221 | * Handler function is passed the content width and content height as parameters: `(contentWidth, contentHeight)` 222 | * 223 | * It's implemented using onLayout handler attached to the content container 224 | * which this ScrollView renders. 225 | */ 226 | onContentSizeChange: PropTypes.func, 227 | /** 228 | * When true, the scroll view stops on multiples of the scroll view's size 229 | * when scrolling. This can be used for horizontal pagination. The default 230 | * value is false. 231 | */ 232 | pagingEnabled: PropTypes.bool, 233 | /** 234 | * When false, the content does not scroll. 235 | * The default value is true. 236 | */ 237 | scrollEnabled: PropTypes.bool, 238 | /** 239 | * This controls how often the scroll event will be fired while scrolling 240 | * (as a time interval in ms). A lower number yields better accuracy for code 241 | * that is tracking the scroll position, but can lead to scroll performance 242 | * problems due to the volume of information being send over the bridge. 243 | * You will not notice a difference between values set between 1-16 as the 244 | * JS run loop is synced to the screen refresh rate. If you do not need precise 245 | * scroll position tracking, set this value higher to limit the information 246 | * being sent across the bridge. The default value is zero, which results in 247 | * the scroll event being sent only once each time the view is scrolled. 248 | * @platform ios 249 | */ 250 | scrollEventThrottle: PropTypes.number, 251 | /** 252 | * The amount by which the scroll view indicators are inset from the edges 253 | * of the scroll view. This should normally be set to the same value as 254 | * the `contentInset`. Defaults to `{0, 0, 0, 0}`. 255 | * @platform ios 256 | */ 257 | scrollIndicatorInsets: EdgeInsetsPropType, 258 | /** 259 | * When true, the scroll view scrolls to top when the status bar is tapped. 260 | * The default value is true. 261 | * @platform ios 262 | */ 263 | scrollsToTop: PropTypes.bool, 264 | /** 265 | * When true, shows a horizontal scroll indicator. 266 | * The default value is true. 267 | */ 268 | showsHorizontalScrollIndicator: PropTypes.bool, 269 | /** 270 | * When true, shows a vertical scroll indicator. 271 | * The default value is true. 272 | */ 273 | showsVerticalScrollIndicator: PropTypes.bool, 274 | /** 275 | * An array of child indices determining which children get docked to the 276 | * top of the screen when scrolling. For example, passing 277 | * `stickyHeaderIndices={[0]}` will cause the first child to be fixed to the 278 | * top of the scroll view. This property is not supported in conjunction 279 | * with `horizontal={true}`. 280 | * @platform ios 281 | */ 282 | stickyHeaderIndices: PropTypes.arrayOf(PropTypes.number), 283 | style: StyleSheetPropType(ViewStylePropTypes), 284 | /** 285 | * When set, causes the scroll view to stop at multiples of the value of 286 | * `snapToInterval`. This can be used for paginating through children 287 | * that have lengths smaller than the scroll view. Used in combination 288 | * with `snapToAlignment`. 289 | * @platform ios 290 | */ 291 | snapToInterval: PropTypes.number, 292 | /** 293 | * When `snapToInterval` is set, `snapToAlignment` will define the relationship 294 | * of the snapping to the scroll view. 295 | * - `start` (the default) will align the snap at the left (horizontal) or top (vertical) 296 | * - `center` will align the snap in the center 297 | * - `end` will align the snap at the right (horizontal) or bottom (vertical) 298 | * @platform ios 299 | */ 300 | snapToAlignment: PropTypes.oneOf([ 301 | 'start', // default 302 | 'center', 303 | 'end', 304 | ]), 305 | /** 306 | * Experimental: When true, offscreen child views (whose `overflow` value is 307 | * `hidden`) are removed from their native backing superview when offscreen. 308 | * This can improve scrolling performance on long lists. The default value is 309 | * true. 310 | */ 311 | removeClippedSubviews: PropTypes.bool, 312 | /** 313 | * The current scale of the scroll view content. The default value is 1.0. 314 | * @platform ios 315 | */ 316 | zoomScale: PropTypes.number, 317 | 318 | /** 319 | * A RefreshControl component, used to provide pull-to-refresh 320 | * functionality for the ScrollView. 321 | * 322 | * See [RefreshControl](docs/refreshcontrol.html). 323 | */ 324 | refreshControl: PropTypes.element, 325 | 326 | /** 327 | * Sometimes a scrollview takes up more space than its content fills. When this is 328 | * the case, this prop will fill the rest of the scrollview with a color to avoid setting 329 | * a background and creating unnecessary overdraw. This is an advanced optimization 330 | * that is not needed in the general case. 331 | * @platform android 332 | */ 333 | endFillColor: ColorPropType, 334 | 335 | /** 336 | * Tag used to log scroll performance on this scroll view. Will force 337 | * momentum events to be turned on (see sendMomentumEvents). This doesn't do 338 | * anything out of the box and you need to implement a custom native 339 | * FpsListener for it to be useful. 340 | * @platform android 341 | */ 342 | scrollPerfTag: PropTypes.string, 343 | 344 | /** 345 | * Used to override default value of overScroll mode. 346 | * 347 | * Possible values: 348 | * 349 | * - `'auto'` - Default value, allow a user to over-scroll 350 | * this view only if the content is large enough to meaningfully scroll. 351 | * - `'always'` - Always allow a user to over-scroll this view. 352 | * - `'never'` - Never allow a user to over-scroll this view. 353 | * 354 | * @platform android 355 | */ 356 | overScrollMode: PropTypes.oneOf([ 357 | 'auto', 358 | 'always', 359 | 'never', 360 | ]), 361 | }, 362 | 363 | mixins: [ScrollResponder.Mixin], 364 | 365 | getInitialState: function() { 366 | return this.scrollResponderMixinGetInitialState(); 367 | }, 368 | 369 | setNativeProps: function(props: Object) { 370 | this._scrollViewRef && this._scrollViewRef.setNativeProps(props); 371 | }, 372 | 373 | /** 374 | * Returns a reference to the underlying scroll responder, which supports 375 | * operations like `scrollTo`. All ScrollView-like components should 376 | * implement this method so that they can be composed while providing access 377 | * to the underlying scroll responder's methods. 378 | */ 379 | getScrollResponder: function(): ScrollView { 380 | return this; 381 | }, 382 | 383 | getScrollableNode: function(): any { 384 | return findNodeHandle(this._scrollViewRef); 385 | }, 386 | 387 | getInnerViewNode: function(): any { 388 | return findNodeHandle(this._innerViewRef); 389 | }, 390 | 391 | /** 392 | * Scrolls to a given x, y offset, either immediately or with a smooth animation. 393 | * 394 | * Example: 395 | * 396 | * `scrollTo({x: 0; y: 0; animated: true})` 397 | * 398 | * Note: The weird function signature is due to the fact that, for historical reasons, 399 | * the function also accepts separate arguments as as alternative to the options object. 400 | * This is deprecated due to ambiguity (y before x), and SHOULD NOT BE USED. 401 | */ 402 | scrollTo: function( 403 | y?: number | { x?: number, y?: number, animated?: boolean }, 404 | x?: number, 405 | animated?: boolean 406 | ) { 407 | if (typeof y === 'number') { 408 | console.warn('`scrollTo(y, x, animated)` is deprecated. Use `scrollTo({x: 5, y: 5, animated: true})` instead.'); 409 | } else { 410 | ({x, y, animated} = y || {}); 411 | } 412 | this.getScrollResponder().scrollResponderScrollTo({x: x || 0, y: y || 0, animated: animated !== false}); 413 | }, 414 | 415 | /** 416 | * If this is a vertical ScrollView scrolls to the bottom. 417 | * If this is a horizontal ScrollView scrolls to the right. 418 | * 419 | * Use `scrollToEnd({animated: true})` for smooth animated scrolling, 420 | * `scrollToEnd({animated: false})` for immediate scrolling. 421 | * If no options are passed, `animated` defaults to true. 422 | */ 423 | scrollToEnd: function( 424 | options?: { animated?: boolean }, 425 | ) { 426 | // Default to true 427 | const animated = (options && options.animated) !== false; 428 | this.getScrollResponder().scrollResponderScrollToEnd({ 429 | animated: animated, 430 | }); 431 | }, 432 | 433 | /** 434 | * Deprecated, do not use. 435 | */ 436 | scrollWithoutAnimationTo: function(y: number = 0, x: number = 0) { 437 | console.warn('`scrollWithoutAnimationTo` is deprecated. Use `scrollTo` instead'); 438 | this.scrollTo({x, y, animated: false}); 439 | }, 440 | 441 | _handleScroll: function(e: Object) { 442 | if (__DEV__) { 443 | if (this.props.onScroll && this.props.scrollEventThrottle == null && Platform.OS === 'ios') { 444 | console.log( // eslint-disable-line no-console-disallow 445 | 'You specified `onScroll` on a but not ' + 446 | '`scrollEventThrottle`. You will only receive one event. ' + 447 | 'Using `16` you get all the events but be aware that it may ' + 448 | 'cause frame drops, use a bigger number if you don\'t need as ' + 449 | 'much precision.' 450 | ); 451 | } 452 | } 453 | if (Platform.OS === 'android') { 454 | if (this.props.keyboardDismissMode === 'on-drag') { 455 | dismissKeyboard(); 456 | } 457 | } 458 | this.scrollResponderHandleScroll(e); 459 | }, 460 | 461 | _handleContentOnLayout: function(e: Object) { 462 | const {width, height} = e.nativeEvent.layout; 463 | this.props.onContentSizeChange && this.props.onContentSizeChange(width, height); 464 | }, 465 | 466 | _scrollViewRef: (null: ?ScrollView), 467 | _setScrollViewRef: function(ref: ?ScrollView) { 468 | this._scrollViewRef = ref; 469 | }, 470 | 471 | _innerViewRef: (null: ?View), 472 | _setInnerViewRef: function(ref: ?View) { 473 | this._innerViewRef = ref; 474 | }, 475 | 476 | render: function() { 477 | const contentContainerStyle = [ 478 | this.props.horizontal && styles.contentContainerHorizontal, 479 | this.props.contentContainerStyle, 480 | ]; 481 | let style, childLayoutProps; 482 | if (__DEV__ && this.props.style) { 483 | style = flattenStyle(this.props.style); 484 | childLayoutProps = ['alignItems', 'justifyContent'] 485 | .filter((prop) => style && style[prop] !== undefined); 486 | invariant( 487 | childLayoutProps.length === 0, 488 | 'ScrollView child layout (' + JSON.stringify(childLayoutProps) + 489 | ') must be applied through the contentContainerStyle prop.' 490 | ); 491 | } 492 | 493 | let contentSizeChangeProps = {}; 494 | if (this.props.onContentSizeChange) { 495 | contentSizeChangeProps = { 496 | onLayout: this._handleContentOnLayout, 497 | }; 498 | } 499 | 500 | const contentContainer = 501 | 507 | {this.props.children} 508 | ; 509 | 510 | const alwaysBounceHorizontal = 511 | this.props.alwaysBounceHorizontal !== undefined ? 512 | this.props.alwaysBounceHorizontal : 513 | this.props.horizontal; 514 | 515 | const alwaysBounceVertical = 516 | this.props.alwaysBounceVertical !== undefined ? 517 | this.props.alwaysBounceVertical : 518 | !this.props.horizontal; 519 | 520 | const baseStyle = this.props.horizontal ? styles.baseHorizontal : styles.baseVertical; 521 | const props = { 522 | ...this.props, 523 | alwaysBounceHorizontal, 524 | alwaysBounceVertical, 525 | style: ([baseStyle, this.props.style]: ?Array), 526 | // Override the onContentSizeChange from props, since this event can 527 | // bubble up from TextInputs 528 | onContentSizeChange: null, 529 | onTouchStart: this.scrollResponderHandleTouchStart, 530 | onTouchMove: this.scrollResponderHandleTouchMove, 531 | onTouchEnd: this.scrollResponderHandleTouchEnd, 532 | onScrollBeginDrag: this.scrollResponderHandleScrollBeginDrag, 533 | onScrollEndDrag: this.scrollResponderHandleScrollEndDrag, 534 | onMomentumScrollBegin: this.scrollResponderHandleMomentumScrollBegin, 535 | onMomentumScrollEnd: this.scrollResponderHandleMomentumScrollEnd, 536 | onStartShouldSetResponder: this.scrollResponderHandleStartShouldSetResponder, 537 | onStartShouldSetResponderCapture: this.scrollResponderHandleStartShouldSetResponderCapture, 538 | onScrollShouldSetResponder: this.scrollResponderHandleScrollShouldSetResponder, 539 | onScroll: this._handleScroll, 540 | onResponderGrant: this.scrollResponderHandleResponderGrant, 541 | onResponderTerminationRequest: this.scrollResponderHandleTerminationRequest, 542 | onResponderTerminate: this.scrollResponderHandleTerminate, 543 | onResponderRelease: this.scrollResponderHandleResponderRelease, 544 | onResponderReject: this.scrollResponderHandleResponderReject, 545 | sendMomentumEvents: (this.props.onMomentumScrollBegin || this.props.onMomentumScrollEnd) ? true : false, 546 | }; 547 | 548 | const { decelerationRate } = this.props; 549 | if (decelerationRate) { 550 | props.decelerationRate = processDecelerationRate(decelerationRate); 551 | } 552 | 553 | let ScrollViewClass; 554 | if (Platform.OS === 'ios') { 555 | ScrollViewClass = RCTScrollView; 556 | } else if (Platform.OS === 'android') { 557 | if (this.props.horizontal) { 558 | ScrollViewClass = AndroidHorizontalScrollView; 559 | } else { 560 | ScrollViewClass = AndroidScrollView; 561 | } 562 | } 563 | invariant( 564 | ScrollViewClass !== undefined, 565 | 'ScrollViewClass must not be undefined' 566 | ); 567 | 568 | const refreshControl = this.props.refreshControl; 569 | if (refreshControl) { 570 | if (Platform.OS === 'ios') { 571 | // On iOS the RefreshControl is a child of the ScrollView. 572 | return ( 573 | 574 | {refreshControl} 575 | {contentContainer} 576 | 577 | ); 578 | } else if (Platform.OS === 'android') { 579 | // On Android wrap the ScrollView with a AndroidSwipeRefreshLayout. 580 | // Since the ScrollView is wrapped add the style props to the 581 | // AndroidSwipeRefreshLayout and use flex: 1 for the ScrollView. 582 | return React.cloneElement( 583 | refreshControl, 584 | {style: props.style}, 585 | 586 | {contentContainer} 587 | 588 | ); 589 | } 590 | } 591 | return ( 592 | 593 | {contentContainer} 594 | 595 | ); 596 | } 597 | }); 598 | 599 | const styles = StyleSheet.create({ 600 | baseVertical: { 601 | flexGrow: 1, 602 | flexShrink: 1, 603 | flexDirection: 'column', 604 | overflow: 'scroll', 605 | }, 606 | baseHorizontal: { 607 | flexGrow: 1, 608 | flexShrink: 1, 609 | flexDirection: 'row', 610 | overflow: 'scroll', 611 | }, 612 | contentContainerHorizontal: { 613 | flexDirection: 'row', 614 | }, 615 | }); 616 | 617 | let nativeOnlyProps, AndroidScrollView, AndroidHorizontalScrollView, RCTScrollView; 618 | if (Platform.OS === 'android') { 619 | nativeOnlyProps = { 620 | nativeOnly: { 621 | sendMomentumEvents: true, 622 | } 623 | }; 624 | AndroidScrollView = requireNativeComponent('RCTNestedScrollView', ScrollView, nativeOnlyProps); 625 | AndroidHorizontalScrollView = requireNativeComponent( 626 | 'AndroidHorizontalScrollView', 627 | ScrollView, 628 | nativeOnlyProps 629 | ); 630 | } else if (Platform.OS === 'ios') { 631 | nativeOnlyProps = { 632 | nativeOnly: { 633 | onMomentumScrollBegin: true, 634 | onMomentumScrollEnd : true, 635 | onScrollBeginDrag: true, 636 | onScrollEndDrag: true, 637 | } 638 | }; 639 | RCTScrollView = requireNativeComponent('RCTNestedScrollView', ScrollView, nativeOnlyProps); 640 | } 641 | 642 | module.exports = ScrollView; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-nested-scrollview", 3 | "version": "0.0.2", 4 | "description": "React native wrapper for android NestedScrollView", 5 | "author": "Mohtada Hassanpour ", 6 | "homepage": "https://github.com/mohtada-h/react-native-nested-scrollview", 7 | "scripts": { 8 | "start": "node node_modules/react-native/local-cli/cli.js start" 9 | }, 10 | "keywords": [ 11 | "android", 12 | "react-native", 13 | "nested-scrollview", 14 | "scrollview" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/mohtada-h/react-native-nested-scrollview.git" 19 | }, 20 | "dependencies": { 21 | "prop-types": "^15.5.10" 22 | }, 23 | "devDependencies": { 24 | "babel-preset-react-native": "1.9.2" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | absolute-path@^0.0.0: 6 | version "0.0.0" 7 | resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" 8 | 9 | accepts@~1.2.12, accepts@~1.2.13: 10 | version "1.2.13" 11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.2.13.tgz#e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea" 12 | dependencies: 13 | mime-types "~2.1.6" 14 | negotiator "0.5.3" 15 | 16 | accepts@~1.3.0: 17 | version "1.3.3" 18 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 19 | dependencies: 20 | mime-types "~2.1.11" 21 | negotiator "0.6.1" 22 | 23 | ajv@^4.9.1: 24 | version "4.11.8" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | align-text@^0.1.1, align-text@^0.1.3: 31 | version "0.1.4" 32 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 33 | dependencies: 34 | kind-of "^3.0.2" 35 | longest "^1.0.1" 36 | repeat-string "^1.5.2" 37 | 38 | ansi-escapes@^1.1.0: 39 | version "1.4.0" 40 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 41 | 42 | ansi-regex@^2.0.0: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | ansi@^0.3.0, ansi@~0.3.1: 51 | version "0.3.1" 52 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 53 | 54 | anymatch@^1.3.0: 55 | version "1.3.0" 56 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 57 | dependencies: 58 | arrify "^1.0.0" 59 | micromatch "^2.1.5" 60 | 61 | are-we-there-yet@~1.1.2: 62 | version "1.1.4" 63 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 64 | dependencies: 65 | delegates "^1.0.0" 66 | readable-stream "^2.0.6" 67 | 68 | arr-diff@^2.0.0: 69 | version "2.0.0" 70 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 71 | dependencies: 72 | arr-flatten "^1.0.1" 73 | 74 | arr-flatten@^1.0.1: 75 | version "1.0.3" 76 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 77 | 78 | array-differ@^1.0.0: 79 | version "1.0.0" 80 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 81 | 82 | array-filter@~0.0.0: 83 | version "0.0.1" 84 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 85 | 86 | array-map@~0.0.0: 87 | version "0.0.0" 88 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 89 | 90 | array-reduce@~0.0.0: 91 | version "0.0.0" 92 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 93 | 94 | array-uniq@^1.0.2: 95 | version "1.0.3" 96 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 97 | 98 | array-unique@^0.2.1: 99 | version "0.2.1" 100 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 101 | 102 | arrify@^1.0.0: 103 | version "1.0.1" 104 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 105 | 106 | art@^0.10.0: 107 | version "0.10.1" 108 | resolved "https://registry.yarnpkg.com/art/-/art-0.10.1.tgz#38541883e399225c5e193ff246e8f157cf7b2146" 109 | 110 | asap@~2.0.3: 111 | version "2.0.5" 112 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 113 | 114 | asn1@~0.2.3: 115 | version "0.2.3" 116 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 117 | 118 | assert-plus@1.0.0, assert-plus@^1.0.0: 119 | version "1.0.0" 120 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 121 | 122 | assert-plus@^0.2.0: 123 | version "0.2.0" 124 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 125 | 126 | async@^2.0.1: 127 | version "2.4.1" 128 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" 129 | dependencies: 130 | lodash "^4.14.0" 131 | 132 | async@~0.2.6: 133 | version "0.2.10" 134 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 135 | 136 | asynckit@^0.4.0: 137 | version "0.4.0" 138 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 139 | 140 | aws-sign2@~0.6.0: 141 | version "0.6.0" 142 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 143 | 144 | aws4@^1.2.1: 145 | version "1.6.0" 146 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 147 | 148 | babel-code-frame@^6.22.0: 149 | version "6.22.0" 150 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 151 | dependencies: 152 | chalk "^1.1.0" 153 | esutils "^2.0.2" 154 | js-tokens "^3.0.0" 155 | 156 | babel-core@^6.21.0, babel-core@^6.24.1, babel-core@^6.7.2: 157 | version "6.24.1" 158 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 159 | dependencies: 160 | babel-code-frame "^6.22.0" 161 | babel-generator "^6.24.1" 162 | babel-helpers "^6.24.1" 163 | babel-messages "^6.23.0" 164 | babel-register "^6.24.1" 165 | babel-runtime "^6.22.0" 166 | babel-template "^6.24.1" 167 | babel-traverse "^6.24.1" 168 | babel-types "^6.24.1" 169 | babylon "^6.11.0" 170 | convert-source-map "^1.1.0" 171 | debug "^2.1.1" 172 | json5 "^0.5.0" 173 | lodash "^4.2.0" 174 | minimatch "^3.0.2" 175 | path-is-absolute "^1.0.0" 176 | private "^0.1.6" 177 | slash "^1.0.0" 178 | source-map "^0.5.0" 179 | 180 | babel-generator@^6.21.0, babel-generator@^6.24.1: 181 | version "6.24.1" 182 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 183 | dependencies: 184 | babel-messages "^6.23.0" 185 | babel-runtime "^6.22.0" 186 | babel-types "^6.24.1" 187 | detect-indent "^4.0.0" 188 | jsesc "^1.3.0" 189 | lodash "^4.2.0" 190 | source-map "^0.5.0" 191 | trim-right "^1.0.1" 192 | 193 | babel-helper-builder-react-jsx@^6.24.1: 194 | version "6.24.1" 195 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 196 | dependencies: 197 | babel-runtime "^6.22.0" 198 | babel-types "^6.24.1" 199 | esutils "^2.0.0" 200 | 201 | babel-helper-call-delegate@^6.24.1: 202 | version "6.24.1" 203 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 204 | dependencies: 205 | babel-helper-hoist-variables "^6.24.1" 206 | babel-runtime "^6.22.0" 207 | babel-traverse "^6.24.1" 208 | babel-types "^6.24.1" 209 | 210 | babel-helper-define-map@^6.24.1: 211 | version "6.24.1" 212 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 213 | dependencies: 214 | babel-helper-function-name "^6.24.1" 215 | babel-runtime "^6.22.0" 216 | babel-types "^6.24.1" 217 | lodash "^4.2.0" 218 | 219 | babel-helper-function-name@^6.24.1: 220 | version "6.24.1" 221 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 222 | dependencies: 223 | babel-helper-get-function-arity "^6.24.1" 224 | babel-runtime "^6.22.0" 225 | babel-template "^6.24.1" 226 | babel-traverse "^6.24.1" 227 | babel-types "^6.24.1" 228 | 229 | babel-helper-get-function-arity@^6.24.1: 230 | version "6.24.1" 231 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 232 | dependencies: 233 | babel-runtime "^6.22.0" 234 | babel-types "^6.24.1" 235 | 236 | babel-helper-hoist-variables@^6.24.1: 237 | version "6.24.1" 238 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 239 | dependencies: 240 | babel-runtime "^6.22.0" 241 | babel-types "^6.24.1" 242 | 243 | babel-helper-optimise-call-expression@^6.24.1: 244 | version "6.24.1" 245 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 246 | dependencies: 247 | babel-runtime "^6.22.0" 248 | babel-types "^6.24.1" 249 | 250 | babel-helper-regex@^6.24.1: 251 | version "6.24.1" 252 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 253 | dependencies: 254 | babel-runtime "^6.22.0" 255 | babel-types "^6.24.1" 256 | lodash "^4.2.0" 257 | 258 | babel-helper-remap-async-to-generator@^6.16.0: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 261 | dependencies: 262 | babel-helper-function-name "^6.24.1" 263 | babel-runtime "^6.22.0" 264 | babel-template "^6.24.1" 265 | babel-traverse "^6.24.1" 266 | babel-types "^6.24.1" 267 | 268 | babel-helper-replace-supers@^6.24.1: 269 | version "6.24.1" 270 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 271 | dependencies: 272 | babel-helper-optimise-call-expression "^6.24.1" 273 | babel-messages "^6.23.0" 274 | babel-runtime "^6.22.0" 275 | babel-template "^6.24.1" 276 | babel-traverse "^6.24.1" 277 | babel-types "^6.24.1" 278 | 279 | babel-helpers@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 282 | dependencies: 283 | babel-runtime "^6.22.0" 284 | babel-template "^6.24.1" 285 | 286 | babel-messages@^6.23.0: 287 | version "6.23.0" 288 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 289 | dependencies: 290 | babel-runtime "^6.22.0" 291 | 292 | babel-plugin-check-es2015-constants@^6.5.0, babel-plugin-check-es2015-constants@^6.7.2, babel-plugin-check-es2015-constants@^6.8.0: 293 | version "6.22.0" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 295 | dependencies: 296 | babel-runtime "^6.22.0" 297 | 298 | babel-plugin-external-helpers@^6.18.0: 299 | version "6.22.0" 300 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 301 | dependencies: 302 | babel-runtime "^6.22.0" 303 | 304 | babel-plugin-react-transform@2.0.2: 305 | version "2.0.2" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz#515bbfa996893981142d90b1f9b1635de2995109" 307 | dependencies: 308 | lodash "^4.6.1" 309 | 310 | babel-plugin-syntax-async-functions@^6.5.0, babel-plugin-syntax-async-functions@^6.8.0: 311 | version "6.13.0" 312 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 313 | 314 | babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0: 315 | version "6.13.0" 316 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 317 | 318 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0, babel-plugin-syntax-flow@^6.8.0: 319 | version "6.18.0" 320 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 321 | 322 | babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: 323 | version "6.18.0" 324 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 325 | 326 | babel-plugin-syntax-object-rest-spread@^6.5.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 327 | version "6.13.0" 328 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 329 | 330 | babel-plugin-syntax-trailing-function-commas@^6.20.0, babel-plugin-syntax-trailing-function-commas@^6.5.0, babel-plugin-syntax-trailing-function-commas@^6.8.0: 331 | version "6.22.0" 332 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 333 | 334 | babel-plugin-transform-async-to-generator@6.16.0: 335 | version "6.16.0" 336 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 337 | dependencies: 338 | babel-helper-remap-async-to-generator "^6.16.0" 339 | babel-plugin-syntax-async-functions "^6.8.0" 340 | babel-runtime "^6.0.0" 341 | 342 | babel-plugin-transform-class-properties@^6.5.0, babel-plugin-transform-class-properties@^6.6.0, babel-plugin-transform-class-properties@^6.8.0: 343 | version "6.24.1" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 345 | dependencies: 346 | babel-helper-function-name "^6.24.1" 347 | babel-plugin-syntax-class-properties "^6.8.0" 348 | babel-runtime "^6.22.0" 349 | babel-template "^6.24.1" 350 | 351 | babel-plugin-transform-es2015-arrow-functions@^6.5.0, babel-plugin-transform-es2015-arrow-functions@^6.5.2, babel-plugin-transform-es2015-arrow-functions@^6.8.0: 352 | version "6.22.0" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 354 | dependencies: 355 | babel-runtime "^6.22.0" 356 | 357 | babel-plugin-transform-es2015-block-scoped-functions@^6.6.5, babel-plugin-transform-es2015-block-scoped-functions@^6.8.0: 358 | version "6.22.0" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 360 | dependencies: 361 | babel-runtime "^6.22.0" 362 | 363 | babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es2015-block-scoping@^6.7.1, babel-plugin-transform-es2015-block-scoping@^6.8.0: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 366 | dependencies: 367 | babel-runtime "^6.22.0" 368 | babel-template "^6.24.1" 369 | babel-traverse "^6.24.1" 370 | babel-types "^6.24.1" 371 | lodash "^4.2.0" 372 | 373 | babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-classes@^6.6.5, babel-plugin-transform-es2015-classes@^6.8.0: 374 | version "6.24.1" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 376 | dependencies: 377 | babel-helper-define-map "^6.24.1" 378 | babel-helper-function-name "^6.24.1" 379 | babel-helper-optimise-call-expression "^6.24.1" 380 | babel-helper-replace-supers "^6.24.1" 381 | babel-messages "^6.23.0" 382 | babel-runtime "^6.22.0" 383 | babel-template "^6.24.1" 384 | babel-traverse "^6.24.1" 385 | babel-types "^6.24.1" 386 | 387 | babel-plugin-transform-es2015-computed-properties@^6.5.0, babel-plugin-transform-es2015-computed-properties@^6.6.5, babel-plugin-transform-es2015-computed-properties@^6.8.0: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 390 | dependencies: 391 | babel-runtime "^6.22.0" 392 | babel-template "^6.24.1" 393 | 394 | babel-plugin-transform-es2015-destructuring@6.x, babel-plugin-transform-es2015-destructuring@^6.5.0, babel-plugin-transform-es2015-destructuring@^6.6.5, babel-plugin-transform-es2015-destructuring@^6.8.0: 395 | version "6.23.0" 396 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 397 | dependencies: 398 | babel-runtime "^6.22.0" 399 | 400 | babel-plugin-transform-es2015-for-of@^6.5.0, babel-plugin-transform-es2015-for-of@^6.6.0, babel-plugin-transform-es2015-for-of@^6.8.0: 401 | version "6.23.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 403 | dependencies: 404 | babel-runtime "^6.22.0" 405 | 406 | babel-plugin-transform-es2015-function-name@6.x, babel-plugin-transform-es2015-function-name@^6.5.0, babel-plugin-transform-es2015-function-name@^6.8.0: 407 | version "6.24.1" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 409 | dependencies: 410 | babel-helper-function-name "^6.24.1" 411 | babel-runtime "^6.22.0" 412 | babel-types "^6.24.1" 413 | 414 | babel-plugin-transform-es2015-literals@^6.5.0, babel-plugin-transform-es2015-literals@^6.8.0: 415 | version "6.22.0" 416 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 417 | dependencies: 418 | babel-runtime "^6.22.0" 419 | 420 | babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es2015-modules-commonjs@^6.5.0, babel-plugin-transform-es2015-modules-commonjs@^6.7.0, babel-plugin-transform-es2015-modules-commonjs@^6.8.0: 421 | version "6.24.1" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 423 | dependencies: 424 | babel-plugin-transform-strict-mode "^6.24.1" 425 | babel-runtime "^6.22.0" 426 | babel-template "^6.24.1" 427 | babel-types "^6.24.1" 428 | 429 | babel-plugin-transform-es2015-object-super@^6.6.5, babel-plugin-transform-es2015-object-super@^6.8.0: 430 | version "6.24.1" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 432 | dependencies: 433 | babel-helper-replace-supers "^6.24.1" 434 | babel-runtime "^6.22.0" 435 | 436 | babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-parameters@^6.5.0, babel-plugin-transform-es2015-parameters@^6.7.0, babel-plugin-transform-es2015-parameters@^6.8.0: 437 | version "6.24.1" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 439 | dependencies: 440 | babel-helper-call-delegate "^6.24.1" 441 | babel-helper-get-function-arity "^6.24.1" 442 | babel-runtime "^6.22.0" 443 | babel-template "^6.24.1" 444 | babel-traverse "^6.24.1" 445 | babel-types "^6.24.1" 446 | 447 | babel-plugin-transform-es2015-shorthand-properties@6.x, babel-plugin-transform-es2015-shorthand-properties@^6.5.0, babel-plugin-transform-es2015-shorthand-properties@^6.8.0: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | babel-types "^6.24.1" 453 | 454 | babel-plugin-transform-es2015-spread@6.x, babel-plugin-transform-es2015-spread@^6.5.0, babel-plugin-transform-es2015-spread@^6.6.5, babel-plugin-transform-es2015-spread@^6.8.0: 455 | version "6.22.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-transform-es2015-sticky-regex@6.x: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 463 | dependencies: 464 | babel-helper-regex "^6.24.1" 465 | babel-runtime "^6.22.0" 466 | babel-types "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-template-literals@^6.5.0, babel-plugin-transform-es2015-template-literals@^6.6.5, babel-plugin-transform-es2015-template-literals@^6.8.0: 469 | version "6.22.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | 474 | babel-plugin-transform-es2015-unicode-regex@6.x: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 477 | dependencies: 478 | babel-helper-regex "^6.24.1" 479 | babel-runtime "^6.22.0" 480 | regexpu-core "^2.0.0" 481 | 482 | babel-plugin-transform-es3-member-expression-literals@^6.5.0, babel-plugin-transform-es3-member-expression-literals@^6.8.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz#733d3444f3ecc41bef8ed1a6a4e09657b8969ebb" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es3-property-literals@^6.5.0, babel-plugin-transform-es3-property-literals@^6.8.0: 489 | version "6.22.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz#b2078d5842e22abf40f73e8cde9cd3711abd5758" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | 494 | babel-plugin-transform-flow-strip-types@^6.21.0, babel-plugin-transform-flow-strip-types@^6.5.0, babel-plugin-transform-flow-strip-types@^6.7.0, babel-plugin-transform-flow-strip-types@^6.8.0: 495 | version "6.22.0" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 497 | dependencies: 498 | babel-plugin-syntax-flow "^6.18.0" 499 | babel-runtime "^6.22.0" 500 | 501 | babel-plugin-transform-object-assign@^6.5.0: 502 | version "6.22.0" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" 504 | dependencies: 505 | babel-runtime "^6.22.0" 506 | 507 | babel-plugin-transform-object-rest-spread@^6.20.2, babel-plugin-transform-object-rest-spread@^6.5.0, babel-plugin-transform-object-rest-spread@^6.6.5, babel-plugin-transform-object-rest-spread@^6.8.0: 508 | version "6.23.0" 509 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 510 | dependencies: 511 | babel-plugin-syntax-object-rest-spread "^6.8.0" 512 | babel-runtime "^6.22.0" 513 | 514 | babel-plugin-transform-react-display-name@^6.5.0, babel-plugin-transform-react-display-name@^6.8.0: 515 | version "6.23.0" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 517 | dependencies: 518 | babel-runtime "^6.22.0" 519 | 520 | babel-plugin-transform-react-jsx-source@^6.5.0: 521 | version "6.22.0" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 523 | dependencies: 524 | babel-plugin-syntax-jsx "^6.8.0" 525 | babel-runtime "^6.22.0" 526 | 527 | babel-plugin-transform-react-jsx@^6.5.0, babel-plugin-transform-react-jsx@^6.8.0: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 530 | dependencies: 531 | babel-helper-builder-react-jsx "^6.24.1" 532 | babel-plugin-syntax-jsx "^6.8.0" 533 | babel-runtime "^6.22.0" 534 | 535 | babel-plugin-transform-regenerator@^6.5.0: 536 | version "6.24.1" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 538 | dependencies: 539 | regenerator-transform "0.9.11" 540 | 541 | babel-plugin-transform-strict-mode@^6.24.1: 542 | version "6.24.1" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 544 | dependencies: 545 | babel-runtime "^6.22.0" 546 | babel-types "^6.24.1" 547 | 548 | babel-polyfill@^6.20.0: 549 | version "6.23.0" 550 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 551 | dependencies: 552 | babel-runtime "^6.22.0" 553 | core-js "^2.4.0" 554 | regenerator-runtime "^0.10.0" 555 | 556 | babel-preset-es2015-node@^6.1.1: 557 | version "6.1.1" 558 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz#60b23157024b0cfebf3a63554cb05ee035b4e55f" 559 | dependencies: 560 | babel-plugin-transform-es2015-destructuring "6.x" 561 | babel-plugin-transform-es2015-function-name "6.x" 562 | babel-plugin-transform-es2015-modules-commonjs "6.x" 563 | babel-plugin-transform-es2015-parameters "6.x" 564 | babel-plugin-transform-es2015-shorthand-properties "6.x" 565 | babel-plugin-transform-es2015-spread "6.x" 566 | babel-plugin-transform-es2015-sticky-regex "6.x" 567 | babel-plugin-transform-es2015-unicode-regex "6.x" 568 | semver "5.x" 569 | 570 | babel-preset-fbjs@^1.0.0: 571 | version "1.0.0" 572 | resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-1.0.0.tgz#c972e5c9b301d4ec9e7971f4aec3e14ac017a8b0" 573 | dependencies: 574 | babel-plugin-check-es2015-constants "^6.7.2" 575 | babel-plugin-syntax-flow "^6.5.0" 576 | babel-plugin-syntax-object-rest-spread "^6.5.0" 577 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 578 | babel-plugin-transform-class-properties "^6.6.0" 579 | babel-plugin-transform-es2015-arrow-functions "^6.5.2" 580 | babel-plugin-transform-es2015-block-scoped-functions "^6.6.5" 581 | babel-plugin-transform-es2015-block-scoping "^6.7.1" 582 | babel-plugin-transform-es2015-classes "^6.6.5" 583 | babel-plugin-transform-es2015-computed-properties "^6.6.5" 584 | babel-plugin-transform-es2015-destructuring "^6.6.5" 585 | babel-plugin-transform-es2015-for-of "^6.6.0" 586 | babel-plugin-transform-es2015-literals "^6.5.0" 587 | babel-plugin-transform-es2015-modules-commonjs "^6.7.0" 588 | babel-plugin-transform-es2015-object-super "^6.6.5" 589 | babel-plugin-transform-es2015-parameters "^6.7.0" 590 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 591 | babel-plugin-transform-es2015-spread "^6.6.5" 592 | babel-plugin-transform-es2015-template-literals "^6.6.5" 593 | babel-plugin-transform-es3-member-expression-literals "^6.5.0" 594 | babel-plugin-transform-es3-property-literals "^6.5.0" 595 | babel-plugin-transform-flow-strip-types "^6.7.0" 596 | babel-plugin-transform-object-rest-spread "^6.6.5" 597 | object-assign "^4.0.1" 598 | 599 | babel-preset-fbjs@^2.1.0: 600 | version "2.1.2" 601 | resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-2.1.2.tgz#f52b2df56b1da883ffb7798b3b3be42c4c647a77" 602 | dependencies: 603 | babel-plugin-check-es2015-constants "^6.8.0" 604 | babel-plugin-syntax-class-properties "^6.8.0" 605 | babel-plugin-syntax-flow "^6.8.0" 606 | babel-plugin-syntax-jsx "^6.8.0" 607 | babel-plugin-syntax-object-rest-spread "^6.8.0" 608 | babel-plugin-syntax-trailing-function-commas "^6.8.0" 609 | babel-plugin-transform-class-properties "^6.8.0" 610 | babel-plugin-transform-es2015-arrow-functions "^6.8.0" 611 | babel-plugin-transform-es2015-block-scoped-functions "^6.8.0" 612 | babel-plugin-transform-es2015-block-scoping "^6.8.0" 613 | babel-plugin-transform-es2015-classes "^6.8.0" 614 | babel-plugin-transform-es2015-computed-properties "^6.8.0" 615 | babel-plugin-transform-es2015-destructuring "^6.8.0" 616 | babel-plugin-transform-es2015-for-of "^6.8.0" 617 | babel-plugin-transform-es2015-function-name "^6.8.0" 618 | babel-plugin-transform-es2015-literals "^6.8.0" 619 | babel-plugin-transform-es2015-modules-commonjs "^6.8.0" 620 | babel-plugin-transform-es2015-object-super "^6.8.0" 621 | babel-plugin-transform-es2015-parameters "^6.8.0" 622 | babel-plugin-transform-es2015-shorthand-properties "^6.8.0" 623 | babel-plugin-transform-es2015-spread "^6.8.0" 624 | babel-plugin-transform-es2015-template-literals "^6.8.0" 625 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 626 | babel-plugin-transform-es3-property-literals "^6.8.0" 627 | babel-plugin-transform-flow-strip-types "^6.8.0" 628 | babel-plugin-transform-object-rest-spread "^6.8.0" 629 | babel-plugin-transform-react-display-name "^6.8.0" 630 | babel-plugin-transform-react-jsx "^6.8.0" 631 | 632 | babel-preset-react-native@1.9.2, babel-preset-react-native@^1.9.1: 633 | version "1.9.2" 634 | resolved "https://registry.yarnpkg.com/babel-preset-react-native/-/babel-preset-react-native-1.9.2.tgz#b22addd2e355ff3b39671b79be807e52dfa145f2" 635 | dependencies: 636 | babel-plugin-check-es2015-constants "^6.5.0" 637 | babel-plugin-react-transform "2.0.2" 638 | babel-plugin-syntax-async-functions "^6.5.0" 639 | babel-plugin-syntax-class-properties "^6.5.0" 640 | babel-plugin-syntax-flow "^6.5.0" 641 | babel-plugin-syntax-jsx "^6.5.0" 642 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 643 | babel-plugin-transform-class-properties "^6.5.0" 644 | babel-plugin-transform-es2015-arrow-functions "^6.5.0" 645 | babel-plugin-transform-es2015-block-scoping "^6.5.0" 646 | babel-plugin-transform-es2015-classes "^6.5.0" 647 | babel-plugin-transform-es2015-computed-properties "^6.5.0" 648 | babel-plugin-transform-es2015-destructuring "^6.5.0" 649 | babel-plugin-transform-es2015-for-of "^6.5.0" 650 | babel-plugin-transform-es2015-function-name "^6.5.0" 651 | babel-plugin-transform-es2015-literals "^6.5.0" 652 | babel-plugin-transform-es2015-modules-commonjs "^6.5.0" 653 | babel-plugin-transform-es2015-parameters "^6.5.0" 654 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 655 | babel-plugin-transform-es2015-spread "^6.5.0" 656 | babel-plugin-transform-es2015-template-literals "^6.5.0" 657 | babel-plugin-transform-flow-strip-types "^6.5.0" 658 | babel-plugin-transform-object-assign "^6.5.0" 659 | babel-plugin-transform-object-rest-spread "^6.5.0" 660 | babel-plugin-transform-react-display-name "^6.5.0" 661 | babel-plugin-transform-react-jsx "^6.5.0" 662 | babel-plugin-transform-react-jsx-source "^6.5.0" 663 | babel-plugin-transform-regenerator "^6.5.0" 664 | react-transform-hmr "^1.0.4" 665 | 666 | babel-register@^6.18.0, babel-register@^6.24.1: 667 | version "6.24.1" 668 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 669 | dependencies: 670 | babel-core "^6.24.1" 671 | babel-runtime "^6.22.0" 672 | core-js "^2.4.0" 673 | home-or-tmp "^2.0.0" 674 | lodash "^4.2.0" 675 | mkdirp "^0.5.1" 676 | source-map-support "^0.4.2" 677 | 678 | babel-runtime@^6.0.0, babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.22.0: 679 | version "6.23.0" 680 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 681 | dependencies: 682 | core-js "^2.4.0" 683 | regenerator-runtime "^0.10.0" 684 | 685 | babel-template@^6.24.1: 686 | version "6.24.1" 687 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 688 | dependencies: 689 | babel-runtime "^6.22.0" 690 | babel-traverse "^6.24.1" 691 | babel-types "^6.24.1" 692 | babylon "^6.11.0" 693 | lodash "^4.2.0" 694 | 695 | babel-traverse@^6.21.0, babel-traverse@^6.24.1: 696 | version "6.24.1" 697 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 698 | dependencies: 699 | babel-code-frame "^6.22.0" 700 | babel-messages "^6.23.0" 701 | babel-runtime "^6.22.0" 702 | babel-types "^6.24.1" 703 | babylon "^6.15.0" 704 | debug "^2.2.0" 705 | globals "^9.0.0" 706 | invariant "^2.2.0" 707 | lodash "^4.2.0" 708 | 709 | babel-types@^6.19.0, babel-types@^6.21.0, babel-types@^6.24.1: 710 | version "6.24.1" 711 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 712 | dependencies: 713 | babel-runtime "^6.22.0" 714 | esutils "^2.0.2" 715 | lodash "^4.2.0" 716 | to-fast-properties "^1.0.1" 717 | 718 | babylon@^6.11.0, babylon@^6.15.0, babylon@^6.16.1: 719 | version "6.17.1" 720 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 721 | 722 | balanced-match@^0.4.1: 723 | version "0.4.2" 724 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 725 | 726 | base64-js@0.0.8: 727 | version "0.0.8" 728 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" 729 | 730 | base64-js@1.1.2: 731 | version "1.1.2" 732 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.1.2.tgz#d6400cac1c4c660976d90d07a04351d89395f5e8" 733 | 734 | base64-js@^1.1.2: 735 | version "1.2.0" 736 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 737 | 738 | base64-url@1.2.1: 739 | version "1.2.1" 740 | resolved "https://registry.yarnpkg.com/base64-url/-/base64-url-1.2.1.tgz#199fd661702a0e7b7dcae6e0698bb089c52f6d78" 741 | 742 | basic-auth-connect@1.0.0: 743 | version "1.0.0" 744 | resolved "https://registry.yarnpkg.com/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz#fdb0b43962ca7b40456a7c2bb48fe173da2d2122" 745 | 746 | basic-auth@~1.0.3: 747 | version "1.0.4" 748 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-1.0.4.tgz#030935b01de7c9b94a824b29f3fccb750d3a5290" 749 | 750 | batch@0.5.3: 751 | version "0.5.3" 752 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 753 | 754 | bcrypt-pbkdf@^1.0.0: 755 | version "1.0.1" 756 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 757 | dependencies: 758 | tweetnacl "^0.14.3" 759 | 760 | beeper@^1.0.0: 761 | version "1.1.1" 762 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 763 | 764 | big-integer@^1.6.7: 765 | version "1.6.22" 766 | resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.22.tgz#487c95fce886022ea48ff5f19e388932df46dd2e" 767 | 768 | body-parser@~1.13.3: 769 | version "1.13.3" 770 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.13.3.tgz#c08cf330c3358e151016a05746f13f029c97fa97" 771 | dependencies: 772 | bytes "2.1.0" 773 | content-type "~1.0.1" 774 | debug "~2.2.0" 775 | depd "~1.0.1" 776 | http-errors "~1.3.1" 777 | iconv-lite "0.4.11" 778 | on-finished "~2.3.0" 779 | qs "4.0.0" 780 | raw-body "~2.1.2" 781 | type-is "~1.6.6" 782 | 783 | boom@2.x.x: 784 | version "2.10.1" 785 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 786 | dependencies: 787 | hoek "2.x.x" 788 | 789 | bplist-creator@0.0.7: 790 | version "0.0.7" 791 | resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45" 792 | dependencies: 793 | stream-buffers "~2.2.0" 794 | 795 | bplist-parser@0.1.1: 796 | version "0.1.1" 797 | resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.1.1.tgz#d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6" 798 | dependencies: 799 | big-integer "^1.6.7" 800 | 801 | brace-expansion@^1.1.7: 802 | version "1.1.7" 803 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 804 | dependencies: 805 | balanced-match "^0.4.1" 806 | concat-map "0.0.1" 807 | 808 | braces@^1.8.2: 809 | version "1.8.5" 810 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 811 | dependencies: 812 | expand-range "^1.8.1" 813 | preserve "^0.2.0" 814 | repeat-element "^1.1.2" 815 | 816 | bser@1.0.2: 817 | version "1.0.2" 818 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 819 | dependencies: 820 | node-int64 "^0.4.0" 821 | 822 | bser@^1.0.2: 823 | version "1.0.3" 824 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.3.tgz#d63da19ee17330a0e260d2a34422b21a89520317" 825 | dependencies: 826 | node-int64 "^0.4.0" 827 | 828 | bser@^2.0.0: 829 | version "2.0.0" 830 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 831 | dependencies: 832 | node-int64 "^0.4.0" 833 | 834 | buffer-shims@~1.0.0: 835 | version "1.0.0" 836 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 837 | 838 | builtin-modules@^1.0.0: 839 | version "1.1.1" 840 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 841 | 842 | bytes@2.1.0: 843 | version "2.1.0" 844 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.1.0.tgz#ac93c410e2ffc9cc7cf4b464b38289067f5e47b4" 845 | 846 | bytes@2.4.0: 847 | version "2.4.0" 848 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 849 | 850 | camelcase@^1.0.2: 851 | version "1.2.1" 852 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 853 | 854 | camelcase@^3.0.0: 855 | version "3.0.0" 856 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 857 | 858 | caseless@~0.12.0: 859 | version "0.12.0" 860 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 861 | 862 | center-align@^0.1.1: 863 | version "0.1.3" 864 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 865 | dependencies: 866 | align-text "^0.1.3" 867 | lazy-cache "^1.0.3" 868 | 869 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 870 | version "1.1.3" 871 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 872 | dependencies: 873 | ansi-styles "^2.2.1" 874 | escape-string-regexp "^1.0.2" 875 | has-ansi "^2.0.0" 876 | strip-ansi "^3.0.0" 877 | supports-color "^2.0.0" 878 | 879 | cli-cursor@^1.0.1: 880 | version "1.0.2" 881 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 882 | dependencies: 883 | restore-cursor "^1.0.1" 884 | 885 | cli-width@^2.0.0: 886 | version "2.1.0" 887 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 888 | 889 | cliui@^2.1.0: 890 | version "2.1.0" 891 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 892 | dependencies: 893 | center-align "^0.1.1" 894 | right-align "^0.1.1" 895 | wordwrap "0.0.2" 896 | 897 | cliui@^3.2.0: 898 | version "3.2.0" 899 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 900 | dependencies: 901 | string-width "^1.0.1" 902 | strip-ansi "^3.0.1" 903 | wrap-ansi "^2.0.0" 904 | 905 | clone-stats@^0.0.1: 906 | version "0.0.1" 907 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 908 | 909 | clone@^1.0.0: 910 | version "1.0.2" 911 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 912 | 913 | co@^4.6.0: 914 | version "4.6.0" 915 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 916 | 917 | code-point-at@^1.0.0: 918 | version "1.1.0" 919 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 920 | 921 | combined-stream@^1.0.5, combined-stream@~1.0.5: 922 | version "1.0.5" 923 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 924 | dependencies: 925 | delayed-stream "~1.0.0" 926 | 927 | commander@^2.9.0: 928 | version "2.9.0" 929 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 930 | dependencies: 931 | graceful-readlink ">= 1.0.0" 932 | 933 | compressible@~2.0.5: 934 | version "2.0.10" 935 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" 936 | dependencies: 937 | mime-db ">= 1.27.0 < 2" 938 | 939 | compression@~1.5.2: 940 | version "1.5.2" 941 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.5.2.tgz#b03b8d86e6f8ad29683cba8df91ddc6ffc77b395" 942 | dependencies: 943 | accepts "~1.2.12" 944 | bytes "2.1.0" 945 | compressible "~2.0.5" 946 | debug "~2.2.0" 947 | on-headers "~1.0.0" 948 | vary "~1.0.1" 949 | 950 | concat-map@0.0.1: 951 | version "0.0.1" 952 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 953 | 954 | concat-stream@^1.6.0: 955 | version "1.6.0" 956 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 957 | dependencies: 958 | inherits "^2.0.3" 959 | readable-stream "^2.2.2" 960 | typedarray "^0.0.6" 961 | 962 | connect-timeout@~1.6.2: 963 | version "1.6.2" 964 | resolved "https://registry.yarnpkg.com/connect-timeout/-/connect-timeout-1.6.2.tgz#de9a5ec61e33a12b6edaab7b5f062e98c599b88e" 965 | dependencies: 966 | debug "~2.2.0" 967 | http-errors "~1.3.1" 968 | ms "0.7.1" 969 | on-headers "~1.0.0" 970 | 971 | connect@^2.8.3: 972 | version "2.30.2" 973 | resolved "https://registry.yarnpkg.com/connect/-/connect-2.30.2.tgz#8da9bcbe8a054d3d318d74dfec903b5c39a1b609" 974 | dependencies: 975 | basic-auth-connect "1.0.0" 976 | body-parser "~1.13.3" 977 | bytes "2.1.0" 978 | compression "~1.5.2" 979 | connect-timeout "~1.6.2" 980 | content-type "~1.0.1" 981 | cookie "0.1.3" 982 | cookie-parser "~1.3.5" 983 | cookie-signature "1.0.6" 984 | csurf "~1.8.3" 985 | debug "~2.2.0" 986 | depd "~1.0.1" 987 | errorhandler "~1.4.2" 988 | express-session "~1.11.3" 989 | finalhandler "0.4.0" 990 | fresh "0.3.0" 991 | http-errors "~1.3.1" 992 | method-override "~2.3.5" 993 | morgan "~1.6.1" 994 | multiparty "3.3.2" 995 | on-headers "~1.0.0" 996 | parseurl "~1.3.0" 997 | pause "0.1.0" 998 | qs "4.0.0" 999 | response-time "~2.3.1" 1000 | serve-favicon "~2.3.0" 1001 | serve-index "~1.7.2" 1002 | serve-static "~1.10.0" 1003 | type-is "~1.6.6" 1004 | utils-merge "1.0.0" 1005 | vhost "~3.0.1" 1006 | 1007 | content-type@~1.0.1: 1008 | version "1.0.2" 1009 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1010 | 1011 | convert-source-map@^1.1.0: 1012 | version "1.5.0" 1013 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1014 | 1015 | cookie-parser@~1.3.5: 1016 | version "1.3.5" 1017 | resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.3.5.tgz#9d755570fb5d17890771227a02314d9be7cf8356" 1018 | dependencies: 1019 | cookie "0.1.3" 1020 | cookie-signature "1.0.6" 1021 | 1022 | cookie-signature@1.0.6: 1023 | version "1.0.6" 1024 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1025 | 1026 | cookie@0.1.3: 1027 | version "0.1.3" 1028 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.3.tgz#e734a5c1417fce472d5aef82c381cabb64d1a435" 1029 | 1030 | core-js@^1.0.0: 1031 | version "1.2.7" 1032 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1033 | 1034 | core-js@^2.2.2, core-js@^2.4.0: 1035 | version "2.4.1" 1036 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1037 | 1038 | core-util-is@~1.0.0: 1039 | version "1.0.2" 1040 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1041 | 1042 | crc@3.3.0: 1043 | version "3.3.0" 1044 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.3.0.tgz#fa622e1bc388bf257309082d6b65200ce67090ba" 1045 | 1046 | cross-spawn@^3.0.1: 1047 | version "3.0.1" 1048 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 1049 | dependencies: 1050 | lru-cache "^4.0.1" 1051 | which "^1.2.9" 1052 | 1053 | cryptiles@2.x.x: 1054 | version "2.0.5" 1055 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1056 | dependencies: 1057 | boom "2.x.x" 1058 | 1059 | csrf@~3.0.0: 1060 | version "3.0.6" 1061 | resolved "https://registry.yarnpkg.com/csrf/-/csrf-3.0.6.tgz#b61120ddceeafc91e76ed5313bb5c0b2667b710a" 1062 | dependencies: 1063 | rndm "1.2.0" 1064 | tsscmp "1.0.5" 1065 | uid-safe "2.1.4" 1066 | 1067 | csurf@~1.8.3: 1068 | version "1.8.3" 1069 | resolved "https://registry.yarnpkg.com/csurf/-/csurf-1.8.3.tgz#23f2a13bf1d8fce1d0c996588394442cba86a56a" 1070 | dependencies: 1071 | cookie "0.1.3" 1072 | cookie-signature "1.0.6" 1073 | csrf "~3.0.0" 1074 | http-errors "~1.3.1" 1075 | 1076 | dashdash@^1.12.0: 1077 | version "1.14.1" 1078 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1079 | dependencies: 1080 | assert-plus "^1.0.0" 1081 | 1082 | dateformat@^2.0.0: 1083 | version "2.0.0" 1084 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 1085 | 1086 | debug@2.6.8, debug@^2.1.1, debug@^2.2.0: 1087 | version "2.6.8" 1088 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1089 | dependencies: 1090 | ms "2.0.0" 1091 | 1092 | debug@~2.2.0: 1093 | version "2.2.0" 1094 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1095 | dependencies: 1096 | ms "0.7.1" 1097 | 1098 | decamelize@^1.0.0, decamelize@^1.1.1: 1099 | version "1.2.0" 1100 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1101 | 1102 | delayed-stream@~1.0.0: 1103 | version "1.0.0" 1104 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1105 | 1106 | delegates@^1.0.0: 1107 | version "1.0.0" 1108 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1109 | 1110 | denodeify@^1.2.1: 1111 | version "1.2.1" 1112 | resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" 1113 | 1114 | depd@~1.0.1: 1115 | version "1.0.1" 1116 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.0.1.tgz#80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa" 1117 | 1118 | depd@~1.1.0: 1119 | version "1.1.0" 1120 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1121 | 1122 | destroy@~1.0.4: 1123 | version "1.0.4" 1124 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1125 | 1126 | detect-indent@^4.0.0: 1127 | version "4.0.0" 1128 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1129 | dependencies: 1130 | repeating "^2.0.0" 1131 | 1132 | dom-walk@^0.1.0: 1133 | version "0.1.1" 1134 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 1135 | 1136 | duplexer2@0.0.2: 1137 | version "0.0.2" 1138 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 1139 | dependencies: 1140 | readable-stream "~1.1.9" 1141 | 1142 | ecc-jsbn@~0.1.1: 1143 | version "0.1.1" 1144 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1145 | dependencies: 1146 | jsbn "~0.1.0" 1147 | 1148 | ee-first@1.1.1: 1149 | version "1.1.1" 1150 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1151 | 1152 | encoding@^0.1.11: 1153 | version "0.1.12" 1154 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1155 | dependencies: 1156 | iconv-lite "~0.4.13" 1157 | 1158 | "errno@>=0.1.1 <0.2.0-0": 1159 | version "0.1.4" 1160 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1161 | dependencies: 1162 | prr "~0.0.0" 1163 | 1164 | error-ex@^1.2.0: 1165 | version "1.3.1" 1166 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1167 | dependencies: 1168 | is-arrayish "^0.2.1" 1169 | 1170 | errorhandler@~1.4.2: 1171 | version "1.4.3" 1172 | resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.4.3.tgz#b7b70ed8f359e9db88092f2d20c0f831420ad83f" 1173 | dependencies: 1174 | accepts "~1.3.0" 1175 | escape-html "~1.0.3" 1176 | 1177 | escape-html@1.0.2: 1178 | version "1.0.2" 1179 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.2.tgz#d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c" 1180 | 1181 | escape-html@~1.0.3: 1182 | version "1.0.3" 1183 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1184 | 1185 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1186 | version "1.0.5" 1187 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1188 | 1189 | esutils@^2.0.0, esutils@^2.0.2: 1190 | version "2.0.2" 1191 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1192 | 1193 | etag@~1.7.0: 1194 | version "1.7.0" 1195 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1196 | 1197 | event-target-shim@^1.0.5: 1198 | version "1.1.1" 1199 | resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-1.1.1.tgz#a86e5ee6bdaa16054475da797ccddf0c55698491" 1200 | 1201 | exec-sh@^0.2.0: 1202 | version "0.2.0" 1203 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1204 | dependencies: 1205 | merge "^1.1.3" 1206 | 1207 | exit-hook@^1.0.0: 1208 | version "1.1.1" 1209 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1210 | 1211 | expand-brackets@^0.1.4: 1212 | version "0.1.5" 1213 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1214 | dependencies: 1215 | is-posix-bracket "^0.1.0" 1216 | 1217 | expand-range@^1.8.1: 1218 | version "1.8.2" 1219 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1220 | dependencies: 1221 | fill-range "^2.1.0" 1222 | 1223 | express-session@~1.11.3: 1224 | version "1.11.3" 1225 | resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.11.3.tgz#5cc98f3f5ff84ed835f91cbf0aabd0c7107400af" 1226 | dependencies: 1227 | cookie "0.1.3" 1228 | cookie-signature "1.0.6" 1229 | crc "3.3.0" 1230 | debug "~2.2.0" 1231 | depd "~1.0.1" 1232 | on-headers "~1.0.0" 1233 | parseurl "~1.3.0" 1234 | uid-safe "~2.0.0" 1235 | utils-merge "1.0.0" 1236 | 1237 | extend@~3.0.0: 1238 | version "3.0.1" 1239 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1240 | 1241 | extglob@^0.3.1: 1242 | version "0.3.2" 1243 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1244 | dependencies: 1245 | is-extglob "^1.0.0" 1246 | 1247 | extsprintf@1.0.2: 1248 | version "1.0.2" 1249 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1250 | 1251 | fancy-log@^1.1.0: 1252 | version "1.3.0" 1253 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 1254 | dependencies: 1255 | chalk "^1.1.1" 1256 | time-stamp "^1.0.0" 1257 | 1258 | fb-watchman@^1.8.0: 1259 | version "1.9.2" 1260 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1261 | dependencies: 1262 | bser "1.0.2" 1263 | 1264 | fb-watchman@^2.0.0: 1265 | version "2.0.0" 1266 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1267 | dependencies: 1268 | bser "^2.0.0" 1269 | 1270 | fbjs-scripts@^0.7.0: 1271 | version "0.7.1" 1272 | resolved "https://registry.yarnpkg.com/fbjs-scripts/-/fbjs-scripts-0.7.1.tgz#4f115e218e243e3addbf0eddaac1e3c62f703fac" 1273 | dependencies: 1274 | babel-core "^6.7.2" 1275 | babel-preset-fbjs "^1.0.0" 1276 | core-js "^1.0.0" 1277 | cross-spawn "^3.0.1" 1278 | gulp-util "^3.0.4" 1279 | object-assign "^4.0.1" 1280 | semver "^5.1.0" 1281 | through2 "^2.0.0" 1282 | 1283 | fbjs@^0.8.9, fbjs@~0.8.9: 1284 | version "0.8.12" 1285 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 1286 | dependencies: 1287 | core-js "^1.0.0" 1288 | isomorphic-fetch "^2.1.1" 1289 | loose-envify "^1.0.0" 1290 | object-assign "^4.1.0" 1291 | promise "^7.1.1" 1292 | setimmediate "^1.0.5" 1293 | ua-parser-js "^0.7.9" 1294 | 1295 | figures@^1.3.5: 1296 | version "1.7.0" 1297 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1298 | dependencies: 1299 | escape-string-regexp "^1.0.5" 1300 | object-assign "^4.1.0" 1301 | 1302 | filename-regex@^2.0.0: 1303 | version "2.0.1" 1304 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1305 | 1306 | fill-range@^2.1.0: 1307 | version "2.2.3" 1308 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1309 | dependencies: 1310 | is-number "^2.1.0" 1311 | isobject "^2.0.0" 1312 | randomatic "^1.1.3" 1313 | repeat-element "^1.1.2" 1314 | repeat-string "^1.5.2" 1315 | 1316 | finalhandler@0.4.0: 1317 | version "0.4.0" 1318 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.4.0.tgz#965a52d9e8d05d2b857548541fb89b53a2497d9b" 1319 | dependencies: 1320 | debug "~2.2.0" 1321 | escape-html "1.0.2" 1322 | on-finished "~2.3.0" 1323 | unpipe "~1.0.0" 1324 | 1325 | find-up@^1.0.0: 1326 | version "1.1.2" 1327 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1328 | dependencies: 1329 | path-exists "^2.0.0" 1330 | pinkie-promise "^2.0.0" 1331 | 1332 | for-in@^1.0.1: 1333 | version "1.0.2" 1334 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1335 | 1336 | for-own@^0.1.4: 1337 | version "0.1.5" 1338 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1339 | dependencies: 1340 | for-in "^1.0.1" 1341 | 1342 | forever-agent@~0.6.1: 1343 | version "0.6.1" 1344 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1345 | 1346 | form-data@^2.1.1, form-data@~2.1.1: 1347 | version "2.1.4" 1348 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1349 | dependencies: 1350 | asynckit "^0.4.0" 1351 | combined-stream "^1.0.5" 1352 | mime-types "^2.1.12" 1353 | 1354 | fresh@0.3.0: 1355 | version "0.3.0" 1356 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1357 | 1358 | fs-extra@^1.0.0: 1359 | version "1.0.0" 1360 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1361 | dependencies: 1362 | graceful-fs "^4.1.2" 1363 | jsonfile "^2.1.0" 1364 | klaw "^1.0.0" 1365 | 1366 | fs.realpath@^1.0.0: 1367 | version "1.0.0" 1368 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1369 | 1370 | gauge@~1.2.5: 1371 | version "1.2.7" 1372 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1373 | dependencies: 1374 | ansi "^0.3.0" 1375 | has-unicode "^2.0.0" 1376 | lodash.pad "^4.1.0" 1377 | lodash.padend "^4.1.0" 1378 | lodash.padstart "^4.1.0" 1379 | 1380 | get-caller-file@^1.0.1: 1381 | version "1.0.2" 1382 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1383 | 1384 | getpass@^0.1.1: 1385 | version "0.1.7" 1386 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1387 | dependencies: 1388 | assert-plus "^1.0.0" 1389 | 1390 | glob-base@^0.3.0: 1391 | version "0.3.0" 1392 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1393 | dependencies: 1394 | glob-parent "^2.0.0" 1395 | is-glob "^2.0.0" 1396 | 1397 | glob-parent@^2.0.0: 1398 | version "2.0.0" 1399 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1400 | dependencies: 1401 | is-glob "^2.0.0" 1402 | 1403 | glob@^7.0.5, glob@^7.1.1: 1404 | version "7.1.2" 1405 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1406 | dependencies: 1407 | fs.realpath "^1.0.0" 1408 | inflight "^1.0.4" 1409 | inherits "2" 1410 | minimatch "^3.0.4" 1411 | once "^1.3.0" 1412 | path-is-absolute "^1.0.0" 1413 | 1414 | global@^4.3.0: 1415 | version "4.3.2" 1416 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" 1417 | dependencies: 1418 | min-document "^2.19.0" 1419 | process "~0.5.1" 1420 | 1421 | globals@^9.0.0: 1422 | version "9.17.0" 1423 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1424 | 1425 | glogg@^1.0.0: 1426 | version "1.0.0" 1427 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 1428 | dependencies: 1429 | sparkles "^1.0.0" 1430 | 1431 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1432 | version "4.1.11" 1433 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1434 | 1435 | "graceful-readlink@>= 1.0.0": 1436 | version "1.0.1" 1437 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1438 | 1439 | gulp-util@^3.0.4: 1440 | version "3.0.8" 1441 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 1442 | dependencies: 1443 | array-differ "^1.0.0" 1444 | array-uniq "^1.0.2" 1445 | beeper "^1.0.0" 1446 | chalk "^1.0.0" 1447 | dateformat "^2.0.0" 1448 | fancy-log "^1.1.0" 1449 | gulplog "^1.0.0" 1450 | has-gulplog "^0.1.0" 1451 | lodash._reescape "^3.0.0" 1452 | lodash._reevaluate "^3.0.0" 1453 | lodash._reinterpolate "^3.0.0" 1454 | lodash.template "^3.0.0" 1455 | minimist "^1.1.0" 1456 | multipipe "^0.1.2" 1457 | object-assign "^3.0.0" 1458 | replace-ext "0.0.1" 1459 | through2 "^2.0.0" 1460 | vinyl "^0.5.0" 1461 | 1462 | gulplog@^1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1465 | dependencies: 1466 | glogg "^1.0.0" 1467 | 1468 | har-schema@^1.0.5: 1469 | version "1.0.5" 1470 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1471 | 1472 | har-validator@~4.2.1: 1473 | version "4.2.1" 1474 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1475 | dependencies: 1476 | ajv "^4.9.1" 1477 | har-schema "^1.0.5" 1478 | 1479 | has-ansi@^2.0.0: 1480 | version "2.0.0" 1481 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1482 | dependencies: 1483 | ansi-regex "^2.0.0" 1484 | 1485 | has-gulplog@^0.1.0: 1486 | version "0.1.0" 1487 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1488 | dependencies: 1489 | sparkles "^1.0.0" 1490 | 1491 | has-unicode@^2.0.0: 1492 | version "2.0.1" 1493 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1494 | 1495 | hawk@~3.1.3: 1496 | version "3.1.3" 1497 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1498 | dependencies: 1499 | boom "2.x.x" 1500 | cryptiles "2.x.x" 1501 | hoek "2.x.x" 1502 | sntp "1.x.x" 1503 | 1504 | hoek@2.x.x: 1505 | version "2.16.3" 1506 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1507 | 1508 | home-or-tmp@^2.0.0: 1509 | version "2.0.0" 1510 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1511 | dependencies: 1512 | os-homedir "^1.0.0" 1513 | os-tmpdir "^1.0.1" 1514 | 1515 | hosted-git-info@^2.1.4: 1516 | version "2.4.2" 1517 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1518 | 1519 | http-errors@~1.3.1: 1520 | version "1.3.1" 1521 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.3.1.tgz#197e22cdebd4198585e8694ef6786197b91ed942" 1522 | dependencies: 1523 | inherits "~2.0.1" 1524 | statuses "1" 1525 | 1526 | http-signature@~1.1.0: 1527 | version "1.1.1" 1528 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1529 | dependencies: 1530 | assert-plus "^0.2.0" 1531 | jsprim "^1.2.2" 1532 | sshpk "^1.7.0" 1533 | 1534 | iconv-lite@0.4.11: 1535 | version "0.4.11" 1536 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.11.tgz#2ecb42fd294744922209a2e7c404dac8793d8ade" 1537 | 1538 | iconv-lite@0.4.13: 1539 | version "0.4.13" 1540 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1541 | 1542 | iconv-lite@~0.4.13: 1543 | version "0.4.17" 1544 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d" 1545 | 1546 | image-size@^0.3.5: 1547 | version "0.3.5" 1548 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.3.5.tgz#83240eab2fb5b00b04aab8c74b0471e9cba7ad8c" 1549 | 1550 | immutable@~3.7.6: 1551 | version "3.7.6" 1552 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" 1553 | 1554 | imurmurhash@^0.1.4: 1555 | version "0.1.4" 1556 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1557 | 1558 | inflight@^1.0.4: 1559 | version "1.0.6" 1560 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1561 | dependencies: 1562 | once "^1.3.0" 1563 | wrappy "1" 1564 | 1565 | inherits@2, inherits@^2.0.3, inherits@~2.0.1: 1566 | version "2.0.3" 1567 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1568 | 1569 | inquirer@^0.12.0: 1570 | version "0.12.0" 1571 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1572 | dependencies: 1573 | ansi-escapes "^1.1.0" 1574 | ansi-regex "^2.0.0" 1575 | chalk "^1.0.0" 1576 | cli-cursor "^1.0.1" 1577 | cli-width "^2.0.0" 1578 | figures "^1.3.5" 1579 | lodash "^4.3.0" 1580 | readline2 "^1.0.1" 1581 | run-async "^0.1.0" 1582 | rx-lite "^3.1.2" 1583 | string-width "^1.0.1" 1584 | strip-ansi "^3.0.0" 1585 | through "^2.3.6" 1586 | 1587 | invariant@^2.2.0: 1588 | version "2.2.2" 1589 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1590 | dependencies: 1591 | loose-envify "^1.0.0" 1592 | 1593 | invert-kv@^1.0.0: 1594 | version "1.0.0" 1595 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1596 | 1597 | is-arrayish@^0.2.1: 1598 | version "0.2.1" 1599 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1600 | 1601 | is-buffer@^1.1.5: 1602 | version "1.1.5" 1603 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1604 | 1605 | is-builtin-module@^1.0.0: 1606 | version "1.0.0" 1607 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1608 | dependencies: 1609 | builtin-modules "^1.0.0" 1610 | 1611 | is-dotfile@^1.0.0: 1612 | version "1.0.2" 1613 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1614 | 1615 | is-equal-shallow@^0.1.3: 1616 | version "0.1.3" 1617 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1618 | dependencies: 1619 | is-primitive "^2.0.0" 1620 | 1621 | is-extendable@^0.1.1: 1622 | version "0.1.1" 1623 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1624 | 1625 | is-extglob@^1.0.0: 1626 | version "1.0.0" 1627 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1628 | 1629 | is-finite@^1.0.0: 1630 | version "1.0.2" 1631 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1632 | dependencies: 1633 | number-is-nan "^1.0.0" 1634 | 1635 | is-fullwidth-code-point@^1.0.0: 1636 | version "1.0.0" 1637 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1638 | dependencies: 1639 | number-is-nan "^1.0.0" 1640 | 1641 | is-glob@^2.0.0, is-glob@^2.0.1: 1642 | version "2.0.1" 1643 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1644 | dependencies: 1645 | is-extglob "^1.0.0" 1646 | 1647 | is-number@^2.0.2, is-number@^2.1.0: 1648 | version "2.1.0" 1649 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1650 | dependencies: 1651 | kind-of "^3.0.2" 1652 | 1653 | is-posix-bracket@^0.1.0: 1654 | version "0.1.1" 1655 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1656 | 1657 | is-primitive@^2.0.0: 1658 | version "2.0.0" 1659 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1660 | 1661 | is-stream@^1.0.1: 1662 | version "1.1.0" 1663 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1664 | 1665 | is-typedarray@~1.0.0: 1666 | version "1.0.0" 1667 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1668 | 1669 | is-utf8@^0.2.0: 1670 | version "0.2.1" 1671 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1672 | 1673 | isarray@0.0.1: 1674 | version "0.0.1" 1675 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1676 | 1677 | isarray@1.0.0, isarray@~1.0.0: 1678 | version "1.0.0" 1679 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1680 | 1681 | isemail@1.x.x: 1682 | version "1.2.0" 1683 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-1.2.0.tgz#be03df8cc3e29de4d2c5df6501263f1fa4595e9a" 1684 | 1685 | isexe@^2.0.0: 1686 | version "2.0.0" 1687 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1688 | 1689 | isobject@^2.0.0: 1690 | version "2.1.0" 1691 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1692 | dependencies: 1693 | isarray "1.0.0" 1694 | 1695 | isomorphic-fetch@^2.1.1: 1696 | version "2.2.1" 1697 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1698 | dependencies: 1699 | node-fetch "^1.0.1" 1700 | whatwg-fetch ">=0.10.0" 1701 | 1702 | isstream@~0.1.2: 1703 | version "0.1.2" 1704 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1705 | 1706 | jest-docblock@^20.0.3: 1707 | version "20.0.3" 1708 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1709 | 1710 | jest-haste-map@^20.0.4: 1711 | version "20.0.4" 1712 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 1713 | dependencies: 1714 | fb-watchman "^2.0.0" 1715 | graceful-fs "^4.1.11" 1716 | jest-docblock "^20.0.3" 1717 | micromatch "^2.3.11" 1718 | sane "~1.6.0" 1719 | worker-farm "^1.3.1" 1720 | 1721 | jodid25519@^1.0.0: 1722 | version "1.0.2" 1723 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1724 | dependencies: 1725 | jsbn "~0.1.0" 1726 | 1727 | joi@^6.6.1: 1728 | version "6.10.1" 1729 | resolved "https://registry.yarnpkg.com/joi/-/joi-6.10.1.tgz#4d50c318079122000fe5f16af1ff8e1917b77e06" 1730 | dependencies: 1731 | hoek "2.x.x" 1732 | isemail "1.x.x" 1733 | moment "2.x.x" 1734 | topo "1.x.x" 1735 | 1736 | js-tokens@^3.0.0: 1737 | version "3.0.1" 1738 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1739 | 1740 | jsbn@~0.1.0: 1741 | version "0.1.1" 1742 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1743 | 1744 | jsesc@^1.3.0: 1745 | version "1.3.0" 1746 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1747 | 1748 | jsesc@~0.5.0: 1749 | version "0.5.0" 1750 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1751 | 1752 | json-schema@0.2.3: 1753 | version "0.2.3" 1754 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1755 | 1756 | json-stable-stringify@^1.0.1: 1757 | version "1.0.1" 1758 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1759 | dependencies: 1760 | jsonify "~0.0.0" 1761 | 1762 | json-stringify-safe@~5.0.1: 1763 | version "5.0.1" 1764 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1765 | 1766 | json5@^0.4.0: 1767 | version "0.4.0" 1768 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 1769 | 1770 | json5@^0.5.0: 1771 | version "0.5.1" 1772 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1773 | 1774 | jsonfile@^2.1.0: 1775 | version "2.4.0" 1776 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1777 | optionalDependencies: 1778 | graceful-fs "^4.1.6" 1779 | 1780 | jsonify@~0.0.0: 1781 | version "0.0.0" 1782 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1783 | 1784 | jsprim@^1.2.2: 1785 | version "1.4.0" 1786 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1787 | dependencies: 1788 | assert-plus "1.0.0" 1789 | extsprintf "1.0.2" 1790 | json-schema "0.2.3" 1791 | verror "1.3.6" 1792 | 1793 | kind-of@^3.0.2: 1794 | version "3.2.2" 1795 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1796 | dependencies: 1797 | is-buffer "^1.1.5" 1798 | 1799 | klaw@^1.0.0: 1800 | version "1.3.1" 1801 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1802 | optionalDependencies: 1803 | graceful-fs "^4.1.9" 1804 | 1805 | lazy-cache@^1.0.3: 1806 | version "1.0.4" 1807 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1808 | 1809 | lcid@^1.0.0: 1810 | version "1.0.0" 1811 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1812 | dependencies: 1813 | invert-kv "^1.0.0" 1814 | 1815 | left-pad@^1.1.3: 1816 | version "1.1.3" 1817 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.1.3.tgz#612f61c033f3a9e08e939f1caebeea41b6f3199a" 1818 | 1819 | load-json-file@^1.0.0: 1820 | version "1.1.0" 1821 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1822 | dependencies: 1823 | graceful-fs "^4.1.2" 1824 | parse-json "^2.2.0" 1825 | pify "^2.0.0" 1826 | pinkie-promise "^2.0.0" 1827 | strip-bom "^2.0.0" 1828 | 1829 | lodash._basecopy@^3.0.0: 1830 | version "3.0.1" 1831 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1832 | 1833 | lodash._basetostring@^3.0.0: 1834 | version "3.0.1" 1835 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1836 | 1837 | lodash._basevalues@^3.0.0: 1838 | version "3.0.0" 1839 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1840 | 1841 | lodash._getnative@^3.0.0: 1842 | version "3.9.1" 1843 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1844 | 1845 | lodash._isiterateecall@^3.0.0: 1846 | version "3.0.9" 1847 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1848 | 1849 | lodash._reescape@^3.0.0: 1850 | version "3.0.0" 1851 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1852 | 1853 | lodash._reevaluate@^3.0.0: 1854 | version "3.0.0" 1855 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1856 | 1857 | lodash._reinterpolate@^3.0.0: 1858 | version "3.0.0" 1859 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1860 | 1861 | lodash._root@^3.0.0: 1862 | version "3.0.1" 1863 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1864 | 1865 | lodash.escape@^3.0.0: 1866 | version "3.2.0" 1867 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1868 | dependencies: 1869 | lodash._root "^3.0.0" 1870 | 1871 | lodash.isarguments@^3.0.0: 1872 | version "3.1.0" 1873 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1874 | 1875 | lodash.isarray@^3.0.0: 1876 | version "3.0.4" 1877 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1878 | 1879 | lodash.keys@^3.0.0: 1880 | version "3.1.2" 1881 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1882 | dependencies: 1883 | lodash._getnative "^3.0.0" 1884 | lodash.isarguments "^3.0.0" 1885 | lodash.isarray "^3.0.0" 1886 | 1887 | lodash.pad@^4.1.0: 1888 | version "4.5.1" 1889 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 1890 | 1891 | lodash.padend@^4.1.0: 1892 | version "4.6.1" 1893 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 1894 | 1895 | lodash.padstart@^4.1.0: 1896 | version "4.6.1" 1897 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 1898 | 1899 | lodash.restparam@^3.0.0: 1900 | version "3.6.1" 1901 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1902 | 1903 | lodash.template@^3.0.0: 1904 | version "3.6.2" 1905 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1906 | dependencies: 1907 | lodash._basecopy "^3.0.0" 1908 | lodash._basetostring "^3.0.0" 1909 | lodash._basevalues "^3.0.0" 1910 | lodash._isiterateecall "^3.0.0" 1911 | lodash._reinterpolate "^3.0.0" 1912 | lodash.escape "^3.0.0" 1913 | lodash.keys "^3.0.0" 1914 | lodash.restparam "^3.0.0" 1915 | lodash.templatesettings "^3.0.0" 1916 | 1917 | lodash.templatesettings@^3.0.0: 1918 | version "3.1.1" 1919 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1920 | dependencies: 1921 | lodash._reinterpolate "^3.0.0" 1922 | lodash.escape "^3.0.0" 1923 | 1924 | lodash@^3.5.0: 1925 | version "3.10.1" 1926 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1927 | 1928 | lodash@^4.14.0, lodash@^4.16.6, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.6.1: 1929 | version "4.17.4" 1930 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1931 | 1932 | longest@^1.0.1: 1933 | version "1.0.1" 1934 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1935 | 1936 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 1937 | version "1.3.1" 1938 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1939 | dependencies: 1940 | js-tokens "^3.0.0" 1941 | 1942 | lru-cache@^4.0.1: 1943 | version "4.0.2" 1944 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 1945 | dependencies: 1946 | pseudomap "^1.0.1" 1947 | yallist "^2.0.0" 1948 | 1949 | makeerror@1.0.x: 1950 | version "1.0.11" 1951 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1952 | dependencies: 1953 | tmpl "1.0.x" 1954 | 1955 | media-typer@0.3.0: 1956 | version "0.3.0" 1957 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1958 | 1959 | merge@^1.1.3: 1960 | version "1.2.0" 1961 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1962 | 1963 | method-override@~2.3.5: 1964 | version "2.3.9" 1965 | resolved "https://registry.yarnpkg.com/method-override/-/method-override-2.3.9.tgz#bd151f2ce34cf01a76ca400ab95c012b102d8f71" 1966 | dependencies: 1967 | debug "2.6.8" 1968 | methods "~1.1.2" 1969 | parseurl "~1.3.1" 1970 | vary "~1.1.1" 1971 | 1972 | methods@~1.1.2: 1973 | version "1.1.2" 1974 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1975 | 1976 | micromatch@^2.1.5, micromatch@^2.3.11: 1977 | version "2.3.11" 1978 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1979 | dependencies: 1980 | arr-diff "^2.0.0" 1981 | array-unique "^0.2.1" 1982 | braces "^1.8.2" 1983 | expand-brackets "^0.1.4" 1984 | extglob "^0.3.1" 1985 | filename-regex "^2.0.0" 1986 | is-extglob "^1.0.0" 1987 | is-glob "^2.0.1" 1988 | kind-of "^3.0.2" 1989 | normalize-path "^2.0.1" 1990 | object.omit "^2.0.0" 1991 | parse-glob "^3.0.4" 1992 | regex-cache "^0.4.2" 1993 | 1994 | "mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: 1995 | version "1.27.0" 1996 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1997 | 1998 | mime-db@~1.23.0: 1999 | version "1.23.0" 2000 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659" 2001 | 2002 | mime-types@2.1.11: 2003 | version "2.1.11" 2004 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c" 2005 | dependencies: 2006 | mime-db "~1.23.0" 2007 | 2008 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.6, mime-types@~2.1.7, mime-types@~2.1.9: 2009 | version "2.1.15" 2010 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2011 | dependencies: 2012 | mime-db "~1.27.0" 2013 | 2014 | mime@1.3.4: 2015 | version "1.3.4" 2016 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2017 | 2018 | mime@^1.3.4: 2019 | version "1.3.6" 2020 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" 2021 | 2022 | min-document@^2.19.0: 2023 | version "2.19.0" 2024 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 2025 | dependencies: 2026 | dom-walk "^0.1.0" 2027 | 2028 | minimatch@^3.0.2, minimatch@^3.0.4: 2029 | version "3.0.4" 2030 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2031 | dependencies: 2032 | brace-expansion "^1.1.7" 2033 | 2034 | minimist@0.0.8, minimist@~0.0.1: 2035 | version "0.0.8" 2036 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2037 | 2038 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: 2039 | version "1.2.0" 2040 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2041 | 2042 | mkdirp@^0.5.1: 2043 | version "0.5.1" 2044 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2045 | dependencies: 2046 | minimist "0.0.8" 2047 | 2048 | moment@2.x.x: 2049 | version "2.18.1" 2050 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f" 2051 | 2052 | morgan@~1.6.1: 2053 | version "1.6.1" 2054 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.6.1.tgz#5fd818398c6819cba28a7cd6664f292fe1c0bbf2" 2055 | dependencies: 2056 | basic-auth "~1.0.3" 2057 | debug "~2.2.0" 2058 | depd "~1.0.1" 2059 | on-finished "~2.3.0" 2060 | on-headers "~1.0.0" 2061 | 2062 | ms@0.7.1: 2063 | version "0.7.1" 2064 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2065 | 2066 | ms@0.7.2: 2067 | version "0.7.2" 2068 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2069 | 2070 | ms@2.0.0: 2071 | version "2.0.0" 2072 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2073 | 2074 | multiparty@3.3.2: 2075 | version "3.3.2" 2076 | resolved "https://registry.yarnpkg.com/multiparty/-/multiparty-3.3.2.tgz#35de6804dc19643e5249f3d3e3bdc6c8ce301d3f" 2077 | dependencies: 2078 | readable-stream "~1.1.9" 2079 | stream-counter "~0.2.0" 2080 | 2081 | multipipe@^0.1.2: 2082 | version "0.1.2" 2083 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 2084 | dependencies: 2085 | duplexer2 "0.0.2" 2086 | 2087 | mute-stream@0.0.5: 2088 | version "0.0.5" 2089 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2090 | 2091 | negotiator@0.5.3: 2092 | version "0.5.3" 2093 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.5.3.tgz#269d5c476810ec92edbe7b6c2f28316384f9a7e8" 2094 | 2095 | negotiator@0.6.1: 2096 | version "0.6.1" 2097 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2098 | 2099 | node-fetch@^1.0.1, node-fetch@^1.3.3: 2100 | version "1.7.0" 2101 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.0.tgz#3ff6c56544f9b7fb00682338bb55ee6f54a8a0ef" 2102 | dependencies: 2103 | encoding "^0.1.11" 2104 | is-stream "^1.0.1" 2105 | 2106 | node-int64@^0.4.0: 2107 | version "0.4.0" 2108 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2109 | 2110 | normalize-package-data@^2.3.2: 2111 | version "2.3.8" 2112 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2113 | dependencies: 2114 | hosted-git-info "^2.1.4" 2115 | is-builtin-module "^1.0.0" 2116 | semver "2 || 3 || 4 || 5" 2117 | validate-npm-package-license "^3.0.1" 2118 | 2119 | normalize-path@^2.0.1: 2120 | version "2.1.1" 2121 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2122 | dependencies: 2123 | remove-trailing-separator "^1.0.1" 2124 | 2125 | npmlog@^2.0.4: 2126 | version "2.0.4" 2127 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" 2128 | dependencies: 2129 | ansi "~0.3.1" 2130 | are-we-there-yet "~1.1.2" 2131 | gauge "~1.2.5" 2132 | 2133 | number-is-nan@^1.0.0: 2134 | version "1.0.1" 2135 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2136 | 2137 | oauth-sign@~0.8.1: 2138 | version "0.8.2" 2139 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2140 | 2141 | object-assign@^3.0.0: 2142 | version "3.0.0" 2143 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2144 | 2145 | object-assign@^4.0.1, object-assign@^4.1.0: 2146 | version "4.1.1" 2147 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2148 | 2149 | object.omit@^2.0.0: 2150 | version "2.0.1" 2151 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2152 | dependencies: 2153 | for-own "^0.1.4" 2154 | is-extendable "^0.1.1" 2155 | 2156 | on-finished@~2.3.0: 2157 | version "2.3.0" 2158 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2159 | dependencies: 2160 | ee-first "1.1.1" 2161 | 2162 | on-headers@~1.0.0, on-headers@~1.0.1: 2163 | version "1.0.1" 2164 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2165 | 2166 | once@^1.3.0: 2167 | version "1.4.0" 2168 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2169 | dependencies: 2170 | wrappy "1" 2171 | 2172 | onetime@^1.0.0: 2173 | version "1.1.0" 2174 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2175 | 2176 | opn@^3.0.2: 2177 | version "3.0.3" 2178 | resolved "https://registry.yarnpkg.com/opn/-/opn-3.0.3.tgz#b6d99e7399f78d65c3baaffef1fb288e9b85243a" 2179 | dependencies: 2180 | object-assign "^4.0.1" 2181 | 2182 | optimist@^0.6.1: 2183 | version "0.6.1" 2184 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2185 | dependencies: 2186 | minimist "~0.0.1" 2187 | wordwrap "~0.0.2" 2188 | 2189 | options@>=0.0.5: 2190 | version "0.0.6" 2191 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2192 | 2193 | os-homedir@^1.0.0: 2194 | version "1.0.2" 2195 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2196 | 2197 | os-locale@^1.4.0: 2198 | version "1.4.0" 2199 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2200 | dependencies: 2201 | lcid "^1.0.0" 2202 | 2203 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2204 | version "1.0.2" 2205 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2206 | 2207 | parse-glob@^3.0.4: 2208 | version "3.0.4" 2209 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2210 | dependencies: 2211 | glob-base "^0.3.0" 2212 | is-dotfile "^1.0.0" 2213 | is-extglob "^1.0.0" 2214 | is-glob "^2.0.0" 2215 | 2216 | parse-json@^2.2.0: 2217 | version "2.2.0" 2218 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2219 | dependencies: 2220 | error-ex "^1.2.0" 2221 | 2222 | parseurl@~1.3.0, parseurl@~1.3.1: 2223 | version "1.3.1" 2224 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2225 | 2226 | path-exists@^2.0.0: 2227 | version "2.1.0" 2228 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2229 | dependencies: 2230 | pinkie-promise "^2.0.0" 2231 | 2232 | path-is-absolute@^1.0.0: 2233 | version "1.0.1" 2234 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2235 | 2236 | path-type@^1.0.0: 2237 | version "1.1.0" 2238 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2239 | dependencies: 2240 | graceful-fs "^4.1.2" 2241 | pify "^2.0.0" 2242 | pinkie-promise "^2.0.0" 2243 | 2244 | pause@0.1.0: 2245 | version "0.1.0" 2246 | resolved "https://registry.yarnpkg.com/pause/-/pause-0.1.0.tgz#ebc8a4a8619ff0b8a81ac1513c3434ff469fdb74" 2247 | 2248 | pegjs@^0.10.0: 2249 | version "0.10.0" 2250 | resolved "https://registry.yarnpkg.com/pegjs/-/pegjs-0.10.0.tgz#cf8bafae6eddff4b5a7efb185269eaaf4610ddbd" 2251 | 2252 | performance-now@^0.2.0: 2253 | version "0.2.0" 2254 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2255 | 2256 | pify@^2.0.0: 2257 | version "2.3.0" 2258 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2259 | 2260 | pinkie-promise@^2.0.0: 2261 | version "2.0.1" 2262 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2263 | dependencies: 2264 | pinkie "^2.0.0" 2265 | 2266 | pinkie@^2.0.0: 2267 | version "2.0.4" 2268 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2269 | 2270 | plist@2.0.1: 2271 | version "2.0.1" 2272 | resolved "https://registry.yarnpkg.com/plist/-/plist-2.0.1.tgz#0a32ca9481b1c364e92e18dc55c876de9d01da8b" 2273 | dependencies: 2274 | base64-js "1.1.2" 2275 | xmlbuilder "8.2.2" 2276 | xmldom "0.1.x" 2277 | 2278 | plist@^1.2.0: 2279 | version "1.2.0" 2280 | resolved "https://registry.yarnpkg.com/plist/-/plist-1.2.0.tgz#084b5093ddc92506e259f874b8d9b1afb8c79593" 2281 | dependencies: 2282 | base64-js "0.0.8" 2283 | util-deprecate "1.0.2" 2284 | xmlbuilder "4.0.0" 2285 | xmldom "0.1.x" 2286 | 2287 | preserve@^0.2.0: 2288 | version "0.2.0" 2289 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2290 | 2291 | pretty-format@^4.2.1: 2292 | version "4.3.1" 2293 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-4.3.1.tgz#530be5c42b3c05b36414a7a2a4337aa80acd0e8d" 2294 | 2295 | private@^0.1.6: 2296 | version "0.1.7" 2297 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2298 | 2299 | process-nextick-args@~1.0.6: 2300 | version "1.0.7" 2301 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2302 | 2303 | process@~0.5.1: 2304 | version "0.5.2" 2305 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 2306 | 2307 | promise@^7.1.1: 2308 | version "7.1.1" 2309 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2310 | dependencies: 2311 | asap "~2.0.3" 2312 | 2313 | prop-types@^15.5.10: 2314 | version "15.5.10" 2315 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 2316 | dependencies: 2317 | fbjs "^0.8.9" 2318 | loose-envify "^1.3.1" 2319 | 2320 | prr@~0.0.0: 2321 | version "0.0.0" 2322 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2323 | 2324 | pseudomap@^1.0.1: 2325 | version "1.0.2" 2326 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2327 | 2328 | punycode@^1.4.1: 2329 | version "1.4.1" 2330 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2331 | 2332 | qs@4.0.0: 2333 | version "4.0.0" 2334 | resolved "https://registry.yarnpkg.com/qs/-/qs-4.0.0.tgz#c31d9b74ec27df75e543a86c78728ed8d4623607" 2335 | 2336 | qs@~6.4.0: 2337 | version "6.4.0" 2338 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2339 | 2340 | random-bytes@~1.0.0: 2341 | version "1.0.0" 2342 | resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" 2343 | 2344 | randomatic@^1.1.3: 2345 | version "1.1.6" 2346 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2347 | dependencies: 2348 | is-number "^2.0.2" 2349 | kind-of "^3.0.2" 2350 | 2351 | range-parser@~1.0.3: 2352 | version "1.0.3" 2353 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" 2354 | 2355 | raw-body@~2.1.2: 2356 | version "2.1.7" 2357 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.1.7.tgz#adfeace2e4fb3098058014d08c072dcc59758774" 2358 | dependencies: 2359 | bytes "2.4.0" 2360 | iconv-lite "0.4.13" 2361 | unpipe "1.0.0" 2362 | 2363 | react-clone-referenced-element@^1.0.1: 2364 | version "1.0.1" 2365 | resolved "https://registry.yarnpkg.com/react-clone-referenced-element/-/react-clone-referenced-element-1.0.1.tgz#2bba8c69404c5e4a944398600bcc4c941f860682" 2366 | 2367 | react-deep-force-update@^1.0.0: 2368 | version "1.0.1" 2369 | resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.0.1.tgz#f911b5be1d2a6fe387507dd6e9a767aa2924b4c7" 2370 | 2371 | react-devtools-core@^2.0.8: 2372 | version "2.2.1" 2373 | resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-2.2.1.tgz#3e9cfca76e08333226f365bcf870f77dfbd542cd" 2374 | dependencies: 2375 | shell-quote "^1.6.1" 2376 | ws "^2.0.3" 2377 | 2378 | react-native@0.44.2: 2379 | version "0.44.2" 2380 | resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.44.2.tgz#c8dfb747b88e6276a991980c57c50b860a98cf0e" 2381 | dependencies: 2382 | absolute-path "^0.0.0" 2383 | art "^0.10.0" 2384 | async "^2.0.1" 2385 | babel-core "^6.21.0" 2386 | babel-generator "^6.21.0" 2387 | babel-plugin-external-helpers "^6.18.0" 2388 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 2389 | babel-plugin-transform-async-to-generator "6.16.0" 2390 | babel-plugin-transform-flow-strip-types "^6.21.0" 2391 | babel-plugin-transform-object-rest-spread "^6.20.2" 2392 | babel-polyfill "^6.20.0" 2393 | babel-preset-es2015-node "^6.1.1" 2394 | babel-preset-fbjs "^2.1.0" 2395 | babel-preset-react-native "^1.9.1" 2396 | babel-register "^6.18.0" 2397 | babel-runtime "^6.20.0" 2398 | babel-traverse "^6.21.0" 2399 | babel-types "^6.21.0" 2400 | babylon "^6.16.1" 2401 | base64-js "^1.1.2" 2402 | bser "^1.0.2" 2403 | chalk "^1.1.1" 2404 | commander "^2.9.0" 2405 | concat-stream "^1.6.0" 2406 | connect "^2.8.3" 2407 | core-js "^2.2.2" 2408 | debug "^2.2.0" 2409 | denodeify "^1.2.1" 2410 | event-target-shim "^1.0.5" 2411 | fbjs "~0.8.9" 2412 | fbjs-scripts "^0.7.0" 2413 | form-data "^2.1.1" 2414 | fs-extra "^1.0.0" 2415 | glob "^7.1.1" 2416 | graceful-fs "^4.1.3" 2417 | image-size "^0.3.5" 2418 | immutable "~3.7.6" 2419 | imurmurhash "^0.1.4" 2420 | inquirer "^0.12.0" 2421 | jest-haste-map "^20.0.4" 2422 | joi "^6.6.1" 2423 | json-stable-stringify "^1.0.1" 2424 | json5 "^0.4.0" 2425 | left-pad "^1.1.3" 2426 | lodash "^4.16.6" 2427 | mime "^1.3.4" 2428 | mime-types "2.1.11" 2429 | minimist "^1.2.0" 2430 | mkdirp "^0.5.1" 2431 | node-fetch "^1.3.3" 2432 | npmlog "^2.0.4" 2433 | opn "^3.0.2" 2434 | optimist "^0.6.1" 2435 | plist "^1.2.0" 2436 | pretty-format "^4.2.1" 2437 | promise "^7.1.1" 2438 | react-clone-referenced-element "^1.0.1" 2439 | react-devtools-core "^2.0.8" 2440 | react-timer-mixin "^0.13.2" 2441 | react-transform-hmr "^1.0.4" 2442 | rebound "^0.0.13" 2443 | regenerator-runtime "^0.9.5" 2444 | request "^2.79.0" 2445 | rimraf "^2.5.4" 2446 | sane "~1.4.1" 2447 | semver "^5.0.3" 2448 | shell-quote "1.6.1" 2449 | source-map "^0.5.6" 2450 | stacktrace-parser "^0.1.3" 2451 | temp "0.8.3" 2452 | throat "^3.0.0" 2453 | uglify-js "2.7.5" 2454 | whatwg-fetch "^1.0.0" 2455 | wordwrap "^1.0.0" 2456 | worker-farm "^1.3.1" 2457 | write-file-atomic "^1.2.0" 2458 | ws "^1.1.0" 2459 | xcode "^0.9.1" 2460 | xmldoc "^0.4.0" 2461 | xpipe "^1.0.5" 2462 | yargs "^6.4.0" 2463 | 2464 | react-proxy@^1.1.7: 2465 | version "1.1.8" 2466 | resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a" 2467 | dependencies: 2468 | lodash "^4.6.1" 2469 | react-deep-force-update "^1.0.0" 2470 | 2471 | react-timer-mixin@^0.13.2: 2472 | version "0.13.3" 2473 | resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.3.tgz#0da8b9f807ec07dc3e854d082c737c65605b3d22" 2474 | 2475 | react-transform-hmr@^1.0.4: 2476 | version "1.0.4" 2477 | resolved "https://registry.yarnpkg.com/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb" 2478 | dependencies: 2479 | global "^4.3.0" 2480 | react-proxy "^1.1.7" 2481 | 2482 | react@16.0.0-alpha.6: 2483 | version "16.0.0-alpha.6" 2484 | resolved "https://registry.yarnpkg.com/react/-/react-16.0.0-alpha.6.tgz#2ccb1afb4425ccc12f78a123a666f2e4c141adb9" 2485 | dependencies: 2486 | fbjs "^0.8.9" 2487 | loose-envify "^1.1.0" 2488 | object-assign "^4.1.0" 2489 | 2490 | read-pkg-up@^1.0.1: 2491 | version "1.0.1" 2492 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2493 | dependencies: 2494 | find-up "^1.0.0" 2495 | read-pkg "^1.0.0" 2496 | 2497 | read-pkg@^1.0.0: 2498 | version "1.1.0" 2499 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2500 | dependencies: 2501 | load-json-file "^1.0.0" 2502 | normalize-package-data "^2.3.2" 2503 | path-type "^1.0.0" 2504 | 2505 | readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2: 2506 | version "2.2.9" 2507 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2508 | dependencies: 2509 | buffer-shims "~1.0.0" 2510 | core-util-is "~1.0.0" 2511 | inherits "~2.0.1" 2512 | isarray "~1.0.0" 2513 | process-nextick-args "~1.0.6" 2514 | string_decoder "~1.0.0" 2515 | util-deprecate "~1.0.1" 2516 | 2517 | readable-stream@~1.1.8, readable-stream@~1.1.9: 2518 | version "1.1.14" 2519 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2520 | dependencies: 2521 | core-util-is "~1.0.0" 2522 | inherits "~2.0.1" 2523 | isarray "0.0.1" 2524 | string_decoder "~0.10.x" 2525 | 2526 | readline2@^1.0.1: 2527 | version "1.0.1" 2528 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2529 | dependencies: 2530 | code-point-at "^1.0.0" 2531 | is-fullwidth-code-point "^1.0.0" 2532 | mute-stream "0.0.5" 2533 | 2534 | rebound@^0.0.13: 2535 | version "0.0.13" 2536 | resolved "https://registry.yarnpkg.com/rebound/-/rebound-0.0.13.tgz#4a225254caf7da756797b19c5817bf7a7941fac1" 2537 | 2538 | regenerate@^1.2.1: 2539 | version "1.3.2" 2540 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2541 | 2542 | regenerator-runtime@^0.10.0: 2543 | version "0.10.5" 2544 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2545 | 2546 | regenerator-runtime@^0.9.5: 2547 | version "0.9.6" 2548 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 2549 | 2550 | regenerator-transform@0.9.11: 2551 | version "0.9.11" 2552 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2553 | dependencies: 2554 | babel-runtime "^6.18.0" 2555 | babel-types "^6.19.0" 2556 | private "^0.1.6" 2557 | 2558 | regex-cache@^0.4.2: 2559 | version "0.4.3" 2560 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2561 | dependencies: 2562 | is-equal-shallow "^0.1.3" 2563 | is-primitive "^2.0.0" 2564 | 2565 | regexpu-core@^2.0.0: 2566 | version "2.0.0" 2567 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2568 | dependencies: 2569 | regenerate "^1.2.1" 2570 | regjsgen "^0.2.0" 2571 | regjsparser "^0.1.4" 2572 | 2573 | regjsgen@^0.2.0: 2574 | version "0.2.0" 2575 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2576 | 2577 | regjsparser@^0.1.4: 2578 | version "0.1.5" 2579 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2580 | dependencies: 2581 | jsesc "~0.5.0" 2582 | 2583 | remove-trailing-separator@^1.0.1: 2584 | version "1.0.1" 2585 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2586 | 2587 | repeat-element@^1.1.2: 2588 | version "1.1.2" 2589 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2590 | 2591 | repeat-string@^1.5.2: 2592 | version "1.6.1" 2593 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2594 | 2595 | repeating@^2.0.0: 2596 | version "2.0.1" 2597 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2598 | dependencies: 2599 | is-finite "^1.0.0" 2600 | 2601 | replace-ext@0.0.1: 2602 | version "0.0.1" 2603 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 2604 | 2605 | request@^2.79.0: 2606 | version "2.81.0" 2607 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2608 | dependencies: 2609 | aws-sign2 "~0.6.0" 2610 | aws4 "^1.2.1" 2611 | caseless "~0.12.0" 2612 | combined-stream "~1.0.5" 2613 | extend "~3.0.0" 2614 | forever-agent "~0.6.1" 2615 | form-data "~2.1.1" 2616 | har-validator "~4.2.1" 2617 | hawk "~3.1.3" 2618 | http-signature "~1.1.0" 2619 | is-typedarray "~1.0.0" 2620 | isstream "~0.1.2" 2621 | json-stringify-safe "~5.0.1" 2622 | mime-types "~2.1.7" 2623 | oauth-sign "~0.8.1" 2624 | performance-now "^0.2.0" 2625 | qs "~6.4.0" 2626 | safe-buffer "^5.0.1" 2627 | stringstream "~0.0.4" 2628 | tough-cookie "~2.3.0" 2629 | tunnel-agent "^0.6.0" 2630 | uuid "^3.0.0" 2631 | 2632 | require-directory@^2.1.1: 2633 | version "2.1.1" 2634 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2635 | 2636 | require-main-filename@^1.0.1: 2637 | version "1.0.1" 2638 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2639 | 2640 | response-time@~2.3.1: 2641 | version "2.3.2" 2642 | resolved "https://registry.yarnpkg.com/response-time/-/response-time-2.3.2.tgz#ffa71bab952d62f7c1d49b7434355fbc68dffc5a" 2643 | dependencies: 2644 | depd "~1.1.0" 2645 | on-headers "~1.0.1" 2646 | 2647 | restore-cursor@^1.0.1: 2648 | version "1.0.1" 2649 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2650 | dependencies: 2651 | exit-hook "^1.0.0" 2652 | onetime "^1.0.0" 2653 | 2654 | right-align@^0.1.1: 2655 | version "0.1.3" 2656 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2657 | dependencies: 2658 | align-text "^0.1.1" 2659 | 2660 | rimraf@^2.5.4: 2661 | version "2.6.1" 2662 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2663 | dependencies: 2664 | glob "^7.0.5" 2665 | 2666 | rimraf@~2.2.6: 2667 | version "2.2.8" 2668 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 2669 | 2670 | rndm@1.2.0: 2671 | version "1.2.0" 2672 | resolved "https://registry.yarnpkg.com/rndm/-/rndm-1.2.0.tgz#f33fe9cfb52bbfd520aa18323bc65db110a1b76c" 2673 | 2674 | run-async@^0.1.0: 2675 | version "0.1.0" 2676 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2677 | dependencies: 2678 | once "^1.3.0" 2679 | 2680 | rx-lite@^3.1.2: 2681 | version "3.1.2" 2682 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2683 | 2684 | safe-buffer@^5.0.1, safe-buffer@~5.0.1: 2685 | version "5.0.1" 2686 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2687 | 2688 | sane@~1.4.1: 2689 | version "1.4.1" 2690 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.4.1.tgz#88f763d74040f5f0c256b6163db399bf110ac715" 2691 | dependencies: 2692 | exec-sh "^0.2.0" 2693 | fb-watchman "^1.8.0" 2694 | minimatch "^3.0.2" 2695 | minimist "^1.1.1" 2696 | walker "~1.0.5" 2697 | watch "~0.10.0" 2698 | 2699 | sane@~1.6.0: 2700 | version "1.6.0" 2701 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2702 | dependencies: 2703 | anymatch "^1.3.0" 2704 | exec-sh "^0.2.0" 2705 | fb-watchman "^1.8.0" 2706 | minimatch "^3.0.2" 2707 | minimist "^1.1.1" 2708 | walker "~1.0.5" 2709 | watch "~0.10.0" 2710 | 2711 | sax@~1.1.1: 2712 | version "1.1.6" 2713 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.1.6.tgz#5d616be8a5e607d54e114afae55b7eaf2fcc3240" 2714 | 2715 | "semver@2 || 3 || 4 || 5", semver@5.x, semver@^5.0.3, semver@^5.1.0: 2716 | version "5.3.0" 2717 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2718 | 2719 | send@0.13.2: 2720 | version "0.13.2" 2721 | resolved "https://registry.yarnpkg.com/send/-/send-0.13.2.tgz#765e7607c8055452bba6f0b052595350986036de" 2722 | dependencies: 2723 | debug "~2.2.0" 2724 | depd "~1.1.0" 2725 | destroy "~1.0.4" 2726 | escape-html "~1.0.3" 2727 | etag "~1.7.0" 2728 | fresh "0.3.0" 2729 | http-errors "~1.3.1" 2730 | mime "1.3.4" 2731 | ms "0.7.1" 2732 | on-finished "~2.3.0" 2733 | range-parser "~1.0.3" 2734 | statuses "~1.2.1" 2735 | 2736 | serve-favicon@~2.3.0: 2737 | version "2.3.2" 2738 | resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.3.2.tgz#dd419e268de012ab72b319d337f2105013f9381f" 2739 | dependencies: 2740 | etag "~1.7.0" 2741 | fresh "0.3.0" 2742 | ms "0.7.2" 2743 | parseurl "~1.3.1" 2744 | 2745 | serve-index@~1.7.2: 2746 | version "1.7.3" 2747 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.7.3.tgz#7a057fc6ee28dc63f64566e5fa57b111a86aecd2" 2748 | dependencies: 2749 | accepts "~1.2.13" 2750 | batch "0.5.3" 2751 | debug "~2.2.0" 2752 | escape-html "~1.0.3" 2753 | http-errors "~1.3.1" 2754 | mime-types "~2.1.9" 2755 | parseurl "~1.3.1" 2756 | 2757 | serve-static@~1.10.0: 2758 | version "1.10.3" 2759 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.10.3.tgz#ce5a6ecd3101fed5ec09827dac22a9c29bfb0535" 2760 | dependencies: 2761 | escape-html "~1.0.3" 2762 | parseurl "~1.3.1" 2763 | send "0.13.2" 2764 | 2765 | set-blocking@^2.0.0: 2766 | version "2.0.0" 2767 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2768 | 2769 | setimmediate@^1.0.5: 2770 | version "1.0.5" 2771 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2772 | 2773 | shell-quote@1.6.1, shell-quote@^1.6.1: 2774 | version "1.6.1" 2775 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 2776 | dependencies: 2777 | array-filter "~0.0.0" 2778 | array-map "~0.0.0" 2779 | array-reduce "~0.0.0" 2780 | jsonify "~0.0.0" 2781 | 2782 | simple-plist@^0.2.1: 2783 | version "0.2.1" 2784 | resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-0.2.1.tgz#71766db352326928cf3a807242ba762322636723" 2785 | dependencies: 2786 | bplist-creator "0.0.7" 2787 | bplist-parser "0.1.1" 2788 | plist "2.0.1" 2789 | 2790 | slash@^1.0.0: 2791 | version "1.0.0" 2792 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2793 | 2794 | slide@^1.1.5: 2795 | version "1.1.6" 2796 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2797 | 2798 | sntp@1.x.x: 2799 | version "1.0.9" 2800 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2801 | dependencies: 2802 | hoek "2.x.x" 2803 | 2804 | source-map-support@^0.4.2: 2805 | version "0.4.15" 2806 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2807 | dependencies: 2808 | source-map "^0.5.6" 2809 | 2810 | source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1: 2811 | version "0.5.6" 2812 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2813 | 2814 | sparkles@^1.0.0: 2815 | version "1.0.0" 2816 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 2817 | 2818 | spdx-correct@~1.0.0: 2819 | version "1.0.2" 2820 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2821 | dependencies: 2822 | spdx-license-ids "^1.0.2" 2823 | 2824 | spdx-expression-parse@~1.0.0: 2825 | version "1.0.4" 2826 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2827 | 2828 | spdx-license-ids@^1.0.2: 2829 | version "1.2.2" 2830 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2831 | 2832 | sshpk@^1.7.0: 2833 | version "1.13.0" 2834 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2835 | dependencies: 2836 | asn1 "~0.2.3" 2837 | assert-plus "^1.0.0" 2838 | dashdash "^1.12.0" 2839 | getpass "^0.1.1" 2840 | optionalDependencies: 2841 | bcrypt-pbkdf "^1.0.0" 2842 | ecc-jsbn "~0.1.1" 2843 | jodid25519 "^1.0.0" 2844 | jsbn "~0.1.0" 2845 | tweetnacl "~0.14.0" 2846 | 2847 | stacktrace-parser@^0.1.3: 2848 | version "0.1.4" 2849 | resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.4.tgz#01397922e5f62ecf30845522c95c4fe1d25e7d4e" 2850 | 2851 | statuses@1: 2852 | version "1.3.1" 2853 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2854 | 2855 | statuses@~1.2.1: 2856 | version "1.2.1" 2857 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.2.1.tgz#dded45cc18256d51ed40aec142489d5c61026d28" 2858 | 2859 | stream-buffers@~2.2.0: 2860 | version "2.2.0" 2861 | resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" 2862 | 2863 | stream-counter@~0.2.0: 2864 | version "0.2.0" 2865 | resolved "https://registry.yarnpkg.com/stream-counter/-/stream-counter-0.2.0.tgz#ded266556319c8b0e222812b9cf3b26fa7d947de" 2866 | dependencies: 2867 | readable-stream "~1.1.8" 2868 | 2869 | string-width@^1.0.1, string-width@^1.0.2: 2870 | version "1.0.2" 2871 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2872 | dependencies: 2873 | code-point-at "^1.0.0" 2874 | is-fullwidth-code-point "^1.0.0" 2875 | strip-ansi "^3.0.0" 2876 | 2877 | string_decoder@~0.10.x: 2878 | version "0.10.31" 2879 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2880 | 2881 | string_decoder@~1.0.0: 2882 | version "1.0.1" 2883 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 2884 | dependencies: 2885 | safe-buffer "^5.0.1" 2886 | 2887 | stringstream@~0.0.4: 2888 | version "0.0.5" 2889 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2890 | 2891 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2892 | version "3.0.1" 2893 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2894 | dependencies: 2895 | ansi-regex "^2.0.0" 2896 | 2897 | strip-bom@^2.0.0: 2898 | version "2.0.0" 2899 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2900 | dependencies: 2901 | is-utf8 "^0.2.0" 2902 | 2903 | supports-color@^2.0.0: 2904 | version "2.0.0" 2905 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2906 | 2907 | temp@0.8.3: 2908 | version "0.8.3" 2909 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 2910 | dependencies: 2911 | os-tmpdir "^1.0.0" 2912 | rimraf "~2.2.6" 2913 | 2914 | throat@^3.0.0: 2915 | version "3.0.0" 2916 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 2917 | 2918 | through2@^2.0.0: 2919 | version "2.0.3" 2920 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2921 | dependencies: 2922 | readable-stream "^2.1.5" 2923 | xtend "~4.0.1" 2924 | 2925 | through@^2.3.6: 2926 | version "2.3.8" 2927 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2928 | 2929 | time-stamp@^1.0.0: 2930 | version "1.1.0" 2931 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 2932 | 2933 | tmpl@1.0.x: 2934 | version "1.0.4" 2935 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2936 | 2937 | to-fast-properties@^1.0.1: 2938 | version "1.0.3" 2939 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2940 | 2941 | topo@1.x.x: 2942 | version "1.1.0" 2943 | resolved "https://registry.yarnpkg.com/topo/-/topo-1.1.0.tgz#e9d751615d1bb87dc865db182fa1ca0a5ef536d5" 2944 | dependencies: 2945 | hoek "2.x.x" 2946 | 2947 | tough-cookie@~2.3.0: 2948 | version "2.3.2" 2949 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2950 | dependencies: 2951 | punycode "^1.4.1" 2952 | 2953 | trim-right@^1.0.1: 2954 | version "1.0.1" 2955 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2956 | 2957 | tsscmp@1.0.5: 2958 | version "1.0.5" 2959 | resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.5.tgz#7dc4a33af71581ab4337da91d85ca5427ebd9a97" 2960 | 2961 | tunnel-agent@^0.6.0: 2962 | version "0.6.0" 2963 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2964 | dependencies: 2965 | safe-buffer "^5.0.1" 2966 | 2967 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2968 | version "0.14.5" 2969 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2970 | 2971 | type-is@~1.6.6: 2972 | version "1.6.15" 2973 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 2974 | dependencies: 2975 | media-typer "0.3.0" 2976 | mime-types "~2.1.15" 2977 | 2978 | typedarray@^0.0.6: 2979 | version "0.0.6" 2980 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2981 | 2982 | ua-parser-js@^0.7.9: 2983 | version "0.7.12" 2984 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 2985 | 2986 | uglify-js@2.7.5: 2987 | version "2.7.5" 2988 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 2989 | dependencies: 2990 | async "~0.2.6" 2991 | source-map "~0.5.1" 2992 | uglify-to-browserify "~1.0.0" 2993 | yargs "~3.10.0" 2994 | 2995 | uglify-to-browserify@~1.0.0: 2996 | version "1.0.2" 2997 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2998 | 2999 | uid-safe@2.1.4: 3000 | version "2.1.4" 3001 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.4.tgz#3ad6f38368c6d4c8c75ec17623fb79aa1d071d81" 3002 | dependencies: 3003 | random-bytes "~1.0.0" 3004 | 3005 | uid-safe@~2.0.0: 3006 | version "2.0.0" 3007 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.0.0.tgz#a7f3c6ca64a1f6a5d04ec0ef3e4c3d5367317137" 3008 | dependencies: 3009 | base64-url "1.2.1" 3010 | 3011 | ultron@1.0.x: 3012 | version "1.0.2" 3013 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3014 | 3015 | ultron@~1.1.0: 3016 | version "1.1.0" 3017 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.0.tgz#b07a2e6a541a815fc6a34ccd4533baec307ca864" 3018 | 3019 | unpipe@1.0.0, unpipe@~1.0.0: 3020 | version "1.0.0" 3021 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3022 | 3023 | util-deprecate@1.0.2, util-deprecate@~1.0.1: 3024 | version "1.0.2" 3025 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3026 | 3027 | utils-merge@1.0.0: 3028 | version "1.0.0" 3029 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3030 | 3031 | uuid@3.0.1, uuid@^3.0.0: 3032 | version "3.0.1" 3033 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3034 | 3035 | validate-npm-package-license@^3.0.1: 3036 | version "3.0.1" 3037 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3038 | dependencies: 3039 | spdx-correct "~1.0.0" 3040 | spdx-expression-parse "~1.0.0" 3041 | 3042 | vary@~1.0.1: 3043 | version "1.0.1" 3044 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.0.1.tgz#99e4981566a286118dfb2b817357df7993376d10" 3045 | 3046 | vary@~1.1.1: 3047 | version "1.1.1" 3048 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 3049 | 3050 | verror@1.3.6: 3051 | version "1.3.6" 3052 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3053 | dependencies: 3054 | extsprintf "1.0.2" 3055 | 3056 | vhost@~3.0.1: 3057 | version "3.0.2" 3058 | resolved "https://registry.yarnpkg.com/vhost/-/vhost-3.0.2.tgz#2fb1decd4c466aa88b0f9341af33dc1aff2478d5" 3059 | 3060 | vinyl@^0.5.0: 3061 | version "0.5.3" 3062 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 3063 | dependencies: 3064 | clone "^1.0.0" 3065 | clone-stats "^0.0.1" 3066 | replace-ext "0.0.1" 3067 | 3068 | walker@~1.0.5: 3069 | version "1.0.7" 3070 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3071 | dependencies: 3072 | makeerror "1.0.x" 3073 | 3074 | watch@~0.10.0: 3075 | version "0.10.0" 3076 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3077 | 3078 | whatwg-fetch@>=0.10.0, whatwg-fetch@^1.0.0: 3079 | version "1.1.1" 3080 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz#ac3c9d39f320c6dce5339969d054ef43dd333319" 3081 | 3082 | which-module@^1.0.0: 3083 | version "1.0.0" 3084 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3085 | 3086 | which@^1.2.9: 3087 | version "1.2.14" 3088 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3089 | dependencies: 3090 | isexe "^2.0.0" 3091 | 3092 | window-size@0.1.0: 3093 | version "0.1.0" 3094 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3095 | 3096 | wordwrap@0.0.2: 3097 | version "0.0.2" 3098 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3099 | 3100 | wordwrap@^1.0.0: 3101 | version "1.0.0" 3102 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3103 | 3104 | wordwrap@~0.0.2: 3105 | version "0.0.3" 3106 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3107 | 3108 | worker-farm@^1.3.1: 3109 | version "1.3.1" 3110 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3111 | dependencies: 3112 | errno ">=0.1.1 <0.2.0-0" 3113 | xtend ">=4.0.0 <4.1.0-0" 3114 | 3115 | wrap-ansi@^2.0.0: 3116 | version "2.1.0" 3117 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3118 | dependencies: 3119 | string-width "^1.0.1" 3120 | strip-ansi "^3.0.1" 3121 | 3122 | wrappy@1: 3123 | version "1.0.2" 3124 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3125 | 3126 | write-file-atomic@^1.2.0: 3127 | version "1.3.4" 3128 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3129 | dependencies: 3130 | graceful-fs "^4.1.11" 3131 | imurmurhash "^0.1.4" 3132 | slide "^1.1.5" 3133 | 3134 | ws@^1.1.0: 3135 | version "1.1.4" 3136 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.4.tgz#57f40d036832e5f5055662a397c4de76ed66bf61" 3137 | dependencies: 3138 | options ">=0.0.5" 3139 | ultron "1.0.x" 3140 | 3141 | ws@^2.0.3: 3142 | version "2.3.1" 3143 | resolved "https://registry.yarnpkg.com/ws/-/ws-2.3.1.tgz#6b94b3e447cb6a363f785eaf94af6359e8e81c80" 3144 | dependencies: 3145 | safe-buffer "~5.0.1" 3146 | ultron "~1.1.0" 3147 | 3148 | xcode@^0.9.1: 3149 | version "0.9.3" 3150 | resolved "https://registry.yarnpkg.com/xcode/-/xcode-0.9.3.tgz#910a89c16aee6cc0b42ca805a6d0b4cf87211cf3" 3151 | dependencies: 3152 | pegjs "^0.10.0" 3153 | simple-plist "^0.2.1" 3154 | uuid "3.0.1" 3155 | 3156 | xmlbuilder@4.0.0: 3157 | version "4.0.0" 3158 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.0.0.tgz#98b8f651ca30aa624036f127d11cc66dc7b907a3" 3159 | dependencies: 3160 | lodash "^3.5.0" 3161 | 3162 | xmlbuilder@8.2.2: 3163 | version "8.2.2" 3164 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" 3165 | 3166 | xmldoc@^0.4.0: 3167 | version "0.4.0" 3168 | resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-0.4.0.tgz#d257224be8393eaacbf837ef227fd8ec25b36888" 3169 | dependencies: 3170 | sax "~1.1.1" 3171 | 3172 | xmldom@0.1.x: 3173 | version "0.1.27" 3174 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 3175 | 3176 | xpipe@^1.0.5: 3177 | version "1.0.5" 3178 | resolved "https://registry.yarnpkg.com/xpipe/-/xpipe-1.0.5.tgz#8dd8bf45fc3f7f55f0e054b878f43a62614dafdf" 3179 | 3180 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.1: 3181 | version "4.0.1" 3182 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3183 | 3184 | y18n@^3.2.1: 3185 | version "3.2.1" 3186 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3187 | 3188 | yallist@^2.0.0: 3189 | version "2.1.2" 3190 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3191 | 3192 | yargs-parser@^4.2.0: 3193 | version "4.2.1" 3194 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3195 | dependencies: 3196 | camelcase "^3.0.0" 3197 | 3198 | yargs@^6.4.0: 3199 | version "6.6.0" 3200 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3201 | dependencies: 3202 | camelcase "^3.0.0" 3203 | cliui "^3.2.0" 3204 | decamelize "^1.1.1" 3205 | get-caller-file "^1.0.1" 3206 | os-locale "^1.4.0" 3207 | read-pkg-up "^1.0.1" 3208 | require-directory "^2.1.1" 3209 | require-main-filename "^1.0.1" 3210 | set-blocking "^2.0.0" 3211 | string-width "^1.0.2" 3212 | which-module "^1.0.0" 3213 | y18n "^3.2.1" 3214 | yargs-parser "^4.2.0" 3215 | 3216 | yargs@~3.10.0: 3217 | version "3.10.0" 3218 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3219 | dependencies: 3220 | camelcase "^1.0.2" 3221 | cliui "^2.1.0" 3222 | decamelize "^1.0.0" 3223 | window-size "0.1.0" 3224 | --------------------------------------------------------------------------------