{ "name": "react-native-navigation", "version": "2.0.0", "description": "React Native Navigation - truly native navigation for iOS and Android", "license": "MIT", "nativePackage": true, "author": "Daniel Zlotin ", "contributors": [ "Tal Kol ", "Guy Carmeli ", "Ran Greenberg ", "Artal Druk " ], "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/src/index.js", "scripts": { "build": ":", "xcode": "open playground/ios/playground.xcodeproj", "install-android": "node ./scripts/install-android.js", "uninstall-android": "cd playground/android && ./gradlew uninstallAll", "clean": "node ./scripts/clean.js", "start": "node ./scripts/start.js", "test-js": "node ./scripts/test-js.js", "test-unit-android": "node ./scripts/test.unit.android.js", "test-unit-ios": "node ./scripts/test.unit.ios.js", "test-e2e-android": "node ./scripts/test.e2e.android.js", "test-e2e-ios": "node ./scripts/test.e2e.ios.js", "test-all": "node ./scripts/test.all.js", "test-watch": "BABEL_ENV=test jest --coverage --watch", "release": "node ./scripts/release.js" }, "peerDependencies": { "react-native": "*", "react": "*" }, "dependencies": { "lodash": "4.x.x" }, "devDependencies": { "react-native": "0.41.2", "react": "15.4.2", "react-test-renderer": "15.4.2", "babel-cli": "6.x.x", "babel-core": "6.x.x", "babel-polyfill": "6.x.x", "babel-eslint": "7.x.x", "babel-preset-react-native": "1.x.x", "babel-register": "6.x.x", "babel-jest": "18.x.x", "eslint": "3.x.x", "eslint-plugin-babel": "4.x.x", "eslint-plugin-react": "6.x.x", "eslint-plugin-react-native": "2.x.x", "jest": "18.x.x", "jest-cli": "18.x.x", "remx": "1.x.x", "semver": "5.x.x", "detox": "5.x.x", "mocha": "3.x.x", "shell-utils": "1.x.x" }, "babel": { "env": { "test": { "presets": [ "react-native" ], "retainLines": true } } }, "jest": { "preset": "react-native", "testPathDirs": [ "/node_modules/", "/lib/src/", "/integration/" ], "resetMocks": true, "resetModules": true, "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 } } } }