├── .eslintrc.js ├── android ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── amarcruz │ │ │ └── geolocation │ │ │ ├── Constants.java │ │ │ ├── RNGeolocationPackage.java │ │ │ ├── PositionError.java │ │ │ ├── LocationResolver.java │ │ │ ├── SingleLocationRequest.java │ │ │ ├── LocationOptions.java │ │ │ └── RNGeolocationModule.java │ │ └── AndroidManifest.xml ├── build.gradle ├── gradlew.bat └── gradlew ├── .markdownlint.json ├── index.js ├── package.json ├── .gitignore ├── LICENSE ├── CHANGELOG.md ├── geoloc.js ├── index.js.flow ├── index.d.ts ├── README.md └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parserOptions: { 4 | ecmaVersion: 2016, 5 | sourceType: 'module', 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aMarCruz/react-native-cross-geolocation/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "default": true, 3 | "line-length": false, 4 | "no-duplicate-header": { "siblings_only": true }, 5 | "no-inline-html": false 6 | } 7 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { 2 | Platform, 3 | } from 'react-native' 4 | 5 | const Geolocation = Platform.OS === 'android' 6 | ? require('./geoloc') 7 | : navigator.geolocation 8 | 9 | export default Geolocation 10 | -------------------------------------------------------------------------------- /android/src/main/java/com/github/amarcruz/geolocation/Constants.java: -------------------------------------------------------------------------------- 1 | package com.github.amarcruz.geolocation; 2 | 3 | final class Constants { 4 | private Constants() {} 5 | 6 | static final String TAG = "RNGeolocation"; 7 | static final int PLAY_SERVICES_REQUEST = 11404; 8 | } 9 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Sep 09 08:55:54 CDT 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip 7 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-cross-geolocation", 3 | "version": "1.1.0", 4 | "description": "React Native Geolocation complatible module that uses the new Google Location API on Android devices.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [ 10 | "react", 11 | "native", 12 | "react-native", 13 | "geolocation", 14 | "location", 15 | "google", 16 | "fused", 17 | "maps" 18 | ], 19 | "author": "aMarCruz ", 20 | "license": "MIT", 21 | "bugs": "https://github.com/aMarCruz/react-native-cross-geolocation/issues", 22 | "homepage": "https://github.com/aMarCruz/react-native-cross-geolocation#README", 23 | "repository": "https://github.com/aMarCruz/react-native-cross-geolocation.git", 24 | "peerDependencies": { 25 | "react-native": ">=0.50.0" 26 | }, 27 | "dependencies": { 28 | "invariant": "^2.2.4" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /android/src/main/java/com/github/amarcruz/geolocation/RNGeolocationPackage.java: -------------------------------------------------------------------------------- 1 | package com.github.amarcruz.geolocation; 2 | 3 | import com.facebook.react.ReactPackage; 4 | import com.facebook.react.bridge.NativeModule; 5 | import com.facebook.react.bridge.ReactApplicationContext; 6 | import com.facebook.react.uimanager.ViewManager; 7 | 8 | import java.util.ArrayList; 9 | import java.util.Collections; 10 | import java.util.List; 11 | 12 | @SuppressWarnings("unused") 13 | public class RNGeolocationPackage implements ReactPackage { 14 | 15 | public RNGeolocationPackage() { 16 | } 17 | 18 | @Override 19 | public List createViewManagers(ReactApplicationContext reactContext) { 20 | return Collections.emptyList(); 21 | } 22 | 23 | @Override 24 | public List createNativeModules(ReactApplicationContext reactContext) { 25 | List modules = new ArrayList<>(); 26 | modules.add(new RNGeolocationModule(reactContext)); 27 | return modules; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # node-waf configuration 17 | .lock-wscript 18 | 19 | # Compiled binary addons (http://nodejs.org/api/addons.html) 20 | build/Release 21 | 22 | # Dependency directory 23 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 24 | node_modules 25 | npm-debug.log 26 | 27 | # OSX 28 | # 29 | .DS_Store 30 | 31 | # Xcode 32 | # 33 | build/ 34 | *.pbxuser 35 | !default.pbxuser 36 | *.mode1v3 37 | !default.mode1v3 38 | *.mode2v3 39 | !default.mode2v3 40 | *.perspectivev3 41 | !default.perspectivev3 42 | xcuserdata 43 | *.xccheckout 44 | *.moved-aside 45 | DerivedData 46 | *.hmap 47 | *.ipa 48 | *.xcuserstate 49 | project.xcworkspace 50 | 51 | # Android/IJ 52 | # 53 | react-native-dialogs.iml 54 | .idea 55 | .gradle 56 | local.properties 57 | android/*.iml 58 | 59 | ~assets/ 60 | .vscode 61 | *.tgz 62 | -------------------------------------------------------------------------------- /android/src/main/java/com/github/amarcruz/geolocation/PositionError.java: -------------------------------------------------------------------------------- 1 | package com.github.amarcruz.geolocation; 2 | 3 | import com.facebook.react.bridge.Arguments; 4 | import com.facebook.react.bridge.WritableMap; 5 | 6 | /** 7 | * @see PositionError 8 | */ 9 | final class PositionError { 10 | /** 11 | * The acquisition of the geolocation information failed because 12 | * the page didn't have the permission to do it. 13 | */ 14 | static int PERMISSION_DENIED = 1; 15 | 16 | /** 17 | * The acquisition of the geolocation failed because at least one 18 | * internal source of position returned an internal error. 19 | */ 20 | static int POSITION_UNAVAILABLE = 2; 21 | 22 | static WritableMap buildError(final int code, final String message) { 23 | WritableMap error = Arguments.createMap(); 24 | error.putInt("code", code); 25 | if (message != null) { 26 | error.putString("message", message); 27 | } 28 | return error; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Alberto Martínez 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 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # react-native-cross-geolocation Changes 2 | 3 | The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). 4 | 5 | ## \[1.1.0] - 2018-03-27 6 | 7 | ### Added 8 | 9 | - Missing Dependency on 'com.android.support:appcompat-v7' 10 | - Markdownlint configuration. 11 | 12 | ### Changed 13 | 14 | - Using Build Tools v28.0.3 with compileSdkVersion and targetSdkVersion 28 15 | - Using Gradle plugin 3.2.1 16 | - Using Java 1.8 17 | 18 | ### Removed 19 | 20 | - Dependency on 'com.android.support:support-annotations'. This must fix conflict issues with versions. 21 | 22 | ## \[1.0.6] - 2018-10-10 23 | 24 | ### Fixed 25 | 26 | - Error in getExtValue of build.gradle 27 | 28 | ## \[1.0.5] - 2018-10-09 29 | 30 | ### Fixed 31 | 32 | - Error in build.gradle no getting the correct `googlePlayServicesVersion` variable. 33 | - Minor fixes to the README. 34 | 35 | ## \[1.0.4] - 2018-09-09 36 | 37 | ### Changed 38 | 39 | - Minimum Android SDK version from 21 to 16. 40 | - Update README with a more clear note about the use of Gradle 4.4 41 | 42 | ### Fixed 43 | 44 | - #2 : Error in build.gradle. Thanks to @mowbell for reporting this. 45 | 46 | ## \[1.0.3] - 2018-06-23 47 | 48 | ### Added 49 | 50 | - Flow typings. 51 | 52 | ### Changed 53 | 54 | - Updated README. 55 | - The changelog follows the format on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). 56 | 57 | ### Fixed 58 | 59 | - PR #1 Fixes `undefined` error by the use of Geolocation instead RNGeolocation. Thanks to @badrange 60 | 61 | ## \[1.0.2] - 2018-06-18 62 | 63 | ### Fixed 64 | 65 | - `PositionError` builder 66 | 67 | ## \[1.0.1] - 2018-06-18 68 | 69 | ### Fixed 70 | 71 | - Typings for `setRNConfiguration` 72 | 73 | ## [1.0.0] - 2018-06-18 74 | 75 | - First public release 76 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | def safeExtGet(prop, fallback) { 2 | rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback 3 | } 4 | 5 | // Google Play Services 12.0.x to 15.0.x depends on support libraries 26.1.0 6 | def _playServicesLocationVersion = safeExtGet('playServicesLocation', '16.0.0') 7 | def _buildToolsVersion = safeExtGet('buildToolsVersion', '28.0.3') 8 | def _compileSdkVersion = safeExtGet('compileSdkVersion', 28) 9 | def _targetSdkVersion = safeExtGet('targetSdkVersion', 28) 10 | def _minSdkVersion = safeExtGet('minSdkVersion', 16) 11 | def _supportLibVersion = safeExtGet('supportLibVersion', '28.0.0') 12 | 13 | buildscript { 14 | repositories { 15 | google() 16 | jcenter() 17 | } 18 | dependencies { 19 | classpath 'com.android.tools.build:gradle:3.2.1' 20 | } 21 | } 22 | 23 | apply plugin: 'com.android.library' 24 | 25 | android { 26 | compileSdkVersion _compileSdkVersion 27 | buildToolsVersion _buildToolsVersion 28 | 29 | defaultConfig { 30 | minSdkVersion _minSdkVersion 31 | targetSdkVersion _targetSdkVersion 32 | versionCode 2 33 | versionName '1.1.0' 34 | } 35 | lintOptions { 36 | abortOnError false 37 | } 38 | compileOptions { 39 | sourceCompatibility JavaVersion.VERSION_1_8 40 | targetCompatibility JavaVersion.VERSION_1_8 41 | } 42 | } 43 | 44 | repositories { 45 | mavenLocal() 46 | google() 47 | jcenter() 48 | maven { url "$rootDir/../node_modules/react-native/android" } 49 | } 50 | 51 | dependencies { 52 | compileOnly 'com.facebook.react:react-native:+' 53 | implementation "com.google.android.gms:play-services-location:${_playServicesLocationVersion}" 54 | implementation "com.android.support:appcompat-v7:${_supportLibVersion}" 55 | } 56 | 57 | task customClean(type: Delete) { 58 | delete rootProject.buildDir 59 | } 60 | 61 | clean.dependsOn customClean 62 | -------------------------------------------------------------------------------- /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 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 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 Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /android/src/main/java/com/github/amarcruz/geolocation/LocationResolver.java: -------------------------------------------------------------------------------- 1 | package com.github.amarcruz.geolocation; 2 | 3 | import android.location.Location; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.bridge.Arguments; 7 | import com.facebook.react.bridge.Callback; 8 | import com.facebook.react.bridge.WritableMap; 9 | 10 | class LocationResolver { 11 | static private final String TAG = Constants.TAG; 12 | 13 | private Callback mSuccessCallback; 14 | private Callback mErrorCallback; 15 | private boolean done = false; 16 | 17 | LocationResolver(final Callback success, final Callback error) { 18 | mSuccessCallback = success; 19 | mErrorCallback = error; 20 | } 21 | 22 | void success(final Location place) { 23 | if (mSuccessCallback != null && !done) { 24 | done = true; 25 | try { 26 | if (place != null) { 27 | mSuccessCallback.invoke(locationToMap(place)); 28 | } else { 29 | mErrorCallback.invoke( 30 | PositionError.buildError(PositionError.POSITION_UNAVAILABLE, "Canceled.")); 31 | } 32 | } catch (Exception ex) { 33 | mErrorCallback.invoke( 34 | PositionError.buildError(PositionError.POSITION_UNAVAILABLE, ex.getMessage())); 35 | } finally { 36 | mSuccessCallback = null; 37 | mErrorCallback = null; 38 | } 39 | } 40 | } 41 | 42 | void error(final int code, final String message) { 43 | if (mErrorCallback != null && !done) { 44 | done = true; 45 | Log.e(TAG, "Location error: " + message); 46 | mErrorCallback.invoke(PositionError.buildError(code, message)); 47 | mErrorCallback = null; 48 | } 49 | } 50 | 51 | void error(final String message) { 52 | error(PositionError.POSITION_UNAVAILABLE, message); 53 | } 54 | 55 | static WritableMap locationToMap(Location location) { 56 | WritableMap map = Arguments.createMap(); 57 | WritableMap coords = Arguments.createMap(); 58 | 59 | coords.putDouble("latitude", location.getLatitude()); 60 | coords.putDouble("longitude", location.getLongitude()); 61 | coords.putDouble("altitude", location.getAltitude()); 62 | coords.putDouble("accuracy", location.getAccuracy()); 63 | coords.putDouble("heading", location.getBearing()); 64 | coords.putDouble("speed", location.getSpeed()); 65 | map.putMap("coords", coords); 66 | map.putDouble("timestamp", location.getTime()); 67 | if (android.os.Build.VERSION.SDK_INT >= 18) { 68 | map.putBoolean("mocked", location.isFromMockProvider()); 69 | } 70 | 71 | return map; 72 | } 73 | 74 | } 75 | -------------------------------------------------------------------------------- /android/src/main/java/com/github/amarcruz/geolocation/SingleLocationRequest.java: -------------------------------------------------------------------------------- 1 | package com.github.amarcruz.geolocation; 2 | 3 | import android.os.Looper; 4 | 5 | import com.google.android.gms.common.api.ApiException; 6 | import com.google.android.gms.location.FusedLocationProviderClient; 7 | import com.google.android.gms.location.LocationCallback; 8 | import com.google.android.gms.location.LocationRequest; 9 | import com.google.android.gms.location.LocationResult; 10 | 11 | class SingleLocationRequest { 12 | private final FusedLocationProviderClient mFusedProviderClient; 13 | private final LocationRequest mLocationRequest; 14 | private final LocationResolver mResolver; 15 | 16 | private LocationCallback mLocationCallback = new LocationCallback() { 17 | @Override 18 | public void onLocationResult(LocationResult locationResult) { 19 | synchronized (SingleLocationRequest.this) { 20 | if (locationResult != null) { 21 | removeCallback(); 22 | mResolver.success(locationResult.getLastLocation()); 23 | } 24 | } 25 | } 26 | }; 27 | 28 | private void removeCallback () { 29 | final LocationCallback callback = mLocationCallback; 30 | mLocationCallback = null; 31 | if (callback != null) { 32 | try { 33 | mFusedProviderClient.removeLocationUpdates(callback); 34 | } catch (Exception ex) { 35 | ex.printStackTrace(); 36 | } 37 | } 38 | } 39 | 40 | SingleLocationRequest( 41 | final FusedLocationProviderClient fusedProviderClient, 42 | final LocationRequest locationRequest, 43 | final LocationResolver resolver) { 44 | mFusedProviderClient = fusedProviderClient; 45 | mLocationRequest = locationRequest; 46 | mResolver = resolver; 47 | } 48 | 49 | /** 50 | * Request one time location update 51 | */ 52 | void getLocation () { 53 | if (mFusedProviderClient == null) { 54 | mResolver.error(PositionError.POSITION_UNAVAILABLE, "No location provider available."); 55 | return; 56 | } 57 | 58 | try { 59 | mFusedProviderClient.requestLocationUpdates(mLocationRequest, mLocationCallback, Looper.getMainLooper()) 60 | .addOnFailureListener(ex -> { 61 | removeCallback(); 62 | try { 63 | final int code = ((ApiException) ex).getStatusCode(); 64 | mResolver.error("Error " + code + ": " + ex.getMessage()); 65 | } catch (Exception ignore) { 66 | mResolver.error(ex.getMessage()); 67 | } 68 | }); 69 | } catch (SecurityException ex) { 70 | mResolver.error(PositionError.PERMISSION_DENIED, ex.getMessage()); 71 | } 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /android/src/main/java/com/github/amarcruz/geolocation/LocationOptions.java: -------------------------------------------------------------------------------- 1 | package com.github.amarcruz.geolocation; 2 | 3 | import com.facebook.react.bridge.ReadableMap; 4 | import com.google.android.gms.location.LocationRequest; 5 | 6 | final class LocationOptions { 7 | private static final float DEFAULT_DISTANCE_FILTER = 100f; 8 | 9 | private static long fastestInterval = 5000; // 5 secs 10 | private static long updateInterval = 10000; // 10 secs 11 | private static int lowPriorityMode = LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY; 12 | 13 | final long timeout; 14 | final double maximumAge; 15 | final float distanceFilter; 16 | final int priority; 17 | 18 | private LocationOptions( 19 | final long timeout, 20 | final double maximumAge, 21 | final boolean highAccuracy, 22 | final float distanceFilter 23 | ) { 24 | this.timeout = timeout; 25 | this.maximumAge = maximumAge; 26 | this.distanceFilter = distanceFilter; 27 | this.priority = highAccuracy ? LocationRequest.PRIORITY_HIGH_ACCURACY : lowPriorityMode; 28 | } 29 | 30 | static LocationOptions fromReactMap(final ReadableMap map) { 31 | long timeout = Long.MAX_VALUE; 32 | double maximumAge = Double.POSITIVE_INFINITY; 33 | boolean highAccuracy = false; 34 | float distanceFilter = DEFAULT_DISTANCE_FILTER; 35 | 36 | if (map != null) { 37 | // precision might be dropped on timeout (double -> int conversion), but that's OK 38 | if (map.hasKey("timeout")) { 39 | timeout = (long) map.getDouble("timeout"); 40 | } 41 | if (map.hasKey("maximumAge")) { 42 | maximumAge = map.getDouble("maximumAge"); 43 | } 44 | if (map.hasKey("enableHighAccuracy")) { 45 | highAccuracy = map.getBoolean("enableHighAccuracy"); 46 | } 47 | if (map.hasKey("distanceFilter")) { 48 | distanceFilter = (float) map.getDouble("distanceFilter"); 49 | } 50 | } 51 | 52 | return new LocationOptions(timeout, maximumAge, highAccuracy, distanceFilter); 53 | } 54 | 55 | static void setConfiguration (final ReadableMap map) { 56 | if (map != null) { 57 | if (map.hasKey("fastestInterval")) { 58 | fastestInterval = (long) map.getDouble("fastestInterval"); 59 | } 60 | if (map.hasKey("updateInterval")) { 61 | updateInterval = (long) map.getDouble("updateInterval"); 62 | } 63 | if (map.hasKey("lowPriorityMode")) { 64 | int mode = map.getInt("lowPriorityMode"); 65 | if (mode != LocationRequest.PRIORITY_LOW_POWER && mode != LocationRequest.PRIORITY_NO_POWER) { 66 | mode = LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY; 67 | } 68 | lowPriorityMode = mode; 69 | } 70 | } 71 | } 72 | 73 | static long getFastestInterval () { 74 | return fastestInterval; 75 | } 76 | 77 | static long getUpdateInterval () { 78 | return updateInterval; 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /geoloc.js: -------------------------------------------------------------------------------- 1 | import { 2 | NativeEventEmitter, 3 | NativeModules, 4 | PermissionsAndroid, 5 | Platform, 6 | } from 'react-native' 7 | import invariant from 'invariant' 8 | //const logError = require('logError'); 9 | //const warning = require('fbjs/lib/warning'); 10 | 11 | const RNGeolocation = NativeModules.LocationObserver 12 | const LocationEventEmitter = new NativeEventEmitter(RNGeolocation) 13 | const logError = () => {} 14 | 15 | var nextWatchID = 1 16 | var subscriptions = {} 17 | var updatesEnabled = false 18 | 19 | /** 20 | * The Geolocation API extends the web spec: 21 | * https://developer.mozilla.org/en-US/docs/Web/API/Geolocation 22 | * 23 | * See https://facebook.github.io/react-native/docs/geolocation.html 24 | */ 25 | module.exports = { 26 | 27 | LowAccuracyMode: { 28 | BALANCED: RNGeolocation.BALANCED, 29 | LOW_POWER: RNGeolocation.LOW_POWER, 30 | NO_POWER: RNGeolocation.NO_POWER, 31 | }, 32 | 33 | /* 34 | * Sets configuration options that will be used in all location requests. 35 | * 36 | * See https://facebook.github.io/react-native/docs/geolocation.html#setrnconfiguration 37 | * 38 | */ 39 | setRNConfiguration: RNGeolocation.setConfiguration, 40 | 41 | /* 42 | * Request suitable Location permission based on the key configured on pList. 43 | * 44 | * See https://facebook.github.io/react-native/docs/geolocation.html#requestauthorization 45 | */ 46 | requestAuthorization () {}, 47 | 48 | /* 49 | * Invokes the success callback once with the latest location info. 50 | * 51 | * See https://facebook.github.io/react-native/docs/geolocation.html#getcurrentposition 52 | */ 53 | getCurrentPosition(geo_success, geo_error, geo_options) { 54 | invariant( 55 | typeof geo_success === 'function', 56 | 'Must provide a valid geo_success callback.' 57 | ) 58 | let promise 59 | 60 | // Supports Android's new permission model. For Android older devices, 61 | // it's always on. 62 | if (Platform.Version >= 23) { 63 | promise = PermissionsAndroid.check( 64 | PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION 65 | ).then((hasPermission) => { 66 | if (hasPermission) { 67 | return true 68 | } 69 | return PermissionsAndroid.request( 70 | PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION 71 | ) 72 | }) 73 | } else { 74 | promise = Promise.resolve() 75 | } 76 | 77 | promise.then(() => { 78 | // native module will call geo_error if has no parmissions 79 | RNGeolocation.getCurrentPosition( 80 | geo_options || {}, 81 | geo_success, 82 | geo_error || logError 83 | ) 84 | }) 85 | }, 86 | 87 | /* 88 | * Invokes the success callback whenever the location changes. 89 | * 90 | * See https://facebook.github.io/react-native/docs/geolocation.html#watchposition 91 | */ 92 | watchPosition (success, error, options) { 93 | if (!updatesEnabled) { 94 | RNGeolocation.startObserving(options || {}) 95 | updatesEnabled = true 96 | } 97 | const watchID = String(nextWatchID++) 98 | subscriptions[watchID] = [ 99 | LocationEventEmitter.addListener( 100 | 'geolocationDidChange', 101 | success 102 | ), 103 | error ? LocationEventEmitter.addListener( 104 | 'geolocationError', 105 | error 106 | ) : null, 107 | ] 108 | return watchID 109 | }, 110 | 111 | clearWatch (watchID) { 112 | var sub = subscriptions[watchID] 113 | if (!sub) { 114 | // Silently exit when the watchID is invalid or already cleared 115 | // This is consistent with timers 116 | return 117 | } 118 | 119 | sub[0].remove() 120 | // array element refinements not yet enabled in Flow 121 | if (sub[1]) { 122 | sub[1].remove() 123 | } 124 | delete subscriptions[watchID] 125 | for (var p in subscriptions) { 126 | if (subscriptions.hasOwnProperty(p)) { 127 | return // still valid subscriptions 128 | } 129 | } 130 | RNGeolocation.stopObserving() 131 | }, 132 | 133 | stopObserving () { 134 | if (updatesEnabled) { 135 | RNGeolocation.stopObserving() 136 | updatesEnabled = false 137 | Object.keys(subscriptions).forEach((id) => { 138 | const sub = subscriptions[id] 139 | if (sub) { 140 | //warning(false, 'Called stopObserving with existing subscriptions.'); 141 | sub[0].remove() 142 | if (sub[1]) { 143 | sub[1].remove() 144 | } 145 | } 146 | }) 147 | subscriptions = {} 148 | } 149 | } 150 | } 151 | -------------------------------------------------------------------------------- /index.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | export type GeolocationReturnType = { 3 | coords: { 4 | latitude: number, 5 | longitude: number, 6 | altitude: number | null, 7 | accuracy: number, 8 | altitudeAccuracy: number | null, 9 | heading: number | null, 10 | speed: number | null, 11 | }; 12 | timestamp: number, 13 | mocked?: boolean, 14 | }; 15 | 16 | export type GeolocationError = { 17 | code: number, 18 | message: string, 19 | PERMISSION_DENIED: number, 20 | POSITION_UNAVAILABLE: number, 21 | TIMEOUT: number, 22 | }; 23 | 24 | export type SuccessCb = (loc: GeolocationReturnType) => void 25 | export type ErrorCb = (err: GeolocationError) => void 26 | 27 | export type LowAccuracyMode = { 28 | /** 29 | * Use this setting to request location precision to within a city block, which 30 | * is an accuracy of approximately 100 meters. 31 | * This is considered a coarse level of accuracy, and is likely to consume less power. 32 | * With this setting, the location services are likely to use WiFi and cell tower 33 | * positioning. Note, however, that the choice of location provider depends on many 34 | * other factors, such as which sources are available. 35 | */ 36 | readonly BALANCED: number, 37 | /** 38 | * Use this setting to request city-level precision, which is an accuracy of 39 | * approximately 10 kilometers. This is considered a coarse level of accuracy, 40 | * and is likely to consume less power. 41 | */ 42 | readonly LOW_POWER: number, 43 | /** 44 | * Use this setting if you need negligible impact on power consumption, but want 45 | * to receive location updates when available. With this setting, your app does 46 | * not trigger any location updates, but receives locations triggered by other apps. 47 | */ 48 | readonly NO_POWER: number, 49 | } 50 | 51 | export type GeolocConfigAndroid = { 52 | /** 53 | * One of Geolocation.LowAccuracyMode 54 | * @default LowAccuracyMode.BALANCED 55 | */ 56 | lowAccuracyMode?: number, 57 | /** 58 | * milliseconds 59 | * @default 10000 60 | */ 61 | fastestInterval?: number, 62 | /** 63 | * milliseconds 64 | * @default 5000 65 | */ 66 | updateInterval?: number, 67 | } 68 | 69 | export type GeolocConfigIOS = { 70 | skipPermissionRequests?: boolean; 71 | } 72 | 73 | export type GeoConfiguration = GeolocConfigAndroid & GeolocConfigIOS; 74 | 75 | export type GeoOptions = { 76 | /** 77 | * Milliseconds. 78 | * @default MAX_VALUE 79 | */ 80 | timeout?: number, 81 | /** 82 | * Milliseconds. 83 | * @default INFINITY 84 | */ 85 | maximumAge?: number, 86 | /** 87 | * Use this setting to request the most precise location possible. 88 | * With this setting, the location services are more likely to use GPS to determine 89 | * the location. 90 | * 91 | * On Android, if the location is cached this can return almost immediately, or it 92 | * will request an update which might take a while. 93 | * 94 | * @default false 95 | */ 96 | enableHighAccuracy?: boolean, 97 | /** 98 | * Distance filter in meters, used only for the watchers. 99 | * @default 100.0 100 | */ 101 | distanceFilter?: number, 102 | /** 103 | * Not used. 104 | */ 105 | useSignificantChanges?: boolean, 106 | } 107 | 108 | declare interface GeolocStatic { 109 | /** 110 | * Sets configuration options that will be used in all location requests. 111 | */ 112 | setRNConfiguration(config: GeoOptions): void; 113 | /** 114 | * Request suitable Location permission based on the key configured on pList. If 115 | * NSLocationAlwaysUsageDescription is set, it will request Always authorization, although if 116 | * NSLocationWhenInUseUsageDescription is set, it will request InUse authorization. 117 | */ 118 | requestAuthorization(): void; 119 | /** 120 | * Invokes the success callback once with the latest location info. 121 | */ 122 | getCurrentPosition(success: SuccessCb, error?: ErrorCb, options?: GeoOptions): void; 123 | /** 124 | * Invokes the success callback whenever the location changes. Returns a watchId (number). 125 | */ 126 | watchPosition(success: SuccessCb, error?: ErrorCb, options?: GeolocOptions): number; 127 | /** 128 | * Clear a watcher. 129 | * @param watchID The ID received from `watchPosition` 130 | */ 131 | clearWatch(watchID: number): void; 132 | /** 133 | * Stops observing for device location changes. In addition, it removes all listeners 134 | * previously registered. 135 | */ 136 | stopObserving(): void; 137 | } 138 | 139 | declare var Geolocation: GeolocStatic; 140 | export default Geolocation; 141 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react-native-cross-geolocation" { 2 | 3 | export type GeolocationReturnType = { 4 | coords: { 5 | latitude: number, 6 | longitude: number, 7 | altitude: number | null, 8 | accuracy: number, 9 | altitudeAccuracy: number | null, 10 | heading: number | null, 11 | speed: number | null, 12 | }; 13 | timestamp: number, 14 | mocked?: boolean, 15 | }; 16 | 17 | export type GeolocationError = { 18 | code: number, 19 | message: string, 20 | PERMISSION_DENIED: number, 21 | POSITION_UNAVAILABLE: number, 22 | TIMEOUT: number, 23 | }; 24 | 25 | export type SuccessCb = (loc: GeolocationReturnType) => void 26 | export type ErrorCb = (err: GeolocationError) => void 27 | 28 | export type LowAccuracyMode = { 29 | /** 30 | * Use this setting to request location precision to within a city block, which 31 | * is an accuracy of approximately 100 meters. 32 | * This is considered a coarse level of accuracy, and is likely to consume less power. 33 | * With this setting, the location services are likely to use WiFi and cell tower 34 | * positioning. Note, however, that the choice of location provider depends on many 35 | * other factors, such as which sources are available. 36 | */ 37 | readonly BALANCED: number, 38 | /** 39 | * Use this setting to request city-level precision, which is an accuracy of 40 | * approximately 10 kilometers. This is considered a coarse level of accuracy, 41 | * and is likely to consume less power. 42 | */ 43 | readonly LOW_POWER: number, 44 | /** 45 | * Use this setting if you need negligible impact on power consumption, but want 46 | * to receive location updates when available. With this setting, your app does 47 | * not trigger any location updates, but receives locations triggered by other apps. 48 | */ 49 | readonly NO_POWER: number, 50 | } 51 | 52 | export type GeolocConfigAndroid = { 53 | /** 54 | * One of Geolocation.LowAccuracyMode 55 | * @default LowAccuracyMode.BALANCED 56 | */ 57 | lowAccuracyMode?: number, 58 | /** 59 | * milliseconds 60 | * @default 10000 61 | */ 62 | fastestInterval?: number, 63 | /** 64 | * milliseconds 65 | * @default 5000 66 | */ 67 | updateInterval?: number, 68 | } 69 | 70 | export type GeolocConfigIOS = { 71 | skipPermissionRequests: boolean; 72 | } 73 | 74 | export type GeolocOptions = { 75 | /** 76 | * Milliseconds. 77 | * @default MAX_VALUE 78 | */ 79 | timeout?: number, 80 | /** 81 | * Milliseconds. 82 | * @default INFINITY 83 | */ 84 | maximumAge?: number, 85 | /** 86 | * Use this setting to request the most precise location possible. 87 | * With this setting, the location services are more likely to use GPS to determine 88 | * the location. 89 | * 90 | * On Android, if the location is cached this can return almost immediately, or it 91 | * will request an update which might take a while. 92 | * 93 | * @default false 94 | */ 95 | enableHighAccuracy?: boolean, 96 | } 97 | 98 | export interface GeolocWatcherOptions extends GeolocOptions { 99 | /** 100 | * Meters 101 | * @default 100.0 102 | */ 103 | distanceFilter?: number, 104 | /** 105 | * 106 | */ 107 | useSignificantChanges?: boolean, 108 | } 109 | 110 | interface GeolocStatic { 111 | /** 112 | * Sets configuration options that will be used in all location requests. 113 | */ 114 | setRNConfiguration(config: GeolocConfigAndroid | GeolocConfigIOS): void; 115 | /** 116 | * Request suitable Location permission based on the key configured on pList. If 117 | * NSLocationAlwaysUsageDescription is set, it will request Always authorization, although if 118 | * NSLocationWhenInUseUsageDescription is set, it will request InUse authorization. 119 | */ 120 | requestAuthorization(): void; 121 | /** 122 | * Invokes the success callback once with the latest location info. 123 | */ 124 | getCurrentPosition(success: SuccessCb, error?: ErrorCb, options?: GeolocOptions): void; 125 | /** 126 | * Invokes the success callback whenever the location changes. Returns a watchId (number). 127 | */ 128 | watchPosition(success: SuccessCb, error?: ErrorCb, options?: GeolocWatcherOptions): number; 129 | /** 130 | * Clear a watcher. 131 | * @param watchID The ID received from `watchPosition` 132 | */ 133 | clearWatch(watchID: number): void; 134 | /** 135 | * Stops observing for device location changes. In addition, it removes all listeners 136 | * previously registered. 137 | */ 138 | stopObserving(): void; 139 | } 140 | 141 | const Geolocation: GeolocStatic; 142 | export default Geolocation; 143 | } 144 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 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 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-cross-geolocation 2 | 3 | [![npm][npm-image]](https://www.npmjs.com/package/react-native-cross-geolocation) 4 | [![License][license-image]](LICENSE) 5 | 6 | React Native Geolocation complatible module that uses the new [Google Play services location API](https://developer.android.com/training/location/) on Android devices. 7 | 8 | In my country (México), software developers are poorly paid, so I have had to look for another job to earn a living and I cannot dedicate more time to maintaining this and other repositories that over the years have never generated any money for me. If anyone is interested in maintaining this repository, I'd be happy to transfer it to them, along with the associated npm package. | 9 | :---: | 10 | En mi país (México), los desarrolladores de software somos pésimamente pagados, por lo que he tenido que buscar otro trabajo para ganarme la vida y no puedo dedicar más tiempo a mantener éste y otros repositorios que a través de los años nunca me generaron dinero. Si a alguien le interesa dar mantenimiento a este repositorio, con gusto se lo transferiré, así como el paquete de npm asociado. | 11 | 12 | If this library has helped you, please support my work with a star or [buy me a coffee][kofi-url]. 13 | 14 | ## IMPORTANT 15 | 16 | This module was tested with React Native 0.59.0, but it should work smoothly with apps that use Gradle 4.6 or later. 17 | 18 | \* For previous Gradle versions use react-native-cross-geolocation v1.0.6 or bellow. 19 | 20 | ## Setup 21 | 22 | ```bash 23 | yarn add react-native-cross-geolocation 24 | react-native link react-native-cross-geolocation 25 | ``` 26 | 27 | ### Play Services Location Version 28 | 29 | From v1.1.0, react-native-cross-geolocation supports the global variable `playServicesLocationVersion` to specify the version of 'com.google.android.gms:play-services-location' to use. It defaults to 16.0.0 30 | 31 | ### Configuration and Permissions 32 | 33 | This section only applies to projects made with `react-native init` or to those made with Create React Native App which have since ejected. For more information about ejecting, please see the [guide](https://github.com/react-community/create-react-native-app/blob/master/EJECTING.md) on the Create React Native App repository. 34 | 35 | #### iOS 36 | 37 | You need to include the NSLocationWhenInUseUsageDescription key in Info.plist to enable geolocation when using the app. Geolocation is enabled by default when you create a project with react-native init. 38 | 39 | In order to enable geolocation in the background, you need to include the 'NSLocationAlwaysUsageDescription' key in Info.plist and add location as a background mode in the 'Capabilities' tab in Xcode. 40 | 41 | #### Android 42 | 43 | To request access to location, add the following line to your app's AndroidManifest.xml: 44 | 45 | ```xml 46 | 47 | 48 | ``` 49 | 50 | Android API >= 18 Positions will also contain a `mocked` boolean to indicate if position was created from a mock provider. 51 | Android API >= 23 Permissions are handled automatically. 52 | 53 | #### Methods 54 | 55 | - [`setRNConfiguration`](#setrnconfiguration) 56 | - [`requestAuthorization`](#requestauthorization) 57 | - [`getCurrentPosition`](#getcurrentposition) 58 | - [`watchPosition`](#watchposition) 59 | - [`clearWatch`](#clearwatch) 60 | - [`stopObserving`](#stopobserving) 61 | 62 | ## Reference 63 | 64 | ### Methods 65 | 66 | #### `setRNConfiguration()` 67 | 68 | ```js 69 | Geolocation.setRNConfiguration(config); 70 | ``` 71 | 72 | Sets configuration options that will be used in all location requests. 73 | 74 | Parameters: 75 | 76 | NAME | TYPE | REQUIRED | DESCRIPTION 77 | ---- | ---- | -------- | ----------- 78 | config | object | Yes | See below. 79 | 80 | Supported options: 81 | 82 | - `skipPermissionRequests` (boolean, iOS-only) - Defaults to `false`. If `true`, you must request permissions before using Geolocation APIs. 83 | - `lowAccuracyMode` (number, Android-only) - Defaults to [LowAccuracyMode.BALANCED](#constants). 84 | - `fastestInterval` (number, Android-only) - Defaults to 10000 (10 secs). 85 | - `updateInterval` (number, Android-only) - Defaults to 5000 (5 secs). 86 | 87 | #### `requestAuthorization()` 88 | 89 | ```js 90 | Geolocation.requestAuthorization(); 91 | ``` 92 | 93 | Request suitable Location permission based on the key configured on pList. If NSLocationAlwaysUsageDescription is set, it will request Always authorization, although if NSLocationWhenInUseUsageDescription is set, it will request InUse authorization. 94 | 95 | #### `getCurrentPosition()` 96 | 97 | ```js 98 | Geolocation.getCurrentPosition(geo_success, [geo_error], [geo_options]); 99 | ``` 100 | 101 | Invokes the success callback once with the latest location info. 102 | 103 | Parameters: 104 | 105 | NAME | TYPE | REQUIRED | DESCRIPTION 106 | ---- | ---- | -------- | ----------- 107 | geo_success | function | Yes | Invoked with latest location info. 108 | geo_error | function | No | Invoked whenever an error is encountered. 109 | geo_options | object | No | See below. 110 | 111 | Supported options: 112 | 113 | - `timeout` (ms) - Defaults to MAX_VALUE 114 | - `maximumAge` (ms) - Defaults to INFINITY. 115 | - `enableHighAccuracy` (bool) - On Android, if the location is cached this can return almost immediately, or it will request an update which might take a while. 116 | 117 | #### `watchPosition()` 118 | 119 | ```js 120 | Geolocation.watchPosition(success, [error], [options]); 121 | ``` 122 | 123 | Invokes the success callback whenever the location changes. Returns a `watchId` (number). 124 | 125 | Parameters: 126 | 127 | NAME | TYPE | REQUIRED | DESCRIPTION 128 | ---- | ---- | -------- | ----------- 129 | success | function | Yes | Invoked whenever the location changes. 130 | error | function | No | Invoked whenever an error is encountered. 131 | options | object | No | See below. 132 | 133 | Supported options: 134 | 135 | - `timeout` (ms) - Defaults to MAX_VALUE. 136 | - `maximumAge` (ms) - Defaults to INFINITY. 137 | - `enableHighAccuracy` (bool) - Defaults to `false`. 138 | - `distanceFilter` (m) - Defaults to 100. 139 | - `useSignificantChanges` (bool) (unused in Android). 140 | 141 | #### `clearWatch()` 142 | 143 | ```js 144 | Geolocation.clearWatch(watchID); 145 | ``` 146 | 147 | Parameters: 148 | 149 | NAME | TYPE | REQUIRED | DESCRIPTION 150 | ---- | ---- | -------- | ----------- 151 | watchID | number | Yes | Id as returned by `watchPosition()`. 152 | 153 | #### `stopObserving()` 154 | 155 | ```js 156 | Geolocation.stopObserving(); 157 | ``` 158 | 159 | Stops observing for device location changes. In addition, it removes all listeners previously registered. 160 | 161 | Notice that this method has only effect if the `geolocation.watchPosition(successCallback, errorCallback)` method was previously invoked. 162 | 163 | ### Constants 164 | 165 | rnCrossGeolocation exports a `LowAccuracyMode` object with values to be used in the `lowAccuracyMode` property of the parameter sent to [`setRNConfiguration`](#setrnconfiguration): 166 | 167 | NAME | DETAILS 168 | ---- | ------- 169 | LowAccuracyMode.BALANCED
(102)
This is the default mode. | Request location precision to within a city block, which is an accuracy of approximately 100 meters.
This is considered a coarse level of accuracy, and is likely to consume less power. With this setting, the location services are likely to use WiFi and cell tower positioning. Note, however, that the choice of location provider depends on many other factors, such as which sources are available. 170 | LowAccuracyMode.LOW_POWER
(104) | Request city-level precision, which is an accuracy of approximately 10 Km.
This is considered a coarse level of accuracy, and is likely to consume less power. 171 | LowAccuracyMode.NO_POWER
(105) | Use this if you need negligible impact on power consumption, but want to receive location updates when available.
With this setting, your app does not trigger any location updates, but receives locations triggered by other apps. 172 | 173 | _**NOTE:** These constants are only for Android, on iOS they are undefined._ 174 | 175 | ## TODO 176 | 177 | - [ ] Tests 178 | 179 | ## Support my Work 180 | 181 | I'm a full-stack developer with more than 20 year of experience and I try to share most of my work for free and help others, but this takes a significant amount of time and effort so, if you like my work, please consider... 182 | 183 | [][kofi-url] 184 | 185 | Of course, feedback, PRs, and stars are also welcome 🙃 186 | 187 | Thanks for your support! 188 | 189 | [npm-image]: https://img.shields.io/npm/v/react-native-cross-geolocation.svg 190 | [license-image]: https://img.shields.io/npm/l/express.svg 191 | [kofi-url]: https://ko-fi.com/C0C7LF7I 192 | -------------------------------------------------------------------------------- /android/src/main/java/com/github/amarcruz/geolocation/RNGeolocationModule.java: -------------------------------------------------------------------------------- 1 | package com.github.amarcruz.geolocation; 2 | 3 | import android.Manifest; 4 | import android.app.Activity; 5 | import android.content.pm.PackageManager; 6 | import android.location.Location; 7 | import android.support.v4.app.ActivityCompat; 8 | import android.util.Log; 9 | 10 | import com.facebook.react.bridge.Callback; 11 | import com.facebook.react.bridge.ReactApplicationContext; 12 | import com.facebook.react.bridge.ReactContextBaseJavaModule; 13 | import com.facebook.react.bridge.ReactMethod; 14 | import com.facebook.react.bridge.ReadableMap; 15 | import com.facebook.react.bridge.WritableMap; 16 | import com.facebook.react.common.SystemClock; 17 | 18 | import com.facebook.react.modules.core.DeviceEventManagerModule.RCTDeviceEventEmitter; 19 | import com.google.android.gms.common.ConnectionResult; 20 | import com.google.android.gms.common.GoogleApiAvailability; 21 | import com.google.android.gms.common.api.ApiException; 22 | import com.google.android.gms.location.FusedLocationProviderClient; 23 | import com.google.android.gms.location.LocationCallback; 24 | import com.google.android.gms.location.LocationRequest; 25 | import com.google.android.gms.location.LocationResult; 26 | import com.google.android.gms.location.LocationServices; 27 | import com.google.android.gms.location.LocationSettingsRequest; 28 | import com.google.android.gms.location.SettingsClient; 29 | 30 | import java.util.HashMap; 31 | import java.util.Map; 32 | 33 | public class RNGeolocationModule extends ReactContextBaseJavaModule { 34 | private static final String TAG = Constants.TAG; 35 | 36 | private FusedLocationProviderClient mFusedProviderClient; 37 | private boolean mRequestingLocationUpdates = false; 38 | 39 | private final LocationCallback mLocationCallback = new LocationCallback() { 40 | @Override 41 | public void onLocationResult(LocationResult locationResult) { 42 | synchronized (RNGeolocationModule.this) { 43 | if (locationResult != null) { 44 | emitSuccess(locationResult.getLastLocation()); 45 | } 46 | } 47 | } 48 | }; 49 | 50 | RNGeolocationModule(ReactApplicationContext reactContext) { 51 | super(reactContext); 52 | mFusedProviderClient = LocationServices.getFusedLocationProviderClient(reactContext); 53 | } 54 | 55 | @Override 56 | public String getName() { 57 | return TAG; 58 | } 59 | 60 | @Override 61 | public Map getConstants() { 62 | final Map constants = new HashMap<>(); 63 | 64 | constants.put("HIGH_ACCURACY", LocationRequest.PRIORITY_HIGH_ACCURACY); 65 | constants.put("BALANCED", LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY); 66 | constants.put("LOW_POWER", LocationRequest.PRIORITY_LOW_POWER); 67 | constants.put("NO_POWER", LocationRequest.PRIORITY_NO_POWER); 68 | 69 | return constants; 70 | } 71 | 72 | @ReactMethod 73 | public void setConfiguration(final ReadableMap conf) { 74 | LocationOptions.setConfiguration(conf); 75 | } 76 | 77 | @ReactMethod 78 | public void getCurrentPosition(ReadableMap options, final Callback success, final Callback error) { 79 | final ReactApplicationContext context = getReactApplicationContext(); 80 | final Activity activity = context.getCurrentActivity(); 81 | final LocationOptions opts = LocationOptions.fromReactMap(options); 82 | final LocationResolver resolver = new LocationResolver(success, error); 83 | 84 | if (activity == null) { 85 | resolver.error("Cannot get activity."); 86 | return; 87 | } 88 | 89 | if (isPlayServicesNotAvailable(context)) { 90 | resolver.error("Google Play Service not available."); 91 | return; 92 | } 93 | 94 | if (!hasPermissions(context)) { 95 | resolver.error(PositionError.PERMISSION_DENIED, "Location permission not granted."); 96 | return; 97 | } 98 | 99 | final SettingsClient settingsClient = LocationServices.getSettingsClient(context); 100 | 101 | final LocationRequest locationRequest = new LocationRequest() 102 | .setInterval(LocationOptions.getUpdateInterval()) 103 | .setFastestInterval(LocationOptions.getFastestInterval()) 104 | .setPriority(opts.priority) 105 | .setExpirationDuration(opts.timeout); 106 | 107 | final LocationSettingsRequest locationSettingsRequest = new LocationSettingsRequest.Builder() 108 | .addLocationRequest(locationRequest) 109 | .build(); 110 | 111 | settingsClient.checkLocationSettings(locationSettingsRequest) 112 | .addOnSuccessListener(activity, task -> { 113 | // All location settings are satisfied. 114 | getUserLocation(locationRequest, opts, resolver); 115 | }) 116 | .addOnFailureListener(activity, ex -> { 117 | final int code = ((ApiException) ex).getStatusCode(); 118 | resolver.error("Error " + code + ": " + ex.getMessage()); 119 | }); 120 | } 121 | 122 | @ReactMethod 123 | public void stopObserving() { 124 | if (mRequestingLocationUpdates) { 125 | mRequestingLocationUpdates = false; 126 | try { 127 | mFusedProviderClient.removeLocationUpdates(mLocationCallback); 128 | } catch (Exception ex) { 129 | ex.printStackTrace(); 130 | } 131 | } 132 | } 133 | 134 | @ReactMethod 135 | public void startObserving(final ReadableMap opts) { 136 | if (mRequestingLocationUpdates) { 137 | return; 138 | } 139 | mRequestingLocationUpdates = true; 140 | mRequestingLocationUpdates = startUpdater(LocationOptions.fromReactMap(opts)); 141 | } 142 | 143 | private void getUserLocation( 144 | final LocationRequest locationRequest, 145 | final LocationOptions options, 146 | final LocationResolver resolver 147 | ) { 148 | final ReactApplicationContext context = getReactApplicationContext(); 149 | 150 | if (mFusedProviderClient != null && hasPermissions(context)) { 151 | try { 152 | mFusedProviderClient.getLastLocation().addOnCompleteListener(task -> { 153 | Location location = task.getResult(); 154 | 155 | if (location != null && 156 | (SystemClock.currentTimeMillis() - location.getTime()) < options.maximumAge) { 157 | resolver.success(location); 158 | } else { 159 | // Last location not available, request new location. 160 | new SingleLocationRequest( 161 | mFusedProviderClient, 162 | locationRequest, 163 | resolver).getLocation(); 164 | } 165 | }); 166 | } catch (SecurityException ex) { 167 | emitError(PositionError.PERMISSION_DENIED, ex.getMessage()); 168 | } 169 | } 170 | } 171 | 172 | private boolean startUpdater (final LocationOptions options) { 173 | final ReactApplicationContext context = getReactApplicationContext(); 174 | final Activity activity = context.getCurrentActivity(); 175 | 176 | if (activity == null) { 177 | emitError("Cannot get activity."); 178 | return false; 179 | } 180 | 181 | if (isPlayServicesNotAvailable(context)) { 182 | emitError("Google Play Service not available."); 183 | return false; 184 | } 185 | 186 | if (!hasPermissions(context)) { 187 | emitError(PositionError.PERMISSION_DENIED, "Location permission not granted."); 188 | return false; 189 | } 190 | 191 | try { 192 | final SettingsClient settingsClient = LocationServices.getSettingsClient(context); 193 | 194 | final LocationRequest locationRequest = new LocationRequest() 195 | .setInterval(LocationOptions.getUpdateInterval()) 196 | .setFastestInterval(LocationOptions.getFastestInterval()) 197 | .setPriority(options.priority) 198 | .setExpirationDuration(options.timeout) 199 | .setSmallestDisplacement(options.distanceFilter); 200 | 201 | final LocationSettingsRequest locationSettingsRequest = new LocationSettingsRequest.Builder() 202 | .addLocationRequest(locationRequest) 203 | .build(); 204 | 205 | settingsClient.checkLocationSettings(locationSettingsRequest) 206 | .addOnSuccessListener(activity, task -> { 207 | // All location settings are satisfied. 208 | mFusedProviderClient.requestLocationUpdates(locationRequest, mLocationCallback, null) 209 | .addOnFailureListener(e -> emitError(e.getMessage())); 210 | 211 | }) 212 | .addOnFailureListener(activity, ex -> { 213 | final int code = ((ApiException) ex).getStatusCode(); 214 | emitError("Error " + code + ": " + ex.getMessage()); 215 | }); 216 | return true; 217 | 218 | } catch (SecurityException ex) { 219 | emitError(PositionError.PERMISSION_DENIED, ex.getMessage()); 220 | return false; 221 | } 222 | } 223 | 224 | private void emitSuccess(final Location location) { 225 | final ReactApplicationContext reactContext = getReactApplicationContext(); 226 | 227 | if (reactContext.hasActiveCatalystInstance()) { 228 | final WritableMap result = LocationResolver.locationToMap(location); 229 | reactContext 230 | .getJSModule(RCTDeviceEventEmitter.class) 231 | .emit("geolocationDidChange", result); 232 | } else { 233 | Log.i(TAG, "Waiting for Catalyst Instance..."); 234 | } 235 | } 236 | 237 | private void emitError(int code, String message) { 238 | final ReactApplicationContext reactContext = getReactApplicationContext(); 239 | 240 | if (reactContext.hasActiveCatalystInstance()) { 241 | reactContext 242 | .getJSModule(RCTDeviceEventEmitter.class) 243 | .emit("geolocationError", PositionError.buildError(code, message)); 244 | } else { 245 | Log.i(TAG, "Waiting for Catalyst Instance..."); 246 | } 247 | } 248 | 249 | private void emitError(final String message) { 250 | emitError(PositionError.POSITION_UNAVAILABLE, message); 251 | } 252 | 253 | private static boolean hasPermissions(final ReactApplicationContext context) { 254 | return (ActivityCompat.checkSelfPermission( 255 | context, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED) || 256 | (ActivityCompat.checkSelfPermission( 257 | context, Manifest.permission.ACCESS_COARSE_LOCATION) == PackageManager.PERMISSION_GRANTED); 258 | } 259 | 260 | private boolean isPlayServicesNotAvailable(final ReactApplicationContext context) { 261 | final GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.getInstance(); 262 | final int resultCode = googleApiAvailability.isGooglePlayServicesAvailable(context); 263 | 264 | if (resultCode == ConnectionResult.SUCCESS) { 265 | return false; 266 | } 267 | 268 | if (googleApiAvailability.isUserResolvableError(resultCode)) { 269 | googleApiAvailability.getErrorDialog( 270 | getCurrentActivity(), resultCode, Constants.PLAY_SERVICES_REQUEST).show(); 271 | } 272 | return true; 273 | } 274 | } 275 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.51": 6 | version "7.0.0-beta.51" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz#bd71d9b192af978df915829d39d4094456439a0c" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.51" 10 | 11 | "@babel/core@^7.0.0-beta": 12 | version "7.0.0-beta.51" 13 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.0.0-beta.51.tgz#0e54bd6b638736b2ae593c31a47f0969e2b2b96d" 14 | dependencies: 15 | "@babel/code-frame" "7.0.0-beta.51" 16 | "@babel/generator" "7.0.0-beta.51" 17 | "@babel/helpers" "7.0.0-beta.51" 18 | "@babel/parser" "7.0.0-beta.51" 19 | "@babel/template" "7.0.0-beta.51" 20 | "@babel/traverse" "7.0.0-beta.51" 21 | "@babel/types" "7.0.0-beta.51" 22 | convert-source-map "^1.1.0" 23 | debug "^3.1.0" 24 | json5 "^0.5.0" 25 | lodash "^4.17.5" 26 | micromatch "^3.1.10" 27 | resolve "^1.3.2" 28 | semver "^5.4.1" 29 | source-map "^0.5.0" 30 | 31 | "@babel/generator@7.0.0-beta.51", "@babel/generator@^7.0.0-beta": 32 | version "7.0.0-beta.51" 33 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.51.tgz#6c7575ffde761d07485e04baedc0392c6d9e30f6" 34 | dependencies: 35 | "@babel/types" "7.0.0-beta.51" 36 | jsesc "^2.5.1" 37 | lodash "^4.17.5" 38 | source-map "^0.5.0" 39 | trim-right "^1.0.1" 40 | 41 | "@babel/helper-annotate-as-pure@7.0.0-beta.51": 42 | version "7.0.0-beta.51" 43 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0-beta.51.tgz#38cf7920bf5f338a227f754e286b6fbadee04b58" 44 | dependencies: 45 | "@babel/types" "7.0.0-beta.51" 46 | 47 | "@babel/helper-builder-binary-assignment-operator-visitor@7.0.0-beta.51": 48 | version "7.0.0-beta.51" 49 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.0.0-beta.51.tgz#2133fffe3e2f71591e42147b947291ca2ad39237" 50 | dependencies: 51 | "@babel/helper-explode-assignable-expression" "7.0.0-beta.51" 52 | "@babel/types" "7.0.0-beta.51" 53 | 54 | "@babel/helper-builder-react-jsx@7.0.0-beta.51": 55 | version "7.0.0-beta.51" 56 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0-beta.51.tgz#86c72d6683bd2597c938a12153a6e480bf140128" 57 | dependencies: 58 | "@babel/types" "7.0.0-beta.51" 59 | esutils "^2.0.0" 60 | 61 | "@babel/helper-call-delegate@7.0.0-beta.51": 62 | version "7.0.0-beta.51" 63 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.0.0-beta.51.tgz#04ed727c97cf05bcb2fd644837331ab15d63c819" 64 | dependencies: 65 | "@babel/helper-hoist-variables" "7.0.0-beta.51" 66 | "@babel/traverse" "7.0.0-beta.51" 67 | "@babel/types" "7.0.0-beta.51" 68 | 69 | "@babel/helper-define-map@7.0.0-beta.51": 70 | version "7.0.0-beta.51" 71 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.0.0-beta.51.tgz#d88c64737e948c713f9f1153338e8415fee40b11" 72 | dependencies: 73 | "@babel/helper-function-name" "7.0.0-beta.51" 74 | "@babel/types" "7.0.0-beta.51" 75 | lodash "^4.17.5" 76 | 77 | "@babel/helper-explode-assignable-expression@7.0.0-beta.51": 78 | version "7.0.0-beta.51" 79 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.0.0-beta.51.tgz#9875332ad8b5d5c982fa481cb82b731703f2cd2d" 80 | dependencies: 81 | "@babel/traverse" "7.0.0-beta.51" 82 | "@babel/types" "7.0.0-beta.51" 83 | 84 | "@babel/helper-function-name@7.0.0-beta.51": 85 | version "7.0.0-beta.51" 86 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.51.tgz#21b4874a227cf99ecafcc30a90302da5a2640561" 87 | dependencies: 88 | "@babel/helper-get-function-arity" "7.0.0-beta.51" 89 | "@babel/template" "7.0.0-beta.51" 90 | "@babel/types" "7.0.0-beta.51" 91 | 92 | "@babel/helper-get-function-arity@7.0.0-beta.51": 93 | version "7.0.0-beta.51" 94 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.51.tgz#3281b2d045af95c172ce91b20825d85ea4676411" 95 | dependencies: 96 | "@babel/types" "7.0.0-beta.51" 97 | 98 | "@babel/helper-hoist-variables@7.0.0-beta.51": 99 | version "7.0.0-beta.51" 100 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0-beta.51.tgz#5d7ebc8596567b644fc989912c3a3ef98be058fc" 101 | dependencies: 102 | "@babel/types" "7.0.0-beta.51" 103 | 104 | "@babel/helper-member-expression-to-functions@7.0.0-beta.51": 105 | version "7.0.0-beta.51" 106 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0-beta.51.tgz#2a42536574176588806e602eb17a52d323f82870" 107 | dependencies: 108 | "@babel/types" "7.0.0-beta.51" 109 | 110 | "@babel/helper-module-imports@7.0.0-beta.51": 111 | version "7.0.0-beta.51" 112 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0-beta.51.tgz#ce00428045fbb7d5ebc0ea7bf835789f15366ab2" 113 | dependencies: 114 | "@babel/types" "7.0.0-beta.51" 115 | lodash "^4.17.5" 116 | 117 | "@babel/helper-module-transforms@7.0.0-beta.51": 118 | version "7.0.0-beta.51" 119 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.0.0-beta.51.tgz#13af0c8ee41f277743c8fc43d444315db2326f73" 120 | dependencies: 121 | "@babel/helper-module-imports" "7.0.0-beta.51" 122 | "@babel/helper-simple-access" "7.0.0-beta.51" 123 | "@babel/helper-split-export-declaration" "7.0.0-beta.51" 124 | "@babel/template" "7.0.0-beta.51" 125 | "@babel/types" "7.0.0-beta.51" 126 | lodash "^4.17.5" 127 | 128 | "@babel/helper-optimise-call-expression@7.0.0-beta.51": 129 | version "7.0.0-beta.51" 130 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0-beta.51.tgz#21f2158ef083a123ce1e04665b5bb84f370080d7" 131 | dependencies: 132 | "@babel/types" "7.0.0-beta.51" 133 | 134 | "@babel/helper-plugin-utils@7.0.0-beta.51": 135 | version "7.0.0-beta.51" 136 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0-beta.51.tgz#0f6a5f2b6d1c6444413f8fab60940d79b63c2031" 137 | 138 | "@babel/helper-remap-async-to-generator@^7.0.0-beta": 139 | version "7.0.0-beta.51" 140 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.0.0-beta.51.tgz#0edc57e05dcb5dde2a0b6ee6f8d0261982def25f" 141 | dependencies: 142 | "@babel/helper-annotate-as-pure" "7.0.0-beta.51" 143 | "@babel/helper-wrap-function" "7.0.0-beta.51" 144 | "@babel/template" "7.0.0-beta.51" 145 | "@babel/traverse" "7.0.0-beta.51" 146 | "@babel/types" "7.0.0-beta.51" 147 | 148 | "@babel/helper-replace-supers@7.0.0-beta.51": 149 | version "7.0.0-beta.51" 150 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.0.0-beta.51.tgz#279a61afb849476c6cc70d5519f83df4a74ffa6f" 151 | dependencies: 152 | "@babel/helper-member-expression-to-functions" "7.0.0-beta.51" 153 | "@babel/helper-optimise-call-expression" "7.0.0-beta.51" 154 | "@babel/traverse" "7.0.0-beta.51" 155 | "@babel/types" "7.0.0-beta.51" 156 | 157 | "@babel/helper-simple-access@7.0.0-beta.51": 158 | version "7.0.0-beta.51" 159 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.0.0-beta.51.tgz#c9d7fecd84a181d50a3afcc422fc94a968be3050" 160 | dependencies: 161 | "@babel/template" "7.0.0-beta.51" 162 | "@babel/types" "7.0.0-beta.51" 163 | lodash "^4.17.5" 164 | 165 | "@babel/helper-split-export-declaration@7.0.0-beta.51": 166 | version "7.0.0-beta.51" 167 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.51.tgz#8a6c3f66c4d265352fc077484f9f6e80a51ab978" 168 | dependencies: 169 | "@babel/types" "7.0.0-beta.51" 170 | 171 | "@babel/helper-wrap-function@7.0.0-beta.51": 172 | version "7.0.0-beta.51" 173 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.0.0-beta.51.tgz#6c516fb044109964ee031c22500a830313862fb1" 174 | dependencies: 175 | "@babel/helper-function-name" "7.0.0-beta.51" 176 | "@babel/template" "7.0.0-beta.51" 177 | "@babel/traverse" "7.0.0-beta.51" 178 | "@babel/types" "7.0.0-beta.51" 179 | 180 | "@babel/helpers@7.0.0-beta.51": 181 | version "7.0.0-beta.51" 182 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.0.0-beta.51.tgz#95272be2ab4634d6820425f8925031a928918397" 183 | dependencies: 184 | "@babel/template" "7.0.0-beta.51" 185 | "@babel/traverse" "7.0.0-beta.51" 186 | "@babel/types" "7.0.0-beta.51" 187 | 188 | "@babel/highlight@7.0.0-beta.51": 189 | version "7.0.0-beta.51" 190 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.51.tgz#e8844ae25a1595ccfd42b89623b4376ca06d225d" 191 | dependencies: 192 | chalk "^2.0.0" 193 | esutils "^2.0.2" 194 | js-tokens "^3.0.0" 195 | 196 | "@babel/parser@7.0.0-beta.51": 197 | version "7.0.0-beta.51" 198 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.0.0-beta.51.tgz#27cec2df409df60af58270ed8f6aa55409ea86f6" 199 | 200 | "@babel/plugin-external-helpers@^7.0.0-beta": 201 | version "7.0.0-beta.51" 202 | resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.0.0-beta.51.tgz#b4783bcf9152d15942cbe0f0bca261b849d35c98" 203 | dependencies: 204 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 205 | 206 | "@babel/plugin-proposal-class-properties@^7.0.0-beta": 207 | version "7.0.0-beta.51" 208 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.0.0-beta.51.tgz#b5c662f862a30ace94fc48477837b1d255fa38df" 209 | dependencies: 210 | "@babel/helper-function-name" "7.0.0-beta.51" 211 | "@babel/helper-member-expression-to-functions" "7.0.0-beta.51" 212 | "@babel/helper-optimise-call-expression" "7.0.0-beta.51" 213 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 214 | "@babel/helper-replace-supers" "7.0.0-beta.51" 215 | "@babel/plugin-syntax-class-properties" "7.0.0-beta.51" 216 | 217 | "@babel/plugin-proposal-object-rest-spread@^7.0.0-beta": 218 | version "7.0.0-beta.51" 219 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0-beta.51.tgz#5bc469e5e6d1b84a5d6046b59e90ca016c2086d6" 220 | dependencies: 221 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 222 | "@babel/plugin-syntax-object-rest-spread" "7.0.0-beta.51" 223 | 224 | "@babel/plugin-syntax-class-properties@7.0.0-beta.51": 225 | version "7.0.0-beta.51" 226 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.0.0-beta.51.tgz#f0cbf6f22a879c593a07e8e141c908e087701e91" 227 | dependencies: 228 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 229 | 230 | "@babel/plugin-syntax-dynamic-import@^7.0.0-beta": 231 | version "7.0.0-beta.51" 232 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.0.0-beta.51.tgz#9c0aeef57d0678e3726db171aa73e474a25de7f2" 233 | dependencies: 234 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 235 | 236 | "@babel/plugin-syntax-flow@7.0.0-beta.51": 237 | version "7.0.0-beta.51" 238 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.0.0-beta.51.tgz#de0883134406f90f958b64073e9749880229de56" 239 | dependencies: 240 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 241 | 242 | "@babel/plugin-syntax-jsx@7.0.0-beta.51": 243 | version "7.0.0-beta.51" 244 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.0.0-beta.51.tgz#f672a3371c6ba3fe53bffd2e8ab5dc40495382cf" 245 | dependencies: 246 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 247 | 248 | "@babel/plugin-syntax-object-rest-spread@7.0.0-beta.51": 249 | version "7.0.0-beta.51" 250 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0-beta.51.tgz#6d57a119c1f064c458e45bad45bef0a83ed10c00" 251 | dependencies: 252 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 253 | 254 | "@babel/plugin-transform-arrow-functions@^7.0.0-beta": 255 | version "7.0.0-beta.51" 256 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0-beta.51.tgz#29b9db6e38688a06ec5c25639996d89a5ebfdbe3" 257 | dependencies: 258 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 259 | 260 | "@babel/plugin-transform-block-scoping@^7.0.0-beta": 261 | version "7.0.0-beta.51" 262 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.0.0-beta.51.tgz#be555c79f0da4eb168a7fe16d787a9a7173701e0" 263 | dependencies: 264 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 265 | lodash "^4.17.5" 266 | 267 | "@babel/plugin-transform-classes@^7.0.0-beta": 268 | version "7.0.0-beta.51" 269 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.0.0-beta.51.tgz#043f31fb6327664a32d8ba65de15799efdc65da0" 270 | dependencies: 271 | "@babel/helper-annotate-as-pure" "7.0.0-beta.51" 272 | "@babel/helper-define-map" "7.0.0-beta.51" 273 | "@babel/helper-function-name" "7.0.0-beta.51" 274 | "@babel/helper-optimise-call-expression" "7.0.0-beta.51" 275 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 276 | "@babel/helper-replace-supers" "7.0.0-beta.51" 277 | "@babel/helper-split-export-declaration" "7.0.0-beta.51" 278 | globals "^11.1.0" 279 | 280 | "@babel/plugin-transform-computed-properties@^7.0.0-beta": 281 | version "7.0.0-beta.51" 282 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.0.0-beta.51.tgz#8c72a1ab3e0767034ff9e6732d2581c23c032efe" 283 | dependencies: 284 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 285 | 286 | "@babel/plugin-transform-destructuring@^7.0.0-beta": 287 | version "7.0.0-beta.51" 288 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.0.0-beta.51.tgz#d5d454e574c7ef33ee49e918b048afb29be935f6" 289 | dependencies: 290 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 291 | 292 | "@babel/plugin-transform-exponentiation-operator@^7.0.0-beta": 293 | version "7.0.0-beta.51" 294 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.0.0-beta.51.tgz#04b4e3e40b3701112dd6eda39625132757881fd4" 295 | dependencies: 296 | "@babel/helper-builder-binary-assignment-operator-visitor" "7.0.0-beta.51" 297 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 298 | 299 | "@babel/plugin-transform-flow-strip-types@^7.0.0-beta": 300 | version "7.0.0-beta.51" 301 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.0.0-beta.51.tgz#67d434459f7a7b26a9f2a6855bc12e67894e47a6" 302 | dependencies: 303 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 304 | "@babel/plugin-syntax-flow" "7.0.0-beta.51" 305 | 306 | "@babel/plugin-transform-for-of@^7.0.0-beta": 307 | version "7.0.0-beta.51" 308 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.0.0-beta.51.tgz#44f476b06c4035517a8403a2624fb164c4371455" 309 | dependencies: 310 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 311 | 312 | "@babel/plugin-transform-function-name@^7.0.0-beta": 313 | version "7.0.0-beta.51" 314 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.0.0-beta.51.tgz#70653c360b53254246f4659ec450b0c0a56d86aa" 315 | dependencies: 316 | "@babel/helper-function-name" "7.0.0-beta.51" 317 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 318 | 319 | "@babel/plugin-transform-literals@^7.0.0-beta": 320 | version "7.0.0-beta.51" 321 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.0.0-beta.51.tgz#45b07a94223cfa226701a79460b42b32df1dec05" 322 | dependencies: 323 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 324 | 325 | "@babel/plugin-transform-modules-commonjs@^7.0.0-beta": 326 | version "7.0.0-beta.51" 327 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.0.0-beta.51.tgz#4038f9e15244e10900cb89f5b796d050f1eb195b" 328 | dependencies: 329 | "@babel/helper-module-transforms" "7.0.0-beta.51" 330 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 331 | "@babel/helper-simple-access" "7.0.0-beta.51" 332 | 333 | "@babel/plugin-transform-object-assign@^7.0.0-beta": 334 | version "7.0.0-beta.51" 335 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.0.0-beta.51.tgz#0d56a3e2d8b06d9de6c6519835a3e028448e13b8" 336 | dependencies: 337 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 338 | 339 | "@babel/plugin-transform-parameters@^7.0.0-beta": 340 | version "7.0.0-beta.51" 341 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.0.0-beta.51.tgz#990195b1dfdb1bcc94906f3034951089ed1edd4e" 342 | dependencies: 343 | "@babel/helper-call-delegate" "7.0.0-beta.51" 344 | "@babel/helper-get-function-arity" "7.0.0-beta.51" 345 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 346 | 347 | "@babel/plugin-transform-react-display-name@^7.0.0-beta": 348 | version "7.0.0-beta.51" 349 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.0.0-beta.51.tgz#1b48bd34dfa9087252c8707d29bd1df2e8821cbe" 350 | dependencies: 351 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 352 | 353 | "@babel/plugin-transform-react-jsx-source@^7.0.0-beta": 354 | version "7.0.0-beta.51" 355 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.0.0-beta.51.tgz#6999dc491c8b4602efb4d0bd1bafc936ad696ecf" 356 | dependencies: 357 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 358 | "@babel/plugin-syntax-jsx" "7.0.0-beta.51" 359 | 360 | "@babel/plugin-transform-react-jsx@^7.0.0-beta": 361 | version "7.0.0-beta.51" 362 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.0.0-beta.51.tgz#7af8498518b83906405438370198808ca6e63b10" 363 | dependencies: 364 | "@babel/helper-builder-react-jsx" "7.0.0-beta.51" 365 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 366 | "@babel/plugin-syntax-jsx" "7.0.0-beta.51" 367 | 368 | "@babel/plugin-transform-regenerator@^7.0.0-beta": 369 | version "7.0.0-beta.51" 370 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0-beta.51.tgz#536f0d599d2753dca0a2be8a65e2c244a7b5612b" 371 | dependencies: 372 | regenerator-transform "^0.12.4" 373 | 374 | "@babel/plugin-transform-shorthand-properties@^7.0.0-beta": 375 | version "7.0.0-beta.51" 376 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.0.0-beta.51.tgz#ddbc0b1ae1ddb3bcfe6969f2c968103f11e32bd9" 377 | dependencies: 378 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 379 | 380 | "@babel/plugin-transform-spread@^7.0.0-beta": 381 | version "7.0.0-beta.51" 382 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.0.0-beta.51.tgz#100129bc8d7dcf4bc79adcd6129a4214259d8a50" 383 | dependencies: 384 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 385 | 386 | "@babel/plugin-transform-template-literals@^7.0.0-beta": 387 | version "7.0.0-beta.51" 388 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.0.0-beta.51.tgz#2d0595f56461d4345ba35c38d73033f87ecbbbc8" 389 | dependencies: 390 | "@babel/helper-annotate-as-pure" "7.0.0-beta.51" 391 | "@babel/helper-plugin-utils" "7.0.0-beta.51" 392 | 393 | "@babel/register@^7.0.0-beta": 394 | version "7.0.0-beta.51" 395 | resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.0.0-beta.51.tgz#31a6d27f124cc7a2a0a603b65d23d5644b979aa0" 396 | dependencies: 397 | core-js "^2.5.7" 398 | find-cache-dir "^1.0.0" 399 | home-or-tmp "^3.0.0" 400 | lodash "^4.17.5" 401 | mkdirp "^0.5.1" 402 | pirates "^3.0.1" 403 | source-map-support "^0.4.2" 404 | 405 | "@babel/template@7.0.0-beta.51", "@babel/template@^7.0.0-beta": 406 | version "7.0.0-beta.51" 407 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.51.tgz#9602a40aebcf357ae9677e2532ef5fc810f5fbff" 408 | dependencies: 409 | "@babel/code-frame" "7.0.0-beta.51" 410 | "@babel/parser" "7.0.0-beta.51" 411 | "@babel/types" "7.0.0-beta.51" 412 | lodash "^4.17.5" 413 | 414 | "@babel/traverse@7.0.0-beta.51", "@babel/traverse@^7.0.0-beta": 415 | version "7.0.0-beta.51" 416 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.51.tgz#981daf2cec347a6231d3aa1d9e1803b03aaaa4a8" 417 | dependencies: 418 | "@babel/code-frame" "7.0.0-beta.51" 419 | "@babel/generator" "7.0.0-beta.51" 420 | "@babel/helper-function-name" "7.0.0-beta.51" 421 | "@babel/helper-split-export-declaration" "7.0.0-beta.51" 422 | "@babel/parser" "7.0.0-beta.51" 423 | "@babel/types" "7.0.0-beta.51" 424 | debug "^3.1.0" 425 | globals "^11.1.0" 426 | invariant "^2.2.0" 427 | lodash "^4.17.5" 428 | 429 | "@babel/types@7.0.0-beta.51", "@babel/types@^7.0.0-beta": 430 | version "7.0.0-beta.51" 431 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.51.tgz#d802b7b543b5836c778aa691797abf00f3d97ea9" 432 | dependencies: 433 | esutils "^2.0.2" 434 | lodash "^4.17.5" 435 | to-fast-properties "^2.0.0" 436 | 437 | abbrev@1: 438 | version "1.1.1" 439 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 440 | 441 | absolute-path@^0.0.0: 442 | version "0.0.0" 443 | resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" 444 | 445 | accepts@~1.3.3, accepts@~1.3.4: 446 | version "1.3.5" 447 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" 448 | dependencies: 449 | mime-types "~2.1.18" 450 | negotiator "0.6.1" 451 | 452 | ansi-colors@^1.0.1: 453 | version "1.1.0" 454 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" 455 | dependencies: 456 | ansi-wrap "^0.1.0" 457 | 458 | ansi-cyan@^0.1.1: 459 | version "0.1.1" 460 | resolved "https://registry.yarnpkg.com/ansi-cyan/-/ansi-cyan-0.1.1.tgz#538ae528af8982f28ae30d86f2f17456d2609873" 461 | dependencies: 462 | ansi-wrap "0.1.0" 463 | 464 | ansi-escapes@^3.0.0: 465 | version "3.1.0" 466 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 467 | 468 | ansi-gray@^0.1.1: 469 | version "0.1.1" 470 | resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" 471 | dependencies: 472 | ansi-wrap "0.1.0" 473 | 474 | ansi-red@^0.1.1: 475 | version "0.1.1" 476 | resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c" 477 | dependencies: 478 | ansi-wrap "0.1.0" 479 | 480 | ansi-regex@^2.0.0: 481 | version "2.1.1" 482 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 483 | 484 | ansi-regex@^3.0.0: 485 | version "3.0.0" 486 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 487 | 488 | ansi-styles@^2.2.1: 489 | version "2.2.1" 490 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 491 | 492 | ansi-styles@^3.2.1: 493 | version "3.2.1" 494 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 495 | dependencies: 496 | color-convert "^1.9.0" 497 | 498 | ansi-wrap@0.1.0, ansi-wrap@^0.1.0: 499 | version "0.1.0" 500 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 501 | 502 | ansi@^0.3.0, ansi@~0.3.1: 503 | version "0.3.1" 504 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 505 | 506 | anymatch@^2.0.0: 507 | version "2.0.0" 508 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 509 | dependencies: 510 | micromatch "^3.1.4" 511 | normalize-path "^2.1.1" 512 | 513 | aproba@^1.0.3: 514 | version "1.2.0" 515 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 516 | 517 | arch@^2.1.0: 518 | version "2.1.1" 519 | resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e" 520 | 521 | are-we-there-yet@~1.1.2: 522 | version "1.1.5" 523 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 524 | dependencies: 525 | delegates "^1.0.0" 526 | readable-stream "^2.0.6" 527 | 528 | arr-diff@^1.0.1: 529 | version "1.1.0" 530 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-1.1.0.tgz#687c32758163588fef7de7b36fabe495eb1a399a" 531 | dependencies: 532 | arr-flatten "^1.0.1" 533 | array-slice "^0.2.3" 534 | 535 | arr-diff@^2.0.0: 536 | version "2.0.0" 537 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 538 | dependencies: 539 | arr-flatten "^1.0.1" 540 | 541 | arr-diff@^4.0.0: 542 | version "4.0.0" 543 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 544 | 545 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 546 | version "1.1.0" 547 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 548 | 549 | arr-union@^2.0.1: 550 | version "2.1.0" 551 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-2.1.0.tgz#20f9eab5ec70f5c7d215b1077b1c39161d292c7d" 552 | 553 | arr-union@^3.1.0: 554 | version "3.1.0" 555 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 556 | 557 | array-filter@~0.0.0: 558 | version "0.0.1" 559 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 560 | 561 | array-map@~0.0.0: 562 | version "0.0.0" 563 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 564 | 565 | array-reduce@~0.0.0: 566 | version "0.0.0" 567 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 568 | 569 | array-slice@^0.2.3: 570 | version "0.2.3" 571 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 572 | 573 | array-unique@^0.2.1: 574 | version "0.2.1" 575 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 576 | 577 | array-unique@^0.3.2: 578 | version "0.3.2" 579 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 580 | 581 | art@^0.10.0: 582 | version "0.10.2" 583 | resolved "https://registry.yarnpkg.com/art/-/art-0.10.2.tgz#55c3738d82a3a07e0623943f070ebe86297253d9" 584 | 585 | asap@~2.0.3: 586 | version "2.0.6" 587 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 588 | 589 | assign-symbols@^1.0.0: 590 | version "1.0.0" 591 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 592 | 593 | async@^2.4.0: 594 | version "2.6.1" 595 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 596 | dependencies: 597 | lodash "^4.17.10" 598 | 599 | atob@^2.1.1: 600 | version "2.1.1" 601 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 602 | 603 | babel-code-frame@^6.26.0: 604 | version "6.26.0" 605 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 606 | dependencies: 607 | chalk "^1.1.3" 608 | esutils "^2.0.2" 609 | js-tokens "^3.0.2" 610 | 611 | babel-core@^6.24.1, babel-core@^6.26.0, babel-core@^6.7.2: 612 | version "6.26.3" 613 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 614 | dependencies: 615 | babel-code-frame "^6.26.0" 616 | babel-generator "^6.26.0" 617 | babel-helpers "^6.24.1" 618 | babel-messages "^6.23.0" 619 | babel-register "^6.26.0" 620 | babel-runtime "^6.26.0" 621 | babel-template "^6.26.0" 622 | babel-traverse "^6.26.0" 623 | babel-types "^6.26.0" 624 | babylon "^6.18.0" 625 | convert-source-map "^1.5.1" 626 | debug "^2.6.9" 627 | json5 "^0.5.1" 628 | lodash "^4.17.4" 629 | minimatch "^3.0.4" 630 | path-is-absolute "^1.0.1" 631 | private "^0.1.8" 632 | slash "^1.0.0" 633 | source-map "^0.5.7" 634 | 635 | babel-generator@^6.26.0: 636 | version "6.26.1" 637 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 638 | dependencies: 639 | babel-messages "^6.23.0" 640 | babel-runtime "^6.26.0" 641 | babel-types "^6.26.0" 642 | detect-indent "^4.0.0" 643 | jsesc "^1.3.0" 644 | lodash "^4.17.4" 645 | source-map "^0.5.7" 646 | trim-right "^1.0.1" 647 | 648 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 649 | version "6.24.1" 650 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 651 | dependencies: 652 | babel-helper-explode-assignable-expression "^6.24.1" 653 | babel-runtime "^6.22.0" 654 | babel-types "^6.24.1" 655 | 656 | babel-helper-builder-react-jsx@^6.24.1: 657 | version "6.26.0" 658 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 659 | dependencies: 660 | babel-runtime "^6.26.0" 661 | babel-types "^6.26.0" 662 | esutils "^2.0.2" 663 | 664 | babel-helper-call-delegate@^6.24.1: 665 | version "6.24.1" 666 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 667 | dependencies: 668 | babel-helper-hoist-variables "^6.24.1" 669 | babel-runtime "^6.22.0" 670 | babel-traverse "^6.24.1" 671 | babel-types "^6.24.1" 672 | 673 | babel-helper-define-map@^6.24.1: 674 | version "6.26.0" 675 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 676 | dependencies: 677 | babel-helper-function-name "^6.24.1" 678 | babel-runtime "^6.26.0" 679 | babel-types "^6.26.0" 680 | lodash "^4.17.4" 681 | 682 | babel-helper-explode-assignable-expression@^6.24.1: 683 | version "6.24.1" 684 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 685 | dependencies: 686 | babel-runtime "^6.22.0" 687 | babel-traverse "^6.24.1" 688 | babel-types "^6.24.1" 689 | 690 | babel-helper-function-name@^6.24.1: 691 | version "6.24.1" 692 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 693 | dependencies: 694 | babel-helper-get-function-arity "^6.24.1" 695 | babel-runtime "^6.22.0" 696 | babel-template "^6.24.1" 697 | babel-traverse "^6.24.1" 698 | babel-types "^6.24.1" 699 | 700 | babel-helper-get-function-arity@^6.24.1: 701 | version "6.24.1" 702 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 703 | dependencies: 704 | babel-runtime "^6.22.0" 705 | babel-types "^6.24.1" 706 | 707 | babel-helper-hoist-variables@^6.24.1: 708 | version "6.24.1" 709 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 710 | dependencies: 711 | babel-runtime "^6.22.0" 712 | babel-types "^6.24.1" 713 | 714 | babel-helper-optimise-call-expression@^6.24.1: 715 | version "6.24.1" 716 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 717 | dependencies: 718 | babel-runtime "^6.22.0" 719 | babel-types "^6.24.1" 720 | 721 | babel-helper-regex@^6.24.1: 722 | version "6.26.0" 723 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 724 | dependencies: 725 | babel-runtime "^6.26.0" 726 | babel-types "^6.26.0" 727 | lodash "^4.17.4" 728 | 729 | babel-helper-remap-async-to-generator@^6.16.0: 730 | version "6.24.1" 731 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 732 | dependencies: 733 | babel-helper-function-name "^6.24.1" 734 | babel-runtime "^6.22.0" 735 | babel-template "^6.24.1" 736 | babel-traverse "^6.24.1" 737 | babel-types "^6.24.1" 738 | 739 | babel-helper-replace-supers@^6.24.1: 740 | version "6.24.1" 741 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 742 | dependencies: 743 | babel-helper-optimise-call-expression "^6.24.1" 744 | babel-messages "^6.23.0" 745 | babel-runtime "^6.22.0" 746 | babel-template "^6.24.1" 747 | babel-traverse "^6.24.1" 748 | babel-types "^6.24.1" 749 | 750 | babel-helpers@^6.24.1: 751 | version "6.24.1" 752 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 753 | dependencies: 754 | babel-runtime "^6.22.0" 755 | babel-template "^6.24.1" 756 | 757 | babel-messages@^6.23.0: 758 | version "6.23.0" 759 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 760 | dependencies: 761 | babel-runtime "^6.22.0" 762 | 763 | babel-plugin-check-es2015-constants@^6.5.0, babel-plugin-check-es2015-constants@^6.8.0: 764 | version "6.22.0" 765 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 766 | dependencies: 767 | babel-runtime "^6.22.0" 768 | 769 | babel-plugin-external-helpers@^6.22.0: 770 | version "6.22.0" 771 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 772 | dependencies: 773 | babel-runtime "^6.22.0" 774 | 775 | babel-plugin-react-transform@^3.0.0: 776 | version "3.0.0" 777 | resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-3.0.0.tgz#402f25137b7bb66e9b54ead75557dfbc7ecaaa74" 778 | dependencies: 779 | lodash "^4.6.1" 780 | 781 | babel-plugin-syntax-async-functions@^6.5.0, babel-plugin-syntax-async-functions@^6.8.0: 782 | version "6.13.0" 783 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 784 | 785 | babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0: 786 | version "6.13.0" 787 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 788 | 789 | babel-plugin-syntax-dynamic-import@^6.18.0: 790 | version "6.18.0" 791 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 792 | 793 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 794 | version "6.13.0" 795 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 796 | 797 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0, babel-plugin-syntax-flow@^6.8.0: 798 | version "6.18.0" 799 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 800 | 801 | babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: 802 | version "6.18.0" 803 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 804 | 805 | babel-plugin-syntax-object-rest-spread@^6.8.0: 806 | version "6.13.0" 807 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 808 | 809 | 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: 810 | version "6.22.0" 811 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 812 | 813 | babel-plugin-transform-async-to-generator@6.16.0: 814 | version "6.16.0" 815 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 816 | dependencies: 817 | babel-helper-remap-async-to-generator "^6.16.0" 818 | babel-plugin-syntax-async-functions "^6.8.0" 819 | babel-runtime "^6.0.0" 820 | 821 | babel-plugin-transform-class-properties@^6.18.0, babel-plugin-transform-class-properties@^6.5.0, babel-plugin-transform-class-properties@^6.8.0: 822 | version "6.24.1" 823 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 824 | dependencies: 825 | babel-helper-function-name "^6.24.1" 826 | babel-plugin-syntax-class-properties "^6.8.0" 827 | babel-runtime "^6.22.0" 828 | babel-template "^6.24.1" 829 | 830 | babel-plugin-transform-es2015-arrow-functions@^6.5.0, babel-plugin-transform-es2015-arrow-functions@^6.8.0: 831 | version "6.22.0" 832 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 833 | dependencies: 834 | babel-runtime "^6.22.0" 835 | 836 | babel-plugin-transform-es2015-block-scoped-functions@^6.8.0: 837 | version "6.22.0" 838 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 839 | dependencies: 840 | babel-runtime "^6.22.0" 841 | 842 | babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es2015-block-scoping@^6.8.0: 843 | version "6.26.0" 844 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 845 | dependencies: 846 | babel-runtime "^6.26.0" 847 | babel-template "^6.26.0" 848 | babel-traverse "^6.26.0" 849 | babel-types "^6.26.0" 850 | lodash "^4.17.4" 851 | 852 | babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-classes@^6.8.0: 853 | version "6.24.1" 854 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 855 | dependencies: 856 | babel-helper-define-map "^6.24.1" 857 | babel-helper-function-name "^6.24.1" 858 | babel-helper-optimise-call-expression "^6.24.1" 859 | babel-helper-replace-supers "^6.24.1" 860 | babel-messages "^6.23.0" 861 | babel-runtime "^6.22.0" 862 | babel-template "^6.24.1" 863 | babel-traverse "^6.24.1" 864 | babel-types "^6.24.1" 865 | 866 | babel-plugin-transform-es2015-computed-properties@^6.5.0, babel-plugin-transform-es2015-computed-properties@^6.8.0: 867 | version "6.24.1" 868 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 869 | dependencies: 870 | babel-runtime "^6.22.0" 871 | babel-template "^6.24.1" 872 | 873 | babel-plugin-transform-es2015-destructuring@6.x, babel-plugin-transform-es2015-destructuring@^6.5.0, babel-plugin-transform-es2015-destructuring@^6.8.0: 874 | version "6.23.0" 875 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 876 | dependencies: 877 | babel-runtime "^6.22.0" 878 | 879 | babel-plugin-transform-es2015-for-of@^6.5.0, babel-plugin-transform-es2015-for-of@^6.8.0: 880 | version "6.23.0" 881 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 882 | dependencies: 883 | babel-runtime "^6.22.0" 884 | 885 | 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: 886 | version "6.24.1" 887 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 888 | dependencies: 889 | babel-helper-function-name "^6.24.1" 890 | babel-runtime "^6.22.0" 891 | babel-types "^6.24.1" 892 | 893 | babel-plugin-transform-es2015-literals@^6.5.0, babel-plugin-transform-es2015-literals@^6.8.0: 894 | version "6.22.0" 895 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 896 | dependencies: 897 | babel-runtime "^6.22.0" 898 | 899 | babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es2015-modules-commonjs@^6.5.0, babel-plugin-transform-es2015-modules-commonjs@^6.8.0: 900 | version "6.26.2" 901 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 902 | dependencies: 903 | babel-plugin-transform-strict-mode "^6.24.1" 904 | babel-runtime "^6.26.0" 905 | babel-template "^6.26.0" 906 | babel-types "^6.26.0" 907 | 908 | babel-plugin-transform-es2015-object-super@^6.8.0: 909 | version "6.24.1" 910 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 911 | dependencies: 912 | babel-helper-replace-supers "^6.24.1" 913 | babel-runtime "^6.22.0" 914 | 915 | babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-parameters@^6.5.0, babel-plugin-transform-es2015-parameters@^6.8.0: 916 | version "6.24.1" 917 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 918 | dependencies: 919 | babel-helper-call-delegate "^6.24.1" 920 | babel-helper-get-function-arity "^6.24.1" 921 | babel-runtime "^6.22.0" 922 | babel-template "^6.24.1" 923 | babel-traverse "^6.24.1" 924 | babel-types "^6.24.1" 925 | 926 | 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: 927 | version "6.24.1" 928 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 929 | dependencies: 930 | babel-runtime "^6.22.0" 931 | babel-types "^6.24.1" 932 | 933 | babel-plugin-transform-es2015-spread@6.x, babel-plugin-transform-es2015-spread@^6.5.0, babel-plugin-transform-es2015-spread@^6.8.0: 934 | version "6.22.0" 935 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 936 | dependencies: 937 | babel-runtime "^6.22.0" 938 | 939 | babel-plugin-transform-es2015-sticky-regex@6.x: 940 | version "6.24.1" 941 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 942 | dependencies: 943 | babel-helper-regex "^6.24.1" 944 | babel-runtime "^6.22.0" 945 | babel-types "^6.24.1" 946 | 947 | babel-plugin-transform-es2015-template-literals@^6.5.0, babel-plugin-transform-es2015-template-literals@^6.8.0: 948 | version "6.22.0" 949 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 950 | dependencies: 951 | babel-runtime "^6.22.0" 952 | 953 | babel-plugin-transform-es2015-unicode-regex@6.x: 954 | version "6.24.1" 955 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 956 | dependencies: 957 | babel-helper-regex "^6.24.1" 958 | babel-runtime "^6.22.0" 959 | regexpu-core "^2.0.0" 960 | 961 | babel-plugin-transform-es3-member-expression-literals@^6.8.0: 962 | version "6.22.0" 963 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz#733d3444f3ecc41bef8ed1a6a4e09657b8969ebb" 964 | dependencies: 965 | babel-runtime "^6.22.0" 966 | 967 | babel-plugin-transform-es3-property-literals@^6.8.0: 968 | version "6.22.0" 969 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz#b2078d5842e22abf40f73e8cde9cd3711abd5758" 970 | dependencies: 971 | babel-runtime "^6.22.0" 972 | 973 | babel-plugin-transform-exponentiation-operator@^6.5.0: 974 | version "6.24.1" 975 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 976 | dependencies: 977 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 978 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 979 | babel-runtime "^6.22.0" 980 | 981 | 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.8.0: 982 | version "6.22.0" 983 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 984 | dependencies: 985 | babel-plugin-syntax-flow "^6.18.0" 986 | babel-runtime "^6.22.0" 987 | 988 | babel-plugin-transform-object-assign@^6.5.0: 989 | version "6.22.0" 990 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" 991 | dependencies: 992 | babel-runtime "^6.22.0" 993 | 994 | 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.8.0: 995 | version "6.26.0" 996 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 997 | dependencies: 998 | babel-plugin-syntax-object-rest-spread "^6.8.0" 999 | babel-runtime "^6.26.0" 1000 | 1001 | babel-plugin-transform-react-display-name@^6.5.0, babel-plugin-transform-react-display-name@^6.8.0: 1002 | version "6.25.0" 1003 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 1004 | dependencies: 1005 | babel-runtime "^6.22.0" 1006 | 1007 | babel-plugin-transform-react-jsx-source@^6.5.0: 1008 | version "6.22.0" 1009 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 1010 | dependencies: 1011 | babel-plugin-syntax-jsx "^6.8.0" 1012 | babel-runtime "^6.22.0" 1013 | 1014 | babel-plugin-transform-react-jsx@^6.5.0, babel-plugin-transform-react-jsx@^6.8.0: 1015 | version "6.24.1" 1016 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 1017 | dependencies: 1018 | babel-helper-builder-react-jsx "^6.24.1" 1019 | babel-plugin-syntax-jsx "^6.8.0" 1020 | babel-runtime "^6.22.0" 1021 | 1022 | babel-plugin-transform-regenerator@^6.5.0: 1023 | version "6.26.0" 1024 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 1025 | dependencies: 1026 | regenerator-transform "^0.10.0" 1027 | 1028 | babel-plugin-transform-strict-mode@^6.24.1: 1029 | version "6.24.1" 1030 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 1031 | dependencies: 1032 | babel-runtime "^6.22.0" 1033 | babel-types "^6.24.1" 1034 | 1035 | babel-preset-es2015-node@^6.1.1: 1036 | version "6.1.1" 1037 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz#60b23157024b0cfebf3a63554cb05ee035b4e55f" 1038 | dependencies: 1039 | babel-plugin-transform-es2015-destructuring "6.x" 1040 | babel-plugin-transform-es2015-function-name "6.x" 1041 | babel-plugin-transform-es2015-modules-commonjs "6.x" 1042 | babel-plugin-transform-es2015-parameters "6.x" 1043 | babel-plugin-transform-es2015-shorthand-properties "6.x" 1044 | babel-plugin-transform-es2015-spread "6.x" 1045 | babel-plugin-transform-es2015-sticky-regex "6.x" 1046 | babel-plugin-transform-es2015-unicode-regex "6.x" 1047 | semver "5.x" 1048 | 1049 | babel-preset-fbjs@^2.1.2, babel-preset-fbjs@^2.1.4: 1050 | version "2.1.4" 1051 | resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-2.1.4.tgz#22f358e6654073acf61e47a052a777d7bccf03af" 1052 | dependencies: 1053 | babel-plugin-check-es2015-constants "^6.8.0" 1054 | babel-plugin-syntax-class-properties "^6.8.0" 1055 | babel-plugin-syntax-flow "^6.8.0" 1056 | babel-plugin-syntax-jsx "^6.8.0" 1057 | babel-plugin-syntax-object-rest-spread "^6.8.0" 1058 | babel-plugin-syntax-trailing-function-commas "^6.8.0" 1059 | babel-plugin-transform-class-properties "^6.8.0" 1060 | babel-plugin-transform-es2015-arrow-functions "^6.8.0" 1061 | babel-plugin-transform-es2015-block-scoped-functions "^6.8.0" 1062 | babel-plugin-transform-es2015-block-scoping "^6.8.0" 1063 | babel-plugin-transform-es2015-classes "^6.8.0" 1064 | babel-plugin-transform-es2015-computed-properties "^6.8.0" 1065 | babel-plugin-transform-es2015-destructuring "^6.8.0" 1066 | babel-plugin-transform-es2015-for-of "^6.8.0" 1067 | babel-plugin-transform-es2015-function-name "^6.8.0" 1068 | babel-plugin-transform-es2015-literals "^6.8.0" 1069 | babel-plugin-transform-es2015-modules-commonjs "^6.8.0" 1070 | babel-plugin-transform-es2015-object-super "^6.8.0" 1071 | babel-plugin-transform-es2015-parameters "^6.8.0" 1072 | babel-plugin-transform-es2015-shorthand-properties "^6.8.0" 1073 | babel-plugin-transform-es2015-spread "^6.8.0" 1074 | babel-plugin-transform-es2015-template-literals "^6.8.0" 1075 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 1076 | babel-plugin-transform-es3-property-literals "^6.8.0" 1077 | babel-plugin-transform-flow-strip-types "^6.8.0" 1078 | babel-plugin-transform-object-rest-spread "^6.8.0" 1079 | babel-plugin-transform-react-display-name "^6.8.0" 1080 | babel-plugin-transform-react-jsx "^6.8.0" 1081 | 1082 | babel-preset-react-native@^4.0.0: 1083 | version "4.0.0" 1084 | resolved "https://registry.yarnpkg.com/babel-preset-react-native/-/babel-preset-react-native-4.0.0.tgz#3df80dd33a453888cdd33bdb87224d17a5d73959" 1085 | dependencies: 1086 | babel-plugin-check-es2015-constants "^6.5.0" 1087 | babel-plugin-react-transform "^3.0.0" 1088 | babel-plugin-syntax-async-functions "^6.5.0" 1089 | babel-plugin-syntax-class-properties "^6.5.0" 1090 | babel-plugin-syntax-dynamic-import "^6.18.0" 1091 | babel-plugin-syntax-flow "^6.5.0" 1092 | babel-plugin-syntax-jsx "^6.5.0" 1093 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 1094 | babel-plugin-transform-class-properties "^6.5.0" 1095 | babel-plugin-transform-es2015-arrow-functions "^6.5.0" 1096 | babel-plugin-transform-es2015-block-scoping "^6.5.0" 1097 | babel-plugin-transform-es2015-classes "^6.5.0" 1098 | babel-plugin-transform-es2015-computed-properties "^6.5.0" 1099 | babel-plugin-transform-es2015-destructuring "^6.5.0" 1100 | babel-plugin-transform-es2015-for-of "^6.5.0" 1101 | babel-plugin-transform-es2015-function-name "^6.5.0" 1102 | babel-plugin-transform-es2015-literals "^6.5.0" 1103 | babel-plugin-transform-es2015-modules-commonjs "^6.5.0" 1104 | babel-plugin-transform-es2015-parameters "^6.5.0" 1105 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 1106 | babel-plugin-transform-es2015-spread "^6.5.0" 1107 | babel-plugin-transform-es2015-template-literals "^6.5.0" 1108 | babel-plugin-transform-flow-strip-types "^6.5.0" 1109 | babel-plugin-transform-object-assign "^6.5.0" 1110 | babel-plugin-transform-object-rest-spread "^6.5.0" 1111 | babel-plugin-transform-react-display-name "^6.5.0" 1112 | babel-plugin-transform-react-jsx "^6.5.0" 1113 | babel-plugin-transform-react-jsx-source "^6.5.0" 1114 | babel-plugin-transform-regenerator "^6.5.0" 1115 | babel-template "^6.24.1" 1116 | react-transform-hmr "^1.0.4" 1117 | 1118 | babel-register@^6.24.1, babel-register@^6.26.0: 1119 | version "6.26.0" 1120 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 1121 | dependencies: 1122 | babel-core "^6.26.0" 1123 | babel-runtime "^6.26.0" 1124 | core-js "^2.5.0" 1125 | home-or-tmp "^2.0.0" 1126 | lodash "^4.17.4" 1127 | mkdirp "^0.5.1" 1128 | source-map-support "^0.4.15" 1129 | 1130 | babel-runtime@^6.0.0, babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.23.0, babel-runtime@^6.26.0: 1131 | version "6.26.0" 1132 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 1133 | dependencies: 1134 | core-js "^2.4.0" 1135 | regenerator-runtime "^0.11.0" 1136 | 1137 | babel-template@^6.24.1, babel-template@^6.26.0: 1138 | version "6.26.0" 1139 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 1140 | dependencies: 1141 | babel-runtime "^6.26.0" 1142 | babel-traverse "^6.26.0" 1143 | babel-types "^6.26.0" 1144 | babylon "^6.18.0" 1145 | lodash "^4.17.4" 1146 | 1147 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 1148 | version "6.26.0" 1149 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 1150 | dependencies: 1151 | babel-code-frame "^6.26.0" 1152 | babel-messages "^6.23.0" 1153 | babel-runtime "^6.26.0" 1154 | babel-types "^6.26.0" 1155 | babylon "^6.18.0" 1156 | debug "^2.6.8" 1157 | globals "^9.18.0" 1158 | invariant "^2.2.2" 1159 | lodash "^4.17.4" 1160 | 1161 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 1162 | version "6.26.0" 1163 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 1164 | dependencies: 1165 | babel-runtime "^6.26.0" 1166 | esutils "^2.0.2" 1167 | lodash "^4.17.4" 1168 | to-fast-properties "^1.0.3" 1169 | 1170 | babylon@^6.18.0: 1171 | version "6.18.0" 1172 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 1173 | 1174 | babylon@^7.0.0-beta: 1175 | version "7.0.0-beta.47" 1176 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.47.tgz#6d1fa44f0abec41ab7c780481e62fd9aafbdea80" 1177 | 1178 | balanced-match@^1.0.0: 1179 | version "1.0.0" 1180 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1181 | 1182 | base64-js@0.0.8: 1183 | version "0.0.8" 1184 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" 1185 | 1186 | base64-js@1.1.2: 1187 | version "1.1.2" 1188 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.1.2.tgz#d6400cac1c4c660976d90d07a04351d89395f5e8" 1189 | 1190 | base64-js@^1.1.2: 1191 | version "1.3.0" 1192 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 1193 | 1194 | base@^0.11.1: 1195 | version "0.11.2" 1196 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 1197 | dependencies: 1198 | cache-base "^1.0.1" 1199 | class-utils "^0.3.5" 1200 | component-emitter "^1.2.1" 1201 | define-property "^1.0.0" 1202 | isobject "^3.0.1" 1203 | mixin-deep "^1.2.0" 1204 | pascalcase "^0.1.1" 1205 | 1206 | basic-auth@~2.0.0: 1207 | version "2.0.0" 1208 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.0.tgz#015db3f353e02e56377755f962742e8981e7bbba" 1209 | dependencies: 1210 | safe-buffer "5.1.1" 1211 | 1212 | big-integer@^1.6.7: 1213 | version "1.6.31" 1214 | resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.31.tgz#6d7852486e67c642502dcc03f7225a245c9fc7fa" 1215 | 1216 | bplist-creator@0.0.7: 1217 | version "0.0.7" 1218 | resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45" 1219 | dependencies: 1220 | stream-buffers "~2.2.0" 1221 | 1222 | bplist-parser@0.1.1: 1223 | version "0.1.1" 1224 | resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.1.1.tgz#d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6" 1225 | dependencies: 1226 | big-integer "^1.6.7" 1227 | 1228 | brace-expansion@^1.1.7: 1229 | version "1.1.11" 1230 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1231 | dependencies: 1232 | balanced-match "^1.0.0" 1233 | concat-map "0.0.1" 1234 | 1235 | braces@^1.8.2: 1236 | version "1.8.5" 1237 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1238 | dependencies: 1239 | expand-range "^1.8.1" 1240 | preserve "^0.2.0" 1241 | repeat-element "^1.1.2" 1242 | 1243 | braces@^2.3.1: 1244 | version "2.3.2" 1245 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 1246 | dependencies: 1247 | arr-flatten "^1.1.0" 1248 | array-unique "^0.3.2" 1249 | extend-shallow "^2.0.1" 1250 | fill-range "^4.0.0" 1251 | isobject "^3.0.1" 1252 | repeat-element "^1.1.2" 1253 | snapdragon "^0.8.1" 1254 | snapdragon-node "^2.0.1" 1255 | split-string "^3.0.2" 1256 | to-regex "^3.0.1" 1257 | 1258 | bser@^2.0.0: 1259 | version "2.0.0" 1260 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 1261 | dependencies: 1262 | node-int64 "^0.4.0" 1263 | 1264 | buffer-from@^1.0.0: 1265 | version "1.1.0" 1266 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" 1267 | 1268 | builtin-modules@^1.0.0: 1269 | version "1.1.1" 1270 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1271 | 1272 | bytes@3.0.0: 1273 | version "3.0.0" 1274 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 1275 | 1276 | cache-base@^1.0.1: 1277 | version "1.0.1" 1278 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 1279 | dependencies: 1280 | collection-visit "^1.0.0" 1281 | component-emitter "^1.2.1" 1282 | get-value "^2.0.6" 1283 | has-value "^1.0.0" 1284 | isobject "^3.0.1" 1285 | set-value "^2.0.0" 1286 | to-object-path "^0.3.0" 1287 | union-value "^1.0.0" 1288 | unset-value "^1.0.0" 1289 | 1290 | camelcase@^4.1.0: 1291 | version "4.1.0" 1292 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 1293 | 1294 | capture-exit@^1.2.0: 1295 | version "1.2.0" 1296 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" 1297 | dependencies: 1298 | rsvp "^3.3.3" 1299 | 1300 | chalk@^1.1.1, chalk@^1.1.3: 1301 | version "1.1.3" 1302 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1303 | dependencies: 1304 | ansi-styles "^2.2.1" 1305 | escape-string-regexp "^1.0.2" 1306 | has-ansi "^2.0.0" 1307 | strip-ansi "^3.0.0" 1308 | supports-color "^2.0.0" 1309 | 1310 | chalk@^2.0.0: 1311 | version "2.4.1" 1312 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 1313 | dependencies: 1314 | ansi-styles "^3.2.1" 1315 | escape-string-regexp "^1.0.5" 1316 | supports-color "^5.3.0" 1317 | 1318 | chardet@^0.4.0: 1319 | version "0.4.2" 1320 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 1321 | 1322 | chownr@^1.0.1: 1323 | version "1.0.1" 1324 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 1325 | 1326 | class-utils@^0.3.5: 1327 | version "0.3.6" 1328 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1329 | dependencies: 1330 | arr-union "^3.1.0" 1331 | define-property "^0.2.5" 1332 | isobject "^3.0.0" 1333 | static-extend "^0.1.1" 1334 | 1335 | cli-cursor@^2.1.0: 1336 | version "2.1.0" 1337 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1338 | dependencies: 1339 | restore-cursor "^2.0.0" 1340 | 1341 | cli-width@^2.0.0: 1342 | version "2.2.0" 1343 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1344 | 1345 | clipboardy@^1.2.2: 1346 | version "1.2.3" 1347 | resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.3.tgz#0526361bf78724c1f20be248d428e365433c07ef" 1348 | dependencies: 1349 | arch "^2.1.0" 1350 | execa "^0.8.0" 1351 | 1352 | cliui@^3.2.0: 1353 | version "3.2.0" 1354 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1355 | dependencies: 1356 | string-width "^1.0.1" 1357 | strip-ansi "^3.0.1" 1358 | wrap-ansi "^2.0.0" 1359 | 1360 | code-point-at@^1.0.0: 1361 | version "1.1.0" 1362 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1363 | 1364 | collection-visit@^1.0.0: 1365 | version "1.0.0" 1366 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1367 | dependencies: 1368 | map-visit "^1.0.0" 1369 | object-visit "^1.0.0" 1370 | 1371 | color-convert@^1.9.0: 1372 | version "1.9.2" 1373 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 1374 | dependencies: 1375 | color-name "1.1.1" 1376 | 1377 | color-name@1.1.1: 1378 | version "1.1.1" 1379 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 1380 | 1381 | color-support@^1.1.3: 1382 | version "1.1.3" 1383 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 1384 | 1385 | commander@^2.9.0: 1386 | version "2.15.1" 1387 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 1388 | 1389 | commander@~2.13.0: 1390 | version "2.13.0" 1391 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 1392 | 1393 | commondir@^1.0.1: 1394 | version "1.0.1" 1395 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1396 | 1397 | component-emitter@^1.2.1: 1398 | version "1.2.1" 1399 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1400 | 1401 | compressible@~2.0.13: 1402 | version "2.0.14" 1403 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.14.tgz#326c5f507fbb055f54116782b969a81b67a29da7" 1404 | dependencies: 1405 | mime-db ">= 1.34.0 < 2" 1406 | 1407 | compression@^1.7.1: 1408 | version "1.7.2" 1409 | resolved "http://registry.npmjs.org/compression/-/compression-1.7.2.tgz#aaffbcd6aaf854b44ebb280353d5ad1651f59a69" 1410 | dependencies: 1411 | accepts "~1.3.4" 1412 | bytes "3.0.0" 1413 | compressible "~2.0.13" 1414 | debug "2.6.9" 1415 | on-headers "~1.0.1" 1416 | safe-buffer "5.1.1" 1417 | vary "~1.1.2" 1418 | 1419 | concat-map@0.0.1: 1420 | version "0.0.1" 1421 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1422 | 1423 | concat-stream@^1.6.0: 1424 | version "1.6.2" 1425 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1426 | dependencies: 1427 | buffer-from "^1.0.0" 1428 | inherits "^2.0.3" 1429 | readable-stream "^2.2.2" 1430 | typedarray "^0.0.6" 1431 | 1432 | connect@^3.6.5: 1433 | version "3.6.6" 1434 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.6.tgz#09eff6c55af7236e137135a72574858b6786f524" 1435 | dependencies: 1436 | debug "2.6.9" 1437 | finalhandler "1.1.0" 1438 | parseurl "~1.3.2" 1439 | utils-merge "1.0.1" 1440 | 1441 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1442 | version "1.1.0" 1443 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1444 | 1445 | convert-source-map@^1.1.0, convert-source-map@^1.5.1: 1446 | version "1.5.1" 1447 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1448 | 1449 | copy-descriptor@^0.1.0: 1450 | version "0.1.1" 1451 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1452 | 1453 | core-js@^1.0.0: 1454 | version "1.2.7" 1455 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1456 | 1457 | core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0, core-js@^2.5.7: 1458 | version "2.5.7" 1459 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 1460 | 1461 | core-util-is@~1.0.0: 1462 | version "1.0.2" 1463 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1464 | 1465 | create-react-class@^15.6.3: 1466 | version "15.6.3" 1467 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" 1468 | dependencies: 1469 | fbjs "^0.8.9" 1470 | loose-envify "^1.3.1" 1471 | object-assign "^4.1.1" 1472 | 1473 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1474 | version "5.1.0" 1475 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1476 | dependencies: 1477 | lru-cache "^4.0.1" 1478 | shebang-command "^1.2.0" 1479 | which "^1.2.9" 1480 | 1481 | debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1482 | version "2.6.9" 1483 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1484 | dependencies: 1485 | ms "2.0.0" 1486 | 1487 | debug@^3.1.0: 1488 | version "3.1.0" 1489 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1490 | dependencies: 1491 | ms "2.0.0" 1492 | 1493 | decamelize@^1.1.1: 1494 | version "1.2.0" 1495 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1496 | 1497 | decode-uri-component@^0.2.0: 1498 | version "0.2.0" 1499 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1500 | 1501 | deep-extend@^0.6.0: 1502 | version "0.6.0" 1503 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1504 | 1505 | define-property@^0.2.5: 1506 | version "0.2.5" 1507 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1508 | dependencies: 1509 | is-descriptor "^0.1.0" 1510 | 1511 | define-property@^1.0.0: 1512 | version "1.0.0" 1513 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1514 | dependencies: 1515 | is-descriptor "^1.0.0" 1516 | 1517 | define-property@^2.0.2: 1518 | version "2.0.2" 1519 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1520 | dependencies: 1521 | is-descriptor "^1.0.2" 1522 | isobject "^3.0.1" 1523 | 1524 | delegates@^1.0.0: 1525 | version "1.0.0" 1526 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1527 | 1528 | denodeify@^1.2.1: 1529 | version "1.2.1" 1530 | resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" 1531 | 1532 | depd@~1.1.1, depd@~1.1.2: 1533 | version "1.1.2" 1534 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1535 | 1536 | destroy@~1.0.4: 1537 | version "1.0.4" 1538 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1539 | 1540 | detect-indent@^4.0.0: 1541 | version "4.0.0" 1542 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1543 | dependencies: 1544 | repeating "^2.0.0" 1545 | 1546 | detect-libc@^1.0.2: 1547 | version "1.0.3" 1548 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1549 | 1550 | detect-newline@^2.1.0: 1551 | version "2.1.0" 1552 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 1553 | 1554 | dom-walk@^0.1.0: 1555 | version "0.1.1" 1556 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 1557 | 1558 | ee-first@1.1.1: 1559 | version "1.1.1" 1560 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1561 | 1562 | encodeurl@~1.0.1, encodeurl@~1.0.2: 1563 | version "1.0.2" 1564 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 1565 | 1566 | encoding@^0.1.11: 1567 | version "0.1.12" 1568 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1569 | dependencies: 1570 | iconv-lite "~0.4.13" 1571 | 1572 | envinfo@^3.0.0: 1573 | version "3.11.1" 1574 | resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-3.11.1.tgz#45968faf5079aa797b7dcdc3b123f340d4529e1c" 1575 | dependencies: 1576 | clipboardy "^1.2.2" 1577 | glob "^7.1.2" 1578 | minimist "^1.2.0" 1579 | os-name "^2.0.1" 1580 | which "^1.2.14" 1581 | 1582 | error-ex@^1.2.0: 1583 | version "1.3.1" 1584 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1585 | dependencies: 1586 | is-arrayish "^0.2.1" 1587 | 1588 | errorhandler@^1.5.0: 1589 | version "1.5.0" 1590 | resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.0.tgz#eaba64ca5d542a311ac945f582defc336165d9f4" 1591 | dependencies: 1592 | accepts "~1.3.3" 1593 | escape-html "~1.0.3" 1594 | 1595 | escape-html@~1.0.3: 1596 | version "1.0.3" 1597 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1598 | 1599 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1600 | version "1.0.5" 1601 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1602 | 1603 | eslint-plugin-react-native-globals@^0.1.1: 1604 | version "0.1.2" 1605 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2" 1606 | 1607 | eslint-plugin-react-native@^3.2.1: 1608 | version "3.2.1" 1609 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.2.1.tgz#04fcadd3285b7cd2f27146e640c941b00acc4e7e" 1610 | dependencies: 1611 | eslint-plugin-react-native-globals "^0.1.1" 1612 | 1613 | esutils@^2.0.0, esutils@^2.0.2: 1614 | version "2.0.2" 1615 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1616 | 1617 | etag@~1.8.1: 1618 | version "1.8.1" 1619 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1620 | 1621 | event-target-shim@^1.0.5: 1622 | version "1.1.1" 1623 | resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-1.1.1.tgz#a86e5ee6bdaa16054475da797ccddf0c55698491" 1624 | 1625 | eventemitter3@^3.0.0: 1626 | version "3.1.0" 1627 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163" 1628 | 1629 | exec-sh@^0.2.0: 1630 | version "0.2.1" 1631 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1632 | dependencies: 1633 | merge "^1.1.3" 1634 | 1635 | execa@^0.7.0: 1636 | version "0.7.0" 1637 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1638 | dependencies: 1639 | cross-spawn "^5.0.1" 1640 | get-stream "^3.0.0" 1641 | is-stream "^1.1.0" 1642 | npm-run-path "^2.0.0" 1643 | p-finally "^1.0.0" 1644 | signal-exit "^3.0.0" 1645 | strip-eof "^1.0.0" 1646 | 1647 | execa@^0.8.0: 1648 | version "0.8.0" 1649 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1650 | dependencies: 1651 | cross-spawn "^5.0.1" 1652 | get-stream "^3.0.0" 1653 | is-stream "^1.1.0" 1654 | npm-run-path "^2.0.0" 1655 | p-finally "^1.0.0" 1656 | signal-exit "^3.0.0" 1657 | strip-eof "^1.0.0" 1658 | 1659 | expand-brackets@^0.1.4: 1660 | version "0.1.5" 1661 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1662 | dependencies: 1663 | is-posix-bracket "^0.1.0" 1664 | 1665 | expand-brackets@^2.1.4: 1666 | version "2.1.4" 1667 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1668 | dependencies: 1669 | debug "^2.3.3" 1670 | define-property "^0.2.5" 1671 | extend-shallow "^2.0.1" 1672 | posix-character-classes "^0.1.0" 1673 | regex-not "^1.0.0" 1674 | snapdragon "^0.8.1" 1675 | to-regex "^3.0.1" 1676 | 1677 | expand-range@^1.8.1: 1678 | version "1.8.2" 1679 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1680 | dependencies: 1681 | fill-range "^2.1.0" 1682 | 1683 | extend-shallow@^1.1.2: 1684 | version "1.1.4" 1685 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-1.1.4.tgz#19d6bf94dfc09d76ba711f39b872d21ff4dd9071" 1686 | dependencies: 1687 | kind-of "^1.1.0" 1688 | 1689 | extend-shallow@^2.0.1: 1690 | version "2.0.1" 1691 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1692 | dependencies: 1693 | is-extendable "^0.1.0" 1694 | 1695 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1696 | version "3.0.2" 1697 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1698 | dependencies: 1699 | assign-symbols "^1.0.0" 1700 | is-extendable "^1.0.1" 1701 | 1702 | external-editor@^2.0.4: 1703 | version "2.2.0" 1704 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1705 | dependencies: 1706 | chardet "^0.4.0" 1707 | iconv-lite "^0.4.17" 1708 | tmp "^0.0.33" 1709 | 1710 | extglob@^0.3.1: 1711 | version "0.3.2" 1712 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1713 | dependencies: 1714 | is-extglob "^1.0.0" 1715 | 1716 | extglob@^2.0.4: 1717 | version "2.0.4" 1718 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1719 | dependencies: 1720 | array-unique "^0.3.2" 1721 | define-property "^1.0.0" 1722 | expand-brackets "^2.1.4" 1723 | extend-shallow "^2.0.1" 1724 | fragment-cache "^0.2.1" 1725 | regex-not "^1.0.0" 1726 | snapdragon "^0.8.1" 1727 | to-regex "^3.0.1" 1728 | 1729 | fancy-log@^1.3.2: 1730 | version "1.3.2" 1731 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.2.tgz#f41125e3d84f2e7d89a43d06d958c8f78be16be1" 1732 | dependencies: 1733 | ansi-gray "^0.1.1" 1734 | color-support "^1.1.3" 1735 | time-stamp "^1.0.0" 1736 | 1737 | fb-watchman@^2.0.0: 1738 | version "2.0.0" 1739 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1740 | dependencies: 1741 | bser "^2.0.0" 1742 | 1743 | fbjs-scripts@^0.8.1: 1744 | version "0.8.3" 1745 | resolved "https://registry.yarnpkg.com/fbjs-scripts/-/fbjs-scripts-0.8.3.tgz#b854de7a11e62a37f72dab9aaf4d9b53c4a03174" 1746 | dependencies: 1747 | ansi-colors "^1.0.1" 1748 | babel-core "^6.7.2" 1749 | babel-preset-fbjs "^2.1.2" 1750 | core-js "^2.4.1" 1751 | cross-spawn "^5.1.0" 1752 | fancy-log "^1.3.2" 1753 | object-assign "^4.0.1" 1754 | plugin-error "^0.1.2" 1755 | semver "^5.1.0" 1756 | through2 "^2.0.0" 1757 | 1758 | fbjs@^0.8.14, fbjs@^0.8.16, fbjs@^0.8.9: 1759 | version "0.8.17" 1760 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" 1761 | dependencies: 1762 | core-js "^1.0.0" 1763 | isomorphic-fetch "^2.1.1" 1764 | loose-envify "^1.0.0" 1765 | object-assign "^4.1.0" 1766 | promise "^7.1.1" 1767 | setimmediate "^1.0.5" 1768 | ua-parser-js "^0.7.18" 1769 | 1770 | figures@^2.0.0: 1771 | version "2.0.0" 1772 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1773 | dependencies: 1774 | escape-string-regexp "^1.0.5" 1775 | 1776 | filename-regex@^2.0.0: 1777 | version "2.0.1" 1778 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1779 | 1780 | fill-range@^2.1.0: 1781 | version "2.2.4" 1782 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1783 | dependencies: 1784 | is-number "^2.1.0" 1785 | isobject "^2.0.0" 1786 | randomatic "^3.0.0" 1787 | repeat-element "^1.1.2" 1788 | repeat-string "^1.5.2" 1789 | 1790 | fill-range@^4.0.0: 1791 | version "4.0.0" 1792 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1793 | dependencies: 1794 | extend-shallow "^2.0.1" 1795 | is-number "^3.0.0" 1796 | repeat-string "^1.6.1" 1797 | to-regex-range "^2.1.0" 1798 | 1799 | finalhandler@1.1.0: 1800 | version "1.1.0" 1801 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" 1802 | dependencies: 1803 | debug "2.6.9" 1804 | encodeurl "~1.0.1" 1805 | escape-html "~1.0.3" 1806 | on-finished "~2.3.0" 1807 | parseurl "~1.3.2" 1808 | statuses "~1.3.1" 1809 | unpipe "~1.0.0" 1810 | 1811 | find-cache-dir@^1.0.0: 1812 | version "1.0.0" 1813 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1814 | dependencies: 1815 | commondir "^1.0.1" 1816 | make-dir "^1.0.0" 1817 | pkg-dir "^2.0.0" 1818 | 1819 | find-up@^2.0.0, find-up@^2.1.0: 1820 | version "2.1.0" 1821 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1822 | dependencies: 1823 | locate-path "^2.0.0" 1824 | 1825 | for-in@^1.0.1, for-in@^1.0.2: 1826 | version "1.0.2" 1827 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1828 | 1829 | for-own@^0.1.4: 1830 | version "0.1.5" 1831 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1832 | dependencies: 1833 | for-in "^1.0.1" 1834 | 1835 | fragment-cache@^0.2.1: 1836 | version "0.2.1" 1837 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1838 | dependencies: 1839 | map-cache "^0.2.2" 1840 | 1841 | fresh@0.5.2: 1842 | version "0.5.2" 1843 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1844 | 1845 | fs-extra@^1.0.0: 1846 | version "1.0.0" 1847 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1848 | dependencies: 1849 | graceful-fs "^4.1.2" 1850 | jsonfile "^2.1.0" 1851 | klaw "^1.0.0" 1852 | 1853 | fs-minipass@^1.2.5: 1854 | version "1.2.5" 1855 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1856 | dependencies: 1857 | minipass "^2.2.1" 1858 | 1859 | fs.realpath@^1.0.0: 1860 | version "1.0.0" 1861 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1862 | 1863 | fsevents@^1.2.3: 1864 | version "1.2.4" 1865 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1866 | dependencies: 1867 | nan "^2.9.2" 1868 | node-pre-gyp "^0.10.0" 1869 | 1870 | gauge@~1.2.5: 1871 | version "1.2.7" 1872 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1873 | dependencies: 1874 | ansi "^0.3.0" 1875 | has-unicode "^2.0.0" 1876 | lodash.pad "^4.1.0" 1877 | lodash.padend "^4.1.0" 1878 | lodash.padstart "^4.1.0" 1879 | 1880 | gauge@~2.7.3: 1881 | version "2.7.4" 1882 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1883 | dependencies: 1884 | aproba "^1.0.3" 1885 | console-control-strings "^1.0.0" 1886 | has-unicode "^2.0.0" 1887 | object-assign "^4.1.0" 1888 | signal-exit "^3.0.0" 1889 | string-width "^1.0.1" 1890 | strip-ansi "^3.0.1" 1891 | wide-align "^1.1.0" 1892 | 1893 | get-caller-file@^1.0.1: 1894 | version "1.0.2" 1895 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1896 | 1897 | get-stream@^3.0.0: 1898 | version "3.0.0" 1899 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1900 | 1901 | get-value@^2.0.3, get-value@^2.0.6: 1902 | version "2.0.6" 1903 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1904 | 1905 | glob-base@^0.3.0: 1906 | version "0.3.0" 1907 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1908 | dependencies: 1909 | glob-parent "^2.0.0" 1910 | is-glob "^2.0.0" 1911 | 1912 | glob-parent@^2.0.0: 1913 | version "2.0.0" 1914 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1915 | dependencies: 1916 | is-glob "^2.0.0" 1917 | 1918 | glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1919 | version "7.1.2" 1920 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1921 | dependencies: 1922 | fs.realpath "^1.0.0" 1923 | inflight "^1.0.4" 1924 | inherits "2" 1925 | minimatch "^3.0.4" 1926 | once "^1.3.0" 1927 | path-is-absolute "^1.0.0" 1928 | 1929 | global@^4.3.0: 1930 | version "4.3.2" 1931 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" 1932 | dependencies: 1933 | min-document "^2.19.0" 1934 | process "~0.5.1" 1935 | 1936 | globals@^11.1.0: 1937 | version "11.5.0" 1938 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.5.0.tgz#6bc840de6771173b191f13d3a9c94d441ee92642" 1939 | 1940 | globals@^9.18.0: 1941 | version "9.18.0" 1942 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1943 | 1944 | 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: 1945 | version "4.1.11" 1946 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1947 | 1948 | growly@^1.3.0: 1949 | version "1.3.0" 1950 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1951 | 1952 | has-ansi@^2.0.0: 1953 | version "2.0.0" 1954 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1955 | dependencies: 1956 | ansi-regex "^2.0.0" 1957 | 1958 | has-flag@^3.0.0: 1959 | version "3.0.0" 1960 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1961 | 1962 | has-unicode@^2.0.0: 1963 | version "2.0.1" 1964 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1965 | 1966 | has-value@^0.3.1: 1967 | version "0.3.1" 1968 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1969 | dependencies: 1970 | get-value "^2.0.3" 1971 | has-values "^0.1.4" 1972 | isobject "^2.0.0" 1973 | 1974 | has-value@^1.0.0: 1975 | version "1.0.0" 1976 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1977 | dependencies: 1978 | get-value "^2.0.6" 1979 | has-values "^1.0.0" 1980 | isobject "^3.0.0" 1981 | 1982 | has-values@^0.1.4: 1983 | version "0.1.4" 1984 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1985 | 1986 | has-values@^1.0.0: 1987 | version "1.0.0" 1988 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1989 | dependencies: 1990 | is-number "^3.0.0" 1991 | kind-of "^4.0.0" 1992 | 1993 | home-or-tmp@^2.0.0: 1994 | version "2.0.0" 1995 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1996 | dependencies: 1997 | os-homedir "^1.0.0" 1998 | os-tmpdir "^1.0.1" 1999 | 2000 | home-or-tmp@^3.0.0: 2001 | version "3.0.0" 2002 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-3.0.0.tgz#57a8fe24cf33cdd524860a15821ddc25c86671fb" 2003 | 2004 | hosted-git-info@^2.1.4: 2005 | version "2.6.0" 2006 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 2007 | 2008 | http-errors@~1.6.2: 2009 | version "1.6.3" 2010 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" 2011 | dependencies: 2012 | depd "~1.1.2" 2013 | inherits "2.0.3" 2014 | setprototypeof "1.1.0" 2015 | statuses ">= 1.4.0 < 2" 2016 | 2017 | iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13: 2018 | version "0.4.23" 2019 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 2020 | dependencies: 2021 | safer-buffer ">= 2.1.2 < 3" 2022 | 2023 | ignore-walk@^3.0.1: 2024 | version "3.0.1" 2025 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 2026 | dependencies: 2027 | minimatch "^3.0.4" 2028 | 2029 | image-size@^0.6.0: 2030 | version "0.6.3" 2031 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2" 2032 | 2033 | imurmurhash@^0.1.4: 2034 | version "0.1.4" 2035 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2036 | 2037 | inflight@^1.0.4: 2038 | version "1.0.6" 2039 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2040 | dependencies: 2041 | once "^1.3.0" 2042 | wrappy "1" 2043 | 2044 | inherits@2, inherits@2.0.3, inherits@^2.0.3, inherits@~2.0.3: 2045 | version "2.0.3" 2046 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2047 | 2048 | ini@~1.3.0: 2049 | version "1.3.5" 2050 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2051 | 2052 | inquirer@^3.0.6: 2053 | version "3.3.0" 2054 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 2055 | dependencies: 2056 | ansi-escapes "^3.0.0" 2057 | chalk "^2.0.0" 2058 | cli-cursor "^2.1.0" 2059 | cli-width "^2.0.0" 2060 | external-editor "^2.0.4" 2061 | figures "^2.0.0" 2062 | lodash "^4.3.0" 2063 | mute-stream "0.0.7" 2064 | run-async "^2.2.0" 2065 | rx-lite "^4.0.8" 2066 | rx-lite-aggregates "^4.0.8" 2067 | string-width "^2.1.0" 2068 | strip-ansi "^4.0.0" 2069 | through "^2.3.6" 2070 | 2071 | invariant@^2.2.0, invariant@^2.2.2, invariant@^2.2.4: 2072 | version "2.2.4" 2073 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2074 | dependencies: 2075 | loose-envify "^1.0.0" 2076 | 2077 | invert-kv@^1.0.0: 2078 | version "1.0.0" 2079 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2080 | 2081 | is-accessor-descriptor@^0.1.6: 2082 | version "0.1.6" 2083 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2084 | dependencies: 2085 | kind-of "^3.0.2" 2086 | 2087 | is-accessor-descriptor@^1.0.0: 2088 | version "1.0.0" 2089 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2090 | dependencies: 2091 | kind-of "^6.0.0" 2092 | 2093 | is-arrayish@^0.2.1: 2094 | version "0.2.1" 2095 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2096 | 2097 | is-buffer@^1.1.5: 2098 | version "1.1.6" 2099 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2100 | 2101 | is-builtin-module@^1.0.0: 2102 | version "1.0.0" 2103 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2104 | dependencies: 2105 | builtin-modules "^1.0.0" 2106 | 2107 | is-data-descriptor@^0.1.4: 2108 | version "0.1.4" 2109 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2110 | dependencies: 2111 | kind-of "^3.0.2" 2112 | 2113 | is-data-descriptor@^1.0.0: 2114 | version "1.0.0" 2115 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2116 | dependencies: 2117 | kind-of "^6.0.0" 2118 | 2119 | is-descriptor@^0.1.0: 2120 | version "0.1.6" 2121 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2122 | dependencies: 2123 | is-accessor-descriptor "^0.1.6" 2124 | is-data-descriptor "^0.1.4" 2125 | kind-of "^5.0.0" 2126 | 2127 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2128 | version "1.0.2" 2129 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2130 | dependencies: 2131 | is-accessor-descriptor "^1.0.0" 2132 | is-data-descriptor "^1.0.0" 2133 | kind-of "^6.0.2" 2134 | 2135 | is-dotfile@^1.0.0: 2136 | version "1.0.3" 2137 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2138 | 2139 | is-equal-shallow@^0.1.3: 2140 | version "0.1.3" 2141 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2142 | dependencies: 2143 | is-primitive "^2.0.0" 2144 | 2145 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2146 | version "0.1.1" 2147 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2148 | 2149 | is-extendable@^1.0.1: 2150 | version "1.0.1" 2151 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2152 | dependencies: 2153 | is-plain-object "^2.0.4" 2154 | 2155 | is-extglob@^1.0.0: 2156 | version "1.0.0" 2157 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2158 | 2159 | is-finite@^1.0.0: 2160 | version "1.0.2" 2161 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2162 | dependencies: 2163 | number-is-nan "^1.0.0" 2164 | 2165 | is-fullwidth-code-point@^1.0.0: 2166 | version "1.0.0" 2167 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2168 | dependencies: 2169 | number-is-nan "^1.0.0" 2170 | 2171 | is-fullwidth-code-point@^2.0.0: 2172 | version "2.0.0" 2173 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2174 | 2175 | is-glob@^2.0.0, is-glob@^2.0.1: 2176 | version "2.0.1" 2177 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2178 | dependencies: 2179 | is-extglob "^1.0.0" 2180 | 2181 | is-number@^2.1.0: 2182 | version "2.1.0" 2183 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2184 | dependencies: 2185 | kind-of "^3.0.2" 2186 | 2187 | is-number@^3.0.0: 2188 | version "3.0.0" 2189 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2190 | dependencies: 2191 | kind-of "^3.0.2" 2192 | 2193 | is-number@^4.0.0: 2194 | version "4.0.0" 2195 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 2196 | 2197 | is-odd@^2.0.0: 2198 | version "2.0.0" 2199 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 2200 | dependencies: 2201 | is-number "^4.0.0" 2202 | 2203 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2204 | version "2.0.4" 2205 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2206 | dependencies: 2207 | isobject "^3.0.1" 2208 | 2209 | is-posix-bracket@^0.1.0: 2210 | version "0.1.1" 2211 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2212 | 2213 | is-primitive@^2.0.0: 2214 | version "2.0.0" 2215 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2216 | 2217 | is-promise@^2.1.0: 2218 | version "2.1.0" 2219 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2220 | 2221 | is-stream@^1.0.1, is-stream@^1.1.0: 2222 | version "1.1.0" 2223 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2224 | 2225 | is-windows@^1.0.2: 2226 | version "1.0.2" 2227 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2228 | 2229 | isarray@1.0.0, isarray@~1.0.0: 2230 | version "1.0.0" 2231 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2232 | 2233 | isexe@^2.0.0: 2234 | version "2.0.0" 2235 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2236 | 2237 | isobject@^2.0.0: 2238 | version "2.1.0" 2239 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2240 | dependencies: 2241 | isarray "1.0.0" 2242 | 2243 | isobject@^3.0.0, isobject@^3.0.1: 2244 | version "3.0.1" 2245 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2246 | 2247 | isomorphic-fetch@^2.1.1: 2248 | version "2.2.1" 2249 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2250 | dependencies: 2251 | node-fetch "^1.0.1" 2252 | whatwg-fetch ">=0.10.0" 2253 | 2254 | jest-docblock@22.4.0: 2255 | version "22.4.0" 2256 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.0.tgz#dbf1877e2550070cfc4d9b07a55775a0483159b8" 2257 | dependencies: 2258 | detect-newline "^2.1.0" 2259 | 2260 | jest-docblock@^22.4.0: 2261 | version "22.4.3" 2262 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19" 2263 | dependencies: 2264 | detect-newline "^2.1.0" 2265 | 2266 | jest-haste-map@22.4.2: 2267 | version "22.4.2" 2268 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.2.tgz#a90178e66146d4378bb076345a949071f3b015b4" 2269 | dependencies: 2270 | fb-watchman "^2.0.0" 2271 | graceful-fs "^4.1.11" 2272 | jest-docblock "^22.4.0" 2273 | jest-serializer "^22.4.0" 2274 | jest-worker "^22.2.2" 2275 | micromatch "^2.3.11" 2276 | sane "^2.0.0" 2277 | 2278 | jest-serializer@^22.4.0: 2279 | version "22.4.3" 2280 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.3.tgz#a679b81a7f111e4766235f4f0c46d230ee0f7436" 2281 | 2282 | jest-worker@22.2.2: 2283 | version "22.2.2" 2284 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.2.2.tgz#c1f5dc39976884b81f68ec50cb8532b2cbab3390" 2285 | dependencies: 2286 | merge-stream "^1.0.1" 2287 | 2288 | jest-worker@^22.2.2: 2289 | version "22.4.3" 2290 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.4.3.tgz#5c421417cba1c0abf64bf56bd5fb7968d79dd40b" 2291 | dependencies: 2292 | merge-stream "^1.0.1" 2293 | 2294 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2295 | version "3.0.2" 2296 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2297 | 2298 | jsesc@^1.3.0: 2299 | version "1.3.0" 2300 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2301 | 2302 | jsesc@^2.5.1: 2303 | version "2.5.1" 2304 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 2305 | 2306 | jsesc@~0.5.0: 2307 | version "0.5.0" 2308 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2309 | 2310 | json-stable-stringify@^1.0.1: 2311 | version "1.0.1" 2312 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2313 | dependencies: 2314 | jsonify "~0.0.0" 2315 | 2316 | json5@^0.4.0: 2317 | version "0.4.0" 2318 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 2319 | 2320 | json5@^0.5.0, json5@^0.5.1: 2321 | version "0.5.1" 2322 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2323 | 2324 | jsonfile@^2.1.0: 2325 | version "2.4.0" 2326 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2327 | optionalDependencies: 2328 | graceful-fs "^4.1.6" 2329 | 2330 | jsonify@~0.0.0: 2331 | version "0.0.0" 2332 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2333 | 2334 | kind-of@^1.1.0: 2335 | version "1.1.0" 2336 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44" 2337 | 2338 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2339 | version "3.2.2" 2340 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2341 | dependencies: 2342 | is-buffer "^1.1.5" 2343 | 2344 | kind-of@^4.0.0: 2345 | version "4.0.0" 2346 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2347 | dependencies: 2348 | is-buffer "^1.1.5" 2349 | 2350 | kind-of@^5.0.0: 2351 | version "5.1.0" 2352 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2353 | 2354 | kind-of@^6.0.0, kind-of@^6.0.2: 2355 | version "6.0.2" 2356 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2357 | 2358 | klaw@^1.0.0: 2359 | version "1.3.1" 2360 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2361 | optionalDependencies: 2362 | graceful-fs "^4.1.9" 2363 | 2364 | lcid@^1.0.0: 2365 | version "1.0.0" 2366 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2367 | dependencies: 2368 | invert-kv "^1.0.0" 2369 | 2370 | left-pad@^1.1.3: 2371 | version "1.3.0" 2372 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 2373 | 2374 | load-json-file@^2.0.0: 2375 | version "2.0.0" 2376 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2377 | dependencies: 2378 | graceful-fs "^4.1.2" 2379 | parse-json "^2.2.0" 2380 | pify "^2.0.0" 2381 | strip-bom "^3.0.0" 2382 | 2383 | locate-path@^2.0.0: 2384 | version "2.0.0" 2385 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2386 | dependencies: 2387 | p-locate "^2.0.0" 2388 | path-exists "^3.0.0" 2389 | 2390 | lodash.pad@^4.1.0: 2391 | version "4.5.1" 2392 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 2393 | 2394 | lodash.padend@^4.1.0: 2395 | version "4.6.1" 2396 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 2397 | 2398 | lodash.padstart@^4.1.0: 2399 | version "4.6.1" 2400 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 2401 | 2402 | lodash.throttle@^4.1.1: 2403 | version "4.1.1" 2404 | resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" 2405 | 2406 | lodash@^3.5.0: 2407 | version "3.10.1" 2408 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2409 | 2410 | lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.6.1: 2411 | version "4.17.10" 2412 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 2413 | 2414 | loose-envify@^1.0.0, loose-envify@^1.3.1: 2415 | version "1.3.1" 2416 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2417 | dependencies: 2418 | js-tokens "^3.0.0" 2419 | 2420 | lru-cache@^4.0.1: 2421 | version "4.1.3" 2422 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 2423 | dependencies: 2424 | pseudomap "^1.0.2" 2425 | yallist "^2.1.2" 2426 | 2427 | macos-release@^1.0.0: 2428 | version "1.1.0" 2429 | resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-1.1.0.tgz#831945e29365b470aa8724b0ab36c8f8959d10fb" 2430 | 2431 | make-dir@^1.0.0: 2432 | version "1.3.0" 2433 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 2434 | dependencies: 2435 | pify "^3.0.0" 2436 | 2437 | makeerror@1.0.x: 2438 | version "1.0.11" 2439 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2440 | dependencies: 2441 | tmpl "1.0.x" 2442 | 2443 | map-cache@^0.2.2: 2444 | version "0.2.2" 2445 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2446 | 2447 | map-visit@^1.0.0: 2448 | version "1.0.0" 2449 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2450 | dependencies: 2451 | object-visit "^1.0.0" 2452 | 2453 | math-random@^1.0.1: 2454 | version "1.0.1" 2455 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 2456 | 2457 | mem@^1.1.0: 2458 | version "1.1.0" 2459 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2460 | dependencies: 2461 | mimic-fn "^1.0.0" 2462 | 2463 | merge-stream@^1.0.1: 2464 | version "1.0.1" 2465 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2466 | dependencies: 2467 | readable-stream "^2.0.1" 2468 | 2469 | merge@^1.1.3: 2470 | version "1.2.0" 2471 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2472 | 2473 | metro-babylon7@0.30.2: 2474 | version "0.30.2" 2475 | resolved "https://registry.yarnpkg.com/metro-babylon7/-/metro-babylon7-0.30.2.tgz#73784a958916bf5541b6a930598b62460fc376f5" 2476 | dependencies: 2477 | babylon "^7.0.0-beta" 2478 | 2479 | metro-cache@0.30.2: 2480 | version "0.30.2" 2481 | resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.30.2.tgz#1fb1ff92d3d8c596fd8cddc1635a9cb1c26e4cba" 2482 | dependencies: 2483 | jest-serializer "^22.4.0" 2484 | mkdirp "^0.5.1" 2485 | 2486 | metro-core@0.30.2, metro-core@^0.30.0: 2487 | version "0.30.2" 2488 | resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.30.2.tgz#380ae13cceee29e5be166df7acca9f1daa19fd7e" 2489 | dependencies: 2490 | lodash.throttle "^4.1.1" 2491 | wordwrap "^1.0.0" 2492 | 2493 | metro-minify-uglify@0.30.2: 2494 | version "0.30.2" 2495 | resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.30.2.tgz#7299a0376ad6340e9acf415912d54b5309702040" 2496 | dependencies: 2497 | uglify-es "^3.1.9" 2498 | 2499 | metro-resolver@0.30.2: 2500 | version "0.30.2" 2501 | resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.30.2.tgz#c26847e59cdc6a8ab1fb4b92d765165ec06946dd" 2502 | dependencies: 2503 | absolute-path "^0.0.0" 2504 | 2505 | metro-source-map@0.30.2: 2506 | version "0.30.2" 2507 | resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.30.2.tgz#4ac056642a2c521d974d42a617c8731d094365bb" 2508 | dependencies: 2509 | source-map "^0.5.6" 2510 | 2511 | metro@^0.30.0: 2512 | version "0.30.2" 2513 | resolved "https://registry.yarnpkg.com/metro/-/metro-0.30.2.tgz#e722e0eb106530f6d5bcf8de1f50353a0732cfb3" 2514 | dependencies: 2515 | "@babel/core" "^7.0.0-beta" 2516 | "@babel/generator" "^7.0.0-beta" 2517 | "@babel/helper-remap-async-to-generator" "^7.0.0-beta" 2518 | "@babel/plugin-external-helpers" "^7.0.0-beta" 2519 | "@babel/plugin-proposal-class-properties" "^7.0.0-beta" 2520 | "@babel/plugin-proposal-object-rest-spread" "^7.0.0-beta" 2521 | "@babel/plugin-syntax-dynamic-import" "^7.0.0-beta" 2522 | "@babel/plugin-transform-arrow-functions" "^7.0.0-beta" 2523 | "@babel/plugin-transform-block-scoping" "^7.0.0-beta" 2524 | "@babel/plugin-transform-classes" "^7.0.0-beta" 2525 | "@babel/plugin-transform-computed-properties" "^7.0.0-beta" 2526 | "@babel/plugin-transform-destructuring" "^7.0.0-beta" 2527 | "@babel/plugin-transform-exponentiation-operator" "^7.0.0-beta" 2528 | "@babel/plugin-transform-flow-strip-types" "^7.0.0-beta" 2529 | "@babel/plugin-transform-for-of" "^7.0.0-beta" 2530 | "@babel/plugin-transform-function-name" "^7.0.0-beta" 2531 | "@babel/plugin-transform-literals" "^7.0.0-beta" 2532 | "@babel/plugin-transform-modules-commonjs" "^7.0.0-beta" 2533 | "@babel/plugin-transform-object-assign" "^7.0.0-beta" 2534 | "@babel/plugin-transform-parameters" "^7.0.0-beta" 2535 | "@babel/plugin-transform-react-display-name" "^7.0.0-beta" 2536 | "@babel/plugin-transform-react-jsx" "^7.0.0-beta" 2537 | "@babel/plugin-transform-react-jsx-source" "^7.0.0-beta" 2538 | "@babel/plugin-transform-regenerator" "^7.0.0-beta" 2539 | "@babel/plugin-transform-shorthand-properties" "^7.0.0-beta" 2540 | "@babel/plugin-transform-spread" "^7.0.0-beta" 2541 | "@babel/plugin-transform-template-literals" "^7.0.0-beta" 2542 | "@babel/register" "^7.0.0-beta" 2543 | "@babel/template" "^7.0.0-beta" 2544 | "@babel/traverse" "^7.0.0-beta" 2545 | "@babel/types" "^7.0.0-beta" 2546 | absolute-path "^0.0.0" 2547 | async "^2.4.0" 2548 | babel-core "^6.24.1" 2549 | babel-generator "^6.26.0" 2550 | babel-plugin-external-helpers "^6.22.0" 2551 | babel-plugin-react-transform "^3.0.0" 2552 | babel-plugin-transform-flow-strip-types "^6.21.0" 2553 | babel-preset-es2015-node "^6.1.1" 2554 | babel-preset-fbjs "^2.1.4" 2555 | babel-preset-react-native "^4.0.0" 2556 | babel-register "^6.24.1" 2557 | babel-template "^6.24.1" 2558 | babylon "^6.18.0" 2559 | chalk "^1.1.1" 2560 | concat-stream "^1.6.0" 2561 | connect "^3.6.5" 2562 | core-js "^2.2.2" 2563 | debug "^2.2.0" 2564 | denodeify "^1.2.1" 2565 | eventemitter3 "^3.0.0" 2566 | fbjs "^0.8.14" 2567 | fs-extra "^1.0.0" 2568 | graceful-fs "^4.1.3" 2569 | image-size "^0.6.0" 2570 | jest-docblock "22.4.0" 2571 | jest-haste-map "22.4.2" 2572 | jest-worker "22.2.2" 2573 | json-stable-stringify "^1.0.1" 2574 | json5 "^0.4.0" 2575 | left-pad "^1.1.3" 2576 | lodash.throttle "^4.1.1" 2577 | merge-stream "^1.0.1" 2578 | metro-babylon7 "0.30.2" 2579 | metro-cache "0.30.2" 2580 | metro-core "0.30.2" 2581 | metro-minify-uglify "0.30.2" 2582 | metro-resolver "0.30.2" 2583 | metro-source-map "0.30.2" 2584 | mime-types "2.1.11" 2585 | mkdirp "^0.5.1" 2586 | node-fetch "^1.3.3" 2587 | resolve "^1.5.0" 2588 | rimraf "^2.5.4" 2589 | serialize-error "^2.1.0" 2590 | source-map "^0.5.6" 2591 | temp "0.8.3" 2592 | throat "^4.1.0" 2593 | wordwrap "^1.0.0" 2594 | write-file-atomic "^1.2.0" 2595 | ws "^1.1.0" 2596 | xpipe "^1.0.5" 2597 | yargs "^9.0.0" 2598 | 2599 | micromatch@^2.3.11: 2600 | version "2.3.11" 2601 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2602 | dependencies: 2603 | arr-diff "^2.0.0" 2604 | array-unique "^0.2.1" 2605 | braces "^1.8.2" 2606 | expand-brackets "^0.1.4" 2607 | extglob "^0.3.1" 2608 | filename-regex "^2.0.0" 2609 | is-extglob "^1.0.0" 2610 | is-glob "^2.0.1" 2611 | kind-of "^3.0.2" 2612 | normalize-path "^2.0.1" 2613 | object.omit "^2.0.0" 2614 | parse-glob "^3.0.4" 2615 | regex-cache "^0.4.2" 2616 | 2617 | micromatch@^3.1.10, micromatch@^3.1.4: 2618 | version "3.1.10" 2619 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2620 | dependencies: 2621 | arr-diff "^4.0.0" 2622 | array-unique "^0.3.2" 2623 | braces "^2.3.1" 2624 | define-property "^2.0.2" 2625 | extend-shallow "^3.0.2" 2626 | extglob "^2.0.4" 2627 | fragment-cache "^0.2.1" 2628 | kind-of "^6.0.2" 2629 | nanomatch "^1.2.9" 2630 | object.pick "^1.3.0" 2631 | regex-not "^1.0.0" 2632 | snapdragon "^0.8.1" 2633 | to-regex "^3.0.2" 2634 | 2635 | "mime-db@>= 1.34.0 < 2": 2636 | version "1.34.0" 2637 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.34.0.tgz#452d0ecff5c30346a6dc1e64b1eaee0d3719ff9a" 2638 | 2639 | mime-db@~1.23.0: 2640 | version "1.23.0" 2641 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659" 2642 | 2643 | mime-db@~1.33.0: 2644 | version "1.33.0" 2645 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2646 | 2647 | mime-types@2.1.11: 2648 | version "2.1.11" 2649 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c" 2650 | dependencies: 2651 | mime-db "~1.23.0" 2652 | 2653 | mime-types@~2.1.18: 2654 | version "2.1.18" 2655 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2656 | dependencies: 2657 | mime-db "~1.33.0" 2658 | 2659 | mime@1.4.1: 2660 | version "1.4.1" 2661 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 2662 | 2663 | mime@^1.3.4: 2664 | version "1.6.0" 2665 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2666 | 2667 | mimic-fn@^1.0.0: 2668 | version "1.2.0" 2669 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2670 | 2671 | min-document@^2.19.0: 2672 | version "2.19.0" 2673 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 2674 | dependencies: 2675 | dom-walk "^0.1.0" 2676 | 2677 | minimatch@^3.0.4: 2678 | version "3.0.4" 2679 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2680 | dependencies: 2681 | brace-expansion "^1.1.7" 2682 | 2683 | minimist@0.0.8: 2684 | version "0.0.8" 2685 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2686 | 2687 | minimist@^1.1.1, minimist@^1.2.0: 2688 | version "1.2.0" 2689 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2690 | 2691 | minimist@~0.0.1: 2692 | version "0.0.10" 2693 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2694 | 2695 | minipass@^2.2.1, minipass@^2.3.3: 2696 | version "2.3.3" 2697 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 2698 | dependencies: 2699 | safe-buffer "^5.1.2" 2700 | yallist "^3.0.0" 2701 | 2702 | minizlib@^1.1.0: 2703 | version "1.1.0" 2704 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 2705 | dependencies: 2706 | minipass "^2.2.1" 2707 | 2708 | mixin-deep@^1.2.0: 2709 | version "1.3.1" 2710 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2711 | dependencies: 2712 | for-in "^1.0.2" 2713 | is-extendable "^1.0.1" 2714 | 2715 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2716 | version "0.5.1" 2717 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2718 | dependencies: 2719 | minimist "0.0.8" 2720 | 2721 | morgan@^1.9.0: 2722 | version "1.9.0" 2723 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.0.tgz#d01fa6c65859b76fcf31b3cb53a3821a311d8051" 2724 | dependencies: 2725 | basic-auth "~2.0.0" 2726 | debug "2.6.9" 2727 | depd "~1.1.1" 2728 | on-finished "~2.3.0" 2729 | on-headers "~1.0.1" 2730 | 2731 | ms@2.0.0: 2732 | version "2.0.0" 2733 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2734 | 2735 | mute-stream@0.0.7: 2736 | version "0.0.7" 2737 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2738 | 2739 | nan@^2.9.2: 2740 | version "2.10.0" 2741 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2742 | 2743 | nanomatch@^1.2.9: 2744 | version "1.2.9" 2745 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2746 | dependencies: 2747 | arr-diff "^4.0.0" 2748 | array-unique "^0.3.2" 2749 | define-property "^2.0.2" 2750 | extend-shallow "^3.0.2" 2751 | fragment-cache "^0.2.1" 2752 | is-odd "^2.0.0" 2753 | is-windows "^1.0.2" 2754 | kind-of "^6.0.2" 2755 | object.pick "^1.3.0" 2756 | regex-not "^1.0.0" 2757 | snapdragon "^0.8.1" 2758 | to-regex "^3.0.1" 2759 | 2760 | needle@^2.2.0: 2761 | version "2.2.1" 2762 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 2763 | dependencies: 2764 | debug "^2.1.2" 2765 | iconv-lite "^0.4.4" 2766 | sax "^1.2.4" 2767 | 2768 | negotiator@0.6.1: 2769 | version "0.6.1" 2770 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2771 | 2772 | node-fetch@^1.0.1, node-fetch@^1.3.3: 2773 | version "1.7.3" 2774 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2775 | dependencies: 2776 | encoding "^0.1.11" 2777 | is-stream "^1.0.1" 2778 | 2779 | node-int64@^0.4.0: 2780 | version "0.4.0" 2781 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2782 | 2783 | node-modules-regexp@^1.0.0: 2784 | version "1.0.0" 2785 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 2786 | 2787 | node-notifier@^5.2.1: 2788 | version "5.2.1" 2789 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2790 | dependencies: 2791 | growly "^1.3.0" 2792 | semver "^5.4.1" 2793 | shellwords "^0.1.1" 2794 | which "^1.3.0" 2795 | 2796 | node-pre-gyp@^0.10.0: 2797 | version "0.10.0" 2798 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 2799 | dependencies: 2800 | detect-libc "^1.0.2" 2801 | mkdirp "^0.5.1" 2802 | needle "^2.2.0" 2803 | nopt "^4.0.1" 2804 | npm-packlist "^1.1.6" 2805 | npmlog "^4.0.2" 2806 | rc "^1.1.7" 2807 | rimraf "^2.6.1" 2808 | semver "^5.3.0" 2809 | tar "^4" 2810 | 2811 | nopt@^4.0.1: 2812 | version "4.0.1" 2813 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2814 | dependencies: 2815 | abbrev "1" 2816 | osenv "^0.1.4" 2817 | 2818 | normalize-package-data@^2.3.2: 2819 | version "2.4.0" 2820 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2821 | dependencies: 2822 | hosted-git-info "^2.1.4" 2823 | is-builtin-module "^1.0.0" 2824 | semver "2 || 3 || 4 || 5" 2825 | validate-npm-package-license "^3.0.1" 2826 | 2827 | normalize-path@^2.0.1, normalize-path@^2.1.1: 2828 | version "2.1.1" 2829 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2830 | dependencies: 2831 | remove-trailing-separator "^1.0.1" 2832 | 2833 | npm-bundled@^1.0.1: 2834 | version "1.0.3" 2835 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 2836 | 2837 | npm-packlist@^1.1.6: 2838 | version "1.1.10" 2839 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 2840 | dependencies: 2841 | ignore-walk "^3.0.1" 2842 | npm-bundled "^1.0.1" 2843 | 2844 | npm-run-path@^2.0.0: 2845 | version "2.0.2" 2846 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2847 | dependencies: 2848 | path-key "^2.0.0" 2849 | 2850 | npmlog@^2.0.4: 2851 | version "2.0.4" 2852 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" 2853 | dependencies: 2854 | ansi "~0.3.1" 2855 | are-we-there-yet "~1.1.2" 2856 | gauge "~1.2.5" 2857 | 2858 | npmlog@^4.0.2: 2859 | version "4.1.2" 2860 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2861 | dependencies: 2862 | are-we-there-yet "~1.1.2" 2863 | console-control-strings "~1.1.0" 2864 | gauge "~2.7.3" 2865 | set-blocking "~2.0.0" 2866 | 2867 | number-is-nan@^1.0.0: 2868 | version "1.0.1" 2869 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2870 | 2871 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2872 | version "4.1.1" 2873 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2874 | 2875 | object-copy@^0.1.0: 2876 | version "0.1.0" 2877 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2878 | dependencies: 2879 | copy-descriptor "^0.1.0" 2880 | define-property "^0.2.5" 2881 | kind-of "^3.0.3" 2882 | 2883 | object-visit@^1.0.0: 2884 | version "1.0.1" 2885 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2886 | dependencies: 2887 | isobject "^3.0.0" 2888 | 2889 | object.omit@^2.0.0: 2890 | version "2.0.1" 2891 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2892 | dependencies: 2893 | for-own "^0.1.4" 2894 | is-extendable "^0.1.1" 2895 | 2896 | object.pick@^1.3.0: 2897 | version "1.3.0" 2898 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2899 | dependencies: 2900 | isobject "^3.0.1" 2901 | 2902 | on-finished@~2.3.0: 2903 | version "2.3.0" 2904 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2905 | dependencies: 2906 | ee-first "1.1.1" 2907 | 2908 | on-headers@~1.0.1: 2909 | version "1.0.1" 2910 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2911 | 2912 | once@^1.3.0: 2913 | version "1.4.0" 2914 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2915 | dependencies: 2916 | wrappy "1" 2917 | 2918 | onetime@^2.0.0: 2919 | version "2.0.1" 2920 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2921 | dependencies: 2922 | mimic-fn "^1.0.0" 2923 | 2924 | opn@^3.0.2: 2925 | version "3.0.3" 2926 | resolved "https://registry.yarnpkg.com/opn/-/opn-3.0.3.tgz#b6d99e7399f78d65c3baaffef1fb288e9b85243a" 2927 | dependencies: 2928 | object-assign "^4.0.1" 2929 | 2930 | optimist@^0.6.1: 2931 | version "0.6.1" 2932 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2933 | dependencies: 2934 | minimist "~0.0.1" 2935 | wordwrap "~0.0.2" 2936 | 2937 | options@>=0.0.5: 2938 | version "0.0.6" 2939 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2940 | 2941 | os-homedir@^1.0.0: 2942 | version "1.0.2" 2943 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2944 | 2945 | os-locale@^2.0.0: 2946 | version "2.1.0" 2947 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2948 | dependencies: 2949 | execa "^0.7.0" 2950 | lcid "^1.0.0" 2951 | mem "^1.1.0" 2952 | 2953 | os-name@^2.0.1: 2954 | version "2.0.1" 2955 | resolved "https://registry.yarnpkg.com/os-name/-/os-name-2.0.1.tgz#b9a386361c17ae3a21736ef0599405c9a8c5dc5e" 2956 | dependencies: 2957 | macos-release "^1.0.0" 2958 | win-release "^1.0.0" 2959 | 2960 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2961 | version "1.0.2" 2962 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2963 | 2964 | osenv@^0.1.4: 2965 | version "0.1.5" 2966 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2967 | dependencies: 2968 | os-homedir "^1.0.0" 2969 | os-tmpdir "^1.0.0" 2970 | 2971 | p-finally@^1.0.0: 2972 | version "1.0.0" 2973 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2974 | 2975 | p-limit@^1.1.0: 2976 | version "1.3.0" 2977 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2978 | dependencies: 2979 | p-try "^1.0.0" 2980 | 2981 | p-locate@^2.0.0: 2982 | version "2.0.0" 2983 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2984 | dependencies: 2985 | p-limit "^1.1.0" 2986 | 2987 | p-try@^1.0.0: 2988 | version "1.0.0" 2989 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2990 | 2991 | parse-glob@^3.0.4: 2992 | version "3.0.4" 2993 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2994 | dependencies: 2995 | glob-base "^0.3.0" 2996 | is-dotfile "^1.0.0" 2997 | is-extglob "^1.0.0" 2998 | is-glob "^2.0.0" 2999 | 3000 | parse-json@^2.2.0: 3001 | version "2.2.0" 3002 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3003 | dependencies: 3004 | error-ex "^1.2.0" 3005 | 3006 | parseurl@~1.3.2: 3007 | version "1.3.2" 3008 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 3009 | 3010 | pascalcase@^0.1.1: 3011 | version "0.1.1" 3012 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 3013 | 3014 | path-exists@^3.0.0: 3015 | version "3.0.0" 3016 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3017 | 3018 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3019 | version "1.0.1" 3020 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3021 | 3022 | path-key@^2.0.0: 3023 | version "2.0.1" 3024 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3025 | 3026 | path-parse@^1.0.5: 3027 | version "1.0.5" 3028 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3029 | 3030 | path-type@^2.0.0: 3031 | version "2.0.0" 3032 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3033 | dependencies: 3034 | pify "^2.0.0" 3035 | 3036 | pegjs@^0.10.0: 3037 | version "0.10.0" 3038 | resolved "https://registry.yarnpkg.com/pegjs/-/pegjs-0.10.0.tgz#cf8bafae6eddff4b5a7efb185269eaaf4610ddbd" 3039 | 3040 | pify@^2.0.0: 3041 | version "2.3.0" 3042 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3043 | 3044 | pify@^3.0.0: 3045 | version "3.0.0" 3046 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3047 | 3048 | pirates@^3.0.1: 3049 | version "3.0.2" 3050 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-3.0.2.tgz#7e6f85413fd9161ab4e12b539b06010d85954bb9" 3051 | dependencies: 3052 | node-modules-regexp "^1.0.0" 3053 | 3054 | pkg-dir@^2.0.0: 3055 | version "2.0.0" 3056 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3057 | dependencies: 3058 | find-up "^2.1.0" 3059 | 3060 | plist@2.0.1: 3061 | version "2.0.1" 3062 | resolved "https://registry.yarnpkg.com/plist/-/plist-2.0.1.tgz#0a32ca9481b1c364e92e18dc55c876de9d01da8b" 3063 | dependencies: 3064 | base64-js "1.1.2" 3065 | xmlbuilder "8.2.2" 3066 | xmldom "0.1.x" 3067 | 3068 | plist@^1.2.0: 3069 | version "1.2.0" 3070 | resolved "https://registry.yarnpkg.com/plist/-/plist-1.2.0.tgz#084b5093ddc92506e259f874b8d9b1afb8c79593" 3071 | dependencies: 3072 | base64-js "0.0.8" 3073 | util-deprecate "1.0.2" 3074 | xmlbuilder "4.0.0" 3075 | xmldom "0.1.x" 3076 | 3077 | plugin-error@^0.1.2: 3078 | version "0.1.2" 3079 | resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-0.1.2.tgz#3b9bb3335ccf00f425e07437e19276967da47ace" 3080 | dependencies: 3081 | ansi-cyan "^0.1.1" 3082 | ansi-red "^0.1.1" 3083 | arr-diff "^1.0.1" 3084 | arr-union "^2.0.1" 3085 | extend-shallow "^1.1.2" 3086 | 3087 | posix-character-classes@^0.1.0: 3088 | version "0.1.1" 3089 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3090 | 3091 | preserve@^0.2.0: 3092 | version "0.2.0" 3093 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3094 | 3095 | pretty-format@^4.2.1: 3096 | version "4.3.1" 3097 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-4.3.1.tgz#530be5c42b3c05b36414a7a2a4337aa80acd0e8d" 3098 | 3099 | private@^0.1.6, private@^0.1.8: 3100 | version "0.1.8" 3101 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3102 | 3103 | process-nextick-args@~2.0.0: 3104 | version "2.0.0" 3105 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 3106 | 3107 | process@~0.5.1: 3108 | version "0.5.2" 3109 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 3110 | 3111 | promise@^7.1.1: 3112 | version "7.3.1" 3113 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 3114 | dependencies: 3115 | asap "~2.0.3" 3116 | 3117 | prop-types@^15.5.8: 3118 | version "15.6.1" 3119 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" 3120 | dependencies: 3121 | fbjs "^0.8.16" 3122 | loose-envify "^1.3.1" 3123 | object-assign "^4.1.1" 3124 | 3125 | pseudomap@^1.0.2: 3126 | version "1.0.2" 3127 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3128 | 3129 | randomatic@^3.0.0: 3130 | version "3.0.0" 3131 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 3132 | dependencies: 3133 | is-number "^4.0.0" 3134 | kind-of "^6.0.0" 3135 | math-random "^1.0.1" 3136 | 3137 | range-parser@~1.2.0: 3138 | version "1.2.0" 3139 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3140 | 3141 | rc@^1.1.7: 3142 | version "1.2.8" 3143 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 3144 | dependencies: 3145 | deep-extend "^0.6.0" 3146 | ini "~1.3.0" 3147 | minimist "^1.2.0" 3148 | strip-json-comments "~2.0.1" 3149 | 3150 | react-clone-referenced-element@^1.0.1: 3151 | version "1.0.1" 3152 | resolved "https://registry.yarnpkg.com/react-clone-referenced-element/-/react-clone-referenced-element-1.0.1.tgz#2bba8c69404c5e4a944398600bcc4c941f860682" 3153 | 3154 | react-deep-force-update@^1.0.0: 3155 | version "1.1.1" 3156 | resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.1.1.tgz#bcd31478027b64b3339f108921ab520b4313dc2c" 3157 | 3158 | react-devtools-core@3.1.0: 3159 | version "3.1.0" 3160 | resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-3.1.0.tgz#eec2e9e0e6edb77772e2bfc7d286a296f55a261a" 3161 | dependencies: 3162 | shell-quote "^1.6.1" 3163 | ws "^2.0.3" 3164 | 3165 | react-native@^0.55.4: 3166 | version "0.55.4" 3167 | resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.55.4.tgz#eecffada3750a928e2ddd07cf11d857ae9751c30" 3168 | dependencies: 3169 | absolute-path "^0.0.0" 3170 | art "^0.10.0" 3171 | babel-core "^6.24.1" 3172 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 3173 | babel-plugin-transform-async-to-generator "6.16.0" 3174 | babel-plugin-transform-class-properties "^6.18.0" 3175 | babel-plugin-transform-exponentiation-operator "^6.5.0" 3176 | babel-plugin-transform-flow-strip-types "^6.21.0" 3177 | babel-plugin-transform-object-rest-spread "^6.20.2" 3178 | babel-register "^6.24.1" 3179 | babel-runtime "^6.23.0" 3180 | base64-js "^1.1.2" 3181 | chalk "^1.1.1" 3182 | commander "^2.9.0" 3183 | compression "^1.7.1" 3184 | connect "^3.6.5" 3185 | create-react-class "^15.6.3" 3186 | debug "^2.2.0" 3187 | denodeify "^1.2.1" 3188 | envinfo "^3.0.0" 3189 | errorhandler "^1.5.0" 3190 | eslint-plugin-react-native "^3.2.1" 3191 | event-target-shim "^1.0.5" 3192 | fbjs "^0.8.14" 3193 | fbjs-scripts "^0.8.1" 3194 | fs-extra "^1.0.0" 3195 | glob "^7.1.1" 3196 | graceful-fs "^4.1.3" 3197 | inquirer "^3.0.6" 3198 | lodash "^4.17.5" 3199 | metro "^0.30.0" 3200 | metro-core "^0.30.0" 3201 | mime "^1.3.4" 3202 | minimist "^1.2.0" 3203 | mkdirp "^0.5.1" 3204 | morgan "^1.9.0" 3205 | node-fetch "^1.3.3" 3206 | node-notifier "^5.2.1" 3207 | npmlog "^2.0.4" 3208 | opn "^3.0.2" 3209 | optimist "^0.6.1" 3210 | plist "^1.2.0" 3211 | pretty-format "^4.2.1" 3212 | promise "^7.1.1" 3213 | prop-types "^15.5.8" 3214 | react-clone-referenced-element "^1.0.1" 3215 | react-devtools-core "3.1.0" 3216 | react-timer-mixin "^0.13.2" 3217 | regenerator-runtime "^0.11.0" 3218 | rimraf "^2.5.4" 3219 | semver "^5.0.3" 3220 | serve-static "^1.13.1" 3221 | shell-quote "1.6.1" 3222 | stacktrace-parser "^0.1.3" 3223 | whatwg-fetch "^1.0.0" 3224 | ws "^1.1.0" 3225 | xcode "^0.9.1" 3226 | xmldoc "^0.4.0" 3227 | yargs "^9.0.0" 3228 | 3229 | react-proxy@^1.1.7: 3230 | version "1.1.8" 3231 | resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a" 3232 | dependencies: 3233 | lodash "^4.6.1" 3234 | react-deep-force-update "^1.0.0" 3235 | 3236 | react-timer-mixin@^0.13.2: 3237 | version "0.13.3" 3238 | resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.3.tgz#0da8b9f807ec07dc3e854d082c737c65605b3d22" 3239 | 3240 | react-transform-hmr@^1.0.4: 3241 | version "1.0.4" 3242 | resolved "https://registry.yarnpkg.com/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb" 3243 | dependencies: 3244 | global "^4.3.0" 3245 | react-proxy "^1.1.7" 3246 | 3247 | read-pkg-up@^2.0.0: 3248 | version "2.0.0" 3249 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3250 | dependencies: 3251 | find-up "^2.0.0" 3252 | read-pkg "^2.0.0" 3253 | 3254 | read-pkg@^2.0.0: 3255 | version "2.0.0" 3256 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3257 | dependencies: 3258 | load-json-file "^2.0.0" 3259 | normalize-package-data "^2.3.2" 3260 | path-type "^2.0.0" 3261 | 3262 | readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2: 3263 | version "2.3.6" 3264 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 3265 | dependencies: 3266 | core-util-is "~1.0.0" 3267 | inherits "~2.0.3" 3268 | isarray "~1.0.0" 3269 | process-nextick-args "~2.0.0" 3270 | safe-buffer "~5.1.1" 3271 | string_decoder "~1.1.1" 3272 | util-deprecate "~1.0.1" 3273 | 3274 | regenerate@^1.2.1: 3275 | version "1.4.0" 3276 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 3277 | 3278 | regenerator-runtime@^0.11.0: 3279 | version "0.11.1" 3280 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3281 | 3282 | regenerator-transform@^0.10.0: 3283 | version "0.10.1" 3284 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3285 | dependencies: 3286 | babel-runtime "^6.18.0" 3287 | babel-types "^6.19.0" 3288 | private "^0.1.6" 3289 | 3290 | regenerator-transform@^0.12.4: 3291 | version "0.12.4" 3292 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.12.4.tgz#aa9b6c59f4b97be080e972506c560b3bccbfcff0" 3293 | dependencies: 3294 | private "^0.1.6" 3295 | 3296 | regex-cache@^0.4.2: 3297 | version "0.4.4" 3298 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3299 | dependencies: 3300 | is-equal-shallow "^0.1.3" 3301 | 3302 | regex-not@^1.0.0, regex-not@^1.0.2: 3303 | version "1.0.2" 3304 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3305 | dependencies: 3306 | extend-shallow "^3.0.2" 3307 | safe-regex "^1.1.0" 3308 | 3309 | regexpu-core@^2.0.0: 3310 | version "2.0.0" 3311 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3312 | dependencies: 3313 | regenerate "^1.2.1" 3314 | regjsgen "^0.2.0" 3315 | regjsparser "^0.1.4" 3316 | 3317 | regjsgen@^0.2.0: 3318 | version "0.2.0" 3319 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3320 | 3321 | regjsparser@^0.1.4: 3322 | version "0.1.5" 3323 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3324 | dependencies: 3325 | jsesc "~0.5.0" 3326 | 3327 | remove-trailing-separator@^1.0.1: 3328 | version "1.1.0" 3329 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3330 | 3331 | repeat-element@^1.1.2: 3332 | version "1.1.2" 3333 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3334 | 3335 | repeat-string@^1.5.2, repeat-string@^1.6.1: 3336 | version "1.6.1" 3337 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3338 | 3339 | repeating@^2.0.0: 3340 | version "2.0.1" 3341 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3342 | dependencies: 3343 | is-finite "^1.0.0" 3344 | 3345 | require-directory@^2.1.1: 3346 | version "2.1.1" 3347 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3348 | 3349 | require-main-filename@^1.0.1: 3350 | version "1.0.1" 3351 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3352 | 3353 | resolve-url@^0.2.1: 3354 | version "0.2.1" 3355 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3356 | 3357 | resolve@^1.3.2, resolve@^1.5.0: 3358 | version "1.8.0" 3359 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.0.tgz#a7f2ac27b78480ecc09c83782741d9f26e4f0c3e" 3360 | dependencies: 3361 | path-parse "^1.0.5" 3362 | 3363 | restore-cursor@^2.0.0: 3364 | version "2.0.0" 3365 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3366 | dependencies: 3367 | onetime "^2.0.0" 3368 | signal-exit "^3.0.2" 3369 | 3370 | ret@~0.1.10: 3371 | version "0.1.15" 3372 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3373 | 3374 | rimraf@^2.5.4, rimraf@^2.6.1: 3375 | version "2.6.2" 3376 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3377 | dependencies: 3378 | glob "^7.0.5" 3379 | 3380 | rimraf@~2.2.6: 3381 | version "2.2.8" 3382 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 3383 | 3384 | rsvp@^3.3.3: 3385 | version "3.6.2" 3386 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" 3387 | 3388 | run-async@^2.2.0: 3389 | version "2.3.0" 3390 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3391 | dependencies: 3392 | is-promise "^2.1.0" 3393 | 3394 | rx-lite-aggregates@^4.0.8: 3395 | version "4.0.8" 3396 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3397 | dependencies: 3398 | rx-lite "*" 3399 | 3400 | rx-lite@*, rx-lite@^4.0.8: 3401 | version "4.0.8" 3402 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3403 | 3404 | safe-buffer@5.1.1: 3405 | version "5.1.1" 3406 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3407 | 3408 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3409 | version "5.1.2" 3410 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3411 | 3412 | safe-buffer@~5.0.1: 3413 | version "5.0.1" 3414 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3415 | 3416 | safe-regex@^1.1.0: 3417 | version "1.1.0" 3418 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3419 | dependencies: 3420 | ret "~0.1.10" 3421 | 3422 | "safer-buffer@>= 2.1.2 < 3": 3423 | version "2.1.2" 3424 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3425 | 3426 | sane@^2.0.0: 3427 | version "2.5.2" 3428 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" 3429 | dependencies: 3430 | anymatch "^2.0.0" 3431 | capture-exit "^1.2.0" 3432 | exec-sh "^0.2.0" 3433 | fb-watchman "^2.0.0" 3434 | micromatch "^3.1.4" 3435 | minimist "^1.1.1" 3436 | walker "~1.0.5" 3437 | watch "~0.18.0" 3438 | optionalDependencies: 3439 | fsevents "^1.2.3" 3440 | 3441 | sax@^1.2.4: 3442 | version "1.2.4" 3443 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3444 | 3445 | sax@~1.1.1: 3446 | version "1.1.6" 3447 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.1.6.tgz#5d616be8a5e607d54e114afae55b7eaf2fcc3240" 3448 | 3449 | "semver@2 || 3 || 4 || 5", semver@5.x, semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 3450 | version "5.5.0" 3451 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3452 | 3453 | send@0.16.2: 3454 | version "0.16.2" 3455 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" 3456 | dependencies: 3457 | debug "2.6.9" 3458 | depd "~1.1.2" 3459 | destroy "~1.0.4" 3460 | encodeurl "~1.0.2" 3461 | escape-html "~1.0.3" 3462 | etag "~1.8.1" 3463 | fresh "0.5.2" 3464 | http-errors "~1.6.2" 3465 | mime "1.4.1" 3466 | ms "2.0.0" 3467 | on-finished "~2.3.0" 3468 | range-parser "~1.2.0" 3469 | statuses "~1.4.0" 3470 | 3471 | serialize-error@^2.1.0: 3472 | version "2.1.0" 3473 | resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" 3474 | 3475 | serve-static@^1.13.1: 3476 | version "1.13.2" 3477 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" 3478 | dependencies: 3479 | encodeurl "~1.0.2" 3480 | escape-html "~1.0.3" 3481 | parseurl "~1.3.2" 3482 | send "0.16.2" 3483 | 3484 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3485 | version "2.0.0" 3486 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3487 | 3488 | set-value@^0.4.3: 3489 | version "0.4.3" 3490 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3491 | dependencies: 3492 | extend-shallow "^2.0.1" 3493 | is-extendable "^0.1.1" 3494 | is-plain-object "^2.0.1" 3495 | to-object-path "^0.3.0" 3496 | 3497 | set-value@^2.0.0: 3498 | version "2.0.0" 3499 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3500 | dependencies: 3501 | extend-shallow "^2.0.1" 3502 | is-extendable "^0.1.1" 3503 | is-plain-object "^2.0.3" 3504 | split-string "^3.0.1" 3505 | 3506 | setimmediate@^1.0.5: 3507 | version "1.0.5" 3508 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3509 | 3510 | setprototypeof@1.1.0: 3511 | version "1.1.0" 3512 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 3513 | 3514 | shebang-command@^1.2.0: 3515 | version "1.2.0" 3516 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3517 | dependencies: 3518 | shebang-regex "^1.0.0" 3519 | 3520 | shebang-regex@^1.0.0: 3521 | version "1.0.0" 3522 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3523 | 3524 | shell-quote@1.6.1, shell-quote@^1.6.1: 3525 | version "1.6.1" 3526 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3527 | dependencies: 3528 | array-filter "~0.0.0" 3529 | array-map "~0.0.0" 3530 | array-reduce "~0.0.0" 3531 | jsonify "~0.0.0" 3532 | 3533 | shellwords@^0.1.1: 3534 | version "0.1.1" 3535 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3536 | 3537 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3538 | version "3.0.2" 3539 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3540 | 3541 | simple-plist@^0.2.1: 3542 | version "0.2.1" 3543 | resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-0.2.1.tgz#71766db352326928cf3a807242ba762322636723" 3544 | dependencies: 3545 | bplist-creator "0.0.7" 3546 | bplist-parser "0.1.1" 3547 | plist "2.0.1" 3548 | 3549 | slash@^1.0.0: 3550 | version "1.0.0" 3551 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3552 | 3553 | slide@^1.1.5: 3554 | version "1.1.6" 3555 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3556 | 3557 | snapdragon-node@^2.0.1: 3558 | version "2.1.1" 3559 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3560 | dependencies: 3561 | define-property "^1.0.0" 3562 | isobject "^3.0.0" 3563 | snapdragon-util "^3.0.1" 3564 | 3565 | snapdragon-util@^3.0.1: 3566 | version "3.0.1" 3567 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3568 | dependencies: 3569 | kind-of "^3.2.0" 3570 | 3571 | snapdragon@^0.8.1: 3572 | version "0.8.2" 3573 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3574 | dependencies: 3575 | base "^0.11.1" 3576 | debug "^2.2.0" 3577 | define-property "^0.2.5" 3578 | extend-shallow "^2.0.1" 3579 | map-cache "^0.2.2" 3580 | source-map "^0.5.6" 3581 | source-map-resolve "^0.5.0" 3582 | use "^3.1.0" 3583 | 3584 | source-map-resolve@^0.5.0: 3585 | version "0.5.2" 3586 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3587 | dependencies: 3588 | atob "^2.1.1" 3589 | decode-uri-component "^0.2.0" 3590 | resolve-url "^0.2.1" 3591 | source-map-url "^0.4.0" 3592 | urix "^0.1.0" 3593 | 3594 | source-map-support@^0.4.15, source-map-support@^0.4.2: 3595 | version "0.4.18" 3596 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3597 | dependencies: 3598 | source-map "^0.5.6" 3599 | 3600 | source-map-url@^0.4.0: 3601 | version "0.4.0" 3602 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3603 | 3604 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: 3605 | version "0.5.7" 3606 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3607 | 3608 | source-map@~0.6.1: 3609 | version "0.6.1" 3610 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3611 | 3612 | spdx-correct@^3.0.0: 3613 | version "3.0.0" 3614 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3615 | dependencies: 3616 | spdx-expression-parse "^3.0.0" 3617 | spdx-license-ids "^3.0.0" 3618 | 3619 | spdx-exceptions@^2.1.0: 3620 | version "2.1.0" 3621 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3622 | 3623 | spdx-expression-parse@^3.0.0: 3624 | version "3.0.0" 3625 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3626 | dependencies: 3627 | spdx-exceptions "^2.1.0" 3628 | spdx-license-ids "^3.0.0" 3629 | 3630 | spdx-license-ids@^3.0.0: 3631 | version "3.0.0" 3632 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 3633 | 3634 | split-string@^3.0.1, split-string@^3.0.2: 3635 | version "3.1.0" 3636 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3637 | dependencies: 3638 | extend-shallow "^3.0.0" 3639 | 3640 | stacktrace-parser@^0.1.3: 3641 | version "0.1.4" 3642 | resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.4.tgz#01397922e5f62ecf30845522c95c4fe1d25e7d4e" 3643 | 3644 | static-extend@^0.1.1: 3645 | version "0.1.2" 3646 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3647 | dependencies: 3648 | define-property "^0.2.5" 3649 | object-copy "^0.1.0" 3650 | 3651 | "statuses@>= 1.4.0 < 2": 3652 | version "1.5.0" 3653 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 3654 | 3655 | statuses@~1.3.1: 3656 | version "1.3.1" 3657 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3658 | 3659 | statuses@~1.4.0: 3660 | version "1.4.0" 3661 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 3662 | 3663 | stream-buffers@~2.2.0: 3664 | version "2.2.0" 3665 | resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" 3666 | 3667 | string-width@^1.0.1: 3668 | version "1.0.2" 3669 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3670 | dependencies: 3671 | code-point-at "^1.0.0" 3672 | is-fullwidth-code-point "^1.0.0" 3673 | strip-ansi "^3.0.0" 3674 | 3675 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0: 3676 | version "2.1.1" 3677 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3678 | dependencies: 3679 | is-fullwidth-code-point "^2.0.0" 3680 | strip-ansi "^4.0.0" 3681 | 3682 | string_decoder@~1.1.1: 3683 | version "1.1.1" 3684 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3685 | dependencies: 3686 | safe-buffer "~5.1.0" 3687 | 3688 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3689 | version "3.0.1" 3690 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3691 | dependencies: 3692 | ansi-regex "^2.0.0" 3693 | 3694 | strip-ansi@^4.0.0: 3695 | version "4.0.0" 3696 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3697 | dependencies: 3698 | ansi-regex "^3.0.0" 3699 | 3700 | strip-bom@^3.0.0: 3701 | version "3.0.0" 3702 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3703 | 3704 | strip-eof@^1.0.0: 3705 | version "1.0.0" 3706 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3707 | 3708 | strip-json-comments@~2.0.1: 3709 | version "2.0.1" 3710 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3711 | 3712 | supports-color@^2.0.0: 3713 | version "2.0.0" 3714 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3715 | 3716 | supports-color@^5.3.0: 3717 | version "5.4.0" 3718 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3719 | dependencies: 3720 | has-flag "^3.0.0" 3721 | 3722 | tar@^4: 3723 | version "4.4.4" 3724 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 3725 | dependencies: 3726 | chownr "^1.0.1" 3727 | fs-minipass "^1.2.5" 3728 | minipass "^2.3.3" 3729 | minizlib "^1.1.0" 3730 | mkdirp "^0.5.0" 3731 | safe-buffer "^5.1.2" 3732 | yallist "^3.0.2" 3733 | 3734 | temp@0.8.3: 3735 | version "0.8.3" 3736 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 3737 | dependencies: 3738 | os-tmpdir "^1.0.0" 3739 | rimraf "~2.2.6" 3740 | 3741 | throat@^4.1.0: 3742 | version "4.1.0" 3743 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3744 | 3745 | through2@^2.0.0: 3746 | version "2.0.3" 3747 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3748 | dependencies: 3749 | readable-stream "^2.1.5" 3750 | xtend "~4.0.1" 3751 | 3752 | through@^2.3.6: 3753 | version "2.3.8" 3754 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3755 | 3756 | time-stamp@^1.0.0: 3757 | version "1.1.0" 3758 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 3759 | 3760 | tmp@^0.0.33: 3761 | version "0.0.33" 3762 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3763 | dependencies: 3764 | os-tmpdir "~1.0.2" 3765 | 3766 | tmpl@1.0.x: 3767 | version "1.0.4" 3768 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3769 | 3770 | to-fast-properties@^1.0.3: 3771 | version "1.0.3" 3772 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3773 | 3774 | to-fast-properties@^2.0.0: 3775 | version "2.0.0" 3776 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3777 | 3778 | to-object-path@^0.3.0: 3779 | version "0.3.0" 3780 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3781 | dependencies: 3782 | kind-of "^3.0.2" 3783 | 3784 | to-regex-range@^2.1.0: 3785 | version "2.1.1" 3786 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3787 | dependencies: 3788 | is-number "^3.0.0" 3789 | repeat-string "^1.6.1" 3790 | 3791 | to-regex@^3.0.1, to-regex@^3.0.2: 3792 | version "3.0.2" 3793 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3794 | dependencies: 3795 | define-property "^2.0.2" 3796 | extend-shallow "^3.0.2" 3797 | regex-not "^1.0.2" 3798 | safe-regex "^1.1.0" 3799 | 3800 | trim-right@^1.0.1: 3801 | version "1.0.1" 3802 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3803 | 3804 | typedarray@^0.0.6: 3805 | version "0.0.6" 3806 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3807 | 3808 | ua-parser-js@^0.7.18: 3809 | version "0.7.18" 3810 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed" 3811 | 3812 | uglify-es@^3.1.9: 3813 | version "3.3.9" 3814 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" 3815 | dependencies: 3816 | commander "~2.13.0" 3817 | source-map "~0.6.1" 3818 | 3819 | ultron@1.0.x: 3820 | version "1.0.2" 3821 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3822 | 3823 | ultron@~1.1.0: 3824 | version "1.1.1" 3825 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" 3826 | 3827 | union-value@^1.0.0: 3828 | version "1.0.0" 3829 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3830 | dependencies: 3831 | arr-union "^3.1.0" 3832 | get-value "^2.0.6" 3833 | is-extendable "^0.1.1" 3834 | set-value "^0.4.3" 3835 | 3836 | unpipe@~1.0.0: 3837 | version "1.0.0" 3838 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3839 | 3840 | unset-value@^1.0.0: 3841 | version "1.0.0" 3842 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3843 | dependencies: 3844 | has-value "^0.3.1" 3845 | isobject "^3.0.0" 3846 | 3847 | urix@^0.1.0: 3848 | version "0.1.0" 3849 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3850 | 3851 | use@^3.1.0: 3852 | version "3.1.0" 3853 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3854 | dependencies: 3855 | kind-of "^6.0.2" 3856 | 3857 | util-deprecate@1.0.2, util-deprecate@~1.0.1: 3858 | version "1.0.2" 3859 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3860 | 3861 | utils-merge@1.0.1: 3862 | version "1.0.1" 3863 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 3864 | 3865 | uuid@3.0.1: 3866 | version "3.0.1" 3867 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3868 | 3869 | validate-npm-package-license@^3.0.1: 3870 | version "3.0.3" 3871 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3872 | dependencies: 3873 | spdx-correct "^3.0.0" 3874 | spdx-expression-parse "^3.0.0" 3875 | 3876 | vary@~1.1.2: 3877 | version "1.1.2" 3878 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3879 | 3880 | walker@~1.0.5: 3881 | version "1.0.7" 3882 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3883 | dependencies: 3884 | makeerror "1.0.x" 3885 | 3886 | watch@~0.18.0: 3887 | version "0.18.0" 3888 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3889 | dependencies: 3890 | exec-sh "^0.2.0" 3891 | minimist "^1.2.0" 3892 | 3893 | whatwg-fetch@>=0.10.0: 3894 | version "2.0.4" 3895 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" 3896 | 3897 | whatwg-fetch@^1.0.0: 3898 | version "1.1.1" 3899 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz#ac3c9d39f320c6dce5339969d054ef43dd333319" 3900 | 3901 | which-module@^2.0.0: 3902 | version "2.0.0" 3903 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3904 | 3905 | which@^1.2.14, which@^1.2.9, which@^1.3.0: 3906 | version "1.3.1" 3907 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3908 | dependencies: 3909 | isexe "^2.0.0" 3910 | 3911 | wide-align@^1.1.0: 3912 | version "1.1.3" 3913 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3914 | dependencies: 3915 | string-width "^1.0.2 || 2" 3916 | 3917 | win-release@^1.0.0: 3918 | version "1.1.1" 3919 | resolved "https://registry.yarnpkg.com/win-release/-/win-release-1.1.1.tgz#5fa55e02be7ca934edfc12665632e849b72e5209" 3920 | dependencies: 3921 | semver "^5.0.1" 3922 | 3923 | wordwrap@^1.0.0: 3924 | version "1.0.0" 3925 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3926 | 3927 | wordwrap@~0.0.2: 3928 | version "0.0.3" 3929 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3930 | 3931 | wrap-ansi@^2.0.0: 3932 | version "2.1.0" 3933 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3934 | dependencies: 3935 | string-width "^1.0.1" 3936 | strip-ansi "^3.0.1" 3937 | 3938 | wrappy@1: 3939 | version "1.0.2" 3940 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3941 | 3942 | write-file-atomic@^1.2.0: 3943 | version "1.3.4" 3944 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3945 | dependencies: 3946 | graceful-fs "^4.1.11" 3947 | imurmurhash "^0.1.4" 3948 | slide "^1.1.5" 3949 | 3950 | ws@^1.1.0: 3951 | version "1.1.5" 3952 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" 3953 | dependencies: 3954 | options ">=0.0.5" 3955 | ultron "1.0.x" 3956 | 3957 | ws@^2.0.3: 3958 | version "2.3.1" 3959 | resolved "https://registry.yarnpkg.com/ws/-/ws-2.3.1.tgz#6b94b3e447cb6a363f785eaf94af6359e8e81c80" 3960 | dependencies: 3961 | safe-buffer "~5.0.1" 3962 | ultron "~1.1.0" 3963 | 3964 | xcode@^0.9.1: 3965 | version "0.9.3" 3966 | resolved "https://registry.yarnpkg.com/xcode/-/xcode-0.9.3.tgz#910a89c16aee6cc0b42ca805a6d0b4cf87211cf3" 3967 | dependencies: 3968 | pegjs "^0.10.0" 3969 | simple-plist "^0.2.1" 3970 | uuid "3.0.1" 3971 | 3972 | xmlbuilder@4.0.0: 3973 | version "4.0.0" 3974 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.0.0.tgz#98b8f651ca30aa624036f127d11cc66dc7b907a3" 3975 | dependencies: 3976 | lodash "^3.5.0" 3977 | 3978 | xmlbuilder@8.2.2: 3979 | version "8.2.2" 3980 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" 3981 | 3982 | xmldoc@^0.4.0: 3983 | version "0.4.0" 3984 | resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-0.4.0.tgz#d257224be8393eaacbf837ef227fd8ec25b36888" 3985 | dependencies: 3986 | sax "~1.1.1" 3987 | 3988 | xmldom@0.1.x: 3989 | version "0.1.27" 3990 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 3991 | 3992 | xpipe@^1.0.5: 3993 | version "1.0.5" 3994 | resolved "https://registry.yarnpkg.com/xpipe/-/xpipe-1.0.5.tgz#8dd8bf45fc3f7f55f0e054b878f43a62614dafdf" 3995 | 3996 | xtend@~4.0.1: 3997 | version "4.0.1" 3998 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3999 | 4000 | y18n@^3.2.1: 4001 | version "3.2.1" 4002 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4003 | 4004 | yallist@^2.1.2: 4005 | version "2.1.2" 4006 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4007 | 4008 | yallist@^3.0.0, yallist@^3.0.2: 4009 | version "3.0.2" 4010 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 4011 | 4012 | yargs-parser@^7.0.0: 4013 | version "7.0.0" 4014 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4015 | dependencies: 4016 | camelcase "^4.1.0" 4017 | 4018 | yargs@^9.0.0: 4019 | version "9.0.1" 4020 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 4021 | dependencies: 4022 | camelcase "^4.1.0" 4023 | cliui "^3.2.0" 4024 | decamelize "^1.1.1" 4025 | get-caller-file "^1.0.1" 4026 | os-locale "^2.0.0" 4027 | read-pkg-up "^2.0.0" 4028 | require-directory "^2.1.1" 4029 | require-main-filename "^1.0.1" 4030 | set-blocking "^2.0.0" 4031 | string-width "^2.0.0" 4032 | which-module "^2.0.0" 4033 | y18n "^3.2.1" 4034 | yargs-parser "^7.0.0" 4035 | --------------------------------------------------------------------------------