{
  "name": "react-native-interactable-ts",
  "version": "1.0.5",
  "description": "High performance interactable views in React Native",
  "license": "MIT",
  "author": "Tal Kol <talkol@gmail.com>",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "bugs": {
    "url": "https://github.com/wix/react-native-interactable/issues"
  },
  "homepage": "https://github.com/wix/react-native-interactable",
  "readme": "https://github.com/wix/react-native-interactable#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/wix/react-native-interactable.git"
  },
  "main": "lib/index.js",
  "scripts": {
    "start": "node ./node_modules/react-native/local-cli/cli.js start",
    "ios": "react-native run-ios --project-path playground/ios/",
    "android": "react-native run-android --root playground",
    "test": ":",
    "e2e:ios": "detox test --configuration ios.sim.release --debug-synchronization",
    "e2e:ios-multi": "npm run e2e:ios -- -w 2",
    "e2e:android": "npm run build:android && detox test --configuration android.emu.release --loglevel verbose",
    "e2e:android:ci": "npm run build:android && detox test --configuration android.emu.release --loglevel verbose --headless",
    "build:ios": "detox build --configuration ios.sim.release",
    "build:android": "detox build --configuration android.emu.release"
  },
  "dependencies": {},
  "peerDependencies": {
    "react": ">= 15.4.1",
    "react-native": ">= 0.40.0"
  },
  "jest": {
    "preset": "react-native"
  },
  "devDependencies": {
    "@types/react-native": ">= 0.52.2",
    "babel-jest": "23.6.0",
    "detox": "^9.0.0",
    "jest": "23.6.0",
    "metro-react-native-babel-preset": "0.47.1",
    "mocha": "^5.0.5",
    "react": "16.6.0-alpha.8af6728",
    "react-native": "0.57.4",
    "react-test-renderer": "16.5.0"
  },
  "typings": "typings/react-native-interactable.d.ts",
  "babel": {
    "env": {
      "test": {
        "presets": [
          "react-native"
        ]
      }
    }
  },
  "detox": {
    "specs": "e2e",
    "configurations": {
      "ios.sim.debug": {
        "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
        "build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground -project playground/ios/playground.xcodeproj -sdk iphonesimulator -configuration Debug -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet",
        "type": "ios.simulator",
        "name": "iPhone X"
      },
      "ios.sim.release": {
        "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Release-iphonesimulator/playground.app",
        "build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground -project playground/ios/playground.xcodeproj -sdk iphonesimulator -configuration Release -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet",
        "type": "ios.simulator",
        "name": "iPhone X"
      },
      "android.emu.debug": {
        "binaryPath": "playground/android/app/build/outputs/apk/debug/app-debug.apk",
        "build": "cd playground/android && ./gradlew :app:assembleDebug :app:assembleAndroidTest -DtestBuildType=debug",
        "type": "android.emulator",
        "name": "Pixel_2_API_26"
      },
      "android.emu.release": {
        "binaryPath": "playground/android/app/build/outputs/apk/release/app-release.apk",
        "build": "cd playground/android && ./gradlew :app:assembleRelease :app:assembleAndroidTest -DtestBuildType=release",
        "type": "android.emulator",
        "name": "Pixel_2_API_26"
      }
    }
  }
}
