├── .babelrc ├── .gitignore ├── CardStackDemo ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── __tests__ │ ├── index.android.js │ └── index.ios.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── cardstackdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── index.android.js ├── index.ios.js ├── ios │ ├── CardStackDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CardStackDemo.xcscheme │ ├── CardStackDemo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── CardStackDemoTests │ │ ├── CardStackDemoTests.m │ │ └── Info.plist ├── package.json ├── people.js ├── react-native-cardstack │ ├── card.js │ ├── cardstack.js │ ├── cardstack.test.js │ ├── index.js │ └── lib │ │ ├── calcHeight.js │ │ └── calcHeight.test.js └── yarn.lock ├── README.md ├── demo.gif ├── package.json ├── src ├── card.js ├── cardstack.js ├── cardstack.test.js ├── index.js └── lib │ ├── calcHeight.js │ └── calcHeight.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.log 3 | dist/ 4 | example/UpdateButtonDemo/dev 5 | .nyc_output/ 6 | -------------------------------------------------------------------------------- /CardStackDemo/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /CardStackDemo/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /CardStackDemo/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | module.system=haste 26 | 27 | experimental.strict_type_args=true 28 | 29 | munge_underscores=true 30 | 31 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 32 | 33 | suppress_type=$FlowIssue 34 | suppress_type=$FlowFixMe 35 | suppress_type=$FixMe 36 | 37 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-6]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 38 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-6]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 40 | 41 | unsafe.enable_getters_and_setters=true 42 | 43 | [version] 44 | ^0.36.0 45 | -------------------------------------------------------------------------------- /CardStackDemo/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /CardStackDemo/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | 38 | # BUCK 39 | buck-out/ 40 | \.buckd/ 41 | android/app/libs 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /CardStackDemo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CardStackDemo/__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /CardStackDemo/__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /CardStackDemo/android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.cardstackdemo', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.cardstackdemo', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /CardStackDemo/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"] 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.cardstackdemo" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile project(':react-native-vector-icons') 130 | compile fileTree(dir: "libs", include: ["*.jar"]) 131 | compile "com.android.support:appcompat-v7:23.0.1" 132 | compile "com.facebook.react:react-native:+" // From node_modules 133 | } 134 | 135 | // Run this once to be able to run the application with BUCK 136 | // puts all compile dependencies into folder libs for BUCK to use 137 | task copyDownloadableDepsToLibs(type: Copy) { 138 | from configurations.compile 139 | into 'libs' 140 | } 141 | -------------------------------------------------------------------------------- /CardStackDemo/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/java/com/cardstackdemo/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.cardstackdemo; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "CardStackDemo"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/java/com/cardstackdemo/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.cardstackdemo; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.ReactApplication; 7 | import com.oblador.vectoricons.VectorIconsPackage; 8 | import com.facebook.react.ReactInstanceManager; 9 | import com.facebook.react.ReactNativeHost; 10 | import com.facebook.react.ReactPackage; 11 | import com.facebook.react.shell.MainReactPackage; 12 | import com.facebook.soloader.SoLoader; 13 | 14 | import java.util.Arrays; 15 | import java.util.List; 16 | 17 | public class MainApplication extends Application implements ReactApplication { 18 | 19 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 20 | @Override 21 | protected boolean getUseDeveloperSupport() { 22 | return BuildConfig.DEBUG; 23 | } 24 | 25 | @Override 26 | protected List getPackages() { 27 | return Arrays.asList( 28 | new MainReactPackage(), 29 | new VectorIconsPackage() 30 | ); 31 | } 32 | }; 33 | 34 | @Override 35 | public ReactNativeHost getReactNativeHost() { 36 | return mReactNativeHost; 37 | } 38 | 39 | @Override 40 | public void onCreate() { 41 | super.onCreate(); 42 | SoLoader.init(this, /* native exopackage */ false); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CardStackDemo 3 | 4 | -------------------------------------------------------------------------------- /CardStackDemo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CardStackDemo/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /CardStackDemo/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /CardStackDemo/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/CardStackDemo/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CardStackDemo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 6 | -------------------------------------------------------------------------------- /CardStackDemo/android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /CardStackDemo/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 | -------------------------------------------------------------------------------- /CardStackDemo/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /CardStackDemo/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /CardStackDemo/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'CardStackDemo' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | 5 | include ':app' 6 | -------------------------------------------------------------------------------- /CardStackDemo/index.android.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | 15 | export default class CardStackDemo extends Component { 16 | render() { 17 | return ( 18 | 19 | 20 | Welcome to React Native! 21 | 22 | 23 | To get started, edit index.android.js 24 | 25 | 26 | Double tap R on your keyboard to reload,{'\n'} 27 | Shake or press menu button for dev menu 28 | 29 | 30 | ); 31 | } 32 | } 33 | 34 | const styles = StyleSheet.create({ 35 | container: { 36 | flex: 1, 37 | justifyContent: 'center', 38 | alignItems: 'center', 39 | backgroundColor: '#F5FCFF', 40 | }, 41 | welcome: { 42 | fontSize: 20, 43 | textAlign: 'center', 44 | margin: 10, 45 | }, 46 | instructions: { 47 | textAlign: 'center', 48 | color: '#333333', 49 | marginBottom: 5, 50 | }, 51 | }); 52 | 53 | AppRegistry.registerComponent('CardStackDemo', () => CardStackDemo); 54 | -------------------------------------------------------------------------------- /CardStackDemo/index.ios.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | AppRegistry, 4 | StyleSheet, 5 | Text, 6 | Image, 7 | TouchableOpacity, 8 | Dimensions, 9 | View, 10 | } from 'react-native'; 11 | import Ionicon from 'react-native-vector-icons/Ionicons'; 12 | 13 | import { CardStack, Card } from './react-native-cardstack'; 14 | import people from './people'; 15 | 16 | // Can use the Dimensions API to query for the width and height 17 | const { width } = Dimensions.get('window'); 18 | 19 | const ProfilePicture = ({ imgSrc, borderColor }) => ( 20 | 24 | ); 25 | 26 | const DetailsRow = ({ icon, title, summary }) => { 27 | return ( 28 | 29 | 30 | 35 | 36 | 37 | 38 | {title} 39 | 40 | 41 | {summary} 42 | 43 | 44 | 45 | ); 46 | }; 47 | 48 | const TeamMemberCard = (props) => ( 49 | 50 | 51 | 52 | 56 | 57 | 58 | {props.name} 59 | 60 | 66 | {props.title} 67 | 68 | 69 | 70 | 71 | 72 | 76 | 77 | 81 | 82 | 87 | 88 | 89 | ); 90 | 91 | const CardStackDemo = (props) => ( 92 | 93 | 94 | {' Example'} 95 | 96 | 102 | 103 | {people.map((person, i) => 104 | console.log('onPress called')} 107 | onLongPress={() => console.log('long press called')} 108 | backgroundColor={person.background}> 109 | 110 | 111 | )} 112 | 113 | 114 | 115 | ); 116 | 117 | const styles = StyleSheet.create({ 118 | container: { 119 | paddingTop: 40, 120 | flex: 1, 121 | justifyContent: 'space-between', 122 | }, 123 | exampleTitle: { 124 | fontSize: 28, 125 | fontFamily: 'Futura-Medium' 126 | }, 127 | cardHeader: { 128 | flexDirection: 'row', 129 | height: 100, 130 | justifyContent: 'space-between', 131 | alignItems: 'center', 132 | paddingTop: 10, 133 | paddingBottom: 10, 134 | paddingLeft: 20, 135 | paddingRight: 20, 136 | }, 137 | headerName: { 138 | margin: 0, 139 | fontWeight: '500', 140 | fontSize: 23, 141 | color: '#fff', 142 | textAlign: 'right' 143 | }, 144 | headerTitle: { 145 | marginTop: 4, 146 | fontWeight: '300', 147 | fontSize: 16, 148 | color: '#fff', 149 | opacity: 0.8, 150 | }, 151 | img: { 152 | width: 60, 153 | height: 60, 154 | borderRadius: 60 /2, 155 | borderWidth: 3, 156 | }, 157 | detailsRow: { 158 | flexDirection: 'row', 159 | paddingLeft: 20, 160 | paddingRight: 20, 161 | marginBottom: 20, 162 | }, 163 | detailsIcon: { 164 | alignItems: 'center', 165 | width: 25, 166 | height: 35, 167 | marginRight: 20, 168 | alignSelf: 'flex-start', 169 | borderBottomWidth: 1, 170 | borderColor: 'rgba(255, 255, 255, 0.8)', 171 | }, 172 | detailsTitle: { 173 | fontWeight: '500', 174 | fontSize: 19, 175 | color: '#fff', 176 | margin: 0, 177 | fontStyle: 'italic', 178 | }, 179 | detailsSummary: { 180 | fontWeight: '300', 181 | color: '#fff', 182 | lineHeight: 22, 183 | width: 300, 184 | }, 185 | }); 186 | 187 | AppRegistry.registerComponent('CardStackDemo', () => CardStackDemo); 188 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* CardStackDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* CardStackDemoTests.m */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2B369F9AC1CE46159B6E9F25 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 473B40F4182941FF893F917C /* FontAwesome.ttf */; }; 26 | 407F75C3EB804450926A272C /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3EAF6BBFED4A41078D12DC26 /* Octicons.ttf */; }; 27 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 28 | 7A29A42A42D04167AEF0A5C8 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30D40475DAEA407CAEF65349 /* MaterialCommunityIcons.ttf */; }; 29 | 7F587FD329F54EAD8A2D16DA /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 770DE8BA8D08410DA3BA4649 /* Zocial.ttf */; }; 30 | 800C1D4522E64C23A643F691 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D525AC0C53C049EB8821C34E /* Foundation.ttf */; }; 31 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 32 | A132E2F27C5B485996079E6B /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6BCD3B3693E5492D8EC31E43 /* SimpleLineIcons.ttf */; }; 33 | A73D75C88DF64903997C5F2B /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 038E737B25994D26AB25AFA3 /* Entypo.ttf */; }; 34 | ACB2423890C0469A872AED16 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DF50C829EF954261A7338762 /* MaterialIcons.ttf */; }; 35 | B5204E5D126A40C3B10BB1B6 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C06A38F8887944C1A3D80A1E /* Ionicons.ttf */; }; 36 | C4C98701BEA5422AAC41971F /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8573EA270AB64CFB909D3077 /* libRNVectorIcons.a */; }; 37 | D4DE2CCB6FF54587A41E996E /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5F8946EF4E8D40888116957C /* EvilIcons.ttf */; }; 38 | /* End PBXBuildFile section */ 39 | 40 | /* Begin PBXContainerItemProxy section */ 41 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 42 | isa = PBXContainerItemProxy; 43 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 44 | proxyType = 2; 45 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 46 | remoteInfo = RCTActionSheet; 47 | }; 48 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 49 | isa = PBXContainerItemProxy; 50 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 51 | proxyType = 2; 52 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 53 | remoteInfo = RCTGeolocation; 54 | }; 55 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 56 | isa = PBXContainerItemProxy; 57 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 58 | proxyType = 2; 59 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 60 | remoteInfo = RCTImage; 61 | }; 62 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 63 | isa = PBXContainerItemProxy; 64 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 65 | proxyType = 2; 66 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 67 | remoteInfo = RCTNetwork; 68 | }; 69 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 70 | isa = PBXContainerItemProxy; 71 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 72 | proxyType = 2; 73 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 74 | remoteInfo = RCTVibration; 75 | }; 76 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 77 | isa = PBXContainerItemProxy; 78 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 79 | proxyType = 1; 80 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 81 | remoteInfo = CardStackDemo; 82 | }; 83 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 84 | isa = PBXContainerItemProxy; 85 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 86 | proxyType = 2; 87 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 88 | remoteInfo = RCTSettings; 89 | }; 90 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 91 | isa = PBXContainerItemProxy; 92 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 93 | proxyType = 2; 94 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 95 | remoteInfo = RCTWebSocket; 96 | }; 97 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 98 | isa = PBXContainerItemProxy; 99 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 100 | proxyType = 2; 101 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 102 | remoteInfo = React; 103 | }; 104 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 105 | isa = PBXContainerItemProxy; 106 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 107 | proxyType = 2; 108 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 109 | remoteInfo = "RCTImage-tvOS"; 110 | }; 111 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 112 | isa = PBXContainerItemProxy; 113 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 114 | proxyType = 2; 115 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 116 | remoteInfo = "RCTLinking-tvOS"; 117 | }; 118 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 119 | isa = PBXContainerItemProxy; 120 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 121 | proxyType = 2; 122 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 123 | remoteInfo = "RCTNetwork-tvOS"; 124 | }; 125 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 126 | isa = PBXContainerItemProxy; 127 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 128 | proxyType = 2; 129 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 130 | remoteInfo = "RCTSettings-tvOS"; 131 | }; 132 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 133 | isa = PBXContainerItemProxy; 134 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 135 | proxyType = 2; 136 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 137 | remoteInfo = "RCTText-tvOS"; 138 | }; 139 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 140 | isa = PBXContainerItemProxy; 141 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 142 | proxyType = 2; 143 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 144 | remoteInfo = "RCTWebSocket-tvOS"; 145 | }; 146 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 147 | isa = PBXContainerItemProxy; 148 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 149 | proxyType = 2; 150 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 151 | remoteInfo = "React-tvOS"; 152 | }; 153 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 154 | isa = PBXContainerItemProxy; 155 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 156 | proxyType = 2; 157 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 158 | remoteInfo = yoga; 159 | }; 160 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 161 | isa = PBXContainerItemProxy; 162 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 163 | proxyType = 2; 164 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 165 | remoteInfo = "yoga-tvOS"; 166 | }; 167 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 168 | isa = PBXContainerItemProxy; 169 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 170 | proxyType = 2; 171 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 172 | remoteInfo = cxxreact; 173 | }; 174 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 175 | isa = PBXContainerItemProxy; 176 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 177 | proxyType = 2; 178 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 179 | remoteInfo = "cxxreact-tvOS"; 180 | }; 181 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 182 | isa = PBXContainerItemProxy; 183 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 184 | proxyType = 2; 185 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 186 | remoteInfo = jschelpers; 187 | }; 188 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 189 | isa = PBXContainerItemProxy; 190 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 191 | proxyType = 2; 192 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 193 | remoteInfo = "jschelpers-tvOS"; 194 | }; 195 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 196 | isa = PBXContainerItemProxy; 197 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 198 | proxyType = 2; 199 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 200 | remoteInfo = RCTAnimation; 201 | }; 202 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 203 | isa = PBXContainerItemProxy; 204 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 205 | proxyType = 2; 206 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 207 | remoteInfo = "RCTAnimation-tvOS"; 208 | }; 209 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 210 | isa = PBXContainerItemProxy; 211 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 212 | proxyType = 2; 213 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 214 | remoteInfo = RCTLinking; 215 | }; 216 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 217 | isa = PBXContainerItemProxy; 218 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 219 | proxyType = 2; 220 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 221 | remoteInfo = RCTText; 222 | }; 223 | FB91FDF41E2B6065004C1998 /* PBXContainerItemProxy */ = { 224 | isa = PBXContainerItemProxy; 225 | containerPortal = F59634A8AC4C4056945DC873 /* RNVectorIcons.xcodeproj */; 226 | proxyType = 2; 227 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 228 | remoteInfo = RNVectorIcons; 229 | }; 230 | /* End PBXContainerItemProxy section */ 231 | 232 | /* Begin PBXFileReference section */ 233 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 234 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 235 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 236 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 237 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 238 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 239 | 00E356EE1AD99517003FC87E /* CardStackDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CardStackDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 240 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 241 | 00E356F21AD99517003FC87E /* CardStackDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CardStackDemoTests.m; sourceTree = ""; }; 242 | 038E737B25994D26AB25AFA3 /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 243 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 244 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 245 | 13B07F961A680F5B00A75B9A /* CardStackDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CardStackDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 246 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = CardStackDemo/AppDelegate.h; sourceTree = ""; }; 247 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = CardStackDemo/AppDelegate.m; sourceTree = ""; }; 248 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 249 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = CardStackDemo/Images.xcassets; sourceTree = ""; }; 250 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = CardStackDemo/Info.plist; sourceTree = ""; }; 251 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = CardStackDemo/main.m; sourceTree = ""; }; 252 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 253 | 30D40475DAEA407CAEF65349 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 254 | 3EAF6BBFED4A41078D12DC26 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 255 | 473B40F4182941FF893F917C /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 256 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 257 | 5F8946EF4E8D40888116957C /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 258 | 6BCD3B3693E5492D8EC31E43 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 259 | 770DE8BA8D08410DA3BA4649 /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 260 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 261 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 262 | 8573EA270AB64CFB909D3077 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 263 | C06A38F8887944C1A3D80A1E /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 264 | D525AC0C53C049EB8821C34E /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 265 | DF50C829EF954261A7338762 /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 266 | F59634A8AC4C4056945DC873 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 267 | /* End PBXFileReference section */ 268 | 269 | /* Begin PBXFrameworksBuildPhase section */ 270 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 271 | isa = PBXFrameworksBuildPhase; 272 | buildActionMask = 2147483647; 273 | files = ( 274 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 275 | ); 276 | runOnlyForDeploymentPostprocessing = 0; 277 | }; 278 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 279 | isa = PBXFrameworksBuildPhase; 280 | buildActionMask = 2147483647; 281 | files = ( 282 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 283 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 284 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 285 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 286 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 287 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 288 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 289 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 290 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 291 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 292 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 293 | C4C98701BEA5422AAC41971F /* libRNVectorIcons.a in Frameworks */, 294 | ); 295 | runOnlyForDeploymentPostprocessing = 0; 296 | }; 297 | /* End PBXFrameworksBuildPhase section */ 298 | 299 | /* Begin PBXGroup section */ 300 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 301 | isa = PBXGroup; 302 | children = ( 303 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 304 | ); 305 | name = Products; 306 | sourceTree = ""; 307 | }; 308 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 309 | isa = PBXGroup; 310 | children = ( 311 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 312 | ); 313 | name = Products; 314 | sourceTree = ""; 315 | }; 316 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 317 | isa = PBXGroup; 318 | children = ( 319 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 320 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 321 | ); 322 | name = Products; 323 | sourceTree = ""; 324 | }; 325 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 326 | isa = PBXGroup; 327 | children = ( 328 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 329 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 330 | ); 331 | name = Products; 332 | sourceTree = ""; 333 | }; 334 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 335 | isa = PBXGroup; 336 | children = ( 337 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 338 | ); 339 | name = Products; 340 | sourceTree = ""; 341 | }; 342 | 00E356EF1AD99517003FC87E /* CardStackDemoTests */ = { 343 | isa = PBXGroup; 344 | children = ( 345 | 00E356F21AD99517003FC87E /* CardStackDemoTests.m */, 346 | 00E356F01AD99517003FC87E /* Supporting Files */, 347 | ); 348 | path = CardStackDemoTests; 349 | sourceTree = ""; 350 | }; 351 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 352 | isa = PBXGroup; 353 | children = ( 354 | 00E356F11AD99517003FC87E /* Info.plist */, 355 | ); 356 | name = "Supporting Files"; 357 | sourceTree = ""; 358 | }; 359 | 010F386A4805413FB8BC553A /* Resources */ = { 360 | isa = PBXGroup; 361 | children = ( 362 | 038E737B25994D26AB25AFA3 /* Entypo.ttf */, 363 | 5F8946EF4E8D40888116957C /* EvilIcons.ttf */, 364 | 473B40F4182941FF893F917C /* FontAwesome.ttf */, 365 | D525AC0C53C049EB8821C34E /* Foundation.ttf */, 366 | C06A38F8887944C1A3D80A1E /* Ionicons.ttf */, 367 | 30D40475DAEA407CAEF65349 /* MaterialCommunityIcons.ttf */, 368 | DF50C829EF954261A7338762 /* MaterialIcons.ttf */, 369 | 3EAF6BBFED4A41078D12DC26 /* Octicons.ttf */, 370 | 6BCD3B3693E5492D8EC31E43 /* SimpleLineIcons.ttf */, 371 | 770DE8BA8D08410DA3BA4649 /* Zocial.ttf */, 372 | ); 373 | name = Resources; 374 | sourceTree = ""; 375 | }; 376 | 139105B71AF99BAD00B5F7CC /* Products */ = { 377 | isa = PBXGroup; 378 | children = ( 379 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 380 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 381 | ); 382 | name = Products; 383 | sourceTree = ""; 384 | }; 385 | 139FDEE71B06529A00C62182 /* Products */ = { 386 | isa = PBXGroup; 387 | children = ( 388 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 389 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 390 | ); 391 | name = Products; 392 | sourceTree = ""; 393 | }; 394 | 13B07FAE1A68108700A75B9A /* CardStackDemo */ = { 395 | isa = PBXGroup; 396 | children = ( 397 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 398 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 399 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 400 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 401 | 13B07FB61A68108700A75B9A /* Info.plist */, 402 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 403 | 13B07FB71A68108700A75B9A /* main.m */, 404 | ); 405 | name = CardStackDemo; 406 | sourceTree = ""; 407 | }; 408 | 146834001AC3E56700842450 /* Products */ = { 409 | isa = PBXGroup; 410 | children = ( 411 | 146834041AC3E56700842450 /* libReact.a */, 412 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 413 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 414 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 415 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 416 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 417 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 418 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 419 | ); 420 | name = Products; 421 | sourceTree = ""; 422 | }; 423 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 424 | isa = PBXGroup; 425 | children = ( 426 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 427 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 428 | ); 429 | name = Products; 430 | sourceTree = ""; 431 | }; 432 | 78C398B11ACF4ADC00677621 /* Products */ = { 433 | isa = PBXGroup; 434 | children = ( 435 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 436 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 437 | ); 438 | name = Products; 439 | sourceTree = ""; 440 | }; 441 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 442 | isa = PBXGroup; 443 | children = ( 444 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 445 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 446 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 447 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 448 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 449 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 450 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 451 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 452 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 453 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 454 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 455 | F59634A8AC4C4056945DC873 /* RNVectorIcons.xcodeproj */, 456 | ); 457 | name = Libraries; 458 | sourceTree = ""; 459 | }; 460 | 832341B11AAA6A8300B99B32 /* Products */ = { 461 | isa = PBXGroup; 462 | children = ( 463 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 464 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 465 | ); 466 | name = Products; 467 | sourceTree = ""; 468 | }; 469 | 83CBB9F61A601CBA00E9B192 = { 470 | isa = PBXGroup; 471 | children = ( 472 | 13B07FAE1A68108700A75B9A /* CardStackDemo */, 473 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 474 | 00E356EF1AD99517003FC87E /* CardStackDemoTests */, 475 | 83CBBA001A601CBA00E9B192 /* Products */, 476 | 010F386A4805413FB8BC553A /* Resources */, 477 | ); 478 | indentWidth = 2; 479 | sourceTree = ""; 480 | tabWidth = 2; 481 | }; 482 | 83CBBA001A601CBA00E9B192 /* Products */ = { 483 | isa = PBXGroup; 484 | children = ( 485 | 13B07F961A680F5B00A75B9A /* CardStackDemo.app */, 486 | 00E356EE1AD99517003FC87E /* CardStackDemoTests.xctest */, 487 | ); 488 | name = Products; 489 | sourceTree = ""; 490 | }; 491 | FB91FDD81E2B6065004C1998 /* Products */ = { 492 | isa = PBXGroup; 493 | children = ( 494 | FB91FDF51E2B6065004C1998 /* libRNVectorIcons.a */, 495 | ); 496 | name = Products; 497 | sourceTree = ""; 498 | }; 499 | /* End PBXGroup section */ 500 | 501 | /* Begin PBXNativeTarget section */ 502 | 00E356ED1AD99517003FC87E /* CardStackDemoTests */ = { 503 | isa = PBXNativeTarget; 504 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "CardStackDemoTests" */; 505 | buildPhases = ( 506 | 00E356EA1AD99517003FC87E /* Sources */, 507 | 00E356EB1AD99517003FC87E /* Frameworks */, 508 | 00E356EC1AD99517003FC87E /* Resources */, 509 | ); 510 | buildRules = ( 511 | ); 512 | dependencies = ( 513 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 514 | ); 515 | name = CardStackDemoTests; 516 | productName = CardStackDemoTests; 517 | productReference = 00E356EE1AD99517003FC87E /* CardStackDemoTests.xctest */; 518 | productType = "com.apple.product-type.bundle.unit-test"; 519 | }; 520 | 13B07F861A680F5B00A75B9A /* CardStackDemo */ = { 521 | isa = PBXNativeTarget; 522 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "CardStackDemo" */; 523 | buildPhases = ( 524 | 13B07F871A680F5B00A75B9A /* Sources */, 525 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 526 | 13B07F8E1A680F5B00A75B9A /* Resources */, 527 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 528 | ); 529 | buildRules = ( 530 | ); 531 | dependencies = ( 532 | ); 533 | name = CardStackDemo; 534 | productName = "Hello World"; 535 | productReference = 13B07F961A680F5B00A75B9A /* CardStackDemo.app */; 536 | productType = "com.apple.product-type.application"; 537 | }; 538 | /* End PBXNativeTarget section */ 539 | 540 | /* Begin PBXProject section */ 541 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 542 | isa = PBXProject; 543 | attributes = { 544 | LastUpgradeCheck = 610; 545 | ORGANIZATIONNAME = Facebook; 546 | TargetAttributes = { 547 | 00E356ED1AD99517003FC87E = { 548 | CreatedOnToolsVersion = 6.2; 549 | TestTargetID = 13B07F861A680F5B00A75B9A; 550 | }; 551 | }; 552 | }; 553 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "CardStackDemo" */; 554 | compatibilityVersion = "Xcode 3.2"; 555 | developmentRegion = English; 556 | hasScannedForEncodings = 0; 557 | knownRegions = ( 558 | en, 559 | Base, 560 | ); 561 | mainGroup = 83CBB9F61A601CBA00E9B192; 562 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 563 | projectDirPath = ""; 564 | projectReferences = ( 565 | { 566 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 567 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 568 | }, 569 | { 570 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 571 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 572 | }, 573 | { 574 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 575 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 576 | }, 577 | { 578 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 579 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 580 | }, 581 | { 582 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 583 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 584 | }, 585 | { 586 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 587 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 588 | }, 589 | { 590 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 591 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 592 | }, 593 | { 594 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 595 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 596 | }, 597 | { 598 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 599 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 600 | }, 601 | { 602 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 603 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 604 | }, 605 | { 606 | ProductGroup = 146834001AC3E56700842450 /* Products */; 607 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 608 | }, 609 | { 610 | ProductGroup = FB91FDD81E2B6065004C1998 /* Products */; 611 | ProjectRef = F59634A8AC4C4056945DC873 /* RNVectorIcons.xcodeproj */; 612 | }, 613 | ); 614 | projectRoot = ""; 615 | targets = ( 616 | 13B07F861A680F5B00A75B9A /* CardStackDemo */, 617 | 00E356ED1AD99517003FC87E /* CardStackDemoTests */, 618 | ); 619 | }; 620 | /* End PBXProject section */ 621 | 622 | /* Begin PBXReferenceProxy section */ 623 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 624 | isa = PBXReferenceProxy; 625 | fileType = archive.ar; 626 | path = libRCTActionSheet.a; 627 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 628 | sourceTree = BUILT_PRODUCTS_DIR; 629 | }; 630 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 631 | isa = PBXReferenceProxy; 632 | fileType = archive.ar; 633 | path = libRCTGeolocation.a; 634 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 635 | sourceTree = BUILT_PRODUCTS_DIR; 636 | }; 637 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 638 | isa = PBXReferenceProxy; 639 | fileType = archive.ar; 640 | path = libRCTImage.a; 641 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 642 | sourceTree = BUILT_PRODUCTS_DIR; 643 | }; 644 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 645 | isa = PBXReferenceProxy; 646 | fileType = archive.ar; 647 | path = libRCTNetwork.a; 648 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 649 | sourceTree = BUILT_PRODUCTS_DIR; 650 | }; 651 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 652 | isa = PBXReferenceProxy; 653 | fileType = archive.ar; 654 | path = libRCTVibration.a; 655 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 656 | sourceTree = BUILT_PRODUCTS_DIR; 657 | }; 658 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 659 | isa = PBXReferenceProxy; 660 | fileType = archive.ar; 661 | path = libRCTSettings.a; 662 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 663 | sourceTree = BUILT_PRODUCTS_DIR; 664 | }; 665 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 666 | isa = PBXReferenceProxy; 667 | fileType = archive.ar; 668 | path = libRCTWebSocket.a; 669 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 670 | sourceTree = BUILT_PRODUCTS_DIR; 671 | }; 672 | 146834041AC3E56700842450 /* libReact.a */ = { 673 | isa = PBXReferenceProxy; 674 | fileType = archive.ar; 675 | path = libReact.a; 676 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 677 | sourceTree = BUILT_PRODUCTS_DIR; 678 | }; 679 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 680 | isa = PBXReferenceProxy; 681 | fileType = archive.ar; 682 | path = "libRCTImage-tvOS.a"; 683 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 684 | sourceTree = BUILT_PRODUCTS_DIR; 685 | }; 686 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 687 | isa = PBXReferenceProxy; 688 | fileType = archive.ar; 689 | path = "libRCTLinking-tvOS.a"; 690 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 691 | sourceTree = BUILT_PRODUCTS_DIR; 692 | }; 693 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 694 | isa = PBXReferenceProxy; 695 | fileType = archive.ar; 696 | path = "libRCTNetwork-tvOS.a"; 697 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 698 | sourceTree = BUILT_PRODUCTS_DIR; 699 | }; 700 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 701 | isa = PBXReferenceProxy; 702 | fileType = archive.ar; 703 | path = "libRCTSettings-tvOS.a"; 704 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 705 | sourceTree = BUILT_PRODUCTS_DIR; 706 | }; 707 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 708 | isa = PBXReferenceProxy; 709 | fileType = archive.ar; 710 | path = "libRCTText-tvOS.a"; 711 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 712 | sourceTree = BUILT_PRODUCTS_DIR; 713 | }; 714 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 715 | isa = PBXReferenceProxy; 716 | fileType = archive.ar; 717 | path = "libRCTWebSocket-tvOS.a"; 718 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 719 | sourceTree = BUILT_PRODUCTS_DIR; 720 | }; 721 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 722 | isa = PBXReferenceProxy; 723 | fileType = archive.ar; 724 | path = libReact.a; 725 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 726 | sourceTree = BUILT_PRODUCTS_DIR; 727 | }; 728 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 729 | isa = PBXReferenceProxy; 730 | fileType = archive.ar; 731 | path = libyoga.a; 732 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 733 | sourceTree = BUILT_PRODUCTS_DIR; 734 | }; 735 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 736 | isa = PBXReferenceProxy; 737 | fileType = archive.ar; 738 | path = libyoga.a; 739 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 740 | sourceTree = BUILT_PRODUCTS_DIR; 741 | }; 742 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 743 | isa = PBXReferenceProxy; 744 | fileType = archive.ar; 745 | path = libcxxreact.a; 746 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 747 | sourceTree = BUILT_PRODUCTS_DIR; 748 | }; 749 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 750 | isa = PBXReferenceProxy; 751 | fileType = archive.ar; 752 | path = libcxxreact.a; 753 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 754 | sourceTree = BUILT_PRODUCTS_DIR; 755 | }; 756 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 757 | isa = PBXReferenceProxy; 758 | fileType = archive.ar; 759 | path = libjschelpers.a; 760 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 761 | sourceTree = BUILT_PRODUCTS_DIR; 762 | }; 763 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 764 | isa = PBXReferenceProxy; 765 | fileType = archive.ar; 766 | path = libjschelpers.a; 767 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 768 | sourceTree = BUILT_PRODUCTS_DIR; 769 | }; 770 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 771 | isa = PBXReferenceProxy; 772 | fileType = archive.ar; 773 | path = libRCTAnimation.a; 774 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 775 | sourceTree = BUILT_PRODUCTS_DIR; 776 | }; 777 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 778 | isa = PBXReferenceProxy; 779 | fileType = archive.ar; 780 | path = "libRCTAnimation-tvOS.a"; 781 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 782 | sourceTree = BUILT_PRODUCTS_DIR; 783 | }; 784 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 785 | isa = PBXReferenceProxy; 786 | fileType = archive.ar; 787 | path = libRCTLinking.a; 788 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 789 | sourceTree = BUILT_PRODUCTS_DIR; 790 | }; 791 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 792 | isa = PBXReferenceProxy; 793 | fileType = archive.ar; 794 | path = libRCTText.a; 795 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 796 | sourceTree = BUILT_PRODUCTS_DIR; 797 | }; 798 | FB91FDF51E2B6065004C1998 /* libRNVectorIcons.a */ = { 799 | isa = PBXReferenceProxy; 800 | fileType = archive.ar; 801 | path = libRNVectorIcons.a; 802 | remoteRef = FB91FDF41E2B6065004C1998 /* PBXContainerItemProxy */; 803 | sourceTree = BUILT_PRODUCTS_DIR; 804 | }; 805 | /* End PBXReferenceProxy section */ 806 | 807 | /* Begin PBXResourcesBuildPhase section */ 808 | 00E356EC1AD99517003FC87E /* Resources */ = { 809 | isa = PBXResourcesBuildPhase; 810 | buildActionMask = 2147483647; 811 | files = ( 812 | ); 813 | runOnlyForDeploymentPostprocessing = 0; 814 | }; 815 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 816 | isa = PBXResourcesBuildPhase; 817 | buildActionMask = 2147483647; 818 | files = ( 819 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 820 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 821 | A73D75C88DF64903997C5F2B /* Entypo.ttf in Resources */, 822 | D4DE2CCB6FF54587A41E996E /* EvilIcons.ttf in Resources */, 823 | 2B369F9AC1CE46159B6E9F25 /* FontAwesome.ttf in Resources */, 824 | 800C1D4522E64C23A643F691 /* Foundation.ttf in Resources */, 825 | B5204E5D126A40C3B10BB1B6 /* Ionicons.ttf in Resources */, 826 | 7A29A42A42D04167AEF0A5C8 /* MaterialCommunityIcons.ttf in Resources */, 827 | ACB2423890C0469A872AED16 /* MaterialIcons.ttf in Resources */, 828 | 407F75C3EB804450926A272C /* Octicons.ttf in Resources */, 829 | A132E2F27C5B485996079E6B /* SimpleLineIcons.ttf in Resources */, 830 | 7F587FD329F54EAD8A2D16DA /* Zocial.ttf in Resources */, 831 | ); 832 | runOnlyForDeploymentPostprocessing = 0; 833 | }; 834 | /* End PBXResourcesBuildPhase section */ 835 | 836 | /* Begin PBXShellScriptBuildPhase section */ 837 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 838 | isa = PBXShellScriptBuildPhase; 839 | buildActionMask = 2147483647; 840 | files = ( 841 | ); 842 | inputPaths = ( 843 | ); 844 | name = "Bundle React Native code and images"; 845 | outputPaths = ( 846 | ); 847 | runOnlyForDeploymentPostprocessing = 0; 848 | shellPath = /bin/sh; 849 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 850 | }; 851 | /* End PBXShellScriptBuildPhase section */ 852 | 853 | /* Begin PBXSourcesBuildPhase section */ 854 | 00E356EA1AD99517003FC87E /* Sources */ = { 855 | isa = PBXSourcesBuildPhase; 856 | buildActionMask = 2147483647; 857 | files = ( 858 | 00E356F31AD99517003FC87E /* CardStackDemoTests.m in Sources */, 859 | ); 860 | runOnlyForDeploymentPostprocessing = 0; 861 | }; 862 | 13B07F871A680F5B00A75B9A /* Sources */ = { 863 | isa = PBXSourcesBuildPhase; 864 | buildActionMask = 2147483647; 865 | files = ( 866 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 867 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 868 | ); 869 | runOnlyForDeploymentPostprocessing = 0; 870 | }; 871 | /* End PBXSourcesBuildPhase section */ 872 | 873 | /* Begin PBXTargetDependency section */ 874 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 875 | isa = PBXTargetDependency; 876 | target = 13B07F861A680F5B00A75B9A /* CardStackDemo */; 877 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 878 | }; 879 | /* End PBXTargetDependency section */ 880 | 881 | /* Begin PBXVariantGroup section */ 882 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 883 | isa = PBXVariantGroup; 884 | children = ( 885 | 13B07FB21A68108700A75B9A /* Base */, 886 | ); 887 | name = LaunchScreen.xib; 888 | path = CardStackDemo; 889 | sourceTree = ""; 890 | }; 891 | /* End PBXVariantGroup section */ 892 | 893 | /* Begin XCBuildConfiguration section */ 894 | 00E356F61AD99517003FC87E /* Debug */ = { 895 | isa = XCBuildConfiguration; 896 | buildSettings = { 897 | BUNDLE_LOADER = "$(TEST_HOST)"; 898 | GCC_PREPROCESSOR_DEFINITIONS = ( 899 | "DEBUG=1", 900 | "$(inherited)", 901 | ); 902 | INFOPLIST_FILE = CardStackDemoTests/Info.plist; 903 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 904 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 905 | LIBRARY_SEARCH_PATHS = ( 906 | "$(inherited)", 907 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 908 | ); 909 | PRODUCT_NAME = "$(TARGET_NAME)"; 910 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CardStackDemo.app/CardStackDemo"; 911 | }; 912 | name = Debug; 913 | }; 914 | 00E356F71AD99517003FC87E /* Release */ = { 915 | isa = XCBuildConfiguration; 916 | buildSettings = { 917 | BUNDLE_LOADER = "$(TEST_HOST)"; 918 | COPY_PHASE_STRIP = NO; 919 | INFOPLIST_FILE = CardStackDemoTests/Info.plist; 920 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 921 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 922 | LIBRARY_SEARCH_PATHS = ( 923 | "$(inherited)", 924 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 925 | ); 926 | PRODUCT_NAME = "$(TARGET_NAME)"; 927 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CardStackDemo.app/CardStackDemo"; 928 | }; 929 | name = Release; 930 | }; 931 | 13B07F941A680F5B00A75B9A /* Debug */ = { 932 | isa = XCBuildConfiguration; 933 | buildSettings = { 934 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 935 | CURRENT_PROJECT_VERSION = 1; 936 | DEAD_CODE_STRIPPING = NO; 937 | INFOPLIST_FILE = CardStackDemo/Info.plist; 938 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 939 | OTHER_LDFLAGS = ( 940 | "$(inherited)", 941 | "-ObjC", 942 | "-lc++", 943 | ); 944 | PRODUCT_NAME = CardStackDemo; 945 | VERSIONING_SYSTEM = "apple-generic"; 946 | }; 947 | name = Debug; 948 | }; 949 | 13B07F951A680F5B00A75B9A /* Release */ = { 950 | isa = XCBuildConfiguration; 951 | buildSettings = { 952 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 953 | CURRENT_PROJECT_VERSION = 1; 954 | INFOPLIST_FILE = CardStackDemo/Info.plist; 955 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 956 | OTHER_LDFLAGS = ( 957 | "$(inherited)", 958 | "-ObjC", 959 | "-lc++", 960 | ); 961 | PRODUCT_NAME = CardStackDemo; 962 | VERSIONING_SYSTEM = "apple-generic"; 963 | }; 964 | name = Release; 965 | }; 966 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 967 | isa = XCBuildConfiguration; 968 | buildSettings = { 969 | ALWAYS_SEARCH_USER_PATHS = NO; 970 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 971 | CLANG_CXX_LIBRARY = "libc++"; 972 | CLANG_ENABLE_MODULES = YES; 973 | CLANG_ENABLE_OBJC_ARC = YES; 974 | CLANG_WARN_BOOL_CONVERSION = YES; 975 | CLANG_WARN_CONSTANT_CONVERSION = YES; 976 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 977 | CLANG_WARN_EMPTY_BODY = YES; 978 | CLANG_WARN_ENUM_CONVERSION = YES; 979 | CLANG_WARN_INT_CONVERSION = YES; 980 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 981 | CLANG_WARN_UNREACHABLE_CODE = YES; 982 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 983 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 984 | COPY_PHASE_STRIP = NO; 985 | ENABLE_STRICT_OBJC_MSGSEND = YES; 986 | GCC_C_LANGUAGE_STANDARD = gnu99; 987 | GCC_DYNAMIC_NO_PIC = NO; 988 | GCC_OPTIMIZATION_LEVEL = 0; 989 | GCC_PREPROCESSOR_DEFINITIONS = ( 990 | "DEBUG=1", 991 | "$(inherited)", 992 | ); 993 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 994 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 995 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 996 | GCC_WARN_UNDECLARED_SELECTOR = YES; 997 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 998 | GCC_WARN_UNUSED_FUNCTION = YES; 999 | GCC_WARN_UNUSED_VARIABLE = YES; 1000 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1001 | MTL_ENABLE_DEBUG_INFO = YES; 1002 | ONLY_ACTIVE_ARCH = YES; 1003 | SDKROOT = iphoneos; 1004 | }; 1005 | name = Debug; 1006 | }; 1007 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1008 | isa = XCBuildConfiguration; 1009 | buildSettings = { 1010 | ALWAYS_SEARCH_USER_PATHS = NO; 1011 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1012 | CLANG_CXX_LIBRARY = "libc++"; 1013 | CLANG_ENABLE_MODULES = YES; 1014 | CLANG_ENABLE_OBJC_ARC = YES; 1015 | CLANG_WARN_BOOL_CONVERSION = YES; 1016 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1017 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1018 | CLANG_WARN_EMPTY_BODY = YES; 1019 | CLANG_WARN_ENUM_CONVERSION = YES; 1020 | CLANG_WARN_INT_CONVERSION = YES; 1021 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1022 | CLANG_WARN_UNREACHABLE_CODE = YES; 1023 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1024 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1025 | COPY_PHASE_STRIP = YES; 1026 | ENABLE_NS_ASSERTIONS = NO; 1027 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1028 | GCC_C_LANGUAGE_STANDARD = gnu99; 1029 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1030 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1031 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1032 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1033 | GCC_WARN_UNUSED_FUNCTION = YES; 1034 | GCC_WARN_UNUSED_VARIABLE = YES; 1035 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1036 | MTL_ENABLE_DEBUG_INFO = NO; 1037 | SDKROOT = iphoneos; 1038 | VALIDATE_PRODUCT = YES; 1039 | }; 1040 | name = Release; 1041 | }; 1042 | /* End XCBuildConfiguration section */ 1043 | 1044 | /* Begin XCConfigurationList section */ 1045 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "CardStackDemoTests" */ = { 1046 | isa = XCConfigurationList; 1047 | buildConfigurations = ( 1048 | 00E356F61AD99517003FC87E /* Debug */, 1049 | 00E356F71AD99517003FC87E /* Release */, 1050 | ); 1051 | defaultConfigurationIsVisible = 0; 1052 | defaultConfigurationName = Release; 1053 | }; 1054 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "CardStackDemo" */ = { 1055 | isa = XCConfigurationList; 1056 | buildConfigurations = ( 1057 | 13B07F941A680F5B00A75B9A /* Debug */, 1058 | 13B07F951A680F5B00A75B9A /* Release */, 1059 | ); 1060 | defaultConfigurationIsVisible = 0; 1061 | defaultConfigurationName = Release; 1062 | }; 1063 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "CardStackDemo" */ = { 1064 | isa = XCConfigurationList; 1065 | buildConfigurations = ( 1066 | 83CBBA201A601CBA00E9B192 /* Debug */, 1067 | 83CBBA211A601CBA00E9B192 /* Release */, 1068 | ); 1069 | defaultConfigurationIsVisible = 0; 1070 | defaultConfigurationName = Release; 1071 | }; 1072 | /* End XCConfigurationList section */ 1073 | }; 1074 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1075 | } 1076 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemo.xcodeproj/xcshareddata/xcschemes/CardStackDemo.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemo/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"CardStackDemo" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | NSExceptionDomains 44 | 45 | localhost 46 | 47 | NSExceptionAllowsInsecureHTTPLoads 48 | 49 | 50 | 51 | 52 | UIAppFonts 53 | 54 | Entypo.ttf 55 | EvilIcons.ttf 56 | FontAwesome.ttf 57 | Foundation.ttf 58 | Ionicons.ttf 59 | MaterialCommunityIcons.ttf 60 | MaterialIcons.ttf 61 | Octicons.ttf 62 | SimpleLineIcons.ttf 63 | Zocial.ttf 64 | 65 | 66 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemo/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemoTests/CardStackDemoTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface CardStackDemoTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation CardStackDemoTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /CardStackDemo/ios/CardStackDemoTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /CardStackDemo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CardStackDemo", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "~15.4.0-rc.4", 11 | "react-native": "0.40.0", 12 | "react-native-vector-icons": "^4.0.0" 13 | }, 14 | "devDependencies": { 15 | "babel-jest": "18.0.0", 16 | "babel-preset-react-native": "1.9.1", 17 | "jest": "18.1.0", 18 | "react-test-renderer": "~15.4.0-rc.4" 19 | }, 20 | "jest": { 21 | "preset": "react-native" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /CardStackDemo/people.js: -------------------------------------------------------------------------------- 1 | export default [{ 2 | background: '#2980B9', 3 | imgSrc: 'https://s3.amazonaws.com/uifaces/faces/twitter/rem/128.jpg', 4 | imgBorderColor: '#015389', 5 | name: 'James Stuart', 6 | title: 'Training Manager', 7 | mobileNo: '0491 570 156', 8 | location: 'Sydney, Australia', 9 | role: 'Starting the company in sales, James is now responsible for overseeing all staff training. James mainly focuses on getting new employees up to speed with the practices and procedures Hunter & Co has continually refined over the last 50 years.' 10 | }, { 11 | background: '#27AE60', 12 | imgSrc: 'https://s3.amazonaws.com/uifaces/faces/twitter/glif/128.jpg', 13 | imgBorderColor: '#086C32', 14 | name: 'Isaac Pullman', 15 | title: 'Creative Director', 16 | mobileNo: '0491 570 157', 17 | location: 'Brisbane, Australia', 18 | role: "Isaac has overseen all of Hunter and Co's creative efforts for the last five years. He's ability to generate a shared vision between teams throughout the company has been his biggest achievement." 19 | }, { 20 | background: '#9B27AE', 21 | imgSrc: 'https://s3.amazonaws.com/uifaces/faces/twitter/kfriedson/128.jpg', 22 | imgBorderColor: '#6A067A', 23 | name: 'Sarah Oscar', 24 | title: 'Sales Rep', 25 | mobileNo: '0491 570 158', 26 | location: 'Sydney, Australia', 27 | role: "In Sarah's short time with the company, she is now a key figure in the sales team for the Sydney and outer region. Her excellent communication skills has opened up the door to let her mentoring any new hires in sales." 28 | }, { 29 | background: '#e67e22', 30 | imgSrc: 'https://s3.amazonaws.com/uifaces/faces/twitter/9lessons/128.jpg', 31 | imgBorderColor: '#9D4F09', 32 | name: 'Srinivas Tamada', 33 | title: 'Tech Lead', 34 | mobileNo: '0491 570 110', 35 | location: 'Melbourne, Australia', 36 | role: "In recent years Hunter & Co's website and accompaning app has undergone a massive face lift. Srinivas was responsible for the exploration and planning of the new technology used. He now works on maintaining and continually improving the website." 37 | }]; 38 | -------------------------------------------------------------------------------- /CardStackDemo/react-native-cardstack/card.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; 8 | 9 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); 10 | 11 | var _react = require('react'); 12 | 13 | var _react2 = _interopRequireDefault(_react); 14 | 15 | var _reactNative = require('react-native'); 16 | 17 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 18 | 19 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 20 | 21 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } 22 | 23 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } 24 | 25 | var Card = function (_React$Component) { 26 | _inherits(Card, _React$Component); 27 | 28 | function Card(props) { 29 | _classCallCheck(this, Card); 30 | 31 | var _this = _possibleConstructorReturn(this, (Card.__proto__ || Object.getPrototypeOf(Card)).call(this)); 32 | 33 | _this.handlePressIn = _this.handlePressIn.bind(_this); 34 | _this.handlePressOut = _this.handlePressOut.bind(_this); 35 | return _this; 36 | } 37 | 38 | _createClass(Card, [{ 39 | key: 'handlePressIn', 40 | value: function handlePressIn() { 41 | this.props.onPressIn(this.props.cardId); 42 | } 43 | }, { 44 | key: 'handlePressOut', 45 | value: function handlePressOut() { 46 | this.props.onPressOut(this.props.cardId); 47 | } 48 | }, { 49 | key: 'render', 50 | value: function render() { 51 | var cardStyles = { 52 | backgroundColor: this.props.backgroundColor, 53 | height: this.props.height 54 | }; 55 | return _react2.default.createElement( 56 | _reactNative.TouchableOpacity, 57 | _extends({}, this.props, { 58 | activeOpacity: 1, 59 | style: [styles.container, this.props.style, cardStyles], 60 | onPressIn: this.handlePressIn, 61 | onPressOut: this.handlePressOut }), 62 | this.props.children 63 | ); 64 | } 65 | }]); 66 | 67 | return Card; 68 | }(_react2.default.Component); 69 | 70 | exports.default = Card; 71 | 72 | 73 | var styles = _reactNative.StyleSheet.create({ 74 | container: { 75 | position: 'absolute', 76 | bottom: 0, 77 | left: 0, 78 | right: 0 79 | } 80 | }); -------------------------------------------------------------------------------- /CardStackDemo/react-native-cardstack/cardstack.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); 8 | 9 | var _react = require('react'); 10 | 11 | var _react2 = _interopRequireDefault(_react); 12 | 13 | var _reactNative = require('react-native'); 14 | 15 | var _calcHeight = require('./lib/calcHeight'); 16 | 17 | var _calcHeight2 = _interopRequireDefault(_calcHeight); 18 | 19 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 20 | 21 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 22 | 23 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } 24 | 25 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } 26 | 27 | var Types = _reactNative.LayoutAnimation.Types, 28 | Properties = _reactNative.LayoutAnimation.Properties; 29 | 30 | 31 | var ERROR_MESSAGE = 'CardStack component must have at least two child Card components. Please check the children of this CardStack instance.'; 32 | var LONG_PRESS_THROTTLE = 400; 33 | 34 | var CardStack = function (_React$Component) { 35 | _inherits(CardStack, _React$Component); 36 | 37 | function CardStack(props) { 38 | _classCallCheck(this, CardStack); 39 | 40 | var _this = _possibleConstructorReturn(this, (CardStack.__proto__ || Object.getPrototypeOf(CardStack)).call(this)); 41 | 42 | var childrenLength = props.children && props.children.length || 1; 43 | if (childrenLength <= 1) throw new Error(ERROR_MESSAGE); 44 | 45 | _this.handlePressIn = _this.handlePressIn.bind(_this); 46 | _this.handlePressOut = _this.handlePressOut.bind(_this); 47 | 48 | _this.state = { 49 | selectedCardIndex: null, 50 | hoveredCardIndex: null 51 | }; 52 | 53 | _this._PRESET = _reactNative.LayoutAnimation.create(props.transitionDuration, Types.easeInEaseOut, Properties.opacity); 54 | return _this; 55 | } 56 | 57 | _createClass(CardStack, [{ 58 | key: 'componentWillReceiveProps', 59 | value: function componentWillReceiveProps(_ref) { 60 | var transitionDuration = _ref.transitionDuration; 61 | 62 | if (this.props.transitionDuration !== transitionDuration) { 63 | this._PRESET = _reactNative.LayoutAnimation.create(transitionDuration, Types.easeInEaseOut, Properties.opacity); 64 | } 65 | } 66 | }, { 67 | key: 'handleCardPress', 68 | value: function handleCardPress(cardId) { 69 | _reactNative.LayoutAnimation.configureNext(this._PRESET); 70 | var index = this.state.selectedCardIndex === cardId ? null : cardId; 71 | this.setState({ selectedCardIndex: index }); 72 | if (this.props.onPress) this.props.onPress(); 73 | } 74 | }, { 75 | key: 'handleCardLongPress', 76 | value: function handleCardLongPress(cardId) { 77 | _reactNative.LayoutAnimation.configureNext(this._PRESET); 78 | this.setState({ hoveredCardIndex: null }); 79 | if (this.props.onLongPress) this.props.onLongPress(); 80 | } 81 | }, { 82 | key: 'handlePressIn', 83 | value: function handlePressIn(cardId, cardSelected) { 84 | var _this2 = this; 85 | 86 | if (this.state.selectedCardIndex) return this.handleCardPress(cardId); 87 | _reactNative.LayoutAnimation.configureNext(this._PRESET); 88 | this.setState({ hoveredCardIndex: cardId }); 89 | this._cardPressed = setTimeout(function () { 90 | return _this2._cardPressed = clearTimeout(_this2._cardPressed); 91 | }, LONG_PRESS_THROTTLE); 92 | } 93 | }, { 94 | key: 'handlePressOut', 95 | value: function handlePressOut(cardId) { 96 | if (this._cardPressed) this.handleCardPress(cardId);else this.handleCardLongPress(cardId); 97 | } 98 | }, { 99 | key: 'renderCards', 100 | value: function renderCards() { 101 | var _this3 = this; 102 | 103 | var cloneCard = function cloneCard(child, cardIndex, children) { 104 | var indexs = { 105 | selectedIndex: _this3.state.selectedCardIndex, 106 | hoveredIndex: _this3.state.hoveredCardIndex, 107 | cardIndex: cardIndex 108 | }; 109 | var height = (0, _calcHeight2.default)(indexs, _this3.props.height, _this3.props.hoverOffset, children.length); 110 | return _react2.default.cloneElement(child, { 111 | key: cardIndex, 112 | cardId: cardIndex, 113 | height: height, 114 | onPressIn: _this3.handlePressIn, 115 | onPressOut: _this3.handlePressOut 116 | }); 117 | }; 118 | return this.props.children.map(cloneCard); 119 | } 120 | }, { 121 | key: 'render', 122 | value: function render() { 123 | var stackStyles = { 124 | overflow: 'hidden', 125 | backgroundColor: this.props.backgroundColor, 126 | height: this.props.height, 127 | width: this.props.width 128 | }; 129 | return _react2.default.createElement( 130 | _reactNative.View, 131 | { 132 | style: [this.props.style, stackStyles] }, 133 | this.renderCards() 134 | ); 135 | } 136 | }]); 137 | 138 | return CardStack; 139 | }(_react2.default.Component); 140 | 141 | exports.default = CardStack; 142 | ; 143 | 144 | CardStack.propTypes = { 145 | height: _react2.default.PropTypes.number, 146 | width: _react2.default.PropTypes.number, 147 | backgroundColor: _react2.default.PropTypes.string, 148 | hoverOffset: _react2.default.PropTypes.number, 149 | transitionDuration: _react2.default.PropTypes.number 150 | }; 151 | 152 | CardStack.defaultProps = { 153 | height: 600, 154 | width: 350, 155 | backgroundColor: 'f8f8f8', 156 | hoverOffset: 30, 157 | transitionDuration: 300 158 | }; -------------------------------------------------------------------------------- /CardStackDemo/react-native-cardstack/cardstack.test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _react = require('react'); 4 | 5 | var _react2 = _interopRequireDefault(_react); 6 | 7 | var _reactNative = require('react-native'); 8 | 9 | var _enzyme = require('enzyme'); 10 | 11 | var _CardStack = require('./CardStack'); 12 | 13 | var _CardStack2 = _interopRequireDefault(_CardStack); 14 | 15 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 16 | 17 | describe('CardStack', function () { 18 | 19 | it(' throws if there is no children', function (assert) { 20 | expect(_enzyme.shallow.bind(_enzyme.shallow, _react2.default.createElement(_CardStack2.default, null))).toThrow(); 21 | }); 22 | 23 | it(' throws if there is one child', function (assert) { 24 | expect(_enzyme.shallow.bind(_enzyme.shallow, _react2.default.createElement( 25 | _CardStack2.default, 26 | null, 27 | _react2.default.createElement(_reactNative.View, null) 28 | ))).toThrow(); 29 | }); 30 | }); -------------------------------------------------------------------------------- /CardStackDemo/react-native-cardstack/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.CardStack = exports.Card = undefined; 7 | 8 | var _Cardstack = require('./Cardstack'); 9 | 10 | var _Cardstack2 = _interopRequireDefault(_Cardstack); 11 | 12 | var _Card = require('./Card'); 13 | 14 | var _Card2 = _interopRequireDefault(_Card); 15 | 16 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 17 | 18 | exports.Card = _Card2.default; 19 | exports.CardStack = _Cardstack2.default; -------------------------------------------------------------------------------- /CardStackDemo/react-native-cardstack/lib/calcHeight.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | var calcHeight = function calcHeight(indexs, staticHeight, hoverOffset, cardsLength) { 7 | var selectedIndex = indexs.selectedIndex, 8 | hoveredIndex = indexs.hoveredIndex, 9 | cardIndex = indexs.cardIndex; 10 | 11 | if (!selectedIndex && selectedIndex !== 0) { 12 | if (cardIndex < 0) return 0; 13 | var height = staticHeight / cardsLength * (cardsLength - cardIndex); 14 | return hoveredIndex === cardIndex && cardIndex !== 0 ? height + hoverOffset : height; 15 | } 16 | return selectedIndex === cardIndex ? staticHeight : 0; 17 | }; 18 | 19 | exports.default = calcHeight; -------------------------------------------------------------------------------- /CardStackDemo/react-native-cardstack/lib/calcHeight.test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _calcHeight = require('./calcHeight'); 4 | 5 | var _calcHeight2 = _interopRequireDefault(_calcHeight); 6 | 7 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 8 | 9 | describe('calcHeight', function () { 10 | 11 | it('it calculates the height when no cards are selected', function () { 12 | var height = 400; 13 | var cardLength = 3; 14 | var indexs = { 15 | selectedIndex: null, 16 | hoveredIndex: null, 17 | cardIndex: 2 18 | }; 19 | var actual = (0, _calcHeight2.default)(indexs, height, 30, cardLength); 20 | expect(height / cardLength).toEqual(actual); 21 | }); 22 | 23 | it('it calculates the height when selectedIndex === cardIndex', function () { 24 | var height = 400; 25 | var indexs = { 26 | selectedIndex: 2, 27 | hoveredIndex: null, 28 | cardIndex: 2 29 | }; 30 | var actual = (0, _calcHeight2.default)(indexs, height, 30, 3); 31 | expect(actual).toEqual(height); 32 | }); 33 | 34 | it('it calculates the height when selectedIndex !== cardIndex', function () { 35 | var height = 400; 36 | var indexs = { 37 | selectedIndex: 1, 38 | hoveredIndex: null, 39 | cardIndex: 2 40 | }; 41 | var actual = (0, _calcHeight2.default)(indexs, height, 30, 3); 42 | expect(actual).toEqual(0); 43 | }); 44 | 45 | it('it calculates the height when hoveredIndex === cardIndex', function () { 46 | var height = 400; 47 | var hoverOffset = 30; 48 | var indexs = { 49 | selectedIndex: null, 50 | hoveredIndex: 2, 51 | cardIndex: 2 52 | }; 53 | var actual = (0, _calcHeight2.default)(indexs, height, hoverOffset, 3); 54 | expect(actual).toEqual(height / 3 + hoverOffset); 55 | }); 56 | }); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | React Native CardStack 2 | ========================= 3 | 4 | Implementation of [react-cardstack](cameronbourke.github.io/react-cardstack) for React Native, this component allows you to achieve a UI similar to the iOS passbook app. 5 | 6 | 7 | 8 | > Currently only iOS is supported, however Android support will land shortly! 9 | 10 | * [Installation](#installation) 11 | * [Usage](#usage) 12 | * [Components](#components) 13 | * [``](#cardstack-) 14 | * [``](#card-) 15 | * [Example & Demo](#example--demo) 16 | 17 | ## Installation 18 | 19 | `react-native-cardstack` requires on the following peer dependencies: 20 | - [React Native](https://facebook.github.io/react-native/) 0.27 or later 21 | - [React](https://facebook.github.io/react/) 15.0 or later 22 | 23 | ``` 24 | npm install --save react-native-cardstack 25 | ``` 26 | 27 | ## Usage 28 | 29 | *react-native-cardstack* exports two React components. These are `CardStack` and `Card`. The `CardStack` component is responsible for holding the state of it's child `Card` components. However, this is abstracted away which makes using the component a whole deal simpler. **Note: there must be at least two instances of Card as children of CardStack, otherwise the component will throw an error**. 30 | 31 | An example use of React Card Stack looks like: 32 | 33 | ```js 34 | import { CardStack, Card } from 'react-cardstack'; 35 | 36 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | ``` 52 | 53 | The `Card` component wraps around the content you want to render for each card. You can render both elements or components inside `Card`. 54 | 55 | #### Figuring out the Header Height 56 | 57 | When all `Card` components are collapsed, the top of each card will be visible. This is basically the "header" of the `Card` component. To calculate what size the header will be simply divide the height passed to `CardStack` by the number of child `Card` components. In the example above, the header height for each card will be `500 / 2`, which equals `250`. 58 | 59 | ## Components 60 | Both components have a selection of props that can be used to configure and interact with each component. 61 | 62 | #### `` 63 | Property | Type | Default | Description 64 | ------------------ | ------ | ------ | -------- 65 | width | number | 350px | the width of the component 66 | height | number | 500px | the height of the component 67 | backgroundColor | string | f8f8f8 | can be a hex or rgba value 68 | transitionDuration | number | 300 | can be a hex or rgba value 69 | hoverOffset | number | 30px | how far the card will shift up when being hovered 70 |
71 | 72 | #### `` 73 | Property | Type | Default | Description 74 | ----------- | ------------- | ------- | ------- 75 | background | string | undefined | can be a hex or rgba value 76 | ...all props for the [TouchableOpacity](https://facebook.github.io/react-native/docs/touchablewithoutfeedback.html#props) component 77 | 78 | ## Example & Demo 79 | ``` 80 | git clone https://github.com/cameronbourke/react-native-cardstack 81 | cd react-native-cardstack 82 | npm install 83 | cd CardStackDemo 84 | npm install 85 | ``` 86 | 87 | Then open the Xcode project at `ios/CardStackDemo.xcodeproj` 88 | 89 | Currently `npm link` does not work with React Native's packager, so, to temporarily get around that, `npm start` actually runs a babel command that will output the `/src` directory into `/CardStackDemo/react-native-cardstack` which explains why you will see the following when in the example app: 90 | 91 | ```js 92 | import { CardStack, Card } from './react-native-cardstack'; 93 | ``` 94 | 95 | ## What's Next? 96 | - [ ] Add `onPress` and `onLongPress` props to ``, which will pass the state of the card to the callback 97 | - [ ] Add more unit tests using [ava](https://github.com/avajs/ava) 98 | - [ ] Unifiy the API for both this package, and the original `react-cardstack` 99 | - [ ] Add android support 100 | 101 | ## License 102 | 103 | MIT Licensed Copyright (c) Cameron Bourke 2016 104 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbourke/react-native-cardstack/0f758a2d6f49cc6013200a1cbdcd932fbf17d928/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-cardstack", 3 | "version": "1.0.1", 4 | "description": "react native component inspired by the iOS passbook app UI", 5 | "main": "dist/index.js", 6 | "keywords": [ 7 | "update", 8 | "react-native", 9 | "react-component", 10 | "button", 11 | "code-push", 12 | "CodePush", 13 | "prompt", 14 | "manual-update", 15 | "ui" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git+https://github.com/cameronbourke/react-native-cardstack.git" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/cameronbourke/react-native-cardstack/issues" 23 | }, 24 | "scripts": { 25 | "start": "npm run compile:dev", 26 | "start:ios": "node CardStackDemo/node_modules/react-native/local-cli/cli.js start", 27 | "compile:dist": "babel src --out-dir dist", 28 | "compile:dev": "babel src -w --out-dir CardStackDemo/react-native-cardstack", 29 | "release": "npm version 1.0.0 && git push && git push --tags && npm publish", 30 | "test": "jest", 31 | "test:watch": "jest --watch", 32 | "test:coverage": "jest --coverage" 33 | }, 34 | "files": [ 35 | "dist" 36 | ], 37 | "jest": { 38 | "testPathIgnorePatterns": [ 39 | "/node_modules/", 40 | "/CardStackDemo/react-native-cardstack" 41 | ], 42 | "testRegex": "(src/.*(test|spec))\\.jsx?$" 43 | }, 44 | "author": "Cameron Bourke (http://cameronbourke.com/)", 45 | "license": "MIT", 46 | "peerDependencies": { 47 | "react": ">=15.0.0" 48 | }, 49 | "devDependencies": { 50 | "babel-cli": "6.18.0", 51 | "babel-preset-es2015": "6.18.0", 52 | "babel-preset-react": "6.16.0", 53 | "react": "15.4.2" 54 | }, 55 | "dependencies": { 56 | "babel-jest": "^18.0.0" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /src/card.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { TouchableOpacity, StyleSheet } from 'react-native'; 3 | 4 | export default class Card extends React.Component { 5 | constructor (props) { 6 | super(); 7 | this.handlePressIn = this.handlePressIn.bind(this); 8 | this.handlePressOut = this.handlePressOut.bind(this); 9 | } 10 | 11 | handlePressIn () { 12 | this.props.onPressIn(this.props.cardId); 13 | } 14 | 15 | handlePressOut () { 16 | this.props.onPressOut(this.props.cardId); 17 | } 18 | 19 | render () { 20 | const cardStyles = { 21 | backgroundColor: this.props.backgroundColor, 22 | height: this.props.height, 23 | }; 24 | return ( 25 | 31 | {this.props.children} 32 | 33 | ); 34 | } 35 | } 36 | 37 | const styles = StyleSheet.create({ 38 | container: { 39 | position: 'absolute', 40 | bottom: 0, 41 | left: 0, 42 | right: 0, 43 | } 44 | }); 45 | -------------------------------------------------------------------------------- /src/cardstack.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { View, LayoutAnimation, StyleSheet } from 'react-native'; 3 | import calcHeight from './lib/calcHeight'; 4 | 5 | const { Types, Properties } = LayoutAnimation; 6 | 7 | const ERROR_MESSAGE = 'CardStack component must have at least two child Card components. Please check the children of this CardStack instance.'; 8 | const LONG_PRESS_THROTTLE = 400; 9 | 10 | export default class CardStack extends React.Component { 11 | constructor (props) { 12 | super(); 13 | const childrenLength = props.children && props.children.length || 1; 14 | if (childrenLength <= 1) throw new Error(ERROR_MESSAGE); 15 | 16 | this.handlePressIn = this.handlePressIn.bind(this); 17 | this.handlePressOut = this.handlePressOut.bind(this); 18 | 19 | this.state = { 20 | selectedCardIndex: null, 21 | hoveredCardIndex: null, 22 | }; 23 | 24 | this._PRESET = LayoutAnimation.create( 25 | props.transitionDuration, Types.easeInEaseOut, Properties.opacity 26 | ); 27 | } 28 | 29 | componentWillReceiveProps ({ transitionDuration }) { 30 | if (this.props.transitionDuration !== transitionDuration) { 31 | this._PRESET = LayoutAnimation.create( 32 | transitionDuration, Types.easeInEaseOut, Properties.opacity 33 | ); 34 | } 35 | } 36 | 37 | handleCardPress (cardId) { 38 | LayoutAnimation.configureNext(this._PRESET); 39 | const index = (this.state.selectedCardIndex === cardId) ? null : cardId; 40 | this.setState({ selectedCardIndex: index }); 41 | if (this.props.onPress) this.props.onPress(); 42 | } 43 | 44 | handleCardLongPress (cardId) { 45 | LayoutAnimation.configureNext(this._PRESET); 46 | this.setState({ hoveredCardIndex: null }); 47 | if (this.props.onLongPress) this.props.onLongPress(); 48 | } 49 | 50 | handlePressIn (cardId, cardSelected) { 51 | if (this.state.selectedCardIndex) return this.handleCardPress(cardId); 52 | LayoutAnimation.configureNext(this._PRESET); 53 | this.setState({ hoveredCardIndex: cardId }); 54 | this._cardPressed = setTimeout(() => 55 | this._cardPressed = clearTimeout(this._cardPressed), 56 | LONG_PRESS_THROTTLE 57 | ); 58 | } 59 | 60 | handlePressOut (cardId) { 61 | if (this._cardPressed) this.handleCardPress(cardId); 62 | else this.handleCardLongPress(cardId); 63 | } 64 | 65 | renderCards () { 66 | const cloneCard = (child, cardIndex, children) => { 67 | const indexs = { 68 | selectedIndex: this.state.selectedCardIndex, 69 | hoveredIndex: this.state.hoveredCardIndex, 70 | cardIndex, 71 | }; 72 | const height = calcHeight( 73 | indexs, 74 | this.props.height, 75 | this.props.hoverOffset, 76 | children.length 77 | ); 78 | return React.cloneElement(child, { 79 | key: cardIndex, 80 | cardId: cardIndex, 81 | height, 82 | onPressIn: this.handlePressIn, 83 | onPressOut: this.handlePressOut, 84 | }); 85 | }; 86 | return this.props.children.map(cloneCard); 87 | } 88 | 89 | render () { 90 | const stackStyles = { 91 | overflow: 'hidden', 92 | backgroundColor: this.props.backgroundColor, 93 | height: this.props.height, 94 | width: this.props.width, 95 | }; 96 | return ( 97 | 99 | {this.renderCards()} 100 | 101 | ); 102 | } 103 | }; 104 | 105 | CardStack.propTypes = { 106 | height: React.PropTypes.number, 107 | width: React.PropTypes.number, 108 | backgroundColor: React.PropTypes.string, 109 | hoverOffset: React.PropTypes.number, 110 | transitionDuration: React.PropTypes.number, 111 | }; 112 | 113 | CardStack.defaultProps = { 114 | height: 600, 115 | width: 350, 116 | backgroundColor: 'f8f8f8', 117 | hoverOffset: 30, 118 | transitionDuration: 300, 119 | }; 120 | -------------------------------------------------------------------------------- /src/cardstack.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { View } from 'react-native'; 3 | import { shallow } from 'enzyme'; 4 | 5 | import CardStack from './CardStack'; 6 | 7 | describe('CardStack', () => { 8 | 9 | it(' throws if there is no children', (assert) => { 10 | expect( 11 | shallow.bind(shallow, ) 12 | ).toThrow(); 13 | }); 14 | 15 | it(' throws if there is one child', (assert) => { 16 | expect( 17 | shallow.bind(shallow, ) 18 | ).toThrow(); 19 | }); 20 | 21 | }) 22 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import CardStack from './Cardstack'; 2 | import Card from './Card'; 3 | 4 | export { Card, CardStack }; 5 | -------------------------------------------------------------------------------- /src/lib/calcHeight.js: -------------------------------------------------------------------------------- 1 | const calcHeight = (indexs, staticHeight, hoverOffset, cardsLength) => { 2 | const { selectedIndex, hoveredIndex, cardIndex } = indexs; 3 | if (!selectedIndex && selectedIndex !== 0) { 4 | if (cardIndex < 0) return 0; 5 | const height = (staticHeight / cardsLength) * (cardsLength - cardIndex); 6 | return (hoveredIndex === cardIndex && cardIndex !== 0) 7 | ? height + hoverOffset 8 | : height; 9 | } 10 | return (selectedIndex === cardIndex) ? staticHeight : 0; 11 | }; 12 | 13 | 14 | export default calcHeight; 15 | -------------------------------------------------------------------------------- /src/lib/calcHeight.test.js: -------------------------------------------------------------------------------- 1 | import calcHeight from './calcHeight'; 2 | 3 | describe('calcHeight', () => { 4 | 5 | it('it calculates the height when no cards are selected', () => { 6 | const height = 400; 7 | const cardLength = 3; 8 | const indexs = { 9 | selectedIndex: null, 10 | hoveredIndex: null, 11 | cardIndex: 2, 12 | }; 13 | const actual = calcHeight(indexs, height, 30, cardLength); 14 | expect(height / cardLength).toEqual(actual); 15 | }); 16 | 17 | it('it calculates the height when selectedIndex === cardIndex', () => { 18 | const height = 400; 19 | const indexs = { 20 | selectedIndex: 2, 21 | hoveredIndex: null, 22 | cardIndex: 2, 23 | }; 24 | const actual = calcHeight(indexs, height, 30, 3); 25 | expect(actual).toEqual(height); 26 | }); 27 | 28 | it('it calculates the height when selectedIndex !== cardIndex', () => { 29 | const height = 400; 30 | const indexs = { 31 | selectedIndex: 1, 32 | hoveredIndex: null, 33 | cardIndex: 2, 34 | }; 35 | const actual = calcHeight(indexs, height, 30, 3); 36 | expect(actual).toEqual(0); 37 | }); 38 | 39 | it('it calculates the height when hoveredIndex === cardIndex', () => { 40 | const height = 400; 41 | const hoverOffset = 30; 42 | const indexs = { 43 | selectedIndex: null, 44 | hoveredIndex: 2, 45 | cardIndex: 2, 46 | }; 47 | const actual = calcHeight(indexs, height, hoverOffset, 3); 48 | expect(actual).toEqual((height / 3) + hoverOffset); 49 | }); 50 | 51 | }); 52 | -------------------------------------------------------------------------------- /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.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-styles@^2.1.0: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | anymatch@^1.3.0: 18 | version "1.3.0" 19 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 20 | dependencies: 21 | arrify "^1.0.0" 22 | micromatch "^2.1.5" 23 | 24 | aproba@^1.0.3: 25 | version "1.0.4" 26 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 27 | 28 | are-we-there-yet@~1.1.2: 29 | version "1.1.2" 30 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 31 | dependencies: 32 | delegates "^1.0.0" 33 | readable-stream "^2.0.0 || ^1.1.13" 34 | 35 | arr-diff@^2.0.0: 36 | version "2.0.0" 37 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 38 | dependencies: 39 | arr-flatten "^1.0.1" 40 | 41 | arr-flatten@^1.0.1: 42 | version "1.0.1" 43 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 44 | 45 | array-unique@^0.2.1: 46 | version "0.2.1" 47 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 48 | 49 | arrify@^1.0.0, arrify@^1.0.1: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 52 | 53 | asap@~2.0.3: 54 | version "2.0.5" 55 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 56 | 57 | asn1@~0.2.3: 58 | version "0.2.3" 59 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 60 | 61 | assert-plus@^0.2.0: 62 | version "0.2.0" 63 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 64 | 65 | assert-plus@^1.0.0: 66 | version "1.0.0" 67 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 68 | 69 | async-each@^1.0.0: 70 | version "1.0.1" 71 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 72 | 73 | asynckit@^0.4.0: 74 | version "0.4.0" 75 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 76 | 77 | aws-sign2@~0.6.0: 78 | version "0.6.0" 79 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 80 | 81 | aws4@^1.2.1: 82 | version "1.5.0" 83 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 84 | 85 | babel-cli@6.18.0: 86 | version "6.18.0" 87 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 88 | dependencies: 89 | babel-core "^6.18.0" 90 | babel-polyfill "^6.16.0" 91 | babel-register "^6.18.0" 92 | babel-runtime "^6.9.0" 93 | commander "^2.8.1" 94 | convert-source-map "^1.1.0" 95 | fs-readdir-recursive "^1.0.0" 96 | glob "^5.0.5" 97 | lodash "^4.2.0" 98 | output-file-sync "^1.1.0" 99 | path-is-absolute "^1.0.0" 100 | slash "^1.0.0" 101 | source-map "^0.5.0" 102 | v8flags "^2.0.10" 103 | optionalDependencies: 104 | chokidar "^1.0.0" 105 | 106 | babel-code-frame@^6.20.0: 107 | version "6.20.0" 108 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26" 109 | dependencies: 110 | chalk "^1.1.0" 111 | esutils "^2.0.2" 112 | js-tokens "^2.0.0" 113 | 114 | babel-core@^6.0.0, babel-core@^6.18.0: 115 | version "6.21.0" 116 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.21.0.tgz#75525480c21c803f826ef3867d22c19f080a3724" 117 | dependencies: 118 | babel-code-frame "^6.20.0" 119 | babel-generator "^6.21.0" 120 | babel-helpers "^6.16.0" 121 | babel-messages "^6.8.0" 122 | babel-register "^6.18.0" 123 | babel-runtime "^6.20.0" 124 | babel-template "^6.16.0" 125 | babel-traverse "^6.21.0" 126 | babel-types "^6.21.0" 127 | babylon "^6.11.0" 128 | convert-source-map "^1.1.0" 129 | debug "^2.1.1" 130 | json5 "^0.5.0" 131 | lodash "^4.2.0" 132 | minimatch "^3.0.2" 133 | path-is-absolute "^1.0.0" 134 | private "^0.1.6" 135 | slash "^1.0.0" 136 | source-map "^0.5.0" 137 | 138 | babel-generator@^6.18.0, babel-generator@^6.21.0: 139 | version "6.21.0" 140 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.21.0.tgz#605f1269c489a1c75deeca7ea16d43d4656c8494" 141 | dependencies: 142 | babel-messages "^6.8.0" 143 | babel-runtime "^6.20.0" 144 | babel-types "^6.21.0" 145 | detect-indent "^4.0.0" 146 | jsesc "^1.3.0" 147 | lodash "^4.2.0" 148 | source-map "^0.5.0" 149 | 150 | babel-helper-builder-react-jsx@^6.8.0: 151 | version "6.21.1" 152 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.21.1.tgz#c4a24208655be9dc1cccf14d366da176f20645e4" 153 | dependencies: 154 | babel-runtime "^6.9.0" 155 | babel-types "^6.21.0" 156 | esutils "^2.0.0" 157 | lodash "^4.2.0" 158 | 159 | babel-helper-call-delegate@^6.18.0: 160 | version "6.18.0" 161 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" 162 | dependencies: 163 | babel-helper-hoist-variables "^6.18.0" 164 | babel-runtime "^6.0.0" 165 | babel-traverse "^6.18.0" 166 | babel-types "^6.18.0" 167 | 168 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: 169 | version "6.18.0" 170 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" 171 | dependencies: 172 | babel-helper-function-name "^6.18.0" 173 | babel-runtime "^6.9.0" 174 | babel-types "^6.18.0" 175 | lodash "^4.2.0" 176 | 177 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: 178 | version "6.18.0" 179 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 180 | dependencies: 181 | babel-helper-get-function-arity "^6.18.0" 182 | babel-runtime "^6.0.0" 183 | babel-template "^6.8.0" 184 | babel-traverse "^6.18.0" 185 | babel-types "^6.18.0" 186 | 187 | babel-helper-get-function-arity@^6.18.0: 188 | version "6.18.0" 189 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 190 | dependencies: 191 | babel-runtime "^6.0.0" 192 | babel-types "^6.18.0" 193 | 194 | babel-helper-hoist-variables@^6.18.0: 195 | version "6.18.0" 196 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" 197 | dependencies: 198 | babel-runtime "^6.0.0" 199 | babel-types "^6.18.0" 200 | 201 | babel-helper-optimise-call-expression@^6.18.0: 202 | version "6.18.0" 203 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" 204 | dependencies: 205 | babel-runtime "^6.0.0" 206 | babel-types "^6.18.0" 207 | 208 | babel-helper-regex@^6.8.0: 209 | version "6.18.0" 210 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" 211 | dependencies: 212 | babel-runtime "^6.9.0" 213 | babel-types "^6.18.0" 214 | lodash "^4.2.0" 215 | 216 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: 217 | version "6.18.0" 218 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" 219 | dependencies: 220 | babel-helper-optimise-call-expression "^6.18.0" 221 | babel-messages "^6.8.0" 222 | babel-runtime "^6.0.0" 223 | babel-template "^6.16.0" 224 | babel-traverse "^6.18.0" 225 | babel-types "^6.18.0" 226 | 227 | babel-helpers@^6.16.0: 228 | version "6.16.0" 229 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 230 | dependencies: 231 | babel-runtime "^6.0.0" 232 | babel-template "^6.16.0" 233 | 234 | babel-jest@^18.0.0: 235 | version "18.0.0" 236 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-18.0.0.tgz#17ebba8cb3285c906d859e8707e4e79795fb65e3" 237 | dependencies: 238 | babel-core "^6.0.0" 239 | babel-plugin-istanbul "^3.0.0" 240 | babel-preset-jest "^18.0.0" 241 | 242 | babel-messages@^6.8.0: 243 | version "6.8.0" 244 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 245 | dependencies: 246 | babel-runtime "^6.0.0" 247 | 248 | babel-plugin-check-es2015-constants@^6.3.13: 249 | version "6.8.0" 250 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 251 | dependencies: 252 | babel-runtime "^6.0.0" 253 | 254 | babel-plugin-istanbul@^3.0.0: 255 | version "3.1.2" 256 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-3.1.2.tgz#11d5abde18425ec24b5d648c7e0b5d25cd354a22" 257 | dependencies: 258 | find-up "^1.1.2" 259 | istanbul-lib-instrument "^1.4.2" 260 | object-assign "^4.1.0" 261 | test-exclude "^3.3.0" 262 | 263 | babel-plugin-jest-hoist@^18.0.0: 264 | version "18.0.0" 265 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-18.0.0.tgz#4150e70ecab560e6e7344adc849498072d34e12a" 266 | 267 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.3.13: 268 | version "6.18.0" 269 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 270 | 271 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 272 | version "6.18.0" 273 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 274 | 275 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 276 | version "6.8.0" 277 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 278 | dependencies: 279 | babel-runtime "^6.0.0" 280 | 281 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 282 | version "6.8.0" 283 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 284 | dependencies: 285 | babel-runtime "^6.0.0" 286 | 287 | babel-plugin-transform-es2015-block-scoping@^6.18.0: 288 | version "6.21.0" 289 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.21.0.tgz#e840687f922e70fb2c42bb13501838c174a115ed" 290 | dependencies: 291 | babel-runtime "^6.20.0" 292 | babel-template "^6.15.0" 293 | babel-traverse "^6.21.0" 294 | babel-types "^6.21.0" 295 | lodash "^4.2.0" 296 | 297 | babel-plugin-transform-es2015-classes@^6.18.0: 298 | version "6.18.0" 299 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" 300 | dependencies: 301 | babel-helper-define-map "^6.18.0" 302 | babel-helper-function-name "^6.18.0" 303 | babel-helper-optimise-call-expression "^6.18.0" 304 | babel-helper-replace-supers "^6.18.0" 305 | babel-messages "^6.8.0" 306 | babel-runtime "^6.9.0" 307 | babel-template "^6.14.0" 308 | babel-traverse "^6.18.0" 309 | babel-types "^6.18.0" 310 | 311 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 312 | version "6.8.0" 313 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 314 | dependencies: 315 | babel-helper-define-map "^6.8.0" 316 | babel-runtime "^6.0.0" 317 | babel-template "^6.8.0" 318 | 319 | babel-plugin-transform-es2015-destructuring@^6.18.0: 320 | version "6.19.0" 321 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.19.0.tgz#ff1d911c4b3f4cab621bd66702a869acd1900533" 322 | dependencies: 323 | babel-runtime "^6.9.0" 324 | 325 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 326 | version "6.8.0" 327 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 328 | dependencies: 329 | babel-runtime "^6.0.0" 330 | babel-types "^6.8.0" 331 | 332 | babel-plugin-transform-es2015-for-of@^6.18.0: 333 | version "6.18.0" 334 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" 335 | dependencies: 336 | babel-runtime "^6.0.0" 337 | 338 | babel-plugin-transform-es2015-function-name@^6.9.0: 339 | version "6.9.0" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 341 | dependencies: 342 | babel-helper-function-name "^6.8.0" 343 | babel-runtime "^6.9.0" 344 | babel-types "^6.9.0" 345 | 346 | babel-plugin-transform-es2015-literals@^6.3.13: 347 | version "6.8.0" 348 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 349 | dependencies: 350 | babel-runtime "^6.0.0" 351 | 352 | babel-plugin-transform-es2015-modules-amd@^6.18.0: 353 | version "6.18.0" 354 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" 355 | dependencies: 356 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 357 | babel-runtime "^6.0.0" 358 | babel-template "^6.8.0" 359 | 360 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 361 | version "6.18.0" 362 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 363 | dependencies: 364 | babel-plugin-transform-strict-mode "^6.18.0" 365 | babel-runtime "^6.0.0" 366 | babel-template "^6.16.0" 367 | babel-types "^6.18.0" 368 | 369 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0: 370 | version "6.19.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.19.0.tgz#50438136eba74527efa00a5b0fefaf1dc4071da6" 372 | dependencies: 373 | babel-helper-hoist-variables "^6.18.0" 374 | babel-runtime "^6.11.6" 375 | babel-template "^6.14.0" 376 | 377 | babel-plugin-transform-es2015-modules-umd@^6.18.0: 378 | version "6.18.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" 380 | dependencies: 381 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 382 | babel-runtime "^6.0.0" 383 | babel-template "^6.8.0" 384 | 385 | babel-plugin-transform-es2015-object-super@^6.3.13: 386 | version "6.8.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 388 | dependencies: 389 | babel-helper-replace-supers "^6.8.0" 390 | babel-runtime "^6.0.0" 391 | 392 | babel-plugin-transform-es2015-parameters@^6.18.0: 393 | version "6.21.0" 394 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.21.0.tgz#46a655e6864ef984091448cdf024d87b60b2a7d8" 395 | dependencies: 396 | babel-helper-call-delegate "^6.18.0" 397 | babel-helper-get-function-arity "^6.18.0" 398 | babel-runtime "^6.9.0" 399 | babel-template "^6.16.0" 400 | babel-traverse "^6.21.0" 401 | babel-types "^6.21.0" 402 | 403 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0: 404 | version "6.18.0" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" 406 | dependencies: 407 | babel-runtime "^6.0.0" 408 | babel-types "^6.18.0" 409 | 410 | babel-plugin-transform-es2015-spread@^6.3.13: 411 | version "6.8.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 413 | dependencies: 414 | babel-runtime "^6.0.0" 415 | 416 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 417 | version "6.8.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 419 | dependencies: 420 | babel-helper-regex "^6.8.0" 421 | babel-runtime "^6.0.0" 422 | babel-types "^6.8.0" 423 | 424 | babel-plugin-transform-es2015-template-literals@^6.6.0: 425 | version "6.8.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 427 | dependencies: 428 | babel-runtime "^6.0.0" 429 | 430 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0: 431 | version "6.18.0" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" 433 | dependencies: 434 | babel-runtime "^6.0.0" 435 | 436 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 437 | version "6.11.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 439 | dependencies: 440 | babel-helper-regex "^6.8.0" 441 | babel-runtime "^6.0.0" 442 | regexpu-core "^2.0.0" 443 | 444 | babel-plugin-transform-flow-strip-types@^6.3.13: 445 | version "6.21.0" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.21.0.tgz#2eea3f8b5bb234339b47283feac155cfb237b948" 447 | dependencies: 448 | babel-plugin-syntax-flow "^6.18.0" 449 | babel-runtime "^6.0.0" 450 | 451 | babel-plugin-transform-react-display-name@^6.3.13: 452 | version "6.8.0" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.8.0.tgz#f7a084977383d728bdbdc2835bba0159577f660e" 454 | dependencies: 455 | babel-runtime "^6.0.0" 456 | 457 | babel-plugin-transform-react-jsx-self@^6.11.0: 458 | version "6.11.0" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.11.0.tgz#605c9450c1429f97a930f7e1dfe3f0d9d0dbd0f4" 460 | dependencies: 461 | babel-plugin-syntax-jsx "^6.8.0" 462 | babel-runtime "^6.9.0" 463 | 464 | babel-plugin-transform-react-jsx-source@^6.3.13: 465 | version "6.9.0" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.9.0.tgz#af684a05c2067a86e0957d4f343295ccf5dccf00" 467 | dependencies: 468 | babel-plugin-syntax-jsx "^6.8.0" 469 | babel-runtime "^6.9.0" 470 | 471 | babel-plugin-transform-react-jsx@^6.3.13: 472 | version "6.8.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.8.0.tgz#94759942f70af18c617189aa7f3593f1644a71ab" 474 | dependencies: 475 | babel-helper-builder-react-jsx "^6.8.0" 476 | babel-plugin-syntax-jsx "^6.8.0" 477 | babel-runtime "^6.0.0" 478 | 479 | babel-plugin-transform-regenerator@^6.16.0: 480 | version "6.21.0" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.21.0.tgz#75d0c7e7f84f379358f508451c68a2c5fa5a9703" 482 | dependencies: 483 | regenerator-transform "0.9.8" 484 | 485 | babel-plugin-transform-strict-mode@^6.18.0: 486 | version "6.18.0" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 488 | dependencies: 489 | babel-runtime "^6.0.0" 490 | babel-types "^6.18.0" 491 | 492 | babel-polyfill@^6.16.0: 493 | version "6.20.0" 494 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.20.0.tgz#de4a371006139e20990aac0be367d398331204e7" 495 | dependencies: 496 | babel-runtime "^6.20.0" 497 | core-js "^2.4.0" 498 | regenerator-runtime "^0.10.0" 499 | 500 | babel-preset-es2015@6.18.0: 501 | version "6.18.0" 502 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" 503 | dependencies: 504 | babel-plugin-check-es2015-constants "^6.3.13" 505 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 506 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 507 | babel-plugin-transform-es2015-block-scoping "^6.18.0" 508 | babel-plugin-transform-es2015-classes "^6.18.0" 509 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 510 | babel-plugin-transform-es2015-destructuring "^6.18.0" 511 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 512 | babel-plugin-transform-es2015-for-of "^6.18.0" 513 | babel-plugin-transform-es2015-function-name "^6.9.0" 514 | babel-plugin-transform-es2015-literals "^6.3.13" 515 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 516 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 517 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0" 518 | babel-plugin-transform-es2015-modules-umd "^6.18.0" 519 | babel-plugin-transform-es2015-object-super "^6.3.13" 520 | babel-plugin-transform-es2015-parameters "^6.18.0" 521 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0" 522 | babel-plugin-transform-es2015-spread "^6.3.13" 523 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 524 | babel-plugin-transform-es2015-template-literals "^6.6.0" 525 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0" 526 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 527 | babel-plugin-transform-regenerator "^6.16.0" 528 | 529 | babel-preset-jest@^18.0.0: 530 | version "18.0.0" 531 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-18.0.0.tgz#84faf8ca3ec65aba7d5e3f59bbaed935ab24049e" 532 | dependencies: 533 | babel-plugin-jest-hoist "^18.0.0" 534 | 535 | babel-preset-react@6.16.0: 536 | version "6.16.0" 537 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.16.0.tgz#aa117d60de0928607e343c4828906e4661824316" 538 | dependencies: 539 | babel-plugin-syntax-flow "^6.3.13" 540 | babel-plugin-syntax-jsx "^6.3.13" 541 | babel-plugin-transform-flow-strip-types "^6.3.13" 542 | babel-plugin-transform-react-display-name "^6.3.13" 543 | babel-plugin-transform-react-jsx "^6.3.13" 544 | babel-plugin-transform-react-jsx-self "^6.11.0" 545 | babel-plugin-transform-react-jsx-source "^6.3.13" 546 | 547 | babel-register@^6.18.0: 548 | version "6.18.0" 549 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 550 | dependencies: 551 | babel-core "^6.18.0" 552 | babel-runtime "^6.11.6" 553 | core-js "^2.4.0" 554 | home-or-tmp "^2.0.0" 555 | lodash "^4.2.0" 556 | mkdirp "^0.5.1" 557 | source-map-support "^0.4.2" 558 | 559 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.9.0: 560 | version "6.20.0" 561 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f" 562 | dependencies: 563 | core-js "^2.4.0" 564 | regenerator-runtime "^0.10.0" 565 | 566 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 567 | version "6.16.0" 568 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 569 | dependencies: 570 | babel-runtime "^6.9.0" 571 | babel-traverse "^6.16.0" 572 | babel-types "^6.16.0" 573 | babylon "^6.11.0" 574 | lodash "^4.2.0" 575 | 576 | babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.21.0: 577 | version "6.21.0" 578 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.21.0.tgz#69c6365804f1a4f69eb1213f85b00a818b8c21ad" 579 | dependencies: 580 | babel-code-frame "^6.20.0" 581 | babel-messages "^6.8.0" 582 | babel-runtime "^6.20.0" 583 | babel-types "^6.21.0" 584 | babylon "^6.11.0" 585 | debug "^2.2.0" 586 | globals "^9.0.0" 587 | invariant "^2.2.0" 588 | lodash "^4.2.0" 589 | 590 | babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.21.0, babel-types@^6.8.0, babel-types@^6.9.0: 591 | version "6.21.0" 592 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.21.0.tgz#314b92168891ef6d3806b7f7a917fdf87c11a4b2" 593 | dependencies: 594 | babel-runtime "^6.20.0" 595 | esutils "^2.0.2" 596 | lodash "^4.2.0" 597 | to-fast-properties "^1.0.1" 598 | 599 | babylon@^6.11.0, babylon@^6.13.0: 600 | version "6.15.0" 601 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 602 | 603 | balanced-match@^0.4.1: 604 | version "0.4.2" 605 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 606 | 607 | bcrypt-pbkdf@^1.0.0: 608 | version "1.0.0" 609 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 610 | dependencies: 611 | tweetnacl "^0.14.3" 612 | 613 | binary-extensions@^1.0.0: 614 | version "1.8.0" 615 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 616 | 617 | block-stream@*: 618 | version "0.0.9" 619 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 620 | dependencies: 621 | inherits "~2.0.0" 622 | 623 | boom@2.x.x: 624 | version "2.10.1" 625 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 626 | dependencies: 627 | hoek "2.x.x" 628 | 629 | brace-expansion@^1.0.0: 630 | version "1.1.6" 631 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 632 | dependencies: 633 | balanced-match "^0.4.1" 634 | concat-map "0.0.1" 635 | 636 | braces@^1.8.2: 637 | version "1.8.5" 638 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 639 | dependencies: 640 | expand-range "^1.8.1" 641 | preserve "^0.2.0" 642 | repeat-element "^1.1.2" 643 | 644 | buffer-shims@^1.0.0: 645 | version "1.0.0" 646 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 647 | 648 | builtin-modules@^1.0.0: 649 | version "1.1.1" 650 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 651 | 652 | caseless@~0.11.0: 653 | version "0.11.0" 654 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 655 | 656 | chalk@^1.1.0, chalk@^1.1.1: 657 | version "1.1.1" 658 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.1.tgz#509afb67066e7499f7eb3535c77445772ae2d019" 659 | dependencies: 660 | ansi-styles "^2.1.0" 661 | escape-string-regexp "^1.0.2" 662 | has-ansi "^2.0.0" 663 | strip-ansi "^3.0.0" 664 | supports-color "^2.0.0" 665 | 666 | chokidar@^1.0.0: 667 | version "1.6.1" 668 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 669 | dependencies: 670 | anymatch "^1.3.0" 671 | async-each "^1.0.0" 672 | glob-parent "^2.0.0" 673 | inherits "^2.0.1" 674 | is-binary-path "^1.0.0" 675 | is-glob "^2.0.0" 676 | path-is-absolute "^1.0.0" 677 | readdirp "^2.0.0" 678 | optionalDependencies: 679 | fsevents "^1.0.0" 680 | 681 | code-point-at@^1.0.0: 682 | version "1.1.0" 683 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 684 | 685 | combined-stream@^1.0.5, combined-stream@~1.0.5: 686 | version "1.0.5" 687 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 688 | dependencies: 689 | delayed-stream "~1.0.0" 690 | 691 | commander@^2.8.1, commander@^2.9.0: 692 | version "2.9.0" 693 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 694 | dependencies: 695 | graceful-readlink ">= 1.0.0" 696 | 697 | concat-map@0.0.1: 698 | version "0.0.1" 699 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 700 | 701 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 702 | version "1.1.0" 703 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 704 | 705 | convert-source-map@^1.1.0: 706 | version "1.3.0" 707 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 708 | 709 | core-js@^1.0.0: 710 | version "1.2.7" 711 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 712 | 713 | core-js@^2.4.0: 714 | version "2.4.1" 715 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 716 | 717 | core-util-is@~1.0.0: 718 | version "1.0.2" 719 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 720 | 721 | cryptiles@2.x.x: 722 | version "2.0.5" 723 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 724 | dependencies: 725 | boom "2.x.x" 726 | 727 | dashdash@^1.12.0: 728 | version "1.14.1" 729 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 730 | dependencies: 731 | assert-plus "^1.0.0" 732 | 733 | debug@^2.1.1, debug@^2.2.0: 734 | version "2.6.0" 735 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 736 | dependencies: 737 | ms "0.7.2" 738 | 739 | debug@~2.2.0: 740 | version "2.2.0" 741 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 742 | dependencies: 743 | ms "0.7.1" 744 | 745 | deep-extend@~0.4.0: 746 | version "0.4.1" 747 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 748 | 749 | delayed-stream@~1.0.0: 750 | version "1.0.0" 751 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 752 | 753 | delegates@^1.0.0: 754 | version "1.0.0" 755 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 756 | 757 | detect-indent@^4.0.0: 758 | version "4.0.0" 759 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 760 | dependencies: 761 | repeating "^2.0.0" 762 | 763 | ecc-jsbn@~0.1.1: 764 | version "0.1.1" 765 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 766 | dependencies: 767 | jsbn "~0.1.0" 768 | 769 | encoding@^0.1.11: 770 | version "0.1.12" 771 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 772 | dependencies: 773 | iconv-lite "~0.4.13" 774 | 775 | error-ex@^1.2.0: 776 | version "1.3.0" 777 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 778 | dependencies: 779 | is-arrayish "^0.2.1" 780 | 781 | escape-string-regexp@^1.0.2: 782 | version "1.0.5" 783 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 784 | 785 | esutils@^2.0.0, esutils@^2.0.2: 786 | version "2.0.2" 787 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 788 | 789 | expand-brackets@^0.1.4: 790 | version "0.1.5" 791 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 792 | dependencies: 793 | is-posix-bracket "^0.1.0" 794 | 795 | expand-range@^1.8.1: 796 | version "1.8.2" 797 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 798 | dependencies: 799 | fill-range "^2.1.0" 800 | 801 | extend@~3.0.0: 802 | version "3.0.0" 803 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 804 | 805 | extglob@^0.3.1: 806 | version "0.3.2" 807 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 808 | dependencies: 809 | is-extglob "^1.0.0" 810 | 811 | extsprintf@1.0.2: 812 | version "1.0.2" 813 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 814 | 815 | fbjs@^0.8.4: 816 | version "0.8.8" 817 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.8.tgz#02f1b6e0ea0d46c24e0b51a2d24df069563a5ad6" 818 | dependencies: 819 | core-js "^1.0.0" 820 | isomorphic-fetch "^2.1.1" 821 | loose-envify "^1.0.0" 822 | object-assign "^4.1.0" 823 | promise "^7.1.1" 824 | setimmediate "^1.0.5" 825 | ua-parser-js "^0.7.9" 826 | 827 | filename-regex@^2.0.0: 828 | version "2.0.0" 829 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 830 | 831 | fill-range@^2.1.0: 832 | version "2.2.3" 833 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 834 | dependencies: 835 | is-number "^2.1.0" 836 | isobject "^2.0.0" 837 | randomatic "^1.1.3" 838 | repeat-element "^1.1.2" 839 | repeat-string "^1.5.2" 840 | 841 | find-up@^1.0.0, find-up@^1.1.2: 842 | version "1.1.2" 843 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 844 | dependencies: 845 | path-exists "^2.0.0" 846 | pinkie-promise "^2.0.0" 847 | 848 | for-in@^0.1.5: 849 | version "0.1.6" 850 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 851 | 852 | for-own@^0.1.4: 853 | version "0.1.4" 854 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 855 | dependencies: 856 | for-in "^0.1.5" 857 | 858 | forever-agent@~0.6.1: 859 | version "0.6.1" 860 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 861 | 862 | form-data@~2.1.1: 863 | version "2.1.2" 864 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 865 | dependencies: 866 | asynckit "^0.4.0" 867 | combined-stream "^1.0.5" 868 | mime-types "^2.1.12" 869 | 870 | fs-readdir-recursive@^1.0.0: 871 | version "1.0.0" 872 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 873 | 874 | fs.realpath@^1.0.0: 875 | version "1.0.0" 876 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 877 | 878 | fsevents@^1.0.0: 879 | version "1.0.17" 880 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 881 | dependencies: 882 | nan "^2.3.0" 883 | node-pre-gyp "^0.6.29" 884 | 885 | fstream-ignore@~1.0.5: 886 | version "1.0.5" 887 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 888 | dependencies: 889 | fstream "^1.0.0" 890 | inherits "2" 891 | minimatch "^3.0.0" 892 | 893 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 894 | version "1.0.10" 895 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 896 | dependencies: 897 | graceful-fs "^4.1.2" 898 | inherits "~2.0.0" 899 | mkdirp ">=0.5 0" 900 | rimraf "2" 901 | 902 | gauge@~2.7.1: 903 | version "2.7.2" 904 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 905 | dependencies: 906 | aproba "^1.0.3" 907 | console-control-strings "^1.0.0" 908 | has-unicode "^2.0.0" 909 | object-assign "^4.1.0" 910 | signal-exit "^3.0.0" 911 | string-width "^1.0.1" 912 | strip-ansi "^3.0.1" 913 | supports-color "^0.2.0" 914 | wide-align "^1.1.0" 915 | 916 | generate-function@^2.0.0: 917 | version "2.0.0" 918 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 919 | 920 | generate-object-property@^1.1.0: 921 | version "1.2.0" 922 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 923 | dependencies: 924 | is-property "^1.0.0" 925 | 926 | getpass@^0.1.1: 927 | version "0.1.6" 928 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 929 | dependencies: 930 | assert-plus "^1.0.0" 931 | 932 | glob-base@^0.3.0: 933 | version "0.3.0" 934 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 935 | dependencies: 936 | glob-parent "^2.0.0" 937 | is-glob "^2.0.0" 938 | 939 | glob-parent@^2.0.0: 940 | version "2.0.0" 941 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 942 | dependencies: 943 | is-glob "^2.0.0" 944 | 945 | glob@^5.0.5: 946 | version "5.0.15" 947 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 948 | dependencies: 949 | inflight "^1.0.4" 950 | inherits "2" 951 | minimatch "2 || 3" 952 | once "^1.3.0" 953 | path-is-absolute "^1.0.0" 954 | 955 | glob@^7.0.5: 956 | version "7.1.1" 957 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 958 | dependencies: 959 | fs.realpath "^1.0.0" 960 | inflight "^1.0.4" 961 | inherits "2" 962 | minimatch "^3.0.2" 963 | once "^1.3.0" 964 | path-is-absolute "^1.0.0" 965 | 966 | globals@^9.0.0: 967 | version "9.14.0" 968 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 969 | 970 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 971 | version "4.1.11" 972 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 973 | 974 | "graceful-readlink@>= 1.0.0": 975 | version "1.0.1" 976 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 977 | 978 | har-validator@~2.0.6: 979 | version "2.0.6" 980 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 981 | dependencies: 982 | chalk "^1.1.1" 983 | commander "^2.9.0" 984 | is-my-json-valid "^2.12.4" 985 | pinkie-promise "^2.0.0" 986 | 987 | has-ansi@^2.0.0: 988 | version "2.0.0" 989 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 990 | dependencies: 991 | ansi-regex "^2.0.0" 992 | 993 | has-unicode@^2.0.0: 994 | version "2.0.1" 995 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 996 | 997 | hawk@~3.1.3: 998 | version "3.1.3" 999 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1000 | dependencies: 1001 | boom "2.x.x" 1002 | cryptiles "2.x.x" 1003 | hoek "2.x.x" 1004 | sntp "1.x.x" 1005 | 1006 | hoek@2.x.x: 1007 | version "2.16.3" 1008 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1009 | 1010 | home-or-tmp@^2.0.0: 1011 | version "2.0.0" 1012 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1013 | dependencies: 1014 | os-homedir "^1.0.0" 1015 | os-tmpdir "^1.0.1" 1016 | 1017 | hosted-git-info@^2.1.4: 1018 | version "2.1.5" 1019 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1020 | 1021 | http-signature@~1.1.0: 1022 | version "1.1.1" 1023 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1024 | dependencies: 1025 | assert-plus "^0.2.0" 1026 | jsprim "^1.2.2" 1027 | sshpk "^1.7.0" 1028 | 1029 | iconv-lite@~0.4.13: 1030 | version "0.4.15" 1031 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1032 | 1033 | inflight@^1.0.4: 1034 | version "1.0.6" 1035 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1036 | dependencies: 1037 | once "^1.3.0" 1038 | wrappy "1" 1039 | 1040 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1041 | version "2.0.3" 1042 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1043 | 1044 | ini@~1.3.0: 1045 | version "1.3.4" 1046 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1047 | 1048 | invariant@^2.2.0: 1049 | version "2.2.2" 1050 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1051 | dependencies: 1052 | loose-envify "^1.0.0" 1053 | 1054 | is-arrayish@^0.2.1: 1055 | version "0.2.1" 1056 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1057 | 1058 | is-binary-path@^1.0.0: 1059 | version "1.0.1" 1060 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1061 | dependencies: 1062 | binary-extensions "^1.0.0" 1063 | 1064 | is-buffer@^1.0.2: 1065 | version "1.1.4" 1066 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1067 | 1068 | is-builtin-module@^1.0.0: 1069 | version "1.0.0" 1070 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1071 | dependencies: 1072 | builtin-modules "^1.0.0" 1073 | 1074 | is-dotfile@^1.0.0: 1075 | version "1.0.2" 1076 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1077 | 1078 | is-equal-shallow@^0.1.3: 1079 | version "0.1.3" 1080 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1081 | dependencies: 1082 | is-primitive "^2.0.0" 1083 | 1084 | is-extendable@^0.1.1: 1085 | version "0.1.1" 1086 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1087 | 1088 | is-extglob@^1.0.0: 1089 | version "1.0.0" 1090 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1091 | 1092 | is-finite@^1.0.0: 1093 | version "1.0.2" 1094 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1095 | dependencies: 1096 | number-is-nan "^1.0.0" 1097 | 1098 | is-fullwidth-code-point@^1.0.0: 1099 | version "1.0.0" 1100 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1101 | dependencies: 1102 | number-is-nan "^1.0.0" 1103 | 1104 | is-glob@^2.0.0, is-glob@^2.0.1: 1105 | version "2.0.1" 1106 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1107 | dependencies: 1108 | is-extglob "^1.0.0" 1109 | 1110 | is-my-json-valid@^2.12.4: 1111 | version "2.15.0" 1112 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1113 | dependencies: 1114 | generate-function "^2.0.0" 1115 | generate-object-property "^1.1.0" 1116 | jsonpointer "^4.0.0" 1117 | xtend "^4.0.0" 1118 | 1119 | is-number@^2.0.2, is-number@^2.1.0: 1120 | version "2.1.0" 1121 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1122 | dependencies: 1123 | kind-of "^3.0.2" 1124 | 1125 | is-posix-bracket@^0.1.0: 1126 | version "0.1.1" 1127 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1128 | 1129 | is-primitive@^2.0.0: 1130 | version "2.0.0" 1131 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1132 | 1133 | is-property@^1.0.0: 1134 | version "1.0.2" 1135 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1136 | 1137 | is-stream@^1.0.1: 1138 | version "1.1.0" 1139 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1140 | 1141 | is-typedarray@~1.0.0: 1142 | version "1.0.0" 1143 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1144 | 1145 | is-utf8@^0.2.0: 1146 | version "0.2.1" 1147 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1148 | 1149 | isarray@1.0.0, isarray@~1.0.0: 1150 | version "1.0.0" 1151 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1152 | 1153 | isobject@^2.0.0: 1154 | version "2.1.0" 1155 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1156 | dependencies: 1157 | isarray "1.0.0" 1158 | 1159 | isomorphic-fetch@^2.1.1: 1160 | version "2.2.1" 1161 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1162 | dependencies: 1163 | node-fetch "^1.0.1" 1164 | whatwg-fetch ">=0.10.0" 1165 | 1166 | isstream@~0.1.2: 1167 | version "0.1.2" 1168 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1169 | 1170 | istanbul-lib-coverage@^1.0.0: 1171 | version "1.0.0" 1172 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 1173 | 1174 | istanbul-lib-instrument@^1.4.2: 1175 | version "1.4.2" 1176 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.4.2.tgz#0e2fdfac93c1dabf2e31578637dc78a19089f43e" 1177 | dependencies: 1178 | babel-generator "^6.18.0" 1179 | babel-template "^6.16.0" 1180 | babel-traverse "^6.18.0" 1181 | babel-types "^6.18.0" 1182 | babylon "^6.13.0" 1183 | istanbul-lib-coverage "^1.0.0" 1184 | semver "^5.3.0" 1185 | 1186 | jodid25519@^1.0.0: 1187 | version "1.0.2" 1188 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1189 | dependencies: 1190 | jsbn "~0.1.0" 1191 | 1192 | js-tokens@^2.0.0: 1193 | version "2.0.0" 1194 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 1195 | 1196 | jsbn@~0.1.0: 1197 | version "0.1.0" 1198 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1199 | 1200 | jsesc@^1.3.0: 1201 | version "1.3.0" 1202 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1203 | 1204 | jsesc@~0.5.0: 1205 | version "0.5.0" 1206 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1207 | 1208 | json-schema@0.2.3: 1209 | version "0.2.3" 1210 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1211 | 1212 | json-stringify-safe@~5.0.1: 1213 | version "5.0.1" 1214 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1215 | 1216 | json5@^0.5.0: 1217 | version "0.5.1" 1218 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1219 | 1220 | jsonpointer@^4.0.0: 1221 | version "4.0.1" 1222 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1223 | 1224 | jsprim@^1.2.2: 1225 | version "1.3.1" 1226 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1227 | dependencies: 1228 | extsprintf "1.0.2" 1229 | json-schema "0.2.3" 1230 | verror "1.3.6" 1231 | 1232 | kind-of@^3.0.2: 1233 | version "3.1.0" 1234 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1235 | dependencies: 1236 | is-buffer "^1.0.2" 1237 | 1238 | load-json-file@^1.0.0: 1239 | version "1.1.0" 1240 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1241 | dependencies: 1242 | graceful-fs "^4.1.2" 1243 | parse-json "^2.2.0" 1244 | pify "^2.0.0" 1245 | pinkie-promise "^2.0.0" 1246 | strip-bom "^2.0.0" 1247 | 1248 | lodash@^4.2.0: 1249 | version "4.17.4" 1250 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1251 | 1252 | loose-envify@^1.0.0, loose-envify@^1.1.0: 1253 | version "1.3.0" 1254 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 1255 | dependencies: 1256 | js-tokens "^2.0.0" 1257 | 1258 | micromatch@^2.1.5, micromatch@^2.3.11: 1259 | version "2.3.11" 1260 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1261 | dependencies: 1262 | arr-diff "^2.0.0" 1263 | array-unique "^0.2.1" 1264 | braces "^1.8.2" 1265 | expand-brackets "^0.1.4" 1266 | extglob "^0.3.1" 1267 | filename-regex "^2.0.0" 1268 | is-extglob "^1.0.0" 1269 | is-glob "^2.0.1" 1270 | kind-of "^3.0.2" 1271 | normalize-path "^2.0.1" 1272 | object.omit "^2.0.0" 1273 | parse-glob "^3.0.4" 1274 | regex-cache "^0.4.2" 1275 | 1276 | mime-db@~1.26.0: 1277 | version "1.26.0" 1278 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1279 | 1280 | mime-types@^2.1.12, mime-types@~2.1.7: 1281 | version "2.1.14" 1282 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1283 | dependencies: 1284 | mime-db "~1.26.0" 1285 | 1286 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 1287 | version "3.0.3" 1288 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1289 | dependencies: 1290 | brace-expansion "^1.0.0" 1291 | 1292 | minimist@0.0.8: 1293 | version "0.0.8" 1294 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1295 | 1296 | minimist@^1.2.0: 1297 | version "1.2.0" 1298 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1299 | 1300 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1: 1301 | version "0.5.1" 1302 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1303 | dependencies: 1304 | minimist "0.0.8" 1305 | 1306 | ms@0.7.1: 1307 | version "0.7.1" 1308 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1309 | 1310 | ms@0.7.2: 1311 | version "0.7.2" 1312 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1313 | 1314 | nan@^2.3.0: 1315 | version "2.5.0" 1316 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.0.tgz#aa8f1e34531d807e9e27755b234b4a6ec0c152a8" 1317 | 1318 | node-fetch@^1.0.1: 1319 | version "1.6.3" 1320 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 1321 | dependencies: 1322 | encoding "^0.1.11" 1323 | is-stream "^1.0.1" 1324 | 1325 | node-pre-gyp@^0.6.29: 1326 | version "0.6.32" 1327 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 1328 | dependencies: 1329 | mkdirp "~0.5.1" 1330 | nopt "~3.0.6" 1331 | npmlog "^4.0.1" 1332 | rc "~1.1.6" 1333 | request "^2.79.0" 1334 | rimraf "~2.5.4" 1335 | semver "~5.3.0" 1336 | tar "~2.2.1" 1337 | tar-pack "~3.3.0" 1338 | 1339 | nopt@~3.0.6: 1340 | version "3.0.6" 1341 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1342 | dependencies: 1343 | abbrev "1" 1344 | 1345 | normalize-package-data@^2.3.2: 1346 | version "2.3.5" 1347 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 1348 | dependencies: 1349 | hosted-git-info "^2.1.4" 1350 | is-builtin-module "^1.0.0" 1351 | semver "2 || 3 || 4 || 5" 1352 | validate-npm-package-license "^3.0.1" 1353 | 1354 | normalize-path@^2.0.1: 1355 | version "2.0.1" 1356 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1357 | 1358 | npmlog@^4.0.1: 1359 | version "4.0.2" 1360 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1361 | dependencies: 1362 | are-we-there-yet "~1.1.2" 1363 | console-control-strings "~1.1.0" 1364 | gauge "~2.7.1" 1365 | set-blocking "~2.0.0" 1366 | 1367 | number-is-nan@^1.0.0: 1368 | version "1.0.1" 1369 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1370 | 1371 | oauth-sign@~0.8.1: 1372 | version "0.8.2" 1373 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1374 | 1375 | object-assign@^4.1.0: 1376 | version "4.1.0" 1377 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 1378 | 1379 | object.omit@^2.0.0: 1380 | version "2.0.1" 1381 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1382 | dependencies: 1383 | for-own "^0.1.4" 1384 | is-extendable "^0.1.1" 1385 | 1386 | once@^1.3.0: 1387 | version "1.4.0" 1388 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1389 | dependencies: 1390 | wrappy "1" 1391 | 1392 | once@~1.3.3: 1393 | version "1.3.3" 1394 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1395 | dependencies: 1396 | wrappy "1" 1397 | 1398 | os-homedir@^1.0.0: 1399 | version "1.0.2" 1400 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1401 | 1402 | os-tmpdir@^1.0.1: 1403 | version "1.0.2" 1404 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1405 | 1406 | output-file-sync@^1.1.0: 1407 | version "1.1.2" 1408 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1409 | dependencies: 1410 | graceful-fs "^4.1.4" 1411 | mkdirp "^0.5.1" 1412 | object-assign "^4.1.0" 1413 | 1414 | parse-glob@^3.0.4: 1415 | version "3.0.4" 1416 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1417 | dependencies: 1418 | glob-base "^0.3.0" 1419 | is-dotfile "^1.0.0" 1420 | is-extglob "^1.0.0" 1421 | is-glob "^2.0.0" 1422 | 1423 | parse-json@^2.2.0: 1424 | version "2.2.0" 1425 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1426 | dependencies: 1427 | error-ex "^1.2.0" 1428 | 1429 | path-exists@^2.0.0: 1430 | version "2.1.0" 1431 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1432 | dependencies: 1433 | pinkie-promise "^2.0.0" 1434 | 1435 | path-is-absolute@^1.0.0: 1436 | version "1.0.1" 1437 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1438 | 1439 | path-type@^1.0.0: 1440 | version "1.1.0" 1441 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1442 | dependencies: 1443 | graceful-fs "^4.1.2" 1444 | pify "^2.0.0" 1445 | pinkie-promise "^2.0.0" 1446 | 1447 | pify@^2.0.0: 1448 | version "2.3.0" 1449 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1450 | 1451 | pinkie-promise@^2.0.0: 1452 | version "2.0.1" 1453 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1454 | dependencies: 1455 | pinkie "^2.0.0" 1456 | 1457 | pinkie@^2.0.0: 1458 | version "2.0.4" 1459 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1460 | 1461 | preserve@^0.2.0: 1462 | version "0.2.0" 1463 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1464 | 1465 | private@^0.1.6: 1466 | version "0.1.6" 1467 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 1468 | 1469 | process-nextick-args@~1.0.6: 1470 | version "1.0.7" 1471 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1472 | 1473 | promise@^7.1.1: 1474 | version "7.1.1" 1475 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 1476 | dependencies: 1477 | asap "~2.0.3" 1478 | 1479 | punycode@^1.4.1: 1480 | version "1.4.1" 1481 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1482 | 1483 | qs@~6.3.0: 1484 | version "6.3.0" 1485 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1486 | 1487 | randomatic@^1.1.3: 1488 | version "1.1.6" 1489 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1490 | dependencies: 1491 | is-number "^2.0.2" 1492 | kind-of "^3.0.2" 1493 | 1494 | rc@~1.1.6: 1495 | version "1.1.6" 1496 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1497 | dependencies: 1498 | deep-extend "~0.4.0" 1499 | ini "~1.3.0" 1500 | minimist "^1.2.0" 1501 | strip-json-comments "~1.0.4" 1502 | 1503 | react@15.4.2: 1504 | version "15.4.2" 1505 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef" 1506 | dependencies: 1507 | fbjs "^0.8.4" 1508 | loose-envify "^1.1.0" 1509 | object-assign "^4.1.0" 1510 | 1511 | read-pkg-up@^1.0.1: 1512 | version "1.0.1" 1513 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1514 | dependencies: 1515 | find-up "^1.0.0" 1516 | read-pkg "^1.0.0" 1517 | 1518 | read-pkg@^1.0.0: 1519 | version "1.1.0" 1520 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1521 | dependencies: 1522 | load-json-file "^1.0.0" 1523 | normalize-package-data "^2.3.2" 1524 | path-type "^1.0.0" 1525 | 1526 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2: 1527 | version "2.2.2" 1528 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1529 | dependencies: 1530 | buffer-shims "^1.0.0" 1531 | core-util-is "~1.0.0" 1532 | inherits "~2.0.1" 1533 | isarray "~1.0.0" 1534 | process-nextick-args "~1.0.6" 1535 | string_decoder "~0.10.x" 1536 | util-deprecate "~1.0.1" 1537 | 1538 | readable-stream@~2.1.4: 1539 | version "2.1.5" 1540 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1541 | dependencies: 1542 | buffer-shims "^1.0.0" 1543 | core-util-is "~1.0.0" 1544 | inherits "~2.0.1" 1545 | isarray "~1.0.0" 1546 | process-nextick-args "~1.0.6" 1547 | string_decoder "~0.10.x" 1548 | util-deprecate "~1.0.1" 1549 | 1550 | readdirp@^2.0.0: 1551 | version "2.1.0" 1552 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1553 | dependencies: 1554 | graceful-fs "^4.1.2" 1555 | minimatch "^3.0.2" 1556 | readable-stream "^2.0.2" 1557 | set-immediate-shim "^1.0.1" 1558 | 1559 | regenerate@^1.2.1: 1560 | version "1.3.2" 1561 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1562 | 1563 | regenerator-runtime@^0.10.0: 1564 | version "0.10.1" 1565 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 1566 | 1567 | regenerator-transform@0.9.8: 1568 | version "0.9.8" 1569 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 1570 | dependencies: 1571 | babel-runtime "^6.18.0" 1572 | babel-types "^6.19.0" 1573 | private "^0.1.6" 1574 | 1575 | regex-cache@^0.4.2: 1576 | version "0.4.3" 1577 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1578 | dependencies: 1579 | is-equal-shallow "^0.1.3" 1580 | is-primitive "^2.0.0" 1581 | 1582 | regexpu-core@^2.0.0: 1583 | version "2.0.0" 1584 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1585 | dependencies: 1586 | regenerate "^1.2.1" 1587 | regjsgen "^0.2.0" 1588 | regjsparser "^0.1.4" 1589 | 1590 | regjsgen@^0.2.0: 1591 | version "0.2.0" 1592 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1593 | 1594 | regjsparser@^0.1.4: 1595 | version "0.1.5" 1596 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1597 | dependencies: 1598 | jsesc "~0.5.0" 1599 | 1600 | repeat-element@^1.1.2: 1601 | version "1.1.2" 1602 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1603 | 1604 | repeat-string@^1.5.2: 1605 | version "1.6.1" 1606 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1607 | 1608 | repeating@^2.0.0: 1609 | version "2.0.1" 1610 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1611 | dependencies: 1612 | is-finite "^1.0.0" 1613 | 1614 | request@^2.79.0: 1615 | version "2.79.0" 1616 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1617 | dependencies: 1618 | aws-sign2 "~0.6.0" 1619 | aws4 "^1.2.1" 1620 | caseless "~0.11.0" 1621 | combined-stream "~1.0.5" 1622 | extend "~3.0.0" 1623 | forever-agent "~0.6.1" 1624 | form-data "~2.1.1" 1625 | har-validator "~2.0.6" 1626 | hawk "~3.1.3" 1627 | http-signature "~1.1.0" 1628 | is-typedarray "~1.0.0" 1629 | isstream "~0.1.2" 1630 | json-stringify-safe "~5.0.1" 1631 | mime-types "~2.1.7" 1632 | oauth-sign "~0.8.1" 1633 | qs "~6.3.0" 1634 | stringstream "~0.0.4" 1635 | tough-cookie "~2.3.0" 1636 | tunnel-agent "~0.4.1" 1637 | uuid "^3.0.0" 1638 | 1639 | require-main-filename@^1.0.1: 1640 | version "1.0.1" 1641 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1642 | 1643 | rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4: 1644 | version "2.5.4" 1645 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1646 | dependencies: 1647 | glob "^7.0.5" 1648 | 1649 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: 1650 | version "5.3.0" 1651 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1652 | 1653 | set-blocking@~2.0.0: 1654 | version "2.0.0" 1655 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1656 | 1657 | set-immediate-shim@^1.0.1: 1658 | version "1.0.1" 1659 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1660 | 1661 | setimmediate@^1.0.5: 1662 | version "1.0.5" 1663 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1664 | 1665 | signal-exit@^3.0.0: 1666 | version "3.0.2" 1667 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1668 | 1669 | slash@^1.0.0: 1670 | version "1.0.0" 1671 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1672 | 1673 | sntp@1.x.x: 1674 | version "1.0.9" 1675 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1676 | dependencies: 1677 | hoek "2.x.x" 1678 | 1679 | source-map-support@^0.4.2: 1680 | version "0.4.8" 1681 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.8.tgz#4871918d8a3af07289182e974e32844327b2e98b" 1682 | dependencies: 1683 | source-map "^0.5.3" 1684 | 1685 | source-map@^0.5.0, source-map@^0.5.3: 1686 | version "0.5.6" 1687 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1688 | 1689 | spdx-correct@~1.0.0: 1690 | version "1.0.2" 1691 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1692 | dependencies: 1693 | spdx-license-ids "^1.0.2" 1694 | 1695 | spdx-expression-parse@~1.0.0: 1696 | version "1.0.4" 1697 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1698 | 1699 | spdx-license-ids@^1.0.2: 1700 | version "1.2.2" 1701 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1702 | 1703 | sshpk@^1.7.0: 1704 | version "1.10.2" 1705 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 1706 | dependencies: 1707 | asn1 "~0.2.3" 1708 | assert-plus "^1.0.0" 1709 | dashdash "^1.12.0" 1710 | getpass "^0.1.1" 1711 | optionalDependencies: 1712 | bcrypt-pbkdf "^1.0.0" 1713 | ecc-jsbn "~0.1.1" 1714 | jodid25519 "^1.0.0" 1715 | jsbn "~0.1.0" 1716 | tweetnacl "~0.14.0" 1717 | 1718 | string-width@^1.0.1: 1719 | version "1.0.2" 1720 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1721 | dependencies: 1722 | code-point-at "^1.0.0" 1723 | is-fullwidth-code-point "^1.0.0" 1724 | strip-ansi "^3.0.0" 1725 | 1726 | string_decoder@~0.10.x: 1727 | version "0.10.31" 1728 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1729 | 1730 | stringstream@~0.0.4: 1731 | version "0.0.5" 1732 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1733 | 1734 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1735 | version "3.0.1" 1736 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1737 | dependencies: 1738 | ansi-regex "^2.0.0" 1739 | 1740 | strip-bom@^2.0.0: 1741 | version "2.0.0" 1742 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1743 | dependencies: 1744 | is-utf8 "^0.2.0" 1745 | 1746 | strip-json-comments@~1.0.4: 1747 | version "1.0.4" 1748 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 1749 | 1750 | supports-color@^0.2.0: 1751 | version "0.2.0" 1752 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 1753 | 1754 | supports-color@^2.0.0: 1755 | version "2.0.0" 1756 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1757 | 1758 | tar-pack@~3.3.0: 1759 | version "3.3.0" 1760 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 1761 | dependencies: 1762 | debug "~2.2.0" 1763 | fstream "~1.0.10" 1764 | fstream-ignore "~1.0.5" 1765 | once "~1.3.3" 1766 | readable-stream "~2.1.4" 1767 | rimraf "~2.5.1" 1768 | tar "~2.2.1" 1769 | uid-number "~0.0.6" 1770 | 1771 | tar@~2.2.1: 1772 | version "2.2.1" 1773 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1774 | dependencies: 1775 | block-stream "*" 1776 | fstream "^1.0.2" 1777 | inherits "2" 1778 | 1779 | test-exclude@^3.3.0: 1780 | version "3.3.0" 1781 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" 1782 | dependencies: 1783 | arrify "^1.0.1" 1784 | micromatch "^2.3.11" 1785 | object-assign "^4.1.0" 1786 | read-pkg-up "^1.0.1" 1787 | require-main-filename "^1.0.1" 1788 | 1789 | to-fast-properties@^1.0.1: 1790 | version "1.0.2" 1791 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1792 | 1793 | tough-cookie@~2.3.0: 1794 | version "2.3.2" 1795 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1796 | dependencies: 1797 | punycode "^1.4.1" 1798 | 1799 | tunnel-agent@~0.4.1: 1800 | version "0.4.3" 1801 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1802 | 1803 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1804 | version "0.14.5" 1805 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1806 | 1807 | ua-parser-js@^0.7.9: 1808 | version "0.7.12" 1809 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 1810 | 1811 | uid-number@~0.0.6: 1812 | version "0.0.6" 1813 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1814 | 1815 | user-home@^1.1.1: 1816 | version "1.1.1" 1817 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1818 | 1819 | util-deprecate@~1.0.1: 1820 | version "1.0.2" 1821 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1822 | 1823 | uuid@^3.0.0: 1824 | version "3.0.1" 1825 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1826 | 1827 | v8flags@^2.0.10: 1828 | version "2.0.11" 1829 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 1830 | dependencies: 1831 | user-home "^1.1.1" 1832 | 1833 | validate-npm-package-license@^3.0.1: 1834 | version "3.0.1" 1835 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1836 | dependencies: 1837 | spdx-correct "~1.0.0" 1838 | spdx-expression-parse "~1.0.0" 1839 | 1840 | verror@1.3.6: 1841 | version "1.3.6" 1842 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1843 | dependencies: 1844 | extsprintf "1.0.2" 1845 | 1846 | whatwg-fetch@>=0.10.0: 1847 | version "2.0.1" 1848 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.1.tgz#078b9461bbe91cea73cbce8bb122a05f9e92b772" 1849 | 1850 | wide-align@^1.1.0: 1851 | version "1.1.0" 1852 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 1853 | dependencies: 1854 | string-width "^1.0.1" 1855 | 1856 | wrappy@1: 1857 | version "1.0.2" 1858 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1859 | 1860 | xtend@^4.0.0: 1861 | version "4.0.1" 1862 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1863 | --------------------------------------------------------------------------------