├── .gitattributes ├── .vscode └── settings.json ├── android ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── es │ │ └── wiyarmir │ │ └── rnspotifyauth │ │ ├── SpotifyAuthPackage.java │ │ └── SpotifyAuthNativeModule.java ├── build.gradle ├── gradlew.bat └── gradlew ├── jsconfig.json ├── ios ├── RNReactNativeSpotifyAuth.h ├── RNReactNativeSpotifyAuth.m ├── RNReactNativeSpotifyAuth.podspec └── RNReactNativeSpotifyAuth.xcodeproj │ └── project.pbxproj ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── .gitignore ├── package.json ├── index.js ├── README.md ├── .circleci └── config.yml ├── LICENSE ├── .eslintrc └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "java.configuration.updateBuildConfiguration": "automatic", 3 | "javascript.validate.enable": false 4 | } -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiyarmir/react-native-spotify-auth/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | .DS_Store 4 | /build 5 | /captures 6 | **.iml 7 | /.idea 8 | 9 | # for now at least 10 | /libs -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowJs": true, 4 | "allowSyntheticDefaultImports": true 5 | }, 6 | "exclude": [ 7 | "node_modules" 8 | ] 9 | } -------------------------------------------------------------------------------- /ios/RNReactNativeSpotifyAuth.h: -------------------------------------------------------------------------------- 1 | 2 | #if __has_include("RCTBridgeModule.h") 3 | #import "RCTBridgeModule.h" 4 | #else 5 | #import 6 | #endif 7 | 8 | @interface RNReactNativeSpotifyAuth : NSObject 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /ios/RNReactNativeSpotifyAuth.m: -------------------------------------------------------------------------------- 1 | 2 | #import "RNReactNativeSpotifyAuth.h" 3 | 4 | @implementation RNReactNativeSpotifyAuth 5 | 6 | - (dispatch_queue_t)methodQueue 7 | { 8 | return dispatch_get_main_queue(); 9 | } 10 | RCT_EXPORT_MODULE() 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Mar 31 16:55:42 BST 2017 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.9-all.zip 7 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # OSX 3 | # 4 | .DS_Store 5 | 6 | # node.js 7 | # 8 | node_modules/ 9 | npm-debug.log 10 | yarn-error.log 11 | 12 | 13 | # Xcode 14 | # 15 | build/ 16 | *.pbxuser 17 | !default.pbxuser 18 | *.mode1v3 19 | !default.mode1v3 20 | *.mode2v3 21 | !default.mode2v3 22 | *.perspectivev3 23 | !default.perspectivev3 24 | xcuserdata 25 | *.xccheckout 26 | *.moved-aside 27 | DerivedData 28 | *.hmap 29 | *.ipa 30 | *.xcuserstate 31 | project.xcworkspace 32 | 33 | 34 | # Android/IntelliJ 35 | # 36 | build/ 37 | .idea 38 | .gradle 39 | local.properties 40 | *.iml 41 | 42 | # BUCK 43 | buck-out/ 44 | \.buckd/ 45 | *.keystore 46 | 47 | # VSCode 48 | .project 49 | .settings/ 50 | -------------------------------------------------------------------------------- /ios/RNReactNativeSpotifyAuth.podspec: -------------------------------------------------------------------------------- 1 | 2 | Pod::Spec.new do |s| 3 | s.name = "RNReactNativeSpotifyAuth" 4 | s.version = "1.0.0" 5 | s.summary = "RNReactNativeSpotifyAuth" 6 | s.description = <<-DESC 7 | RNReactNativeSpotifyAuth 8 | DESC 9 | s.homepage = "" 10 | s.license = "MIT" 11 | # s.license = { :type => "MIT", :file => "FILE_LICENSE" } 12 | s.author = { "author" => "author@domain.cn" } 13 | s.platform = :ios, "7.0" 14 | s.source = { :git => "https://github.com/author/RNReactNativeSpotifyAuth.git", :tag => "master" } 15 | s.source_files = "RNReactNativeSpotifyAuth/**/*.{h,m}" 16 | s.requires_arc = true 17 | 18 | 19 | s.dependency "React" 20 | #s.dependency "others" 21 | 22 | end 23 | 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-spotify-auth", 3 | "version": "0.0.2", 4 | "description": "A React Native library for Spotify auth", 5 | "main": "index.js", 6 | "keywords": [ 7 | "react-native", 8 | "spotify", 9 | "spotify-auth" 10 | ], 11 | "nativePackage": true, 12 | "devDependencies": { 13 | "react-native": "0.51.0" 14 | }, 15 | "peerDependencies": { 16 | "react-native": "^0.51.0" 17 | }, 18 | "author": { 19 | "name": "Guillermo Orellana", 20 | "email": "wiyarmir@gmail.com" 21 | }, 22 | "homepage": "https://github.com/wiyarmir/react-native-spotify-auth", 23 | "bugs": { 24 | "url": "https://github.com/wiyarmir/react-native-spotify-auth/issues" 25 | }, 26 | "repository": { 27 | "type": "git", 28 | "url": "git://github.com/wiyarmir/react-native-spotify-auth.git" 29 | }, 30 | "license": "MIT" 31 | } -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | Steps to reproduce the behavior: 12 | 1. Go to '...' 13 | 2. Click on '....' 14 | 3. Scroll down to '....' 15 | 4. See error 16 | 17 | **Expected behavior** 18 | A clear and concise description of what you expected to happen. 19 | 20 | **Screenshots** 21 | If applicable, add screenshots to help explain your problem. 22 | 23 | **Smartphone (please complete the following information):** 24 | - Device: [e.g. iPhone6] 25 | - OS: [e.g. iOS8.1] 26 | - Browser [e.g. stock browser, safari] 27 | - Version [e.g. 22] 28 | 29 | **Relevant logs** 30 | Do you have any logs that help pinpoint the issue? 31 | 32 | **Additional context** 33 | Add any other context about the problem here. 34 | -------------------------------------------------------------------------------- /android/src/main/java/es/wiyarmir/rnspotifyauth/SpotifyAuthPackage.java: -------------------------------------------------------------------------------- 1 | package es.wiyarmir.rnspotifyauth; 2 | 3 | import com.facebook.react.ReactPackage; 4 | import com.facebook.react.bridge.JavaScriptModule; 5 | import com.facebook.react.bridge.NativeModule; 6 | import com.facebook.react.bridge.ReactApplicationContext; 7 | import com.facebook.react.uimanager.ViewManager; 8 | 9 | import java.util.Collections; 10 | import java.util.List; 11 | 12 | public class SpotifyAuthPackage implements ReactPackage { 13 | @Override 14 | public List createNativeModules(ReactApplicationContext reactContext) { 15 | return Collections.singletonList( 16 | new SpotifyAuthNativeModule(reactContext) 17 | ); 18 | } 19 | 20 | @Override 21 | public List createViewManagers(ReactApplicationContext reactContext) { 22 | return Collections.emptyList(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | jcenter() 4 | google() 5 | } 6 | dependencies { 7 | classpath 'com.android.tools.build:gradle:3.1.3' 8 | } 9 | } 10 | 11 | apply plugin: 'com.android.library' 12 | 13 | android { 14 | compileSdkVersion 27 15 | 16 | defaultConfig { 17 | minSdkVersion 16 18 | targetSdkVersion 22 19 | versionCode 1 20 | versionName "1.0" 21 | } 22 | lintOptions { 23 | abortOnError false 24 | } 25 | } 26 | 27 | repositories { 28 | jcenter() 29 | google() 30 | maven { url 'https://jitpack.io' } 31 | maven { 32 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 33 | url "$rootDir/../node_modules/react-native/android" 34 | } 35 | } 36 | 37 | dependencies { 38 | implementation 'com.facebook.react:react-native:+' 39 | api('com.github.spotify:android-auth:1.0.0-alpha') { 40 | transitive = true 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | import {NativeModules} from 'react-native'; 3 | 4 | const {RNSpotifyAuth} = NativeModules; 5 | 6 | export default class ReactNativeSpotifyAuth { 7 | clientId: string; 8 | redirectUri: string; 9 | /** 10 | * @param {String} clientId 11 | * @param {String} redirectUri 12 | */ 13 | constructor(clientId: string, redirectUri: string) { 14 | this.clientId = clientId; 15 | this.redirectUri = redirectUri; 16 | } 17 | /** 18 | * @returns {Promise} 19 | */ 20 | startLogin(): Promise { 21 | return RNSpotifyAuth.launchAuth(this.clientId, this.redirectUri).then( 22 | function(data) { 23 | return { 24 | token: data.token, 25 | code: data.code, 26 | error: data.error, 27 | state: data.state, 28 | expiresIn: data.expiresIn, 29 | }; 30 | }, 31 | reason => reason, 32 | ); 33 | } 34 | } 35 | 36 | type SpotifyAuthData = { 37 | token: string, 38 | code: string, 39 | error: string, 40 | state: string, 41 | expiresIn: number, 42 | }; 43 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # react-native-spotify-auth 3 | 4 | ## Objectives 5 | 6 | To have a unified library that allows to do Spotify authentication through their native SDK, both in iOS and Android. 7 | 8 | ## Prerequisites 9 | 10 | Important! This library requires you to have registered your apps properly in the [Spotify developers dashboard](https://developer.spotify.com/dashboard/applications), including Bundle Id/Package Name and SHA1 signature. 11 | 12 | ## Installing 13 | 14 | ```bash 15 | $ yarn add wiyarmir/react-native-spotify-auth 16 | $ react-native link react-native-spotify-auth 17 | ``` 18 | 19 | Unfortunately, transitive AAR dependencies are not bundled. Since Spotify SDK is not published in Maven or pods, you need to manually include spotify lib from your project. 20 | 21 | ### Android 22 | 23 | There are two options for this. 24 | 25 | #### Option 1 26 | 27 | In your `android/build.gradle` file add the following: 28 | 29 | ```diff 30 | allprojects { 31 | repositories { 32 | mavenLocal() 33 | jcenter() 34 | maven { 35 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 36 | url "$rootDir/../node_modules/react-native/android" 37 | } 38 | + flatDir { 39 | + dirs "$rootDir/../node_modules/react-native-spotify-auth/android/libs" 40 | + } 41 | flatDir { 42 | dirs "libs" 43 | } 44 | } 45 | } 46 | ``` 47 | 48 | #### Option 2 49 | 50 | Add the Spotify auth `.aar` file to the `android/libs/` directory of your project. Current used version is `1.0.0-beta13` and can be found in [their GitHub repo](https://github.com/spotify/android-sdk/tree/1.0.0-beta13) 51 | 52 | ### iOS 53 | 54 | WIP 55 | 56 | ## Usage 57 | 58 | ### API 59 | 60 | The default export provides you with a class and flowtype annotations. 61 | 62 | Method `startLogin()` returns a `Promise` that will resolve with a SpotifyAuthData type. 63 | 64 | ```js 65 | type SpotifyAuthData = { 66 | token: string, 67 | code: string, 68 | error: string, 69 | state: string, 70 | expiresIn: number, 71 | }; 72 | ``` 73 | 74 | ### Example 75 | 76 | ```js 77 | import SpotifyAuth from 'react-native-spotify-auth'; 78 | 79 | let auth = new SpotifyAuth(Constants.SPOTIFY_CLIENT_ID, Constants.SPOTIFY_REDIRECT_URI); 80 | auth.startLogin() 81 | .then( 82 | function(data) { 83 | console.log(data.token); 84 | }, 85 | function(error){ 86 | console.warn(error); 87 | } 88 | ); 89 | ``` 90 | 91 | ## Roadmap 92 | 93 | ### v0.9.0 94 | 95 | - [ ] Android auth flow 96 | 97 | ### v1.0.0 98 | 99 | - [ ] iOS auth flow 100 | 101 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | jobs: 3 | node: 4 | working_directory: ~/react-native-spotify-auth 5 | docker: 6 | - image: circleci/node:8 7 | steps: 8 | - checkout 9 | - restore_cache: 10 | key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }} 11 | - restore_cache: 12 | key: node-v1-{{ checksum "package.json" }}-{{ arch }} 13 | - run: yarn install 14 | - save_cache: 15 | key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }} 16 | paths: 17 | - ~/.cache/yarn 18 | - save_cache: 19 | key: node-v1-{{ checksum "package.json" }}-{{ arch }} 20 | paths: 21 | - node_modules 22 | # - run: 23 | # name: jest tests 24 | # command: | 25 | # mkdir -p test-results/jest 26 | # yarn run test 27 | # environment: 28 | # JEST_JUNIT_OUTPUT: test-results/jest/junit.xml 29 | - persist_to_workspace: 30 | root: ~/react-native-spotify-auth 31 | paths: 32 | - node_modules 33 | - store_test_results: 34 | path: test-results 35 | - store_artifacts: 36 | path: test-results 37 | android: 38 | working_directory: ~/react-native-spotify-auth/android 39 | docker: 40 | - image: circleci/android:api-27-node8-alpha 41 | steps: 42 | - checkout: 43 | path: ~/react-native-spotify-auth 44 | - run: echo 'export TERM=xterm' >> $BASH_ENV 45 | - run: mkdir -p artifacts/ 46 | - run: 47 | name: Fetch logcat and props 48 | background: true 49 | command: | 50 | adb logcat > artifacts/logcat.txt 51 | adb shell getprop > artifacts/props.txt 52 | - run: 53 | command: | 54 | ./gradlew assembleDebug --console=plain 55 | ./gradlew testDebug --console=plain 56 | - store_test_results: 57 | path: test-results 58 | 59 | - store_artifacts: 60 | path: ~/react-native-spotify-auth/artifacts 61 | destination: env 62 | ios: 63 | macos: 64 | xcode: "9.0" 65 | working_directory: ~/react-native-spotify-auth 66 | 67 | # use a --login shell so our "set Ruby version" command gets picked up for later steps 68 | shell: /bin/bash --login -o pipefail 69 | 70 | steps: 71 | - checkout 72 | 73 | - run: 74 | name: set Ruby version 75 | command: echo "ruby-2.4" > ~/.ruby-version 76 | 77 | - restore_cache: 78 | key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }} 79 | 80 | - restore_cache: 81 | key: node-v1-{{ checksum "package.json" }}-{{ arch }} 82 | 83 | # not using a workspace here as Node and Yarn versions 84 | # differ between our macOS executor image and the Docker containers above 85 | - run: yarn install 86 | 87 | - save_cache: 88 | key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }} 89 | paths: 90 | - ~/.cache/yarn 91 | 92 | - save_cache: 93 | key: node-v1-{{ checksum "package.json" }}-{{ arch }} 94 | paths: 95 | - node_modules 96 | 97 | - restore_cache: 98 | key: bundle-v1-{{ checksum "ios/Gemfile.lock" }}-{{ arch }} 99 | 100 | - run: 101 | command: bundle install 102 | working_directory: ios 103 | 104 | - save_cache: 105 | key: bundle-v1-{{ checksum "ios/Gemfile.lock" }}-{{ arch }} 106 | paths: 107 | - vendor/bundle 108 | 109 | - run: 110 | command: bundle exec fastlane test 111 | working_directory: ios 112 | 113 | - run: 114 | name: set up test results 115 | working_directory: ios 116 | when: always 117 | command: | 118 | mkdir -p test-results/fastlane test-results/xcode 119 | mv fastlane/report.xml test-results/fastlane 120 | mv fastlane/test_output/report.junit test-results/xcode/junit.xml 121 | - store_test_results: 122 | path: ios/test-results 123 | 124 | - store_artifacts: 125 | path: ios/test-results 126 | workflows: 127 | version: 2 128 | node-android-ios: 129 | jobs: 130 | - node 131 | - android: 132 | requires: 133 | - node 134 | # - ios: 135 | # requires: 136 | # - node -------------------------------------------------------------------------------- /android/src/main/java/es/wiyarmir/rnspotifyauth/SpotifyAuthNativeModule.java: -------------------------------------------------------------------------------- 1 | package es.wiyarmir.rnspotifyauth; 2 | 3 | import android.app.Activity; 4 | import android.content.Intent; 5 | 6 | import com.facebook.react.bridge.ActivityEventListener; 7 | import com.facebook.react.bridge.Arguments; 8 | import com.facebook.react.bridge.Promise; 9 | import com.facebook.react.bridge.ReactApplicationContext; 10 | import com.facebook.react.bridge.ReactContextBaseJavaModule; 11 | import com.facebook.react.bridge.ReactMethod; 12 | import com.facebook.react.bridge.WritableMap; 13 | import com.spotify.sdk.android.authentication.AuthenticationClient; 14 | import com.spotify.sdk.android.authentication.AuthenticationRequest; 15 | import com.spotify.sdk.android.authentication.AuthenticationResponse; 16 | 17 | import java.util.ArrayList; 18 | import java.util.Collections; 19 | import java.util.List; 20 | 21 | public class SpotifyAuthNativeModule extends ReactContextBaseJavaModule implements ActivityEventListener { 22 | private static final String E_NO_ACTIVITY = "E_NO_ACTIVITY"; 23 | private static final String E_RUNTIME_ERROR = "E_RUNTIME_ERROR"; 24 | private static final String E_AUTH_ERROR = "E_AUTH_ERROR"; 25 | private static final String E_CANCELLED = "E_CANCELLED"; 26 | 27 | private static final int REQUEST_CODE = 1337; 28 | 29 | private final List promises = Collections.synchronizedList(new ArrayList()); 30 | 31 | public SpotifyAuthNativeModule(ReactApplicationContext reactContext) { 32 | super(reactContext); 33 | reactContext.addActivityEventListener(this); 34 | } 35 | 36 | @Override 37 | public String getName() { 38 | return "RNSpotifyAuth"; 39 | } 40 | 41 | @Override 42 | public void onActivityResult(Activity activity, int requestCode, int resultCode, Intent data) { 43 | if (requestCode == REQUEST_CODE) { 44 | AuthenticationResponse response = AuthenticationClient.getResponse(resultCode, data); 45 | switch (response.getType()) { 46 | // Response was successful and contains auth token 47 | case TOKEN: 48 | resolve(response); 49 | break; 50 | case ERROR: 51 | reject(E_AUTH_ERROR, "Error during authorisation"); 52 | break; 53 | default: // cancelled 54 | reject(E_CANCELLED, "User cancelled the operation"); 55 | } 56 | } 57 | } 58 | 59 | @Override 60 | public void onNewIntent(Intent intent) { 61 | // no-op 62 | } 63 | 64 | @ReactMethod 65 | public void launchAuth(String clientId, String redirectUri, final Promise promise) { 66 | Activity currentActivity = getCurrentActivity(); 67 | 68 | if (currentActivity == null) { 69 | promise.reject(E_NO_ACTIVITY, "No activity"); 70 | return; 71 | } 72 | 73 | promises.add(promise); 74 | 75 | try { 76 | AuthenticationRequest.Builder builder = new AuthenticationRequest.Builder(clientId, AuthenticationResponse.Type.TOKEN, redirectUri); 77 | 78 | builder.setScopes(new String[]{}); 79 | AuthenticationRequest request = builder.build(); 80 | 81 | AuthenticationClient.openLoginActivity(currentActivity, REQUEST_CODE, request); 82 | } catch (RuntimeException e) { 83 | reject(E_RUNTIME_ERROR, e); 84 | } 85 | } 86 | 87 | private void resolve(AuthenticationResponse response) { 88 | WritableMap data = makeRNFriendly(response); 89 | List promises = this.promises; 90 | for (Promise p : promises) { 91 | p.resolve(data); 92 | } 93 | this.promises.removeAll(promises); 94 | } 95 | 96 | private void reject(String errorCode, RuntimeException e) { 97 | reject(errorCode, e.getMessage()); 98 | } 99 | 100 | private void reject(String errorCode, String message) { 101 | List promises = this.promises; 102 | for (Promise p : promises) { 103 | p.reject(errorCode, message); 104 | } 105 | this.promises.removeAll(promises); 106 | } 107 | 108 | private WritableMap makeRNFriendly(AuthenticationResponse response) { 109 | WritableMap ret = Arguments.createMap(); 110 | ret.putString(KEY_TOKEN, response.getAccessToken()); 111 | ret.putString(KEY_CODE, response.getCode()); 112 | ret.putString(KEY_ERROR, response.getError()); 113 | ret.putString(KEY_STATE, response.getState()); 114 | ret.putInt(KEY_EXPIRES_IN, response.getExpiresIn()); 115 | return ret; 116 | } 117 | 118 | private static final String KEY_TOKEN = "token"; 119 | private static final String KEY_CODE = "code"; 120 | private static final String KEY_ERROR = "error"; 121 | private static final String KEY_STATE = "state"; 122 | private static final String KEY_EXPIRES_IN = "expiresIn"; 123 | } 124 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/" >/dev/null 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >/dev/null 62 | 63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 161 | -------------------------------------------------------------------------------- /ios/RNReactNativeSpotifyAuth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | B3E7B58A1CC2AC0600A0062D /* RNReactNativeSpotifyAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* RNReactNativeSpotifyAuth.m */; }; 11 | /* End PBXBuildFile section */ 12 | 13 | /* Begin PBXCopyFilesBuildPhase section */ 14 | 58B511D91A9E6C8500147676 /* CopyFiles */ = { 15 | isa = PBXCopyFilesBuildPhase; 16 | buildActionMask = 2147483647; 17 | dstPath = "include/$(PRODUCT_NAME)"; 18 | dstSubfolderSpec = 16; 19 | files = ( 20 | ); 21 | runOnlyForDeploymentPostprocessing = 0; 22 | }; 23 | /* End PBXCopyFilesBuildPhase section */ 24 | 25 | /* Begin PBXFileReference section */ 26 | 134814201AA4EA6300B7C361 /* libRNReactNativeSpotifyAuth.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNReactNativeSpotifyAuth.a; sourceTree = BUILT_PRODUCTS_DIR; }; 27 | B3E7B5881CC2AC0600A0062D /* RNReactNativeSpotifyAuth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNReactNativeSpotifyAuth.h; sourceTree = ""; }; 28 | B3E7B5891CC2AC0600A0062D /* RNReactNativeSpotifyAuth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNReactNativeSpotifyAuth.m; sourceTree = ""; }; 29 | /* End PBXFileReference section */ 30 | 31 | /* Begin PBXFrameworksBuildPhase section */ 32 | 58B511D81A9E6C8500147676 /* Frameworks */ = { 33 | isa = PBXFrameworksBuildPhase; 34 | buildActionMask = 2147483647; 35 | files = ( 36 | ); 37 | runOnlyForDeploymentPostprocessing = 0; 38 | }; 39 | /* End PBXFrameworksBuildPhase section */ 40 | 41 | /* Begin PBXGroup section */ 42 | 134814211AA4EA7D00B7C361 /* Products */ = { 43 | isa = PBXGroup; 44 | children = ( 45 | 134814201AA4EA6300B7C361 /* libRNReactNativeSpotifyAuth.a */, 46 | ); 47 | name = Products; 48 | sourceTree = ""; 49 | }; 50 | 58B511D21A9E6C8500147676 = { 51 | isa = PBXGroup; 52 | children = ( 53 | B3E7B5881CC2AC0600A0062D /* RNReactNativeSpotifyAuth.h */, 54 | B3E7B5891CC2AC0600A0062D /* RNReactNativeSpotifyAuth.m */, 55 | 134814211AA4EA7D00B7C361 /* Products */, 56 | ); 57 | sourceTree = ""; 58 | }; 59 | /* End PBXGroup section */ 60 | 61 | /* Begin PBXNativeTarget section */ 62 | 58B511DA1A9E6C8500147676 /* RNReactNativeSpotifyAuth */ = { 63 | isa = PBXNativeTarget; 64 | buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNReactNativeSpotifyAuth" */; 65 | buildPhases = ( 66 | 58B511D71A9E6C8500147676 /* Sources */, 67 | 58B511D81A9E6C8500147676 /* Frameworks */, 68 | 58B511D91A9E6C8500147676 /* CopyFiles */, 69 | ); 70 | buildRules = ( 71 | ); 72 | dependencies = ( 73 | ); 74 | name = RNReactNativeSpotifyAuth; 75 | productName = RCTDataManager; 76 | productReference = 134814201AA4EA6300B7C361 /* libRNReactNativeSpotifyAuth.a */; 77 | productType = "com.apple.product-type.library.static"; 78 | }; 79 | /* End PBXNativeTarget section */ 80 | 81 | /* Begin PBXProject section */ 82 | 58B511D31A9E6C8500147676 /* Project object */ = { 83 | isa = PBXProject; 84 | attributes = { 85 | LastUpgradeCheck = 0610; 86 | ORGANIZATIONNAME = Facebook; 87 | TargetAttributes = { 88 | 58B511DA1A9E6C8500147676 = { 89 | CreatedOnToolsVersion = 6.1.1; 90 | }; 91 | }; 92 | }; 93 | buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNReactNativeSpotifyAuth" */; 94 | compatibilityVersion = "Xcode 3.2"; 95 | developmentRegion = English; 96 | hasScannedForEncodings = 0; 97 | knownRegions = ( 98 | en, 99 | ); 100 | mainGroup = 58B511D21A9E6C8500147676; 101 | productRefGroup = 58B511D21A9E6C8500147676; 102 | projectDirPath = ""; 103 | projectRoot = ""; 104 | targets = ( 105 | 58B511DA1A9E6C8500147676 /* RNReactNativeSpotifyAuth */, 106 | ); 107 | }; 108 | /* End PBXProject section */ 109 | 110 | /* Begin PBXSourcesBuildPhase section */ 111 | 58B511D71A9E6C8500147676 /* Sources */ = { 112 | isa = PBXSourcesBuildPhase; 113 | buildActionMask = 2147483647; 114 | files = ( 115 | B3E7B58A1CC2AC0600A0062D /* RNReactNativeSpotifyAuth.m in Sources */, 116 | ); 117 | runOnlyForDeploymentPostprocessing = 0; 118 | }; 119 | /* End PBXSourcesBuildPhase section */ 120 | 121 | /* Begin XCBuildConfiguration section */ 122 | 58B511ED1A9E6C8500147676 /* Debug */ = { 123 | isa = XCBuildConfiguration; 124 | buildSettings = { 125 | ALWAYS_SEARCH_USER_PATHS = NO; 126 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 127 | CLANG_CXX_LIBRARY = "libc++"; 128 | CLANG_ENABLE_MODULES = YES; 129 | CLANG_ENABLE_OBJC_ARC = YES; 130 | CLANG_WARN_BOOL_CONVERSION = YES; 131 | CLANG_WARN_CONSTANT_CONVERSION = YES; 132 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 133 | CLANG_WARN_EMPTY_BODY = YES; 134 | CLANG_WARN_ENUM_CONVERSION = YES; 135 | CLANG_WARN_INT_CONVERSION = YES; 136 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 137 | CLANG_WARN_UNREACHABLE_CODE = YES; 138 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 139 | COPY_PHASE_STRIP = NO; 140 | ENABLE_STRICT_OBJC_MSGSEND = YES; 141 | GCC_C_LANGUAGE_STANDARD = gnu99; 142 | GCC_DYNAMIC_NO_PIC = NO; 143 | GCC_OPTIMIZATION_LEVEL = 0; 144 | GCC_PREPROCESSOR_DEFINITIONS = ( 145 | "DEBUG=1", 146 | "$(inherited)", 147 | ); 148 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 149 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 150 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 151 | GCC_WARN_UNDECLARED_SELECTOR = YES; 152 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 153 | GCC_WARN_UNUSED_FUNCTION = YES; 154 | GCC_WARN_UNUSED_VARIABLE = YES; 155 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 156 | MTL_ENABLE_DEBUG_INFO = YES; 157 | ONLY_ACTIVE_ARCH = YES; 158 | SDKROOT = iphoneos; 159 | }; 160 | name = Debug; 161 | }; 162 | 58B511EE1A9E6C8500147676 /* Release */ = { 163 | isa = XCBuildConfiguration; 164 | buildSettings = { 165 | ALWAYS_SEARCH_USER_PATHS = NO; 166 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 167 | CLANG_CXX_LIBRARY = "libc++"; 168 | CLANG_ENABLE_MODULES = YES; 169 | CLANG_ENABLE_OBJC_ARC = YES; 170 | CLANG_WARN_BOOL_CONVERSION = YES; 171 | CLANG_WARN_CONSTANT_CONVERSION = YES; 172 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 173 | CLANG_WARN_EMPTY_BODY = YES; 174 | CLANG_WARN_ENUM_CONVERSION = YES; 175 | CLANG_WARN_INT_CONVERSION = YES; 176 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 177 | CLANG_WARN_UNREACHABLE_CODE = YES; 178 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 179 | COPY_PHASE_STRIP = YES; 180 | ENABLE_NS_ASSERTIONS = NO; 181 | ENABLE_STRICT_OBJC_MSGSEND = YES; 182 | GCC_C_LANGUAGE_STANDARD = gnu99; 183 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 184 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 185 | GCC_WARN_UNDECLARED_SELECTOR = YES; 186 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 187 | GCC_WARN_UNUSED_FUNCTION = YES; 188 | GCC_WARN_UNUSED_VARIABLE = YES; 189 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 190 | MTL_ENABLE_DEBUG_INFO = NO; 191 | SDKROOT = iphoneos; 192 | VALIDATE_PRODUCT = YES; 193 | }; 194 | name = Release; 195 | }; 196 | 58B511F01A9E6C8500147676 /* Debug */ = { 197 | isa = XCBuildConfiguration; 198 | buildSettings = { 199 | HEADER_SEARCH_PATHS = ( 200 | "$(inherited)", 201 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 202 | "$(SRCROOT)/../../../React/**", 203 | "$(SRCROOT)/../../react-native/React/**", 204 | ); 205 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 206 | OTHER_LDFLAGS = "-ObjC"; 207 | PRODUCT_NAME = RNReactNativeSpotifyAuth; 208 | SKIP_INSTALL = YES; 209 | }; 210 | name = Debug; 211 | }; 212 | 58B511F11A9E6C8500147676 /* Release */ = { 213 | isa = XCBuildConfiguration; 214 | buildSettings = { 215 | HEADER_SEARCH_PATHS = ( 216 | "$(inherited)", 217 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 218 | "$(SRCROOT)/../../../React/**", 219 | "$(SRCROOT)/../../react-native/React/**", 220 | ); 221 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 222 | OTHER_LDFLAGS = "-ObjC"; 223 | PRODUCT_NAME = RNReactNativeSpotifyAuth; 224 | SKIP_INSTALL = YES; 225 | }; 226 | name = Release; 227 | }; 228 | /* End XCBuildConfiguration section */ 229 | 230 | /* Begin XCConfigurationList section */ 231 | 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNReactNativeSpotifyAuth" */ = { 232 | isa = XCConfigurationList; 233 | buildConfigurations = ( 234 | 58B511ED1A9E6C8500147676 /* Debug */, 235 | 58B511EE1A9E6C8500147676 /* Release */, 236 | ); 237 | defaultConfigurationIsVisible = 0; 238 | defaultConfigurationName = Release; 239 | }; 240 | 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNReactNativeSpotifyAuth" */ = { 241 | isa = XCConfigurationList; 242 | buildConfigurations = ( 243 | 58B511F01A9E6C8500147676 /* Debug */, 244 | 58B511F11A9E6C8500147676 /* Release */, 245 | ); 246 | defaultConfigurationIsVisible = 0; 247 | defaultConfigurationName = Release; 248 | }; 249 | /* End XCConfigurationList section */ 250 | }; 251 | rootObject = 58B511D31A9E6C8500147676 /* Project object */; 252 | } 253 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | 4 | "ecmaFeatures": { 5 | "jsx": true 6 | }, 7 | 8 | "env": { 9 | "es6": true, 10 | "jasmine": true, 11 | }, 12 | 13 | "plugins": [ 14 | "react" 15 | ], 16 | 17 | // Map from global var to bool specifying if it can be redefined 18 | "globals": { 19 | "__DEV__": true, 20 | "__dirname": false, 21 | "__fbBatchedBridgeConfig": false, 22 | "alert": false, 23 | "cancelAnimationFrame": false, 24 | "cancelIdleCallback": false, 25 | "clearImmediate": true, 26 | "clearInterval": false, 27 | "clearTimeout": false, 28 | "console": false, 29 | "document": false, 30 | "escape": false, 31 | "Event": false, 32 | "EventTarget": false, 33 | "exports": false, 34 | "fetch": false, 35 | "FormData": false, 36 | "global": false, 37 | "jest": false, 38 | "Map": true, 39 | "module": false, 40 | "navigator": false, 41 | "process": false, 42 | "Promise": true, 43 | "requestAnimationFrame": true, 44 | "requestIdleCallback": true, 45 | "require": false, 46 | "Set": true, 47 | "setImmediate": true, 48 | "setInterval": false, 49 | "setTimeout": false, 50 | "window": false, 51 | "XMLHttpRequest": false, 52 | "pit": false, 53 | 54 | // Flow global types. 55 | "ReactComponent": false, 56 | "ReactClass": false, 57 | "ReactElement": false, 58 | "ReactPropsCheckType": false, 59 | "ReactPropsChainableTypeChecker": false, 60 | "ReactPropTypes": false, 61 | "SyntheticEvent": false, 62 | "$Either": false, 63 | "$All": false, 64 | "$ArrayBufferView": false, 65 | "$Tuple": false, 66 | "$Supertype": false, 67 | "$Subtype": false, 68 | "$Shape": false, 69 | "$Diff": false, 70 | "$Keys": false, 71 | "$Enum": false, 72 | "$Exports": false, 73 | "$FlowIssue": false, 74 | "$FlowFixMe": false, 75 | "$FixMe": false 76 | }, 77 | 78 | "rules": { 79 | "comma-dangle": 0, // disallow trailing commas in object literals 80 | "no-cond-assign": 1, // disallow assignment in conditional expressions 81 | "no-console": 0, // disallow use of console (off by default in the node environment) 82 | "no-const-assign": 2, // disallow assignment to const-declared variables 83 | "no-constant-condition": 0, // disallow use of constant expressions in conditions 84 | "no-control-regex": 1, // disallow control characters in regular expressions 85 | "no-debugger": 1, // disallow use of debugger 86 | "no-dupe-keys": 1, // disallow duplicate keys when creating object literals 87 | "no-empty": 0, // disallow empty statements 88 | "no-ex-assign": 1, // disallow assigning to the exception in a catch block 89 | "no-extra-boolean-cast": 1, // disallow double-negation boolean casts in a boolean context 90 | "no-extra-parens": 0, // disallow unnecessary parentheses (off by default) 91 | "no-extra-semi": 1, // disallow unnecessary semicolons 92 | "no-func-assign": 1, // disallow overwriting functions written as function declarations 93 | "no-inner-declarations": 0, // disallow function or variable declarations in nested blocks 94 | "no-invalid-regexp": 1, // disallow invalid regular expression strings in the RegExp constructor 95 | "no-negated-in-lhs": 1, // disallow negation of the left operand of an in expression 96 | "no-obj-calls": 1, // disallow the use of object properties of the global object (Math and JSON) as functions 97 | "no-regex-spaces": 1, // disallow multiple spaces in a regular expression literal 98 | "no-reserved-keys": 0, // disallow reserved words being used as object literal keys (off by default) 99 | "no-sparse-arrays": 1, // disallow sparse arrays 100 | "no-unreachable": 1, // disallow unreachable statements after a return, throw, continue, or break statement 101 | "use-isnan": 1, // disallow comparisons with the value NaN 102 | "valid-jsdoc": 0, // Ensure JSDoc comments are valid (off by default) 103 | "valid-typeof": 1, // Ensure that the results of typeof are compared against a valid string 104 | 105 | // Best Practices 106 | // These are rules designed to prevent you from making mistakes. They either prescribe a better way of doing something or help you avoid footguns. 107 | 108 | "block-scoped-var": 0, // treat var statements as if they were block scoped (off by default) 109 | "complexity": 0, // specify the maximum cyclomatic complexity allowed in a program (off by default) 110 | "consistent-return": 0, // require return statements to either always or never specify values 111 | "curly": 1, // specify curly brace conventions for all control statements 112 | "default-case": 0, // require default case in switch statements (off by default) 113 | "dot-notation": 1, // encourages use of dot notation whenever possible 114 | "eqeqeq": [1, "allow-null"], // require the use of === and !== 115 | "guard-for-in": 0, // make sure for-in loops have an if statement (off by default) 116 | "no-alert": 1, // disallow the use of alert, confirm, and prompt 117 | "no-caller": 1, // disallow use of arguments.caller or arguments.callee 118 | "no-div-regex": 1, // disallow division operators explicitly at beginning of regular expression (off by default) 119 | "no-else-return": 0, // disallow else after a return in an if (off by default) 120 | "no-eq-null": 0, // disallow comparisons to null without a type-checking operator (off by default) 121 | "no-eval": 1, // disallow use of eval() 122 | "no-extend-native": 1, // disallow adding to native types 123 | "no-extra-bind": 1, // disallow unnecessary function binding 124 | "no-fallthrough": 1, // disallow fallthrough of case statements 125 | "no-floating-decimal": 1, // disallow the use of leading or trailing decimal points in numeric literals (off by default) 126 | "no-implied-eval": 1, // disallow use of eval()-like methods 127 | "no-labels": 1, // disallow use of labeled statements 128 | "no-iterator": 1, // disallow usage of __iterator__ property 129 | "no-lone-blocks": 1, // disallow unnecessary nested blocks 130 | "no-loop-func": 0, // disallow creation of functions within loops 131 | "no-multi-str": 0, // disallow use of multiline strings 132 | "no-native-reassign": 0, // disallow reassignments of native objects 133 | "no-new": 1, // disallow use of new operator when not part of the assignment or comparison 134 | "no-new-func": 1, // disallow use of new operator for Function object 135 | "no-new-wrappers": 1, // disallows creating new instances of String,Number, and Boolean 136 | "no-octal": 1, // disallow use of octal literals 137 | "no-octal-escape": 1, // disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251"; 138 | "no-proto": 1, // disallow usage of __proto__ property 139 | "no-redeclare": 0, // disallow declaring the same variable more then once 140 | "no-return-assign": 1, // disallow use of assignment in return statement 141 | "no-script-url": 1, // disallow use of javascript: urls. 142 | "no-self-compare": 1, // disallow comparisons where both sides are exactly the same (off by default) 143 | "no-sequences": 1, // disallow use of comma operator 144 | "no-unused-expressions": 0, // disallow usage of expressions in statement position 145 | "no-void": 1, // disallow use of void operator (off by default) 146 | "no-warning-comments": 0, // disallow usage of configurable warning terms in comments": 1, // e.g. TODO or FIXME (off by default) 147 | "no-with": 1, // disallow use of the with statement 148 | "radix": 1, // require use of the second argument for parseInt() (off by default) 149 | "semi-spacing": 1, // require a space after a semi-colon 150 | "vars-on-top": 0, // requires to declare all vars on top of their containing scope (off by default) 151 | "wrap-iife": 0, // require immediate function invocation to be wrapped in parentheses (off by default) 152 | "yoda": 1, // require or disallow Yoda conditions 153 | 154 | // Variables 155 | // These rules have to do with variable declarations. 156 | 157 | "no-catch-shadow": 1, // disallow the catch clause parameter name being the same as a variable in the outer scope (off by default in the node environment) 158 | "no-delete-var": 1, // disallow deletion of variables 159 | "no-label-var": 1, // disallow labels that share a name with a variable 160 | "no-shadow": 1, // disallow declaration of variables already declared in the outer scope 161 | "no-shadow-restricted-names": 1, // disallow shadowing of names such as arguments 162 | "no-undef": 2, // disallow use of undeclared variables unless mentioned in a /*global */ block 163 | "no-undefined": 0, // disallow use of undefined variable (off by default) 164 | "no-undef-init": 1, // disallow use of undefined when initializing variables 165 | "no-unused-vars": [1, {"vars": "all", "args": "none"}], // disallow declaration of variables that are not used in the code 166 | "no-use-before-define": 0, // disallow use of variables before they are defined 167 | 168 | // Node.js 169 | // These rules are specific to JavaScript running on Node.js. 170 | 171 | "handle-callback-err": 1, // enforces error handling in callbacks (off by default) (on by default in the node environment) 172 | "no-mixed-requires": 1, // disallow mixing regular variable and require declarations (off by default) (on by default in the node environment) 173 | "no-new-require": 1, // disallow use of new operator with the require function (off by default) (on by default in the node environment) 174 | "no-path-concat": 1, // disallow string concatenation with __dirname and __filename (off by default) (on by default in the node environment) 175 | "no-process-exit": 0, // disallow process.exit() (on by default in the node environment) 176 | "no-restricted-modules": 1, // restrict usage of specified node modules (off by default) 177 | "no-sync": 0, // disallow use of synchronous methods (off by default) 178 | 179 | // Stylistic Issues 180 | // These rules are purely matters of style and are quite subjective. 181 | 182 | "key-spacing": 0, 183 | "keyword-spacing": 1, // enforce spacing before and after keywords 184 | "jsx-quotes": [1, "prefer-double"], 185 | "comma-spacing": 0, 186 | "no-multi-spaces": 0, 187 | "brace-style": 0, // enforce one true brace style (off by default) 188 | "camelcase": 0, // require camel case names 189 | "consistent-this": [1, "self"], // enforces consistent naming when capturing the current execution context (off by default) 190 | "eol-last": 1, // enforce newline at the end of file, with no multiple empty lines 191 | "func-names": 0, // require function expressions to have a name (off by default) 192 | "func-style": 0, // enforces use of function declarations or expressions (off by default) 193 | "new-cap": 0, // require a capital letter for constructors 194 | "new-parens": 1, // disallow the omission of parentheses when invoking a constructor with no arguments 195 | "no-nested-ternary": 0, // disallow nested ternary expressions (off by default) 196 | "no-array-constructor": 1, // disallow use of the Array constructor 197 | "no-lonely-if": 0, // disallow if as the only statement in an else block (off by default) 198 | "no-new-object": 1, // disallow use of the Object constructor 199 | "no-spaced-func": 1, // disallow space between function identifier and application 200 | "no-ternary": 0, // disallow the use of ternary operators (off by default) 201 | "no-trailing-spaces": 1, // disallow trailing whitespace at the end of lines 202 | "no-underscore-dangle": 0, // disallow dangling underscores in identifiers 203 | "no-mixed-spaces-and-tabs": 1, // disallow mixed spaces and tabs for indentation 204 | "quotes": [1, "single", "avoid-escape"], // specify whether double or single quotes should be used 205 | "quote-props": 0, // require quotes around object literal property names (off by default) 206 | "semi": 1, // require or disallow use of semicolons instead of ASI 207 | "sort-vars": 0, // sort variables within the same declaration block (off by default) 208 | "space-in-brackets": 0, // require or disallow spaces inside brackets (off by default) 209 | "space-in-parens": 0, // require or disallow spaces inside parentheses (off by default) 210 | "space-infix-ops": 1, // require spaces around operators 211 | "space-unary-ops": [1, { "words": true, "nonwords": false }], // require or disallow spaces before/after unary operators (words on by default, nonwords off by default) 212 | "max-nested-callbacks": 0, // specify the maximum depth callbacks can be nested (off by default) 213 | "one-var": 0, // allow just one var statement per function (off by default) 214 | "wrap-regex": 0, // require regex literals to be wrapped in parentheses (off by default) 215 | 216 | // Legacy 217 | // The following rules are included for compatibility with JSHint and JSLint. While the names of the rules may not match up with the JSHint/JSLint counterpart, the functionality is the same. 218 | 219 | "max-depth": 0, // specify the maximum depth that blocks can be nested (off by default) 220 | "max-len": 0, // specify the maximum length of a line in your program (off by default) 221 | "max-params": 0, // limits the number of parameters that can be used in the function declaration. (off by default) 222 | "max-statements": 0, // specify the maximum number of statement allowed in a function (off by default) 223 | "no-bitwise": 1, // disallow use of bitwise operators (off by default) 224 | "no-plusplus": 0, // disallow use of unary operators, ++ and -- (off by default) 225 | 226 | // React Plugin 227 | // The following rules are made available via `eslint-plugin-react`. 228 | 229 | "react/display-name": 0, 230 | "react/jsx-boolean-value": 0, 231 | "react/jsx-no-duplicate-props": 2, 232 | "react/jsx-no-undef": 1, 233 | "react/jsx-sort-props": 0, 234 | "react/jsx-uses-react": 1, 235 | "react/jsx-uses-vars": 1, 236 | "react/no-did-mount-set-state": 1, 237 | "react/no-did-update-set-state": 1, 238 | "react/no-multi-comp": 0, 239 | "react/no-string-refs": 1, 240 | "react/no-unknown-property": 0, 241 | "react/prop-types": 0, 242 | "react/react-in-jsx-scope": 1, 243 | "react/self-closing-comp": 1, 244 | "react/wrap-multilines": 0, 245 | } 246 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | absolute-path@^0.0.0: 10 | version "0.0.0" 11 | resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" 12 | 13 | accepts@~1.2.12, accepts@~1.2.13: 14 | version "1.2.13" 15 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.2.13.tgz#e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea" 16 | dependencies: 17 | mime-types "~2.1.6" 18 | negotiator "0.5.3" 19 | 20 | accepts@~1.3.0: 21 | version "1.3.3" 22 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 23 | dependencies: 24 | mime-types "~2.1.11" 25 | negotiator "0.6.1" 26 | 27 | ajv@^4.9.1: 28 | version "4.11.5" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | ansi-escapes@^3.0.0: 35 | version "3.0.0" 36 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 37 | 38 | ansi-regex@^2.0.0: 39 | version "2.1.1" 40 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 41 | 42 | ansi-regex@^3.0.0: 43 | version "3.0.0" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | ansi-styles@^3.1.0: 51 | version "3.2.0" 52 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 53 | dependencies: 54 | color-convert "^1.9.0" 55 | 56 | ansi@^0.3.0, ansi@~0.3.1: 57 | version "0.3.1" 58 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 59 | 60 | anymatch@^1.3.0: 61 | version "1.3.2" 62 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 63 | dependencies: 64 | micromatch "^2.1.5" 65 | normalize-path "^2.0.0" 66 | 67 | aproba@^1.0.3: 68 | version "1.2.0" 69 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 70 | 71 | are-we-there-yet@~1.1.2: 72 | version "1.1.2" 73 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 74 | dependencies: 75 | delegates "^1.0.0" 76 | readable-stream "^2.0.0 || ^1.1.13" 77 | 78 | arr-diff@^2.0.0: 79 | version "2.0.0" 80 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 81 | dependencies: 82 | arr-flatten "^1.0.1" 83 | 84 | arr-flatten@^1.0.1: 85 | version "1.1.0" 86 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 87 | 88 | array-differ@^1.0.0: 89 | version "1.0.0" 90 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 91 | 92 | array-filter@~0.0.0: 93 | version "0.0.1" 94 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 95 | 96 | array-map@~0.0.0: 97 | version "0.0.0" 98 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 99 | 100 | array-reduce@~0.0.0: 101 | version "0.0.0" 102 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 103 | 104 | array-uniq@^1.0.2: 105 | version "1.0.3" 106 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 107 | 108 | array-unique@^0.2.1: 109 | version "0.2.1" 110 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 111 | 112 | art@^0.10.0: 113 | version "0.10.1" 114 | resolved "https://registry.yarnpkg.com/art/-/art-0.10.1.tgz#38541883e399225c5e193ff246e8f157cf7b2146" 115 | 116 | asap@~2.0.3: 117 | version "2.0.5" 118 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 119 | 120 | asn1@~0.2.3: 121 | version "0.2.3" 122 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 123 | 124 | assert-plus@1.0.0, assert-plus@^1.0.0: 125 | version "1.0.0" 126 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 127 | 128 | assert-plus@^0.2.0: 129 | version "0.2.0" 130 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 131 | 132 | async@^2.4.0: 133 | version "2.6.0" 134 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 135 | dependencies: 136 | lodash "^4.14.0" 137 | 138 | asynckit@^0.4.0: 139 | version "0.4.0" 140 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 141 | 142 | aws-sign2@~0.6.0: 143 | version "0.6.0" 144 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 145 | 146 | aws4@^1.2.1: 147 | version "1.6.0" 148 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 149 | 150 | babel-code-frame@^6.22.0: 151 | version "6.22.0" 152 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 153 | dependencies: 154 | chalk "^1.1.0" 155 | esutils "^2.0.2" 156 | js-tokens "^3.0.0" 157 | 158 | babel-code-frame@^6.26.0: 159 | version "6.26.0" 160 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 161 | dependencies: 162 | chalk "^1.1.3" 163 | esutils "^2.0.2" 164 | js-tokens "^3.0.2" 165 | 166 | babel-core@^6.24.0, babel-core@^6.7.2: 167 | version "6.24.0" 168 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 169 | dependencies: 170 | babel-code-frame "^6.22.0" 171 | babel-generator "^6.24.0" 172 | babel-helpers "^6.23.0" 173 | babel-messages "^6.23.0" 174 | babel-register "^6.24.0" 175 | babel-runtime "^6.22.0" 176 | babel-template "^6.23.0" 177 | babel-traverse "^6.23.1" 178 | babel-types "^6.23.0" 179 | babylon "^6.11.0" 180 | convert-source-map "^1.1.0" 181 | debug "^2.1.1" 182 | json5 "^0.5.0" 183 | lodash "^4.2.0" 184 | minimatch "^3.0.2" 185 | path-is-absolute "^1.0.0" 186 | private "^0.1.6" 187 | slash "^1.0.0" 188 | source-map "^0.5.0" 189 | 190 | babel-core@^6.24.1, babel-core@^6.26.0: 191 | version "6.26.0" 192 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 193 | dependencies: 194 | babel-code-frame "^6.26.0" 195 | babel-generator "^6.26.0" 196 | babel-helpers "^6.24.1" 197 | babel-messages "^6.23.0" 198 | babel-register "^6.26.0" 199 | babel-runtime "^6.26.0" 200 | babel-template "^6.26.0" 201 | babel-traverse "^6.26.0" 202 | babel-types "^6.26.0" 203 | babylon "^6.18.0" 204 | convert-source-map "^1.5.0" 205 | debug "^2.6.8" 206 | json5 "^0.5.1" 207 | lodash "^4.17.4" 208 | minimatch "^3.0.4" 209 | path-is-absolute "^1.0.1" 210 | private "^0.1.7" 211 | slash "^1.0.0" 212 | source-map "^0.5.6" 213 | 214 | babel-generator@^6.24.0: 215 | version "6.24.0" 216 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 217 | dependencies: 218 | babel-messages "^6.23.0" 219 | babel-runtime "^6.22.0" 220 | babel-types "^6.23.0" 221 | detect-indent "^4.0.0" 222 | jsesc "^1.3.0" 223 | lodash "^4.2.0" 224 | source-map "^0.5.0" 225 | trim-right "^1.0.1" 226 | 227 | babel-generator@^6.24.1, babel-generator@^6.26.0: 228 | version "6.26.0" 229 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 230 | dependencies: 231 | babel-messages "^6.23.0" 232 | babel-runtime "^6.26.0" 233 | babel-types "^6.26.0" 234 | detect-indent "^4.0.0" 235 | jsesc "^1.3.0" 236 | lodash "^4.17.4" 237 | source-map "^0.5.6" 238 | trim-right "^1.0.1" 239 | 240 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 241 | version "6.24.1" 242 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 243 | dependencies: 244 | babel-helper-explode-assignable-expression "^6.24.1" 245 | babel-runtime "^6.22.0" 246 | babel-types "^6.24.1" 247 | 248 | babel-helper-builder-react-jsx@^6.23.0: 249 | version "6.23.0" 250 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.23.0.tgz#d53fc8c996e0bc56d0de0fc4cc55a7138395ea4b" 251 | dependencies: 252 | babel-runtime "^6.22.0" 253 | babel-types "^6.23.0" 254 | esutils "^2.0.0" 255 | lodash "^4.2.0" 256 | 257 | babel-helper-call-delegate@^6.22.0: 258 | version "6.22.0" 259 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 260 | dependencies: 261 | babel-helper-hoist-variables "^6.22.0" 262 | babel-runtime "^6.22.0" 263 | babel-traverse "^6.22.0" 264 | babel-types "^6.22.0" 265 | 266 | babel-helper-define-map@^6.23.0: 267 | version "6.23.0" 268 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 269 | dependencies: 270 | babel-helper-function-name "^6.23.0" 271 | babel-runtime "^6.22.0" 272 | babel-types "^6.23.0" 273 | lodash "^4.2.0" 274 | 275 | babel-helper-explode-assignable-expression@^6.24.1: 276 | version "6.24.1" 277 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 278 | dependencies: 279 | babel-runtime "^6.22.0" 280 | babel-traverse "^6.24.1" 281 | babel-types "^6.24.1" 282 | 283 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 284 | version "6.23.0" 285 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 286 | dependencies: 287 | babel-helper-get-function-arity "^6.22.0" 288 | babel-runtime "^6.22.0" 289 | babel-template "^6.23.0" 290 | babel-traverse "^6.23.0" 291 | babel-types "^6.23.0" 292 | 293 | babel-helper-function-name@^6.24.1: 294 | version "6.24.1" 295 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 296 | dependencies: 297 | babel-helper-get-function-arity "^6.24.1" 298 | babel-runtime "^6.22.0" 299 | babel-template "^6.24.1" 300 | babel-traverse "^6.24.1" 301 | babel-types "^6.24.1" 302 | 303 | babel-helper-get-function-arity@^6.22.0: 304 | version "6.22.0" 305 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | babel-types "^6.22.0" 309 | 310 | babel-helper-get-function-arity@^6.24.1: 311 | version "6.24.1" 312 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 313 | dependencies: 314 | babel-runtime "^6.22.0" 315 | babel-types "^6.24.1" 316 | 317 | babel-helper-hoist-variables@^6.22.0: 318 | version "6.22.0" 319 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 320 | dependencies: 321 | babel-runtime "^6.22.0" 322 | babel-types "^6.22.0" 323 | 324 | babel-helper-optimise-call-expression@^6.23.0: 325 | version "6.23.0" 326 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 327 | dependencies: 328 | babel-runtime "^6.22.0" 329 | babel-types "^6.23.0" 330 | 331 | babel-helper-regex@^6.22.0: 332 | version "6.22.0" 333 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | babel-types "^6.22.0" 337 | lodash "^4.2.0" 338 | 339 | babel-helper-remap-async-to-generator@^6.16.0: 340 | version "6.24.1" 341 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 342 | dependencies: 343 | babel-helper-function-name "^6.24.1" 344 | babel-runtime "^6.22.0" 345 | babel-template "^6.24.1" 346 | babel-traverse "^6.24.1" 347 | babel-types "^6.24.1" 348 | 349 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 350 | version "6.23.0" 351 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 352 | dependencies: 353 | babel-helper-optimise-call-expression "^6.23.0" 354 | babel-messages "^6.23.0" 355 | babel-runtime "^6.22.0" 356 | babel-template "^6.23.0" 357 | babel-traverse "^6.23.0" 358 | babel-types "^6.23.0" 359 | 360 | babel-helpers@^6.23.0: 361 | version "6.23.0" 362 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 363 | dependencies: 364 | babel-runtime "^6.22.0" 365 | babel-template "^6.23.0" 366 | 367 | babel-helpers@^6.24.1: 368 | version "6.24.1" 369 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | babel-template "^6.24.1" 373 | 374 | babel-messages@^6.23.0: 375 | version "6.23.0" 376 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 377 | dependencies: 378 | babel-runtime "^6.22.0" 379 | 380 | babel-plugin-check-es2015-constants@^6.5.0, babel-plugin-check-es2015-constants@^6.8.0: 381 | version "6.22.0" 382 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 383 | dependencies: 384 | babel-runtime "^6.22.0" 385 | 386 | babel-plugin-external-helpers@^6.18.0: 387 | version "6.22.0" 388 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 389 | dependencies: 390 | babel-runtime "^6.22.0" 391 | 392 | babel-plugin-react-transform@^3.0.0: 393 | version "3.0.0" 394 | resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-3.0.0.tgz#402f25137b7bb66e9b54ead75557dfbc7ecaaa74" 395 | dependencies: 396 | lodash "^4.6.1" 397 | 398 | babel-plugin-syntax-async-functions@^6.5.0, babel-plugin-syntax-async-functions@^6.8.0: 399 | version "6.13.0" 400 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 401 | 402 | babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0: 403 | version "6.13.0" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 405 | 406 | babel-plugin-syntax-dynamic-import@^6.18.0: 407 | version "6.18.0" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 409 | 410 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 411 | version "6.13.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 413 | 414 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0, babel-plugin-syntax-flow@^6.8.0: 415 | version "6.18.0" 416 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 417 | 418 | babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: 419 | version "6.18.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 421 | 422 | babel-plugin-syntax-object-rest-spread@^6.8.0: 423 | version "6.13.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 425 | 426 | 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: 427 | version "6.22.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 429 | 430 | babel-plugin-transform-async-to-generator@6.16.0: 431 | version "6.16.0" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 433 | dependencies: 434 | babel-helper-remap-async-to-generator "^6.16.0" 435 | babel-plugin-syntax-async-functions "^6.8.0" 436 | babel-runtime "^6.0.0" 437 | 438 | babel-plugin-transform-class-properties@^6.18.0: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 441 | dependencies: 442 | babel-helper-function-name "^6.24.1" 443 | babel-plugin-syntax-class-properties "^6.8.0" 444 | babel-runtime "^6.22.0" 445 | babel-template "^6.24.1" 446 | 447 | babel-plugin-transform-class-properties@^6.5.0, babel-plugin-transform-class-properties@^6.8.0: 448 | version "6.23.0" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b" 450 | dependencies: 451 | babel-helper-function-name "^6.23.0" 452 | babel-plugin-syntax-class-properties "^6.8.0" 453 | babel-runtime "^6.22.0" 454 | babel-template "^6.23.0" 455 | 456 | babel-plugin-transform-es2015-arrow-functions@^6.5.0, babel-plugin-transform-es2015-arrow-functions@^6.8.0: 457 | version "6.22.0" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 459 | dependencies: 460 | babel-runtime "^6.22.0" 461 | 462 | babel-plugin-transform-es2015-block-scoped-functions@^6.8.0: 463 | version "6.22.0" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 465 | dependencies: 466 | babel-runtime "^6.22.0" 467 | 468 | babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es2015-block-scoping@^6.8.0: 469 | version "6.23.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | babel-template "^6.23.0" 474 | babel-traverse "^6.23.0" 475 | babel-types "^6.23.0" 476 | lodash "^4.2.0" 477 | 478 | babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-classes@^6.8.0: 479 | version "6.23.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 481 | dependencies: 482 | babel-helper-define-map "^6.23.0" 483 | babel-helper-function-name "^6.23.0" 484 | babel-helper-optimise-call-expression "^6.23.0" 485 | babel-helper-replace-supers "^6.23.0" 486 | babel-messages "^6.23.0" 487 | babel-runtime "^6.22.0" 488 | babel-template "^6.23.0" 489 | babel-traverse "^6.23.0" 490 | babel-types "^6.23.0" 491 | 492 | babel-plugin-transform-es2015-computed-properties@^6.5.0, babel-plugin-transform-es2015-computed-properties@^6.8.0: 493 | version "6.22.0" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 495 | dependencies: 496 | babel-runtime "^6.22.0" 497 | babel-template "^6.22.0" 498 | 499 | babel-plugin-transform-es2015-destructuring@6.x, babel-plugin-transform-es2015-destructuring@^6.5.0, babel-plugin-transform-es2015-destructuring@^6.8.0: 500 | version "6.23.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 502 | dependencies: 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-es2015-for-of@^6.5.0, babel-plugin-transform-es2015-for-of@^6.8.0: 506 | version "6.23.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | 511 | 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: 512 | version "6.22.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 514 | dependencies: 515 | babel-helper-function-name "^6.22.0" 516 | babel-runtime "^6.22.0" 517 | babel-types "^6.22.0" 518 | 519 | babel-plugin-transform-es2015-literals@^6.5.0, babel-plugin-transform-es2015-literals@^6.8.0: 520 | version "6.22.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 522 | dependencies: 523 | babel-runtime "^6.22.0" 524 | 525 | 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: 526 | version "6.24.0" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" 528 | dependencies: 529 | babel-plugin-transform-strict-mode "^6.22.0" 530 | babel-runtime "^6.22.0" 531 | babel-template "^6.23.0" 532 | babel-types "^6.23.0" 533 | 534 | babel-plugin-transform-es2015-object-super@^6.8.0: 535 | version "6.22.0" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 537 | dependencies: 538 | babel-helper-replace-supers "^6.22.0" 539 | babel-runtime "^6.22.0" 540 | 541 | babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-parameters@^6.5.0, babel-plugin-transform-es2015-parameters@^6.8.0: 542 | version "6.23.0" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 544 | dependencies: 545 | babel-helper-call-delegate "^6.22.0" 546 | babel-helper-get-function-arity "^6.22.0" 547 | babel-runtime "^6.22.0" 548 | babel-template "^6.23.0" 549 | babel-traverse "^6.23.0" 550 | babel-types "^6.23.0" 551 | 552 | 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: 553 | version "6.22.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 555 | dependencies: 556 | babel-runtime "^6.22.0" 557 | babel-types "^6.22.0" 558 | 559 | babel-plugin-transform-es2015-spread@6.x, babel-plugin-transform-es2015-spread@^6.5.0, babel-plugin-transform-es2015-spread@^6.8.0: 560 | version "6.22.0" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 562 | dependencies: 563 | babel-runtime "^6.22.0" 564 | 565 | babel-plugin-transform-es2015-sticky-regex@6.x: 566 | version "6.22.0" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 568 | dependencies: 569 | babel-helper-regex "^6.22.0" 570 | babel-runtime "^6.22.0" 571 | babel-types "^6.22.0" 572 | 573 | babel-plugin-transform-es2015-template-literals@^6.5.0, babel-plugin-transform-es2015-template-literals@^6.8.0: 574 | version "6.22.0" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 576 | dependencies: 577 | babel-runtime "^6.22.0" 578 | 579 | babel-plugin-transform-es2015-unicode-regex@6.x: 580 | version "6.22.0" 581 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 582 | dependencies: 583 | babel-helper-regex "^6.22.0" 584 | babel-runtime "^6.22.0" 585 | regexpu-core "^2.0.0" 586 | 587 | babel-plugin-transform-es3-member-expression-literals@^6.8.0: 588 | version "6.22.0" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz#733d3444f3ecc41bef8ed1a6a4e09657b8969ebb" 590 | dependencies: 591 | babel-runtime "^6.22.0" 592 | 593 | babel-plugin-transform-es3-property-literals@^6.8.0: 594 | version "6.22.0" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz#b2078d5842e22abf40f73e8cde9cd3711abd5758" 596 | dependencies: 597 | babel-runtime "^6.22.0" 598 | 599 | babel-plugin-transform-exponentiation-operator@^6.5.0: 600 | version "6.24.1" 601 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 602 | dependencies: 603 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 604 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 605 | babel-runtime "^6.22.0" 606 | 607 | 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: 608 | version "6.22.0" 609 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 610 | dependencies: 611 | babel-plugin-syntax-flow "^6.18.0" 612 | babel-runtime "^6.22.0" 613 | 614 | babel-plugin-transform-object-assign@^6.5.0: 615 | version "6.22.0" 616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" 617 | dependencies: 618 | babel-runtime "^6.22.0" 619 | 620 | 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: 621 | version "6.23.0" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 623 | dependencies: 624 | babel-plugin-syntax-object-rest-spread "^6.8.0" 625 | babel-runtime "^6.22.0" 626 | 627 | babel-plugin-transform-react-display-name@^6.5.0, babel-plugin-transform-react-display-name@^6.8.0: 628 | version "6.23.0" 629 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 630 | dependencies: 631 | babel-runtime "^6.22.0" 632 | 633 | babel-plugin-transform-react-jsx-source@^6.5.0: 634 | version "6.22.0" 635 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 636 | dependencies: 637 | babel-plugin-syntax-jsx "^6.8.0" 638 | babel-runtime "^6.22.0" 639 | 640 | babel-plugin-transform-react-jsx@^6.5.0, babel-plugin-transform-react-jsx@^6.8.0: 641 | version "6.23.0" 642 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.23.0.tgz#23e892f7f2e759678eb5e4446a8f8e94e81b3470" 643 | dependencies: 644 | babel-helper-builder-react-jsx "^6.23.0" 645 | babel-plugin-syntax-jsx "^6.8.0" 646 | babel-runtime "^6.22.0" 647 | 648 | babel-plugin-transform-regenerator@^6.5.0: 649 | version "6.22.0" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 651 | dependencies: 652 | regenerator-transform "0.9.8" 653 | 654 | babel-plugin-transform-strict-mode@^6.22.0: 655 | version "6.22.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 657 | dependencies: 658 | babel-runtime "^6.22.0" 659 | babel-types "^6.22.0" 660 | 661 | babel-preset-es2015-node@^6.1.1: 662 | version "6.1.1" 663 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz#60b23157024b0cfebf3a63554cb05ee035b4e55f" 664 | dependencies: 665 | babel-plugin-transform-es2015-destructuring "6.x" 666 | babel-plugin-transform-es2015-function-name "6.x" 667 | babel-plugin-transform-es2015-modules-commonjs "6.x" 668 | babel-plugin-transform-es2015-parameters "6.x" 669 | babel-plugin-transform-es2015-shorthand-properties "6.x" 670 | babel-plugin-transform-es2015-spread "6.x" 671 | babel-plugin-transform-es2015-sticky-regex "6.x" 672 | babel-plugin-transform-es2015-unicode-regex "6.x" 673 | semver "5.x" 674 | 675 | babel-preset-fbjs@^2.1.2, babel-preset-fbjs@^2.1.4: 676 | version "2.1.4" 677 | resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-2.1.4.tgz#22f358e6654073acf61e47a052a777d7bccf03af" 678 | dependencies: 679 | babel-plugin-check-es2015-constants "^6.8.0" 680 | babel-plugin-syntax-class-properties "^6.8.0" 681 | babel-plugin-syntax-flow "^6.8.0" 682 | babel-plugin-syntax-jsx "^6.8.0" 683 | babel-plugin-syntax-object-rest-spread "^6.8.0" 684 | babel-plugin-syntax-trailing-function-commas "^6.8.0" 685 | babel-plugin-transform-class-properties "^6.8.0" 686 | babel-plugin-transform-es2015-arrow-functions "^6.8.0" 687 | babel-plugin-transform-es2015-block-scoped-functions "^6.8.0" 688 | babel-plugin-transform-es2015-block-scoping "^6.8.0" 689 | babel-plugin-transform-es2015-classes "^6.8.0" 690 | babel-plugin-transform-es2015-computed-properties "^6.8.0" 691 | babel-plugin-transform-es2015-destructuring "^6.8.0" 692 | babel-plugin-transform-es2015-for-of "^6.8.0" 693 | babel-plugin-transform-es2015-function-name "^6.8.0" 694 | babel-plugin-transform-es2015-literals "^6.8.0" 695 | babel-plugin-transform-es2015-modules-commonjs "^6.8.0" 696 | babel-plugin-transform-es2015-object-super "^6.8.0" 697 | babel-plugin-transform-es2015-parameters "^6.8.0" 698 | babel-plugin-transform-es2015-shorthand-properties "^6.8.0" 699 | babel-plugin-transform-es2015-spread "^6.8.0" 700 | babel-plugin-transform-es2015-template-literals "^6.8.0" 701 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 702 | babel-plugin-transform-es3-property-literals "^6.8.0" 703 | babel-plugin-transform-flow-strip-types "^6.8.0" 704 | babel-plugin-transform-object-rest-spread "^6.8.0" 705 | babel-plugin-transform-react-display-name "^6.8.0" 706 | babel-plugin-transform-react-jsx "^6.8.0" 707 | 708 | babel-preset-react-native@^4.0.0: 709 | version "4.0.0" 710 | resolved "https://registry.yarnpkg.com/babel-preset-react-native/-/babel-preset-react-native-4.0.0.tgz#3df80dd33a453888cdd33bdb87224d17a5d73959" 711 | dependencies: 712 | babel-plugin-check-es2015-constants "^6.5.0" 713 | babel-plugin-react-transform "^3.0.0" 714 | babel-plugin-syntax-async-functions "^6.5.0" 715 | babel-plugin-syntax-class-properties "^6.5.0" 716 | babel-plugin-syntax-dynamic-import "^6.18.0" 717 | babel-plugin-syntax-flow "^6.5.0" 718 | babel-plugin-syntax-jsx "^6.5.0" 719 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 720 | babel-plugin-transform-class-properties "^6.5.0" 721 | babel-plugin-transform-es2015-arrow-functions "^6.5.0" 722 | babel-plugin-transform-es2015-block-scoping "^6.5.0" 723 | babel-plugin-transform-es2015-classes "^6.5.0" 724 | babel-plugin-transform-es2015-computed-properties "^6.5.0" 725 | babel-plugin-transform-es2015-destructuring "^6.5.0" 726 | babel-plugin-transform-es2015-for-of "^6.5.0" 727 | babel-plugin-transform-es2015-function-name "^6.5.0" 728 | babel-plugin-transform-es2015-literals "^6.5.0" 729 | babel-plugin-transform-es2015-modules-commonjs "^6.5.0" 730 | babel-plugin-transform-es2015-parameters "^6.5.0" 731 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 732 | babel-plugin-transform-es2015-spread "^6.5.0" 733 | babel-plugin-transform-es2015-template-literals "^6.5.0" 734 | babel-plugin-transform-flow-strip-types "^6.5.0" 735 | babel-plugin-transform-object-assign "^6.5.0" 736 | babel-plugin-transform-object-rest-spread "^6.5.0" 737 | babel-plugin-transform-react-display-name "^6.5.0" 738 | babel-plugin-transform-react-jsx "^6.5.0" 739 | babel-plugin-transform-react-jsx-source "^6.5.0" 740 | babel-plugin-transform-regenerator "^6.5.0" 741 | babel-template "^6.24.1" 742 | react-transform-hmr "^1.0.4" 743 | 744 | babel-register@^6.24.0: 745 | version "6.24.0" 746 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 747 | dependencies: 748 | babel-core "^6.24.0" 749 | babel-runtime "^6.22.0" 750 | core-js "^2.4.0" 751 | home-or-tmp "^2.0.0" 752 | lodash "^4.2.0" 753 | mkdirp "^0.5.1" 754 | source-map-support "^0.4.2" 755 | 756 | babel-register@^6.24.1, babel-register@^6.26.0: 757 | version "6.26.0" 758 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 759 | dependencies: 760 | babel-core "^6.26.0" 761 | babel-runtime "^6.26.0" 762 | core-js "^2.5.0" 763 | home-or-tmp "^2.0.0" 764 | lodash "^4.17.4" 765 | mkdirp "^0.5.1" 766 | source-map-support "^0.4.15" 767 | 768 | babel-runtime@^6.0.0, babel-runtime@^6.23.0, babel-runtime@^6.26.0: 769 | version "6.26.0" 770 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 771 | dependencies: 772 | core-js "^2.4.0" 773 | regenerator-runtime "^0.11.0" 774 | 775 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 776 | version "6.23.0" 777 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 778 | dependencies: 779 | core-js "^2.4.0" 780 | regenerator-runtime "^0.10.0" 781 | 782 | babel-template@^6.22.0, babel-template@^6.23.0: 783 | version "6.23.0" 784 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 785 | dependencies: 786 | babel-runtime "^6.22.0" 787 | babel-traverse "^6.23.0" 788 | babel-types "^6.23.0" 789 | babylon "^6.11.0" 790 | lodash "^4.2.0" 791 | 792 | babel-template@^6.24.1, babel-template@^6.26.0: 793 | version "6.26.0" 794 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 795 | dependencies: 796 | babel-runtime "^6.26.0" 797 | babel-traverse "^6.26.0" 798 | babel-types "^6.26.0" 799 | babylon "^6.18.0" 800 | lodash "^4.17.4" 801 | 802 | babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 803 | version "6.23.1" 804 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 805 | dependencies: 806 | babel-code-frame "^6.22.0" 807 | babel-messages "^6.23.0" 808 | babel-runtime "^6.22.0" 809 | babel-types "^6.23.0" 810 | babylon "^6.15.0" 811 | debug "^2.2.0" 812 | globals "^9.0.0" 813 | invariant "^2.2.0" 814 | lodash "^4.2.0" 815 | 816 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 817 | version "6.26.0" 818 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 819 | dependencies: 820 | babel-code-frame "^6.26.0" 821 | babel-messages "^6.23.0" 822 | babel-runtime "^6.26.0" 823 | babel-types "^6.26.0" 824 | babylon "^6.18.0" 825 | debug "^2.6.8" 826 | globals "^9.18.0" 827 | invariant "^2.2.2" 828 | lodash "^4.17.4" 829 | 830 | babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 831 | version "6.23.0" 832 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 833 | dependencies: 834 | babel-runtime "^6.22.0" 835 | esutils "^2.0.2" 836 | lodash "^4.2.0" 837 | to-fast-properties "^1.0.1" 838 | 839 | babel-types@^6.24.1, babel-types@^6.26.0: 840 | version "6.26.0" 841 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 842 | dependencies: 843 | babel-runtime "^6.26.0" 844 | esutils "^2.0.2" 845 | lodash "^4.17.4" 846 | to-fast-properties "^1.0.3" 847 | 848 | babylon@^6.11.0, babylon@^6.15.0: 849 | version "6.16.1" 850 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 851 | 852 | babylon@^6.18.0: 853 | version "6.18.0" 854 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 855 | 856 | balanced-match@^0.4.1: 857 | version "0.4.2" 858 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 859 | 860 | balanced-match@^1.0.0: 861 | version "1.0.0" 862 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 863 | 864 | base64-js@0.0.8: 865 | version "0.0.8" 866 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" 867 | 868 | base64-js@1.1.2: 869 | version "1.1.2" 870 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.1.2.tgz#d6400cac1c4c660976d90d07a04351d89395f5e8" 871 | 872 | base64-js@^1.1.2: 873 | version "1.2.0" 874 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 875 | 876 | base64-url@1.2.1: 877 | version "1.2.1" 878 | resolved "https://registry.yarnpkg.com/base64-url/-/base64-url-1.2.1.tgz#199fd661702a0e7b7dcae6e0698bb089c52f6d78" 879 | 880 | basic-auth-connect@1.0.0: 881 | version "1.0.0" 882 | resolved "https://registry.yarnpkg.com/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz#fdb0b43962ca7b40456a7c2bb48fe173da2d2122" 883 | 884 | basic-auth@~1.0.3: 885 | version "1.0.4" 886 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-1.0.4.tgz#030935b01de7c9b94a824b29f3fccb750d3a5290" 887 | 888 | batch@0.5.3: 889 | version "0.5.3" 890 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 891 | 892 | bcrypt-pbkdf@^1.0.0: 893 | version "1.0.1" 894 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 895 | dependencies: 896 | tweetnacl "^0.14.3" 897 | 898 | beeper@^1.0.0: 899 | version "1.1.1" 900 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 901 | 902 | big-integer@^1.6.7: 903 | version "1.6.26" 904 | resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.26.tgz#3af1672fa62daf2d5ecafacf6e5aa0d25e02c1c8" 905 | 906 | block-stream@*: 907 | version "0.0.9" 908 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 909 | dependencies: 910 | inherits "~2.0.0" 911 | 912 | body-parser@~1.13.3: 913 | version "1.13.3" 914 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.13.3.tgz#c08cf330c3358e151016a05746f13f029c97fa97" 915 | dependencies: 916 | bytes "2.1.0" 917 | content-type "~1.0.1" 918 | debug "~2.2.0" 919 | depd "~1.0.1" 920 | http-errors "~1.3.1" 921 | iconv-lite "0.4.11" 922 | on-finished "~2.3.0" 923 | qs "4.0.0" 924 | raw-body "~2.1.2" 925 | type-is "~1.6.6" 926 | 927 | boom@2.x.x: 928 | version "2.10.1" 929 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 930 | dependencies: 931 | hoek "2.x.x" 932 | 933 | bplist-creator@0.0.7: 934 | version "0.0.7" 935 | resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45" 936 | dependencies: 937 | stream-buffers "~2.2.0" 938 | 939 | bplist-parser@0.1.1: 940 | version "0.1.1" 941 | resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.1.1.tgz#d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6" 942 | dependencies: 943 | big-integer "^1.6.7" 944 | 945 | brace-expansion@^1.0.0: 946 | version "1.1.6" 947 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 948 | dependencies: 949 | balanced-match "^0.4.1" 950 | concat-map "0.0.1" 951 | 952 | brace-expansion@^1.1.7: 953 | version "1.1.8" 954 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 955 | dependencies: 956 | balanced-match "^1.0.0" 957 | concat-map "0.0.1" 958 | 959 | braces@^1.8.2: 960 | version "1.8.5" 961 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 962 | dependencies: 963 | expand-range "^1.8.1" 964 | preserve "^0.2.0" 965 | repeat-element "^1.1.2" 966 | 967 | bser@^2.0.0: 968 | version "2.0.0" 969 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 970 | dependencies: 971 | node-int64 "^0.4.0" 972 | 973 | buffer-shims@^1.0.0: 974 | version "1.0.0" 975 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 976 | 977 | builtin-modules@^1.0.0: 978 | version "1.1.1" 979 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 980 | 981 | bytes@2.1.0: 982 | version "2.1.0" 983 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.1.0.tgz#ac93c410e2ffc9cc7cf4b464b38289067f5e47b4" 984 | 985 | bytes@2.4.0: 986 | version "2.4.0" 987 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 988 | 989 | camelcase@^4.1.0: 990 | version "4.1.0" 991 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 992 | 993 | caseless@~0.12.0: 994 | version "0.12.0" 995 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 996 | 997 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 998 | version "1.1.3" 999 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1000 | dependencies: 1001 | ansi-styles "^2.2.1" 1002 | escape-string-regexp "^1.0.2" 1003 | has-ansi "^2.0.0" 1004 | strip-ansi "^3.0.0" 1005 | supports-color "^2.0.0" 1006 | 1007 | chalk@^2.0.0: 1008 | version "2.3.0" 1009 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 1010 | dependencies: 1011 | ansi-styles "^3.1.0" 1012 | escape-string-regexp "^1.0.5" 1013 | supports-color "^4.0.0" 1014 | 1015 | chardet@^0.4.0: 1016 | version "0.4.2" 1017 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 1018 | 1019 | cli-cursor@^2.1.0: 1020 | version "2.1.0" 1021 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1022 | dependencies: 1023 | restore-cursor "^2.0.0" 1024 | 1025 | cli-width@^2.0.0: 1026 | version "2.1.0" 1027 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1028 | 1029 | cliui@^3.2.0: 1030 | version "3.2.0" 1031 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1032 | dependencies: 1033 | string-width "^1.0.1" 1034 | strip-ansi "^3.0.1" 1035 | wrap-ansi "^2.0.0" 1036 | 1037 | clone-stats@^0.0.1: 1038 | version "0.0.1" 1039 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 1040 | 1041 | clone@^1.0.0: 1042 | version "1.0.2" 1043 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 1044 | 1045 | co@^4.6.0: 1046 | version "4.6.0" 1047 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1048 | 1049 | code-point-at@^1.0.0: 1050 | version "1.1.0" 1051 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1052 | 1053 | color-convert@^1.9.0: 1054 | version "1.9.1" 1055 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 1056 | dependencies: 1057 | color-name "^1.1.1" 1058 | 1059 | color-name@^1.1.1: 1060 | version "1.1.3" 1061 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1062 | 1063 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1064 | version "1.0.5" 1065 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1066 | dependencies: 1067 | delayed-stream "~1.0.0" 1068 | 1069 | commander@^2.9.0: 1070 | version "2.9.0" 1071 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1072 | dependencies: 1073 | graceful-readlink ">= 1.0.0" 1074 | 1075 | commander@~2.12.1: 1076 | version "2.12.2" 1077 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 1078 | 1079 | compressible@~2.0.5: 1080 | version "2.0.10" 1081 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" 1082 | dependencies: 1083 | mime-db ">= 1.27.0 < 2" 1084 | 1085 | compression@~1.5.2: 1086 | version "1.5.2" 1087 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.5.2.tgz#b03b8d86e6f8ad29683cba8df91ddc6ffc77b395" 1088 | dependencies: 1089 | accepts "~1.2.12" 1090 | bytes "2.1.0" 1091 | compressible "~2.0.5" 1092 | debug "~2.2.0" 1093 | on-headers "~1.0.0" 1094 | vary "~1.0.1" 1095 | 1096 | concat-map@0.0.1: 1097 | version "0.0.1" 1098 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1099 | 1100 | concat-stream@^1.6.0: 1101 | version "1.6.0" 1102 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1103 | dependencies: 1104 | inherits "^2.0.3" 1105 | readable-stream "^2.2.2" 1106 | typedarray "^0.0.6" 1107 | 1108 | connect-timeout@~1.6.2: 1109 | version "1.6.2" 1110 | resolved "https://registry.yarnpkg.com/connect-timeout/-/connect-timeout-1.6.2.tgz#de9a5ec61e33a12b6edaab7b5f062e98c599b88e" 1111 | dependencies: 1112 | debug "~2.2.0" 1113 | http-errors "~1.3.1" 1114 | ms "0.7.1" 1115 | on-headers "~1.0.0" 1116 | 1117 | connect@^2.8.3: 1118 | version "2.30.2" 1119 | resolved "https://registry.yarnpkg.com/connect/-/connect-2.30.2.tgz#8da9bcbe8a054d3d318d74dfec903b5c39a1b609" 1120 | dependencies: 1121 | basic-auth-connect "1.0.0" 1122 | body-parser "~1.13.3" 1123 | bytes "2.1.0" 1124 | compression "~1.5.2" 1125 | connect-timeout "~1.6.2" 1126 | content-type "~1.0.1" 1127 | cookie "0.1.3" 1128 | cookie-parser "~1.3.5" 1129 | cookie-signature "1.0.6" 1130 | csurf "~1.8.3" 1131 | debug "~2.2.0" 1132 | depd "~1.0.1" 1133 | errorhandler "~1.4.2" 1134 | express-session "~1.11.3" 1135 | finalhandler "0.4.0" 1136 | fresh "0.3.0" 1137 | http-errors "~1.3.1" 1138 | method-override "~2.3.5" 1139 | morgan "~1.6.1" 1140 | multiparty "3.3.2" 1141 | on-headers "~1.0.0" 1142 | parseurl "~1.3.0" 1143 | pause "0.1.0" 1144 | qs "4.0.0" 1145 | response-time "~2.3.1" 1146 | serve-favicon "~2.3.0" 1147 | serve-index "~1.7.2" 1148 | serve-static "~1.10.0" 1149 | type-is "~1.6.6" 1150 | utils-merge "1.0.0" 1151 | vhost "~3.0.1" 1152 | 1153 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1154 | version "1.1.0" 1155 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1156 | 1157 | content-type@~1.0.1: 1158 | version "1.0.2" 1159 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1160 | 1161 | convert-source-map@^1.1.0: 1162 | version "1.5.0" 1163 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1164 | 1165 | convert-source-map@^1.5.0: 1166 | version "1.5.1" 1167 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1168 | 1169 | cookie-parser@~1.3.5: 1170 | version "1.3.5" 1171 | resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.3.5.tgz#9d755570fb5d17890771227a02314d9be7cf8356" 1172 | dependencies: 1173 | cookie "0.1.3" 1174 | cookie-signature "1.0.6" 1175 | 1176 | cookie-signature@1.0.6: 1177 | version "1.0.6" 1178 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1179 | 1180 | cookie@0.1.3: 1181 | version "0.1.3" 1182 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.3.tgz#e734a5c1417fce472d5aef82c381cabb64d1a435" 1183 | 1184 | copy-paste@^1.3.0: 1185 | version "1.3.0" 1186 | resolved "https://registry.yarnpkg.com/copy-paste/-/copy-paste-1.3.0.tgz#a7e6c4a1c28fdedf2b081e72b97df2ef95f471ed" 1187 | dependencies: 1188 | iconv-lite "^0.4.8" 1189 | optionalDependencies: 1190 | sync-exec "~0.6.x" 1191 | 1192 | core-js@^1.0.0: 1193 | version "1.2.7" 1194 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1195 | 1196 | core-js@^2.2.2, core-js@^2.4.0: 1197 | version "2.4.1" 1198 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1199 | 1200 | core-js@^2.4.1, core-js@^2.5.0: 1201 | version "2.5.3" 1202 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1203 | 1204 | core-util-is@~1.0.0: 1205 | version "1.0.2" 1206 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1207 | 1208 | crc@3.3.0: 1209 | version "3.3.0" 1210 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.3.0.tgz#fa622e1bc388bf257309082d6b65200ce67090ba" 1211 | 1212 | create-react-class@^15.5.2: 1213 | version "15.6.2" 1214 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.2.tgz#cf1ed15f12aad7f14ef5f2dfe05e6c42f91ef02a" 1215 | dependencies: 1216 | fbjs "^0.8.9" 1217 | loose-envify "^1.3.1" 1218 | object-assign "^4.1.1" 1219 | 1220 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1221 | version "5.1.0" 1222 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1223 | dependencies: 1224 | lru-cache "^4.0.1" 1225 | shebang-command "^1.2.0" 1226 | which "^1.2.9" 1227 | 1228 | cryptiles@2.x.x: 1229 | version "2.0.5" 1230 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1231 | dependencies: 1232 | boom "2.x.x" 1233 | 1234 | csrf@~3.0.0: 1235 | version "3.0.6" 1236 | resolved "https://registry.yarnpkg.com/csrf/-/csrf-3.0.6.tgz#b61120ddceeafc91e76ed5313bb5c0b2667b710a" 1237 | dependencies: 1238 | rndm "1.2.0" 1239 | tsscmp "1.0.5" 1240 | uid-safe "2.1.4" 1241 | 1242 | csurf@~1.8.3: 1243 | version "1.8.3" 1244 | resolved "https://registry.yarnpkg.com/csurf/-/csurf-1.8.3.tgz#23f2a13bf1d8fce1d0c996588394442cba86a56a" 1245 | dependencies: 1246 | cookie "0.1.3" 1247 | cookie-signature "1.0.6" 1248 | csrf "~3.0.0" 1249 | http-errors "~1.3.1" 1250 | 1251 | dashdash@^1.12.0: 1252 | version "1.14.1" 1253 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1254 | dependencies: 1255 | assert-plus "^1.0.0" 1256 | 1257 | dateformat@^2.0.0: 1258 | version "2.0.0" 1259 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 1260 | 1261 | debug@2.6.3, debug@^2.1.1, debug@^2.2.0: 1262 | version "2.6.3" 1263 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 1264 | dependencies: 1265 | ms "0.7.2" 1266 | 1267 | debug@^2.6.8: 1268 | version "2.6.9" 1269 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1270 | dependencies: 1271 | ms "2.0.0" 1272 | 1273 | debug@~2.2.0: 1274 | version "2.2.0" 1275 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1276 | dependencies: 1277 | ms "0.7.1" 1278 | 1279 | decamelize@^1.1.1: 1280 | version "1.2.0" 1281 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1282 | 1283 | deep-extend@~0.4.0: 1284 | version "0.4.2" 1285 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1286 | 1287 | delayed-stream@~1.0.0: 1288 | version "1.0.0" 1289 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1290 | 1291 | delegates@^1.0.0: 1292 | version "1.0.0" 1293 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1294 | 1295 | denodeify@^1.2.1: 1296 | version "1.2.1" 1297 | resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" 1298 | 1299 | depd@~1.0.1: 1300 | version "1.0.1" 1301 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.0.1.tgz#80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa" 1302 | 1303 | depd@~1.1.0: 1304 | version "1.1.0" 1305 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1306 | 1307 | destroy@~1.0.4: 1308 | version "1.0.4" 1309 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1310 | 1311 | detect-indent@^4.0.0: 1312 | version "4.0.0" 1313 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1314 | dependencies: 1315 | repeating "^2.0.0" 1316 | 1317 | detect-libc@^1.0.2: 1318 | version "1.0.3" 1319 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1320 | 1321 | dom-walk@^0.1.0: 1322 | version "0.1.1" 1323 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 1324 | 1325 | duplexer2@0.0.2: 1326 | version "0.0.2" 1327 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 1328 | dependencies: 1329 | readable-stream "~1.1.9" 1330 | 1331 | ecc-jsbn@~0.1.1: 1332 | version "0.1.1" 1333 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1334 | dependencies: 1335 | jsbn "~0.1.0" 1336 | 1337 | ee-first@1.1.1: 1338 | version "1.1.1" 1339 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1340 | 1341 | encoding@^0.1.11: 1342 | version "0.1.12" 1343 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1344 | dependencies: 1345 | iconv-lite "~0.4.13" 1346 | 1347 | envinfo@^3.0.0: 1348 | version "3.10.0" 1349 | resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-3.10.0.tgz#24b52a5c19af379dc32465d1909e37344dc41c20" 1350 | dependencies: 1351 | copy-paste "^1.3.0" 1352 | glob "^7.1.2" 1353 | minimist "^1.2.0" 1354 | os-name "^2.0.1" 1355 | which "^1.2.14" 1356 | 1357 | "errno@>=0.1.1 <0.2.0-0": 1358 | version "0.1.4" 1359 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1360 | dependencies: 1361 | prr "~0.0.0" 1362 | 1363 | error-ex@^1.2.0: 1364 | version "1.3.1" 1365 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1366 | dependencies: 1367 | is-arrayish "^0.2.1" 1368 | 1369 | errorhandler@~1.4.2: 1370 | version "1.4.3" 1371 | resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.4.3.tgz#b7b70ed8f359e9db88092f2d20c0f831420ad83f" 1372 | dependencies: 1373 | accepts "~1.3.0" 1374 | escape-html "~1.0.3" 1375 | 1376 | escape-html@1.0.2: 1377 | version "1.0.2" 1378 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.2.tgz#d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c" 1379 | 1380 | escape-html@~1.0.3: 1381 | version "1.0.3" 1382 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1383 | 1384 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1385 | version "1.0.5" 1386 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1387 | 1388 | esutils@^2.0.0, esutils@^2.0.2: 1389 | version "2.0.2" 1390 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1391 | 1392 | etag@~1.7.0: 1393 | version "1.7.0" 1394 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1395 | 1396 | event-target-shim@^1.0.5: 1397 | version "1.1.1" 1398 | resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-1.1.1.tgz#a86e5ee6bdaa16054475da797ccddf0c55698491" 1399 | 1400 | exec-sh@^0.2.0: 1401 | version "0.2.0" 1402 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1403 | dependencies: 1404 | merge "^1.1.3" 1405 | 1406 | execa@^0.7.0: 1407 | version "0.7.0" 1408 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1409 | dependencies: 1410 | cross-spawn "^5.0.1" 1411 | get-stream "^3.0.0" 1412 | is-stream "^1.1.0" 1413 | npm-run-path "^2.0.0" 1414 | p-finally "^1.0.0" 1415 | signal-exit "^3.0.0" 1416 | strip-eof "^1.0.0" 1417 | 1418 | expand-brackets@^0.1.4: 1419 | version "0.1.5" 1420 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1421 | dependencies: 1422 | is-posix-bracket "^0.1.0" 1423 | 1424 | expand-range@^1.8.1: 1425 | version "1.8.2" 1426 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1427 | dependencies: 1428 | fill-range "^2.1.0" 1429 | 1430 | express-session@~1.11.3: 1431 | version "1.11.3" 1432 | resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.11.3.tgz#5cc98f3f5ff84ed835f91cbf0aabd0c7107400af" 1433 | dependencies: 1434 | cookie "0.1.3" 1435 | cookie-signature "1.0.6" 1436 | crc "3.3.0" 1437 | debug "~2.2.0" 1438 | depd "~1.0.1" 1439 | on-headers "~1.0.0" 1440 | parseurl "~1.3.0" 1441 | uid-safe "~2.0.0" 1442 | utils-merge "1.0.0" 1443 | 1444 | extend@~3.0.0: 1445 | version "3.0.0" 1446 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1447 | 1448 | external-editor@^2.0.4: 1449 | version "2.1.0" 1450 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1451 | dependencies: 1452 | chardet "^0.4.0" 1453 | iconv-lite "^0.4.17" 1454 | tmp "^0.0.33" 1455 | 1456 | extglob@^0.3.1: 1457 | version "0.3.2" 1458 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1459 | dependencies: 1460 | is-extglob "^1.0.0" 1461 | 1462 | extsprintf@1.0.2: 1463 | version "1.0.2" 1464 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1465 | 1466 | fancy-log@^1.1.0: 1467 | version "1.3.0" 1468 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 1469 | dependencies: 1470 | chalk "^1.1.1" 1471 | time-stamp "^1.0.0" 1472 | 1473 | fb-watchman@^2.0.0: 1474 | version "2.0.0" 1475 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1476 | dependencies: 1477 | bser "^2.0.0" 1478 | 1479 | fbjs-scripts@^0.8.1: 1480 | version "0.8.1" 1481 | resolved "https://registry.yarnpkg.com/fbjs-scripts/-/fbjs-scripts-0.8.1.tgz#c1c6efbecb7f008478468976b783880c2f669765" 1482 | dependencies: 1483 | babel-core "^6.7.2" 1484 | babel-preset-fbjs "^2.1.2" 1485 | core-js "^2.4.1" 1486 | cross-spawn "^5.1.0" 1487 | gulp-util "^3.0.4" 1488 | object-assign "^4.0.1" 1489 | semver "^5.1.0" 1490 | through2 "^2.0.0" 1491 | 1492 | fbjs@^0.8.14, fbjs@^0.8.16, fbjs@^0.8.9: 1493 | version "0.8.16" 1494 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1495 | dependencies: 1496 | core-js "^1.0.0" 1497 | isomorphic-fetch "^2.1.1" 1498 | loose-envify "^1.0.0" 1499 | object-assign "^4.1.0" 1500 | promise "^7.1.1" 1501 | setimmediate "^1.0.5" 1502 | ua-parser-js "^0.7.9" 1503 | 1504 | figures@^2.0.0: 1505 | version "2.0.0" 1506 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1507 | dependencies: 1508 | escape-string-regexp "^1.0.5" 1509 | 1510 | filename-regex@^2.0.0: 1511 | version "2.0.1" 1512 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1513 | 1514 | fill-range@^2.1.0: 1515 | version "2.2.3" 1516 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1517 | dependencies: 1518 | is-number "^2.1.0" 1519 | isobject "^2.0.0" 1520 | randomatic "^1.1.3" 1521 | repeat-element "^1.1.2" 1522 | repeat-string "^1.5.2" 1523 | 1524 | finalhandler@0.4.0: 1525 | version "0.4.0" 1526 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.4.0.tgz#965a52d9e8d05d2b857548541fb89b53a2497d9b" 1527 | dependencies: 1528 | debug "~2.2.0" 1529 | escape-html "1.0.2" 1530 | on-finished "~2.3.0" 1531 | unpipe "~1.0.0" 1532 | 1533 | find-up@^2.0.0: 1534 | version "2.1.0" 1535 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1536 | dependencies: 1537 | locate-path "^2.0.0" 1538 | 1539 | for-in@^1.0.1: 1540 | version "1.0.2" 1541 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1542 | 1543 | for-own@^0.1.4: 1544 | version "0.1.5" 1545 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1546 | dependencies: 1547 | for-in "^1.0.1" 1548 | 1549 | forever-agent@~0.6.1: 1550 | version "0.6.1" 1551 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1552 | 1553 | form-data@~2.1.1: 1554 | version "2.1.2" 1555 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1556 | dependencies: 1557 | asynckit "^0.4.0" 1558 | combined-stream "^1.0.5" 1559 | mime-types "^2.1.12" 1560 | 1561 | fresh@0.3.0: 1562 | version "0.3.0" 1563 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1564 | 1565 | fs-extra@^1.0.0: 1566 | version "1.0.0" 1567 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1568 | dependencies: 1569 | graceful-fs "^4.1.2" 1570 | jsonfile "^2.1.0" 1571 | klaw "^1.0.0" 1572 | 1573 | fs.realpath@^1.0.0: 1574 | version "1.0.0" 1575 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1576 | 1577 | fsevents@^1.1.1: 1578 | version "1.1.3" 1579 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1580 | dependencies: 1581 | nan "^2.3.0" 1582 | node-pre-gyp "^0.6.39" 1583 | 1584 | fstream-ignore@^1.0.5: 1585 | version "1.0.5" 1586 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1587 | dependencies: 1588 | fstream "^1.0.0" 1589 | inherits "2" 1590 | minimatch "^3.0.0" 1591 | 1592 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1593 | version "1.0.11" 1594 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1595 | dependencies: 1596 | graceful-fs "^4.1.2" 1597 | inherits "~2.0.0" 1598 | mkdirp ">=0.5 0" 1599 | rimraf "2" 1600 | 1601 | gauge@~1.2.5: 1602 | version "1.2.7" 1603 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1604 | dependencies: 1605 | ansi "^0.3.0" 1606 | has-unicode "^2.0.0" 1607 | lodash.pad "^4.1.0" 1608 | lodash.padend "^4.1.0" 1609 | lodash.padstart "^4.1.0" 1610 | 1611 | gauge@~2.7.3: 1612 | version "2.7.4" 1613 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1614 | dependencies: 1615 | aproba "^1.0.3" 1616 | console-control-strings "^1.0.0" 1617 | has-unicode "^2.0.0" 1618 | object-assign "^4.1.0" 1619 | signal-exit "^3.0.0" 1620 | string-width "^1.0.1" 1621 | strip-ansi "^3.0.1" 1622 | wide-align "^1.1.0" 1623 | 1624 | get-caller-file@^1.0.1: 1625 | version "1.0.2" 1626 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1627 | 1628 | get-stream@^3.0.0: 1629 | version "3.0.0" 1630 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1631 | 1632 | getpass@^0.1.1: 1633 | version "0.1.6" 1634 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1635 | dependencies: 1636 | assert-plus "^1.0.0" 1637 | 1638 | glob-base@^0.3.0: 1639 | version "0.3.0" 1640 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1641 | dependencies: 1642 | glob-parent "^2.0.0" 1643 | is-glob "^2.0.0" 1644 | 1645 | glob-parent@^2.0.0: 1646 | version "2.0.0" 1647 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1648 | dependencies: 1649 | is-glob "^2.0.0" 1650 | 1651 | glob@^7.0.5: 1652 | version "7.1.1" 1653 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1654 | dependencies: 1655 | fs.realpath "^1.0.0" 1656 | inflight "^1.0.4" 1657 | inherits "2" 1658 | minimatch "^3.0.2" 1659 | once "^1.3.0" 1660 | path-is-absolute "^1.0.0" 1661 | 1662 | glob@^7.1.1, glob@^7.1.2: 1663 | version "7.1.2" 1664 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1665 | dependencies: 1666 | fs.realpath "^1.0.0" 1667 | inflight "^1.0.4" 1668 | inherits "2" 1669 | minimatch "^3.0.4" 1670 | once "^1.3.0" 1671 | path-is-absolute "^1.0.0" 1672 | 1673 | global@^4.3.0: 1674 | version "4.3.1" 1675 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.1.tgz#5f757908c7cbabce54f386ae440e11e26b7916df" 1676 | dependencies: 1677 | min-document "^2.19.0" 1678 | process "~0.5.1" 1679 | 1680 | globals@^9.0.0: 1681 | version "9.17.0" 1682 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1683 | 1684 | globals@^9.18.0: 1685 | version "9.18.0" 1686 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1687 | 1688 | glogg@^1.0.0: 1689 | version "1.0.0" 1690 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 1691 | dependencies: 1692 | sparkles "^1.0.0" 1693 | 1694 | 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: 1695 | version "4.1.11" 1696 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1697 | 1698 | "graceful-readlink@>= 1.0.0": 1699 | version "1.0.1" 1700 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1701 | 1702 | growly@^1.3.0: 1703 | version "1.3.0" 1704 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1705 | 1706 | gulp-util@^3.0.4: 1707 | version "3.0.8" 1708 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 1709 | dependencies: 1710 | array-differ "^1.0.0" 1711 | array-uniq "^1.0.2" 1712 | beeper "^1.0.0" 1713 | chalk "^1.0.0" 1714 | dateformat "^2.0.0" 1715 | fancy-log "^1.1.0" 1716 | gulplog "^1.0.0" 1717 | has-gulplog "^0.1.0" 1718 | lodash._reescape "^3.0.0" 1719 | lodash._reevaluate "^3.0.0" 1720 | lodash._reinterpolate "^3.0.0" 1721 | lodash.template "^3.0.0" 1722 | minimist "^1.1.0" 1723 | multipipe "^0.1.2" 1724 | object-assign "^3.0.0" 1725 | replace-ext "0.0.1" 1726 | through2 "^2.0.0" 1727 | vinyl "^0.5.0" 1728 | 1729 | gulplog@^1.0.0: 1730 | version "1.0.0" 1731 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1732 | dependencies: 1733 | glogg "^1.0.0" 1734 | 1735 | har-schema@^1.0.5: 1736 | version "1.0.5" 1737 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1738 | 1739 | har-validator@~4.2.1: 1740 | version "4.2.1" 1741 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1742 | dependencies: 1743 | ajv "^4.9.1" 1744 | har-schema "^1.0.5" 1745 | 1746 | has-ansi@^2.0.0: 1747 | version "2.0.0" 1748 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1749 | dependencies: 1750 | ansi-regex "^2.0.0" 1751 | 1752 | has-flag@^2.0.0: 1753 | version "2.0.0" 1754 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1755 | 1756 | has-gulplog@^0.1.0: 1757 | version "0.1.0" 1758 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1759 | dependencies: 1760 | sparkles "^1.0.0" 1761 | 1762 | has-unicode@^2.0.0: 1763 | version "2.0.1" 1764 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1765 | 1766 | hawk@3.1.3, hawk@~3.1.3: 1767 | version "3.1.3" 1768 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1769 | dependencies: 1770 | boom "2.x.x" 1771 | cryptiles "2.x.x" 1772 | hoek "2.x.x" 1773 | sntp "1.x.x" 1774 | 1775 | hoek@2.x.x: 1776 | version "2.16.3" 1777 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1778 | 1779 | home-or-tmp@^2.0.0: 1780 | version "2.0.0" 1781 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1782 | dependencies: 1783 | os-homedir "^1.0.0" 1784 | os-tmpdir "^1.0.1" 1785 | 1786 | hosted-git-info@^2.1.4: 1787 | version "2.4.1" 1788 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 1789 | 1790 | http-errors@~1.3.1: 1791 | version "1.3.1" 1792 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.3.1.tgz#197e22cdebd4198585e8694ef6786197b91ed942" 1793 | dependencies: 1794 | inherits "~2.0.1" 1795 | statuses "1" 1796 | 1797 | http-signature@~1.1.0: 1798 | version "1.1.1" 1799 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1800 | dependencies: 1801 | assert-plus "^0.2.0" 1802 | jsprim "^1.2.2" 1803 | sshpk "^1.7.0" 1804 | 1805 | iconv-lite@0.4.11: 1806 | version "0.4.11" 1807 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.11.tgz#2ecb42fd294744922209a2e7c404dac8793d8ade" 1808 | 1809 | iconv-lite@0.4.13: 1810 | version "0.4.13" 1811 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1812 | 1813 | iconv-lite@^0.4.17, iconv-lite@^0.4.8: 1814 | version "0.4.19" 1815 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1816 | 1817 | iconv-lite@~0.4.13: 1818 | version "0.4.15" 1819 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1820 | 1821 | image-size@^0.6.0: 1822 | version "0.6.2" 1823 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.2.tgz#8ee316d4298b028b965091b673d5f1537adee5b4" 1824 | 1825 | imurmurhash@^0.1.4: 1826 | version "0.1.4" 1827 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1828 | 1829 | inflight@^1.0.4: 1830 | version "1.0.6" 1831 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1832 | dependencies: 1833 | once "^1.3.0" 1834 | wrappy "1" 1835 | 1836 | inherits@2, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1837 | version "2.0.3" 1838 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1839 | 1840 | ini@~1.3.0: 1841 | version "1.3.5" 1842 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1843 | 1844 | inquirer@^3.0.6: 1845 | version "3.3.0" 1846 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1847 | dependencies: 1848 | ansi-escapes "^3.0.0" 1849 | chalk "^2.0.0" 1850 | cli-cursor "^2.1.0" 1851 | cli-width "^2.0.0" 1852 | external-editor "^2.0.4" 1853 | figures "^2.0.0" 1854 | lodash "^4.3.0" 1855 | mute-stream "0.0.7" 1856 | run-async "^2.2.0" 1857 | rx-lite "^4.0.8" 1858 | rx-lite-aggregates "^4.0.8" 1859 | string-width "^2.1.0" 1860 | strip-ansi "^4.0.0" 1861 | through "^2.3.6" 1862 | 1863 | invariant@^2.2.0, invariant@^2.2.2: 1864 | version "2.2.2" 1865 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1866 | dependencies: 1867 | loose-envify "^1.0.0" 1868 | 1869 | invert-kv@^1.0.0: 1870 | version "1.0.0" 1871 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1872 | 1873 | is-arrayish@^0.2.1: 1874 | version "0.2.1" 1875 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1876 | 1877 | is-buffer@^1.0.2: 1878 | version "1.1.5" 1879 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1880 | 1881 | is-buffer@^1.1.5: 1882 | version "1.1.6" 1883 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1884 | 1885 | is-builtin-module@^1.0.0: 1886 | version "1.0.0" 1887 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1888 | dependencies: 1889 | builtin-modules "^1.0.0" 1890 | 1891 | is-dotfile@^1.0.0: 1892 | version "1.0.3" 1893 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1894 | 1895 | is-equal-shallow@^0.1.3: 1896 | version "0.1.3" 1897 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1898 | dependencies: 1899 | is-primitive "^2.0.0" 1900 | 1901 | is-extendable@^0.1.1: 1902 | version "0.1.1" 1903 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1904 | 1905 | is-extglob@^1.0.0: 1906 | version "1.0.0" 1907 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1908 | 1909 | is-finite@^1.0.0: 1910 | version "1.0.2" 1911 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1912 | dependencies: 1913 | number-is-nan "^1.0.0" 1914 | 1915 | is-fullwidth-code-point@^1.0.0: 1916 | version "1.0.0" 1917 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1918 | dependencies: 1919 | number-is-nan "^1.0.0" 1920 | 1921 | is-fullwidth-code-point@^2.0.0: 1922 | version "2.0.0" 1923 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1924 | 1925 | is-glob@^2.0.0, is-glob@^2.0.1: 1926 | version "2.0.1" 1927 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1928 | dependencies: 1929 | is-extglob "^1.0.0" 1930 | 1931 | is-number@^2.1.0: 1932 | version "2.1.0" 1933 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1934 | dependencies: 1935 | kind-of "^3.0.2" 1936 | 1937 | is-number@^3.0.0: 1938 | version "3.0.0" 1939 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1940 | dependencies: 1941 | kind-of "^3.0.2" 1942 | 1943 | is-posix-bracket@^0.1.0: 1944 | version "0.1.1" 1945 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1946 | 1947 | is-primitive@^2.0.0: 1948 | version "2.0.0" 1949 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1950 | 1951 | is-promise@^2.1.0: 1952 | version "2.1.0" 1953 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1954 | 1955 | is-stream@^1.0.1, is-stream@^1.1.0: 1956 | version "1.1.0" 1957 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1958 | 1959 | is-typedarray@~1.0.0: 1960 | version "1.0.0" 1961 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1962 | 1963 | isarray@0.0.1: 1964 | version "0.0.1" 1965 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1966 | 1967 | isarray@1.0.0, isarray@~1.0.0: 1968 | version "1.0.0" 1969 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1970 | 1971 | isexe@^2.0.0: 1972 | version "2.0.0" 1973 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1974 | 1975 | isobject@^2.0.0: 1976 | version "2.1.0" 1977 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1978 | dependencies: 1979 | isarray "1.0.0" 1980 | 1981 | isomorphic-fetch@^2.1.1: 1982 | version "2.2.1" 1983 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1984 | dependencies: 1985 | node-fetch "^1.0.1" 1986 | whatwg-fetch ">=0.10.0" 1987 | 1988 | isstream@~0.1.2: 1989 | version "0.1.2" 1990 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1991 | 1992 | jest-docblock@^21, jest-docblock@^21.2.0: 1993 | version "21.2.0" 1994 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1995 | 1996 | jest-haste-map@^21: 1997 | version "21.2.0" 1998 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 1999 | dependencies: 2000 | fb-watchman "^2.0.0" 2001 | graceful-fs "^4.1.11" 2002 | jest-docblock "^21.2.0" 2003 | micromatch "^2.3.11" 2004 | sane "^2.0.0" 2005 | worker-farm "^1.3.1" 2006 | 2007 | jodid25519@^1.0.0: 2008 | version "1.0.2" 2009 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2010 | dependencies: 2011 | jsbn "~0.1.0" 2012 | 2013 | js-tokens@^3.0.0: 2014 | version "3.0.1" 2015 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2016 | 2017 | js-tokens@^3.0.2: 2018 | version "3.0.2" 2019 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2020 | 2021 | jsbn@~0.1.0: 2022 | version "0.1.1" 2023 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2024 | 2025 | jsesc@^1.3.0: 2026 | version "1.3.0" 2027 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2028 | 2029 | jsesc@~0.5.0: 2030 | version "0.5.0" 2031 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2032 | 2033 | json-schema@0.2.3: 2034 | version "0.2.3" 2035 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2036 | 2037 | json-stable-stringify@^1.0.1: 2038 | version "1.0.1" 2039 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2040 | dependencies: 2041 | jsonify "~0.0.0" 2042 | 2043 | json-stringify-safe@~5.0.1: 2044 | version "5.0.1" 2045 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2046 | 2047 | json5@^0.4.0: 2048 | version "0.4.0" 2049 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 2050 | 2051 | json5@^0.5.0, json5@^0.5.1: 2052 | version "0.5.1" 2053 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2054 | 2055 | jsonfile@^2.1.0: 2056 | version "2.4.0" 2057 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2058 | optionalDependencies: 2059 | graceful-fs "^4.1.6" 2060 | 2061 | jsonify@~0.0.0: 2062 | version "0.0.0" 2063 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2064 | 2065 | jsprim@^1.2.2: 2066 | version "1.4.0" 2067 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2068 | dependencies: 2069 | assert-plus "1.0.0" 2070 | extsprintf "1.0.2" 2071 | json-schema "0.2.3" 2072 | verror "1.3.6" 2073 | 2074 | kind-of@^3.0.2: 2075 | version "3.1.0" 2076 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2077 | dependencies: 2078 | is-buffer "^1.0.2" 2079 | 2080 | kind-of@^4.0.0: 2081 | version "4.0.0" 2082 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2083 | dependencies: 2084 | is-buffer "^1.1.5" 2085 | 2086 | klaw@^1.0.0: 2087 | version "1.3.1" 2088 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2089 | optionalDependencies: 2090 | graceful-fs "^4.1.9" 2091 | 2092 | lcid@^1.0.0: 2093 | version "1.0.0" 2094 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2095 | dependencies: 2096 | invert-kv "^1.0.0" 2097 | 2098 | left-pad@^1.1.3: 2099 | version "1.1.3" 2100 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.1.3.tgz#612f61c033f3a9e08e939f1caebeea41b6f3199a" 2101 | 2102 | load-json-file@^2.0.0: 2103 | version "2.0.0" 2104 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2105 | dependencies: 2106 | graceful-fs "^4.1.2" 2107 | parse-json "^2.2.0" 2108 | pify "^2.0.0" 2109 | strip-bom "^3.0.0" 2110 | 2111 | locate-path@^2.0.0: 2112 | version "2.0.0" 2113 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2114 | dependencies: 2115 | p-locate "^2.0.0" 2116 | path-exists "^3.0.0" 2117 | 2118 | lodash._basecopy@^3.0.0: 2119 | version "3.0.1" 2120 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2121 | 2122 | lodash._basetostring@^3.0.0: 2123 | version "3.0.1" 2124 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 2125 | 2126 | lodash._basevalues@^3.0.0: 2127 | version "3.0.0" 2128 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 2129 | 2130 | lodash._getnative@^3.0.0: 2131 | version "3.9.1" 2132 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2133 | 2134 | lodash._isiterateecall@^3.0.0: 2135 | version "3.0.9" 2136 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2137 | 2138 | lodash._reescape@^3.0.0: 2139 | version "3.0.0" 2140 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 2141 | 2142 | lodash._reevaluate@^3.0.0: 2143 | version "3.0.0" 2144 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 2145 | 2146 | lodash._reinterpolate@^3.0.0: 2147 | version "3.0.0" 2148 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 2149 | 2150 | lodash._root@^3.0.0: 2151 | version "3.0.1" 2152 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 2153 | 2154 | lodash.escape@^3.0.0: 2155 | version "3.2.0" 2156 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 2157 | dependencies: 2158 | lodash._root "^3.0.0" 2159 | 2160 | lodash.isarguments@^3.0.0: 2161 | version "3.1.0" 2162 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2163 | 2164 | lodash.isarray@^3.0.0: 2165 | version "3.0.4" 2166 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2167 | 2168 | lodash.keys@^3.0.0: 2169 | version "3.1.2" 2170 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2171 | dependencies: 2172 | lodash._getnative "^3.0.0" 2173 | lodash.isarguments "^3.0.0" 2174 | lodash.isarray "^3.0.0" 2175 | 2176 | lodash.pad@^4.1.0: 2177 | version "4.5.1" 2178 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 2179 | 2180 | lodash.padend@^4.1.0: 2181 | version "4.6.1" 2182 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 2183 | 2184 | lodash.padstart@^4.1.0: 2185 | version "4.6.1" 2186 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 2187 | 2188 | lodash.restparam@^3.0.0: 2189 | version "3.6.1" 2190 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2191 | 2192 | lodash.template@^3.0.0: 2193 | version "3.6.2" 2194 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 2195 | dependencies: 2196 | lodash._basecopy "^3.0.0" 2197 | lodash._basetostring "^3.0.0" 2198 | lodash._basevalues "^3.0.0" 2199 | lodash._isiterateecall "^3.0.0" 2200 | lodash._reinterpolate "^3.0.0" 2201 | lodash.escape "^3.0.0" 2202 | lodash.keys "^3.0.0" 2203 | lodash.restparam "^3.0.0" 2204 | lodash.templatesettings "^3.0.0" 2205 | 2206 | lodash.templatesettings@^3.0.0: 2207 | version "3.1.1" 2208 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 2209 | dependencies: 2210 | lodash._reinterpolate "^3.0.0" 2211 | lodash.escape "^3.0.0" 2212 | 2213 | lodash@^3.5.0: 2214 | version "3.10.1" 2215 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2216 | 2217 | lodash@^4.14.0, lodash@^4.16.6, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.6.1: 2218 | version "4.17.4" 2219 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2220 | 2221 | loose-envify@^1.0.0, loose-envify@^1.3.1: 2222 | version "1.3.1" 2223 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2224 | dependencies: 2225 | js-tokens "^3.0.0" 2226 | 2227 | lru-cache@^4.0.1: 2228 | version "4.0.2" 2229 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2230 | dependencies: 2231 | pseudomap "^1.0.1" 2232 | yallist "^2.0.0" 2233 | 2234 | macos-release@^1.0.0: 2235 | version "1.1.0" 2236 | resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-1.1.0.tgz#831945e29365b470aa8724b0ab36c8f8959d10fb" 2237 | 2238 | makeerror@1.0.x: 2239 | version "1.0.11" 2240 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2241 | dependencies: 2242 | tmpl "1.0.x" 2243 | 2244 | media-typer@0.3.0: 2245 | version "0.3.0" 2246 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2247 | 2248 | mem@^1.1.0: 2249 | version "1.1.0" 2250 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2251 | dependencies: 2252 | mimic-fn "^1.0.0" 2253 | 2254 | merge-stream@^1.0.1: 2255 | version "1.0.1" 2256 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2257 | dependencies: 2258 | readable-stream "^2.0.1" 2259 | 2260 | merge@^1.1.3: 2261 | version "1.2.0" 2262 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2263 | 2264 | method-override@~2.3.5: 2265 | version "2.3.8" 2266 | resolved "https://registry.yarnpkg.com/method-override/-/method-override-2.3.8.tgz#178234bf4bab869f89df9444b06fc6147b44828c" 2267 | dependencies: 2268 | debug "2.6.3" 2269 | methods "~1.1.2" 2270 | parseurl "~1.3.1" 2271 | vary "~1.1.0" 2272 | 2273 | methods@~1.1.2: 2274 | version "1.1.2" 2275 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2276 | 2277 | metro-bundler@^0.20.0: 2278 | version "0.20.3" 2279 | resolved "https://registry.yarnpkg.com/metro-bundler/-/metro-bundler-0.20.3.tgz#0ded01b64e8963117017b106f75b83cfc34f3656" 2280 | dependencies: 2281 | absolute-path "^0.0.0" 2282 | async "^2.4.0" 2283 | babel-core "^6.24.1" 2284 | babel-generator "^6.24.1" 2285 | babel-plugin-external-helpers "^6.18.0" 2286 | babel-preset-es2015-node "^6.1.1" 2287 | babel-preset-fbjs "^2.1.4" 2288 | babel-preset-react-native "^4.0.0" 2289 | babel-register "^6.24.1" 2290 | babylon "^6.18.0" 2291 | chalk "^1.1.1" 2292 | concat-stream "^1.6.0" 2293 | core-js "^2.2.2" 2294 | debug "^2.2.0" 2295 | denodeify "^1.2.1" 2296 | fbjs "^0.8.14" 2297 | graceful-fs "^4.1.3" 2298 | image-size "^0.6.0" 2299 | jest-docblock "^21" 2300 | jest-haste-map "^21" 2301 | json-stable-stringify "^1.0.1" 2302 | json5 "^0.4.0" 2303 | left-pad "^1.1.3" 2304 | lodash "^4.16.6" 2305 | merge-stream "^1.0.1" 2306 | mime-types "2.1.11" 2307 | mkdirp "^0.5.1" 2308 | request "^2.79.0" 2309 | rimraf "^2.5.4" 2310 | source-map "^0.5.6" 2311 | temp "0.8.3" 2312 | throat "^4.1.0" 2313 | uglify-es "^3.1.8" 2314 | wordwrap "^1.0.0" 2315 | write-file-atomic "^1.2.0" 2316 | xpipe "^1.0.5" 2317 | 2318 | micromatch@^2.1.5, micromatch@^2.3.11: 2319 | version "2.3.11" 2320 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2321 | dependencies: 2322 | arr-diff "^2.0.0" 2323 | array-unique "^0.2.1" 2324 | braces "^1.8.2" 2325 | expand-brackets "^0.1.4" 2326 | extglob "^0.3.1" 2327 | filename-regex "^2.0.0" 2328 | is-extglob "^1.0.0" 2329 | is-glob "^2.0.1" 2330 | kind-of "^3.0.2" 2331 | normalize-path "^2.0.1" 2332 | object.omit "^2.0.0" 2333 | parse-glob "^3.0.4" 2334 | regex-cache "^0.4.2" 2335 | 2336 | "mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: 2337 | version "1.27.0" 2338 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2339 | 2340 | mime-db@~1.23.0: 2341 | version "1.23.0" 2342 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659" 2343 | 2344 | mime-types@2.1.11, mime-types@~2.1.7, mime-types@~2.1.9: 2345 | version "2.1.11" 2346 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c" 2347 | dependencies: 2348 | mime-db "~1.23.0" 2349 | 2350 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.6: 2351 | version "2.1.15" 2352 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2353 | dependencies: 2354 | mime-db "~1.27.0" 2355 | 2356 | mime@1.3.4, mime@^1.3.4: 2357 | version "1.3.4" 2358 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2359 | 2360 | mimic-fn@^1.0.0: 2361 | version "1.1.0" 2362 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2363 | 2364 | min-document@^2.19.0: 2365 | version "2.19.0" 2366 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 2367 | dependencies: 2368 | dom-walk "^0.1.0" 2369 | 2370 | minimatch@^3.0.0, minimatch@^3.0.2: 2371 | version "3.0.3" 2372 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2373 | dependencies: 2374 | brace-expansion "^1.0.0" 2375 | 2376 | minimatch@^3.0.4: 2377 | version "3.0.4" 2378 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2379 | dependencies: 2380 | brace-expansion "^1.1.7" 2381 | 2382 | minimist@0.0.8, minimist@~0.0.1: 2383 | version "0.0.8" 2384 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2385 | 2386 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: 2387 | version "1.2.0" 2388 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2389 | 2390 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2391 | version "0.5.1" 2392 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2393 | dependencies: 2394 | minimist "0.0.8" 2395 | 2396 | morgan@~1.6.1: 2397 | version "1.6.1" 2398 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.6.1.tgz#5fd818398c6819cba28a7cd6664f292fe1c0bbf2" 2399 | dependencies: 2400 | basic-auth "~1.0.3" 2401 | debug "~2.2.0" 2402 | depd "~1.0.1" 2403 | on-finished "~2.3.0" 2404 | on-headers "~1.0.0" 2405 | 2406 | ms@0.7.1: 2407 | version "0.7.1" 2408 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2409 | 2410 | ms@0.7.2: 2411 | version "0.7.2" 2412 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2413 | 2414 | ms@2.0.0: 2415 | version "2.0.0" 2416 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2417 | 2418 | multiparty@3.3.2: 2419 | version "3.3.2" 2420 | resolved "https://registry.yarnpkg.com/multiparty/-/multiparty-3.3.2.tgz#35de6804dc19643e5249f3d3e3bdc6c8ce301d3f" 2421 | dependencies: 2422 | readable-stream "~1.1.9" 2423 | stream-counter "~0.2.0" 2424 | 2425 | multipipe@^0.1.2: 2426 | version "0.1.2" 2427 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 2428 | dependencies: 2429 | duplexer2 "0.0.2" 2430 | 2431 | mute-stream@0.0.7: 2432 | version "0.0.7" 2433 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2434 | 2435 | nan@^2.3.0: 2436 | version "2.8.0" 2437 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2438 | 2439 | negotiator@0.5.3: 2440 | version "0.5.3" 2441 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.5.3.tgz#269d5c476810ec92edbe7b6c2f28316384f9a7e8" 2442 | 2443 | negotiator@0.6.1: 2444 | version "0.6.1" 2445 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2446 | 2447 | node-fetch@^1.0.1, node-fetch@^1.3.3: 2448 | version "1.6.3" 2449 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2450 | dependencies: 2451 | encoding "^0.1.11" 2452 | is-stream "^1.0.1" 2453 | 2454 | node-int64@^0.4.0: 2455 | version "0.4.0" 2456 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2457 | 2458 | node-notifier@^5.1.2: 2459 | version "5.1.2" 2460 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2461 | dependencies: 2462 | growly "^1.3.0" 2463 | semver "^5.3.0" 2464 | shellwords "^0.1.0" 2465 | which "^1.2.12" 2466 | 2467 | node-pre-gyp@^0.6.39: 2468 | version "0.6.39" 2469 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2470 | dependencies: 2471 | detect-libc "^1.0.2" 2472 | hawk "3.1.3" 2473 | mkdirp "^0.5.1" 2474 | nopt "^4.0.1" 2475 | npmlog "^4.0.2" 2476 | rc "^1.1.7" 2477 | request "2.81.0" 2478 | rimraf "^2.6.1" 2479 | semver "^5.3.0" 2480 | tar "^2.2.1" 2481 | tar-pack "^3.4.0" 2482 | 2483 | nopt@^4.0.1: 2484 | version "4.0.1" 2485 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2486 | dependencies: 2487 | abbrev "1" 2488 | osenv "^0.1.4" 2489 | 2490 | normalize-package-data@^2.3.2: 2491 | version "2.3.6" 2492 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 2493 | dependencies: 2494 | hosted-git-info "^2.1.4" 2495 | is-builtin-module "^1.0.0" 2496 | semver "2 || 3 || 4 || 5" 2497 | validate-npm-package-license "^3.0.1" 2498 | 2499 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2500 | version "2.1.1" 2501 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2502 | dependencies: 2503 | remove-trailing-separator "^1.0.1" 2504 | 2505 | npm-run-path@^2.0.0: 2506 | version "2.0.2" 2507 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2508 | dependencies: 2509 | path-key "^2.0.0" 2510 | 2511 | npmlog@^2.0.4: 2512 | version "2.0.4" 2513 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" 2514 | dependencies: 2515 | ansi "~0.3.1" 2516 | are-we-there-yet "~1.1.2" 2517 | gauge "~1.2.5" 2518 | 2519 | npmlog@^4.0.2: 2520 | version "4.1.2" 2521 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2522 | dependencies: 2523 | are-we-there-yet "~1.1.2" 2524 | console-control-strings "~1.1.0" 2525 | gauge "~2.7.3" 2526 | set-blocking "~2.0.0" 2527 | 2528 | number-is-nan@^1.0.0: 2529 | version "1.0.1" 2530 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2531 | 2532 | oauth-sign@~0.8.1: 2533 | version "0.8.2" 2534 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2535 | 2536 | object-assign@^3.0.0: 2537 | version "3.0.0" 2538 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2539 | 2540 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2541 | version "4.1.1" 2542 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2543 | 2544 | object.omit@^2.0.0: 2545 | version "2.0.1" 2546 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2547 | dependencies: 2548 | for-own "^0.1.4" 2549 | is-extendable "^0.1.1" 2550 | 2551 | on-finished@~2.3.0: 2552 | version "2.3.0" 2553 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2554 | dependencies: 2555 | ee-first "1.1.1" 2556 | 2557 | on-headers@~1.0.0, on-headers@~1.0.1: 2558 | version "1.0.1" 2559 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2560 | 2561 | once@^1.3.0, once@^1.3.3: 2562 | version "1.4.0" 2563 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2564 | dependencies: 2565 | wrappy "1" 2566 | 2567 | onetime@^2.0.0: 2568 | version "2.0.1" 2569 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2570 | dependencies: 2571 | mimic-fn "^1.0.0" 2572 | 2573 | opn@^3.0.2: 2574 | version "3.0.3" 2575 | resolved "https://registry.yarnpkg.com/opn/-/opn-3.0.3.tgz#b6d99e7399f78d65c3baaffef1fb288e9b85243a" 2576 | dependencies: 2577 | object-assign "^4.0.1" 2578 | 2579 | optimist@^0.6.1: 2580 | version "0.6.1" 2581 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2582 | dependencies: 2583 | minimist "~0.0.1" 2584 | wordwrap "~0.0.2" 2585 | 2586 | options@>=0.0.5: 2587 | version "0.0.6" 2588 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2589 | 2590 | os-homedir@^1.0.0: 2591 | version "1.0.2" 2592 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2593 | 2594 | os-locale@^2.0.0: 2595 | version "2.1.0" 2596 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2597 | dependencies: 2598 | execa "^0.7.0" 2599 | lcid "^1.0.0" 2600 | mem "^1.1.0" 2601 | 2602 | os-name@^2.0.1: 2603 | version "2.0.1" 2604 | resolved "https://registry.yarnpkg.com/os-name/-/os-name-2.0.1.tgz#b9a386361c17ae3a21736ef0599405c9a8c5dc5e" 2605 | dependencies: 2606 | macos-release "^1.0.0" 2607 | win-release "^1.0.0" 2608 | 2609 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2610 | version "1.0.2" 2611 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2612 | 2613 | osenv@^0.1.4: 2614 | version "0.1.4" 2615 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2616 | dependencies: 2617 | os-homedir "^1.0.0" 2618 | os-tmpdir "^1.0.0" 2619 | 2620 | p-finally@^1.0.0: 2621 | version "1.0.0" 2622 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2623 | 2624 | p-limit@^1.1.0: 2625 | version "1.1.0" 2626 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2627 | 2628 | p-locate@^2.0.0: 2629 | version "2.0.0" 2630 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2631 | dependencies: 2632 | p-limit "^1.1.0" 2633 | 2634 | parse-glob@^3.0.4: 2635 | version "3.0.4" 2636 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2637 | dependencies: 2638 | glob-base "^0.3.0" 2639 | is-dotfile "^1.0.0" 2640 | is-extglob "^1.0.0" 2641 | is-glob "^2.0.0" 2642 | 2643 | parse-json@^2.2.0: 2644 | version "2.2.0" 2645 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2646 | dependencies: 2647 | error-ex "^1.2.0" 2648 | 2649 | parseurl@~1.3.0, parseurl@~1.3.1: 2650 | version "1.3.1" 2651 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2652 | 2653 | path-exists@^3.0.0: 2654 | version "3.0.0" 2655 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2656 | 2657 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2658 | version "1.0.1" 2659 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2660 | 2661 | path-key@^2.0.0: 2662 | version "2.0.1" 2663 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2664 | 2665 | path-type@^2.0.0: 2666 | version "2.0.0" 2667 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2668 | dependencies: 2669 | pify "^2.0.0" 2670 | 2671 | pause@0.1.0: 2672 | version "0.1.0" 2673 | resolved "https://registry.yarnpkg.com/pause/-/pause-0.1.0.tgz#ebc8a4a8619ff0b8a81ac1513c3434ff469fdb74" 2674 | 2675 | pegjs@^0.10.0: 2676 | version "0.10.0" 2677 | resolved "https://registry.yarnpkg.com/pegjs/-/pegjs-0.10.0.tgz#cf8bafae6eddff4b5a7efb185269eaaf4610ddbd" 2678 | 2679 | performance-now@^0.2.0: 2680 | version "0.2.0" 2681 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2682 | 2683 | pify@^2.0.0: 2684 | version "2.3.0" 2685 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2686 | 2687 | plist@2.0.1: 2688 | version "2.0.1" 2689 | resolved "https://registry.yarnpkg.com/plist/-/plist-2.0.1.tgz#0a32ca9481b1c364e92e18dc55c876de9d01da8b" 2690 | dependencies: 2691 | base64-js "1.1.2" 2692 | xmlbuilder "8.2.2" 2693 | xmldom "0.1.x" 2694 | 2695 | plist@^1.2.0: 2696 | version "1.2.0" 2697 | resolved "https://registry.yarnpkg.com/plist/-/plist-1.2.0.tgz#084b5093ddc92506e259f874b8d9b1afb8c79593" 2698 | dependencies: 2699 | base64-js "0.0.8" 2700 | util-deprecate "1.0.2" 2701 | xmlbuilder "4.0.0" 2702 | xmldom "0.1.x" 2703 | 2704 | preserve@^0.2.0: 2705 | version "0.2.0" 2706 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2707 | 2708 | pretty-format@^4.2.1: 2709 | version "4.3.1" 2710 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-4.3.1.tgz#530be5c42b3c05b36414a7a2a4337aa80acd0e8d" 2711 | 2712 | private@^0.1.6: 2713 | version "0.1.7" 2714 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2715 | 2716 | private@^0.1.7: 2717 | version "0.1.8" 2718 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2719 | 2720 | process-nextick-args@~1.0.6: 2721 | version "1.0.7" 2722 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2723 | 2724 | process@~0.5.1: 2725 | version "0.5.2" 2726 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 2727 | 2728 | promise@^7.1.1: 2729 | version "7.1.1" 2730 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2731 | dependencies: 2732 | asap "~2.0.3" 2733 | 2734 | prop-types@^15.5.8: 2735 | version "15.6.0" 2736 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 2737 | dependencies: 2738 | fbjs "^0.8.16" 2739 | loose-envify "^1.3.1" 2740 | object-assign "^4.1.1" 2741 | 2742 | prr@~0.0.0: 2743 | version "0.0.0" 2744 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2745 | 2746 | pseudomap@^1.0.1: 2747 | version "1.0.2" 2748 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2749 | 2750 | punycode@^1.4.1: 2751 | version "1.4.1" 2752 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2753 | 2754 | qs@4.0.0: 2755 | version "4.0.0" 2756 | resolved "https://registry.yarnpkg.com/qs/-/qs-4.0.0.tgz#c31d9b74ec27df75e543a86c78728ed8d4623607" 2757 | 2758 | qs@~6.4.0: 2759 | version "6.4.0" 2760 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2761 | 2762 | random-bytes@~1.0.0: 2763 | version "1.0.0" 2764 | resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" 2765 | 2766 | randomatic@^1.1.3: 2767 | version "1.1.7" 2768 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2769 | dependencies: 2770 | is-number "^3.0.0" 2771 | kind-of "^4.0.0" 2772 | 2773 | range-parser@~1.0.3: 2774 | version "1.0.3" 2775 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" 2776 | 2777 | raw-body@~2.1.2: 2778 | version "2.1.7" 2779 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.1.7.tgz#adfeace2e4fb3098058014d08c072dcc59758774" 2780 | dependencies: 2781 | bytes "2.4.0" 2782 | iconv-lite "0.4.13" 2783 | unpipe "1.0.0" 2784 | 2785 | rc@^1.1.7: 2786 | version "1.2.2" 2787 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2788 | dependencies: 2789 | deep-extend "~0.4.0" 2790 | ini "~1.3.0" 2791 | minimist "^1.2.0" 2792 | strip-json-comments "~2.0.1" 2793 | 2794 | react-clone-referenced-element@^1.0.1: 2795 | version "1.0.1" 2796 | resolved "https://registry.yarnpkg.com/react-clone-referenced-element/-/react-clone-referenced-element-1.0.1.tgz#2bba8c69404c5e4a944398600bcc4c941f860682" 2797 | 2798 | react-deep-force-update@^1.0.0: 2799 | version "1.0.1" 2800 | resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.0.1.tgz#f911b5be1d2a6fe387507dd6e9a767aa2924b4c7" 2801 | 2802 | react-devtools-core@^2.5.0: 2803 | version "2.5.2" 2804 | resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-2.5.2.tgz#f97bec5afae5d9318d16778065e0c214c4d5714c" 2805 | dependencies: 2806 | shell-quote "^1.6.1" 2807 | ws "^2.0.3" 2808 | 2809 | react-native@0.51.0: 2810 | version "0.51.0" 2811 | resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.51.0.tgz#fe25934b3030fd323f3ca1a70f034133465955ed" 2812 | dependencies: 2813 | absolute-path "^0.0.0" 2814 | art "^0.10.0" 2815 | babel-core "^6.24.1" 2816 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 2817 | babel-plugin-transform-async-to-generator "6.16.0" 2818 | babel-plugin-transform-class-properties "^6.18.0" 2819 | babel-plugin-transform-exponentiation-operator "^6.5.0" 2820 | babel-plugin-transform-flow-strip-types "^6.21.0" 2821 | babel-plugin-transform-object-rest-spread "^6.20.2" 2822 | babel-register "^6.24.1" 2823 | babel-runtime "^6.23.0" 2824 | base64-js "^1.1.2" 2825 | chalk "^1.1.1" 2826 | commander "^2.9.0" 2827 | connect "^2.8.3" 2828 | create-react-class "^15.5.2" 2829 | debug "^2.2.0" 2830 | denodeify "^1.2.1" 2831 | envinfo "^3.0.0" 2832 | event-target-shim "^1.0.5" 2833 | fbjs "^0.8.14" 2834 | fbjs-scripts "^0.8.1" 2835 | fs-extra "^1.0.0" 2836 | glob "^7.1.1" 2837 | graceful-fs "^4.1.3" 2838 | inquirer "^3.0.6" 2839 | lodash "^4.16.6" 2840 | metro-bundler "^0.20.0" 2841 | mime "^1.3.4" 2842 | minimist "^1.2.0" 2843 | mkdirp "^0.5.1" 2844 | node-fetch "^1.3.3" 2845 | node-notifier "^5.1.2" 2846 | npmlog "^2.0.4" 2847 | opn "^3.0.2" 2848 | optimist "^0.6.1" 2849 | plist "^1.2.0" 2850 | pretty-format "^4.2.1" 2851 | promise "^7.1.1" 2852 | prop-types "^15.5.8" 2853 | react-clone-referenced-element "^1.0.1" 2854 | react-devtools-core "^2.5.0" 2855 | react-timer-mixin "^0.13.2" 2856 | regenerator-runtime "^0.11.0" 2857 | rimraf "^2.5.4" 2858 | semver "^5.0.3" 2859 | shell-quote "1.6.1" 2860 | stacktrace-parser "^0.1.3" 2861 | whatwg-fetch "^1.0.0" 2862 | ws "^1.1.0" 2863 | xcode "^0.9.1" 2864 | xmldoc "^0.4.0" 2865 | yargs "^9.0.0" 2866 | 2867 | react-proxy@^1.1.7: 2868 | version "1.1.8" 2869 | resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a" 2870 | dependencies: 2871 | lodash "^4.6.1" 2872 | react-deep-force-update "^1.0.0" 2873 | 2874 | react-timer-mixin@^0.13.2: 2875 | version "0.13.3" 2876 | resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.3.tgz#0da8b9f807ec07dc3e854d082c737c65605b3d22" 2877 | 2878 | react-transform-hmr@^1.0.4: 2879 | version "1.0.4" 2880 | resolved "https://registry.yarnpkg.com/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb" 2881 | dependencies: 2882 | global "^4.3.0" 2883 | react-proxy "^1.1.7" 2884 | 2885 | read-pkg-up@^2.0.0: 2886 | version "2.0.0" 2887 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2888 | dependencies: 2889 | find-up "^2.0.0" 2890 | read-pkg "^2.0.0" 2891 | 2892 | read-pkg@^2.0.0: 2893 | version "2.0.0" 2894 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2895 | dependencies: 2896 | load-json-file "^2.0.0" 2897 | normalize-package-data "^2.3.2" 2898 | path-type "^2.0.0" 2899 | 2900 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.1.5, readable-stream@^2.2.2: 2901 | version "2.2.6" 2902 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 2903 | dependencies: 2904 | buffer-shims "^1.0.0" 2905 | core-util-is "~1.0.0" 2906 | inherits "~2.0.1" 2907 | isarray "~1.0.0" 2908 | process-nextick-args "~1.0.6" 2909 | string_decoder "~0.10.x" 2910 | util-deprecate "~1.0.1" 2911 | 2912 | readable-stream@^2.0.1, readable-stream@^2.1.4: 2913 | version "2.3.3" 2914 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2915 | dependencies: 2916 | core-util-is "~1.0.0" 2917 | inherits "~2.0.3" 2918 | isarray "~1.0.0" 2919 | process-nextick-args "~1.0.6" 2920 | safe-buffer "~5.1.1" 2921 | string_decoder "~1.0.3" 2922 | util-deprecate "~1.0.1" 2923 | 2924 | readable-stream@~1.1.8, readable-stream@~1.1.9: 2925 | version "1.1.14" 2926 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2927 | dependencies: 2928 | core-util-is "~1.0.0" 2929 | inherits "~2.0.1" 2930 | isarray "0.0.1" 2931 | string_decoder "~0.10.x" 2932 | 2933 | regenerate@^1.2.1: 2934 | version "1.3.2" 2935 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2936 | 2937 | regenerator-runtime@^0.10.0: 2938 | version "0.10.3" 2939 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2940 | 2941 | regenerator-runtime@^0.11.0: 2942 | version "0.11.1" 2943 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2944 | 2945 | regenerator-transform@0.9.8: 2946 | version "0.9.8" 2947 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 2948 | dependencies: 2949 | babel-runtime "^6.18.0" 2950 | babel-types "^6.19.0" 2951 | private "^0.1.6" 2952 | 2953 | regex-cache@^0.4.2: 2954 | version "0.4.4" 2955 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2956 | dependencies: 2957 | is-equal-shallow "^0.1.3" 2958 | 2959 | regexpu-core@^2.0.0: 2960 | version "2.0.0" 2961 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2962 | dependencies: 2963 | regenerate "^1.2.1" 2964 | regjsgen "^0.2.0" 2965 | regjsparser "^0.1.4" 2966 | 2967 | regjsgen@^0.2.0: 2968 | version "0.2.0" 2969 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2970 | 2971 | regjsparser@^0.1.4: 2972 | version "0.1.5" 2973 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2974 | dependencies: 2975 | jsesc "~0.5.0" 2976 | 2977 | remove-trailing-separator@^1.0.1: 2978 | version "1.1.0" 2979 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2980 | 2981 | repeat-element@^1.1.2: 2982 | version "1.1.2" 2983 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2984 | 2985 | repeat-string@^1.5.2: 2986 | version "1.6.1" 2987 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2988 | 2989 | repeating@^2.0.0: 2990 | version "2.0.1" 2991 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2992 | dependencies: 2993 | is-finite "^1.0.0" 2994 | 2995 | replace-ext@0.0.1: 2996 | version "0.0.1" 2997 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 2998 | 2999 | request@2.81.0, request@^2.79.0: 3000 | version "2.81.0" 3001 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3002 | dependencies: 3003 | aws-sign2 "~0.6.0" 3004 | aws4 "^1.2.1" 3005 | caseless "~0.12.0" 3006 | combined-stream "~1.0.5" 3007 | extend "~3.0.0" 3008 | forever-agent "~0.6.1" 3009 | form-data "~2.1.1" 3010 | har-validator "~4.2.1" 3011 | hawk "~3.1.3" 3012 | http-signature "~1.1.0" 3013 | is-typedarray "~1.0.0" 3014 | isstream "~0.1.2" 3015 | json-stringify-safe "~5.0.1" 3016 | mime-types "~2.1.7" 3017 | oauth-sign "~0.8.1" 3018 | performance-now "^0.2.0" 3019 | qs "~6.4.0" 3020 | safe-buffer "^5.0.1" 3021 | stringstream "~0.0.4" 3022 | tough-cookie "~2.3.0" 3023 | tunnel-agent "^0.6.0" 3024 | uuid "^3.0.0" 3025 | 3026 | require-directory@^2.1.1: 3027 | version "2.1.1" 3028 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3029 | 3030 | require-main-filename@^1.0.1: 3031 | version "1.0.1" 3032 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3033 | 3034 | response-time@~2.3.1: 3035 | version "2.3.2" 3036 | resolved "https://registry.yarnpkg.com/response-time/-/response-time-2.3.2.tgz#ffa71bab952d62f7c1d49b7434355fbc68dffc5a" 3037 | dependencies: 3038 | depd "~1.1.0" 3039 | on-headers "~1.0.1" 3040 | 3041 | restore-cursor@^2.0.0: 3042 | version "2.0.0" 3043 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3044 | dependencies: 3045 | onetime "^2.0.0" 3046 | signal-exit "^3.0.2" 3047 | 3048 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 3049 | version "2.6.2" 3050 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3051 | dependencies: 3052 | glob "^7.0.5" 3053 | 3054 | rimraf@^2.5.4: 3055 | version "2.6.1" 3056 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3057 | dependencies: 3058 | glob "^7.0.5" 3059 | 3060 | rimraf@~2.2.6: 3061 | version "2.2.8" 3062 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 3063 | 3064 | rndm@1.2.0: 3065 | version "1.2.0" 3066 | resolved "https://registry.yarnpkg.com/rndm/-/rndm-1.2.0.tgz#f33fe9cfb52bbfd520aa18323bc65db110a1b76c" 3067 | 3068 | run-async@^2.2.0: 3069 | version "2.3.0" 3070 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3071 | dependencies: 3072 | is-promise "^2.1.0" 3073 | 3074 | rx-lite-aggregates@^4.0.8: 3075 | version "4.0.8" 3076 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3077 | dependencies: 3078 | rx-lite "*" 3079 | 3080 | rx-lite@*, rx-lite@^4.0.8: 3081 | version "4.0.8" 3082 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3083 | 3084 | safe-buffer@^5.0.1, safe-buffer@~5.0.1: 3085 | version "5.0.1" 3086 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3087 | 3088 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3089 | version "5.1.1" 3090 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3091 | 3092 | sane@^2.0.0: 3093 | version "2.2.0" 3094 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 3095 | dependencies: 3096 | anymatch "^1.3.0" 3097 | exec-sh "^0.2.0" 3098 | fb-watchman "^2.0.0" 3099 | minimatch "^3.0.2" 3100 | minimist "^1.1.1" 3101 | walker "~1.0.5" 3102 | watch "~0.18.0" 3103 | optionalDependencies: 3104 | fsevents "^1.1.1" 3105 | 3106 | sax@~1.1.1: 3107 | version "1.1.6" 3108 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.1.6.tgz#5d616be8a5e607d54e114afae55b7eaf2fcc3240" 3109 | 3110 | "semver@2 || 3 || 4 || 5", semver@5.x, semver@^5.0.3, semver@^5.1.0: 3111 | version "5.3.0" 3112 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3113 | 3114 | semver@^5.0.1, semver@^5.3.0: 3115 | version "5.4.1" 3116 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3117 | 3118 | send@0.13.2: 3119 | version "0.13.2" 3120 | resolved "https://registry.yarnpkg.com/send/-/send-0.13.2.tgz#765e7607c8055452bba6f0b052595350986036de" 3121 | dependencies: 3122 | debug "~2.2.0" 3123 | depd "~1.1.0" 3124 | destroy "~1.0.4" 3125 | escape-html "~1.0.3" 3126 | etag "~1.7.0" 3127 | fresh "0.3.0" 3128 | http-errors "~1.3.1" 3129 | mime "1.3.4" 3130 | ms "0.7.1" 3131 | on-finished "~2.3.0" 3132 | range-parser "~1.0.3" 3133 | statuses "~1.2.1" 3134 | 3135 | serve-favicon@~2.3.0: 3136 | version "2.3.2" 3137 | resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.3.2.tgz#dd419e268de012ab72b319d337f2105013f9381f" 3138 | dependencies: 3139 | etag "~1.7.0" 3140 | fresh "0.3.0" 3141 | ms "0.7.2" 3142 | parseurl "~1.3.1" 3143 | 3144 | serve-index@~1.7.2: 3145 | version "1.7.3" 3146 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.7.3.tgz#7a057fc6ee28dc63f64566e5fa57b111a86aecd2" 3147 | dependencies: 3148 | accepts "~1.2.13" 3149 | batch "0.5.3" 3150 | debug "~2.2.0" 3151 | escape-html "~1.0.3" 3152 | http-errors "~1.3.1" 3153 | mime-types "~2.1.9" 3154 | parseurl "~1.3.1" 3155 | 3156 | serve-static@~1.10.0: 3157 | version "1.10.3" 3158 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.10.3.tgz#ce5a6ecd3101fed5ec09827dac22a9c29bfb0535" 3159 | dependencies: 3160 | escape-html "~1.0.3" 3161 | parseurl "~1.3.1" 3162 | send "0.13.2" 3163 | 3164 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3165 | version "2.0.0" 3166 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3167 | 3168 | setimmediate@^1.0.5: 3169 | version "1.0.5" 3170 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3171 | 3172 | shebang-command@^1.2.0: 3173 | version "1.2.0" 3174 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3175 | dependencies: 3176 | shebang-regex "^1.0.0" 3177 | 3178 | shebang-regex@^1.0.0: 3179 | version "1.0.0" 3180 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3181 | 3182 | shell-quote@1.6.1, shell-quote@^1.6.1: 3183 | version "1.6.1" 3184 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3185 | dependencies: 3186 | array-filter "~0.0.0" 3187 | array-map "~0.0.0" 3188 | array-reduce "~0.0.0" 3189 | jsonify "~0.0.0" 3190 | 3191 | shellwords@^0.1.0: 3192 | version "0.1.1" 3193 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3194 | 3195 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3196 | version "3.0.2" 3197 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3198 | 3199 | simple-plist@^0.2.1: 3200 | version "0.2.1" 3201 | resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-0.2.1.tgz#71766db352326928cf3a807242ba762322636723" 3202 | dependencies: 3203 | bplist-creator "0.0.7" 3204 | bplist-parser "0.1.1" 3205 | plist "2.0.1" 3206 | 3207 | slash@^1.0.0: 3208 | version "1.0.0" 3209 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3210 | 3211 | slide@^1.1.5: 3212 | version "1.1.6" 3213 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3214 | 3215 | sntp@1.x.x: 3216 | version "1.0.9" 3217 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3218 | dependencies: 3219 | hoek "2.x.x" 3220 | 3221 | source-map-support@^0.4.15: 3222 | version "0.4.18" 3223 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3224 | dependencies: 3225 | source-map "^0.5.6" 3226 | 3227 | source-map-support@^0.4.2: 3228 | version "0.4.14" 3229 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 3230 | dependencies: 3231 | source-map "^0.5.6" 3232 | 3233 | source-map@^0.5.0, source-map@^0.5.6: 3234 | version "0.5.6" 3235 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3236 | 3237 | source-map@~0.6.1: 3238 | version "0.6.1" 3239 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3240 | 3241 | sparkles@^1.0.0: 3242 | version "1.0.0" 3243 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 3244 | 3245 | spdx-correct@~1.0.0: 3246 | version "1.0.2" 3247 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3248 | dependencies: 3249 | spdx-license-ids "^1.0.2" 3250 | 3251 | spdx-expression-parse@~1.0.0: 3252 | version "1.0.4" 3253 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3254 | 3255 | spdx-license-ids@^1.0.2: 3256 | version "1.2.2" 3257 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3258 | 3259 | sshpk@^1.7.0: 3260 | version "1.11.0" 3261 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 3262 | dependencies: 3263 | asn1 "~0.2.3" 3264 | assert-plus "^1.0.0" 3265 | dashdash "^1.12.0" 3266 | getpass "^0.1.1" 3267 | optionalDependencies: 3268 | bcrypt-pbkdf "^1.0.0" 3269 | ecc-jsbn "~0.1.1" 3270 | jodid25519 "^1.0.0" 3271 | jsbn "~0.1.0" 3272 | tweetnacl "~0.14.0" 3273 | 3274 | stacktrace-parser@^0.1.3: 3275 | version "0.1.4" 3276 | resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.4.tgz#01397922e5f62ecf30845522c95c4fe1d25e7d4e" 3277 | 3278 | statuses@1: 3279 | version "1.3.1" 3280 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3281 | 3282 | statuses@~1.2.1: 3283 | version "1.2.1" 3284 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.2.1.tgz#dded45cc18256d51ed40aec142489d5c61026d28" 3285 | 3286 | stream-buffers@~2.2.0: 3287 | version "2.2.0" 3288 | resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" 3289 | 3290 | stream-counter@~0.2.0: 3291 | version "0.2.0" 3292 | resolved "https://registry.yarnpkg.com/stream-counter/-/stream-counter-0.2.0.tgz#ded266556319c8b0e222812b9cf3b26fa7d947de" 3293 | dependencies: 3294 | readable-stream "~1.1.8" 3295 | 3296 | string-width@^1.0.1, string-width@^1.0.2: 3297 | version "1.0.2" 3298 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3299 | dependencies: 3300 | code-point-at "^1.0.0" 3301 | is-fullwidth-code-point "^1.0.0" 3302 | strip-ansi "^3.0.0" 3303 | 3304 | string-width@^2.0.0: 3305 | version "2.0.0" 3306 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3307 | dependencies: 3308 | is-fullwidth-code-point "^2.0.0" 3309 | strip-ansi "^3.0.0" 3310 | 3311 | string-width@^2.1.0: 3312 | version "2.1.1" 3313 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3314 | dependencies: 3315 | is-fullwidth-code-point "^2.0.0" 3316 | strip-ansi "^4.0.0" 3317 | 3318 | string_decoder@~0.10.x: 3319 | version "0.10.31" 3320 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3321 | 3322 | string_decoder@~1.0.3: 3323 | version "1.0.3" 3324 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3325 | dependencies: 3326 | safe-buffer "~5.1.0" 3327 | 3328 | stringstream@~0.0.4: 3329 | version "0.0.5" 3330 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3331 | 3332 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3333 | version "3.0.1" 3334 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3335 | dependencies: 3336 | ansi-regex "^2.0.0" 3337 | 3338 | strip-ansi@^4.0.0: 3339 | version "4.0.0" 3340 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3341 | dependencies: 3342 | ansi-regex "^3.0.0" 3343 | 3344 | strip-bom@^3.0.0: 3345 | version "3.0.0" 3346 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3347 | 3348 | strip-eof@^1.0.0: 3349 | version "1.0.0" 3350 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3351 | 3352 | strip-json-comments@~2.0.1: 3353 | version "2.0.1" 3354 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3355 | 3356 | supports-color@^2.0.0: 3357 | version "2.0.0" 3358 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3359 | 3360 | supports-color@^4.0.0: 3361 | version "4.5.0" 3362 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3363 | dependencies: 3364 | has-flag "^2.0.0" 3365 | 3366 | sync-exec@~0.6.x: 3367 | version "0.6.2" 3368 | resolved "https://registry.yarnpkg.com/sync-exec/-/sync-exec-0.6.2.tgz#717d22cc53f0ce1def5594362f3a89a2ebb91105" 3369 | 3370 | tar-pack@^3.4.0: 3371 | version "3.4.1" 3372 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3373 | dependencies: 3374 | debug "^2.2.0" 3375 | fstream "^1.0.10" 3376 | fstream-ignore "^1.0.5" 3377 | once "^1.3.3" 3378 | readable-stream "^2.1.4" 3379 | rimraf "^2.5.1" 3380 | tar "^2.2.1" 3381 | uid-number "^0.0.6" 3382 | 3383 | tar@^2.2.1: 3384 | version "2.2.1" 3385 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3386 | dependencies: 3387 | block-stream "*" 3388 | fstream "^1.0.2" 3389 | inherits "2" 3390 | 3391 | temp@0.8.3: 3392 | version "0.8.3" 3393 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 3394 | dependencies: 3395 | os-tmpdir "^1.0.0" 3396 | rimraf "~2.2.6" 3397 | 3398 | throat@^4.1.0: 3399 | version "4.1.0" 3400 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3401 | 3402 | through2@^2.0.0: 3403 | version "2.0.3" 3404 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3405 | dependencies: 3406 | readable-stream "^2.1.5" 3407 | xtend "~4.0.1" 3408 | 3409 | through@^2.3.6: 3410 | version "2.3.8" 3411 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3412 | 3413 | time-stamp@^1.0.0: 3414 | version "1.0.1" 3415 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 3416 | 3417 | tmp@^0.0.33: 3418 | version "0.0.33" 3419 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3420 | dependencies: 3421 | os-tmpdir "~1.0.2" 3422 | 3423 | tmpl@1.0.x: 3424 | version "1.0.4" 3425 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3426 | 3427 | to-fast-properties@^1.0.1: 3428 | version "1.0.2" 3429 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3430 | 3431 | to-fast-properties@^1.0.3: 3432 | version "1.0.3" 3433 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3434 | 3435 | tough-cookie@~2.3.0: 3436 | version "2.3.2" 3437 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3438 | dependencies: 3439 | punycode "^1.4.1" 3440 | 3441 | trim-right@^1.0.1: 3442 | version "1.0.1" 3443 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3444 | 3445 | tsscmp@1.0.5: 3446 | version "1.0.5" 3447 | resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.5.tgz#7dc4a33af71581ab4337da91d85ca5427ebd9a97" 3448 | 3449 | tunnel-agent@^0.6.0: 3450 | version "0.6.0" 3451 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3452 | dependencies: 3453 | safe-buffer "^5.0.1" 3454 | 3455 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3456 | version "0.14.5" 3457 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3458 | 3459 | type-is@~1.6.6: 3460 | version "1.6.15" 3461 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 3462 | dependencies: 3463 | media-typer "0.3.0" 3464 | mime-types "~2.1.15" 3465 | 3466 | typedarray@^0.0.6: 3467 | version "0.0.6" 3468 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3469 | 3470 | ua-parser-js@^0.7.9: 3471 | version "0.7.12" 3472 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3473 | 3474 | uglify-es@^3.1.8: 3475 | version "3.3.2" 3476 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.2.tgz#2401df8be2a433314523753f28810793a40c5462" 3477 | dependencies: 3478 | commander "~2.12.1" 3479 | source-map "~0.6.1" 3480 | 3481 | uid-number@^0.0.6: 3482 | version "0.0.6" 3483 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3484 | 3485 | uid-safe@2.1.4: 3486 | version "2.1.4" 3487 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.4.tgz#3ad6f38368c6d4c8c75ec17623fb79aa1d071d81" 3488 | dependencies: 3489 | random-bytes "~1.0.0" 3490 | 3491 | uid-safe@~2.0.0: 3492 | version "2.0.0" 3493 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.0.0.tgz#a7f3c6ca64a1f6a5d04ec0ef3e4c3d5367317137" 3494 | dependencies: 3495 | base64-url "1.2.1" 3496 | 3497 | ultron@1.0.x: 3498 | version "1.0.2" 3499 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3500 | 3501 | ultron@~1.1.0: 3502 | version "1.1.1" 3503 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" 3504 | 3505 | unpipe@1.0.0, unpipe@~1.0.0: 3506 | version "1.0.0" 3507 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3508 | 3509 | util-deprecate@1.0.2, util-deprecate@~1.0.1: 3510 | version "1.0.2" 3511 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3512 | 3513 | utils-merge@1.0.0: 3514 | version "1.0.0" 3515 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3516 | 3517 | uuid@3.0.1, uuid@^3.0.0: 3518 | version "3.0.1" 3519 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3520 | 3521 | validate-npm-package-license@^3.0.1: 3522 | version "3.0.1" 3523 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3524 | dependencies: 3525 | spdx-correct "~1.0.0" 3526 | spdx-expression-parse "~1.0.0" 3527 | 3528 | vary@~1.0.1: 3529 | version "1.0.1" 3530 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.0.1.tgz#99e4981566a286118dfb2b817357df7993376d10" 3531 | 3532 | vary@~1.1.0: 3533 | version "1.1.1" 3534 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 3535 | 3536 | verror@1.3.6: 3537 | version "1.3.6" 3538 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3539 | dependencies: 3540 | extsprintf "1.0.2" 3541 | 3542 | vhost@~3.0.1: 3543 | version "3.0.2" 3544 | resolved "https://registry.yarnpkg.com/vhost/-/vhost-3.0.2.tgz#2fb1decd4c466aa88b0f9341af33dc1aff2478d5" 3545 | 3546 | vinyl@^0.5.0: 3547 | version "0.5.3" 3548 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 3549 | dependencies: 3550 | clone "^1.0.0" 3551 | clone-stats "^0.0.1" 3552 | replace-ext "0.0.1" 3553 | 3554 | walker@~1.0.5: 3555 | version "1.0.7" 3556 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3557 | dependencies: 3558 | makeerror "1.0.x" 3559 | 3560 | watch@~0.18.0: 3561 | version "0.18.0" 3562 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3563 | dependencies: 3564 | exec-sh "^0.2.0" 3565 | minimist "^1.2.0" 3566 | 3567 | whatwg-fetch@>=0.10.0, whatwg-fetch@^1.0.0: 3568 | version "1.1.1" 3569 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz#ac3c9d39f320c6dce5339969d054ef43dd333319" 3570 | 3571 | which-module@^2.0.0: 3572 | version "2.0.0" 3573 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3574 | 3575 | which@^1.2.12, which@^1.2.14: 3576 | version "1.3.0" 3577 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3578 | dependencies: 3579 | isexe "^2.0.0" 3580 | 3581 | which@^1.2.9: 3582 | version "1.2.14" 3583 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3584 | dependencies: 3585 | isexe "^2.0.0" 3586 | 3587 | wide-align@^1.1.0: 3588 | version "1.1.2" 3589 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3590 | dependencies: 3591 | string-width "^1.0.2" 3592 | 3593 | win-release@^1.0.0: 3594 | version "1.1.1" 3595 | resolved "https://registry.yarnpkg.com/win-release/-/win-release-1.1.1.tgz#5fa55e02be7ca934edfc12665632e849b72e5209" 3596 | dependencies: 3597 | semver "^5.0.1" 3598 | 3599 | wordwrap@^1.0.0: 3600 | version "1.0.0" 3601 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3602 | 3603 | wordwrap@~0.0.2: 3604 | version "0.0.3" 3605 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3606 | 3607 | worker-farm@^1.3.1: 3608 | version "1.3.1" 3609 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3610 | dependencies: 3611 | errno ">=0.1.1 <0.2.0-0" 3612 | xtend ">=4.0.0 <4.1.0-0" 3613 | 3614 | wrap-ansi@^2.0.0: 3615 | version "2.1.0" 3616 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3617 | dependencies: 3618 | string-width "^1.0.1" 3619 | strip-ansi "^3.0.1" 3620 | 3621 | wrappy@1: 3622 | version "1.0.2" 3623 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3624 | 3625 | write-file-atomic@^1.2.0: 3626 | version "1.3.1" 3627 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 3628 | dependencies: 3629 | graceful-fs "^4.1.11" 3630 | imurmurhash "^0.1.4" 3631 | slide "^1.1.5" 3632 | 3633 | ws@^1.1.0: 3634 | version "1.1.4" 3635 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.4.tgz#57f40d036832e5f5055662a397c4de76ed66bf61" 3636 | dependencies: 3637 | options ">=0.0.5" 3638 | ultron "1.0.x" 3639 | 3640 | ws@^2.0.3: 3641 | version "2.3.1" 3642 | resolved "https://registry.yarnpkg.com/ws/-/ws-2.3.1.tgz#6b94b3e447cb6a363f785eaf94af6359e8e81c80" 3643 | dependencies: 3644 | safe-buffer "~5.0.1" 3645 | ultron "~1.1.0" 3646 | 3647 | xcode@^0.9.1: 3648 | version "0.9.3" 3649 | resolved "https://registry.yarnpkg.com/xcode/-/xcode-0.9.3.tgz#910a89c16aee6cc0b42ca805a6d0b4cf87211cf3" 3650 | dependencies: 3651 | pegjs "^0.10.0" 3652 | simple-plist "^0.2.1" 3653 | uuid "3.0.1" 3654 | 3655 | xmlbuilder@4.0.0: 3656 | version "4.0.0" 3657 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.0.0.tgz#98b8f651ca30aa624036f127d11cc66dc7b907a3" 3658 | dependencies: 3659 | lodash "^3.5.0" 3660 | 3661 | xmlbuilder@8.2.2: 3662 | version "8.2.2" 3663 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" 3664 | 3665 | xmldoc@^0.4.0: 3666 | version "0.4.0" 3667 | resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-0.4.0.tgz#d257224be8393eaacbf837ef227fd8ec25b36888" 3668 | dependencies: 3669 | sax "~1.1.1" 3670 | 3671 | xmldom@0.1.x: 3672 | version "0.1.27" 3673 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 3674 | 3675 | xpipe@^1.0.5: 3676 | version "1.0.5" 3677 | resolved "https://registry.yarnpkg.com/xpipe/-/xpipe-1.0.5.tgz#8dd8bf45fc3f7f55f0e054b878f43a62614dafdf" 3678 | 3679 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.1: 3680 | version "4.0.1" 3681 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3682 | 3683 | y18n@^3.2.1: 3684 | version "3.2.1" 3685 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3686 | 3687 | yallist@^2.0.0: 3688 | version "2.1.2" 3689 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3690 | 3691 | yargs-parser@^7.0.0: 3692 | version "7.0.0" 3693 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3694 | dependencies: 3695 | camelcase "^4.1.0" 3696 | 3697 | yargs@^9.0.0: 3698 | version "9.0.1" 3699 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 3700 | dependencies: 3701 | camelcase "^4.1.0" 3702 | cliui "^3.2.0" 3703 | decamelize "^1.1.1" 3704 | get-caller-file "^1.0.1" 3705 | os-locale "^2.0.0" 3706 | read-pkg-up "^2.0.0" 3707 | require-directory "^2.1.1" 3708 | require-main-filename "^1.0.1" 3709 | set-blocking "^2.0.0" 3710 | string-width "^2.0.0" 3711 | which-module "^2.0.0" 3712 | y18n "^3.2.1" 3713 | yargs-parser "^7.0.0" 3714 | --------------------------------------------------------------------------------