123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- {
- "name": "react-native-navigation",
- "version": "6.5.0",
- "description": "React Native Navigation - truly native navigation for iOS and Android",
- "license": "MIT",
- "nativePackage": true,
- "publishConfig": {
- "registry": "https://registry.npmjs.org/"
- },
- "bugs": {
- "url": "https://github.com/wix/react-native-navigation/issues"
- },
- "homepage": "https://github.com/wix/react-native-navigation",
- "readme": "https://github.com/wix/react-native-navigation#readme",
- "repository": {
- "type": "git",
- "url": "https://github.com/wix/react-native-navigation.git"
- },
- "main": "lib/dist/index.js",
- "typings": "lib/dist/index.d.ts",
- "scripts": {
- "build": "node ./scripts/build",
- "watch": "node ./scripts/watch",
- "xcode": "open playground/ios/playground.xcworkspace",
- "install-android": "node ./scripts/install-android",
- "uninstall-android": "cd playground/android && ./gradlew uninstallAll",
- "clean": "node ./scripts/clean",
- "prestart": "npm run build",
- "start": "node ./scripts/start",
- "start-windows": "node ./scripts/start-windows",
- "pretest-js": "npm run build",
- "test-js": "node ./scripts/test-js",
- "pod-install": "pod install --project-directory=playground/ios",
- "test-unit-ios": "node ./scripts/test-unit --ios",
- "test-snapshot-ios": "node ./scripts/test-snapshot --ios",
- "test-unit-android": "node ./scripts/test-unit --android",
- "pretest-e2e-android": "npm run build",
- "test-e2e-android": "node ./scripts/test-e2e --android",
- "test-e2e-android-multi": "npm run test-e2e-android -- --multi",
- "pretest-e2e-ios": "npm run build",
- "test-e2e-ios": "node ./scripts/test-e2e --ios",
- "test-e2e-ios-multi": "npm run test-e2e-ios -- --multi",
- "test-all": "node ./scripts/test-all",
- "prerelease": "npm run build",
- "release": "node ./scripts/release",
- "local-docs": "node ./scripts/local-docs",
- "gen-docs": "ts-node ./scripts/gen-docs/Main",
- "docusaurus": "npm start --prefix website"
- },
- "peerDependencies": {
- "react": "*",
- "react-native": "*"
- },
- "dependencies": {
- "hoist-non-react-statics": "3.x.x",
- "lodash": "4.17.x",
- "prop-types": "15.x.x",
- "react-lifecycles-compat": "2.0.0",
- "tslib": "1.9.3"
- },
- "devDependencies": {
- "@babel/core": "7.6.4",
- "@babel/plugin-proposal-export-default-from": "7.2.0",
- "@babel/plugin-proposal-export-namespace-from": "7.2.0",
- "@babel/types": "7.6.x",
- "@react-native-community/eslint-config": "0.0.3",
- "@types/hoist-non-react-statics": "^3.0.1",
- "@types/jest": "24.x.x",
- "@types/lodash": "^4.14.149",
- "@types/react": "16.x.x",
- "@types/react-native": "0.61.10",
- "@types/react-test-renderer": "16.x.x",
- "babel-jest": "24.9.x",
- "detox": "14.x.x",
- "jest": "24.9.x",
- "lodash": "^4.17.15",
- "metro-react-native-babel-preset": "0.57.x",
- "react": "16.9.0",
- "react-native": "0.61.5",
- "react-native-keyboard-tracking-view": "5.x.x",
- "react-native-typescript-transformer": "1.2.12",
- "react-native-ui-lib": "3.24.2",
- "react-redux": "5.x.x",
- "react-test-renderer": "16.9.x",
- "redux": "3.x.x",
- "remx": "2.x.x",
- "semver": "5.x.x",
- "shell-utils": "1.x.x",
- "ts-mockito": "^2.3.1",
- "ts-node": "5.x.x",
- "tslint": "5.x.x",
- "typedoc": "0.x.x",
- "typescript": "3.2.2",
- "identity-obj-proxy": "3.0.0"
- },
- "jest": {
- "preset": "react-native",
- "transform": {
- "^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
- },
- "roots": [
- "<rootDir>/node_modules/",
- "<rootDir>/lib/dist/",
- "<rootDir>/integration/"
- ],
- "collectCoverageFrom": [
- "lib/dist/**/*.js",
- "integration/**/*.js",
- "!lib/dist/index.js",
- "!lib/dist/Navigation.js",
- "!lib/dist/adapters/**/*",
- "!lib/dist/interfaces/**/*",
- "!lib/dist/**/*.test.*",
- "!integration/**/*.test.*",
- "!integration/*.test.*"
- ],
- "resetMocks": true,
- "resetModules": true,
- "coverageReporters": [
- "json",
- "lcov",
- "text",
- "html"
- ]
- },
- "detox": {
- "test-runner": "jest",
- "specs": "",
- "configurations": {
- "ios.none": {
- "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
- "type": "ios.none",
- "name": "iPhone 11",
- "session": {
- "server": "ws://localhost:8099",
- "sessionId": "playground"
- }
- },
- "ios.sim.debug": {
- "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
- "build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground -workspace playground/ios/playground.xcworkspace -sdk iphonesimulator -configuration Debug -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet -UseModernBuildSystem=NO",
- "type": "ios.simulator",
- "name": "iPhone 11"
- },
- "ios.sim.release": {
- "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Release-iphonesimulator/playground.app",
- "build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground_release -workspace playground/ios/playground.xcworkspace -sdk iphonesimulator -configuration Release -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet -UseModernBuildSystem=NO",
- "type": "ios.simulator",
- "name": "iPhone 11"
- },
- "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_API_28"
- },
- "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_API_28"
- }
- }
- }
- }
|