123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- {
- "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 <zlotindaniel@gmail.com>",
- "contributors": [
- "Tal Kol <talkol@gmail.com>",
- "Guy Carmeli <guyc@wix.com>",
- "Ran Greenberg <rang@wix.com>",
- "Artal Druk <artald@wix.com>"
- ],
- "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": "*",
- "react-native": "*"
- },
- "dependencies": {
- "lodash": "4.x.x"
- },
- "devDependencies": {
- "babel-cli": "6.x.x",
- "babel-core": "6.x.x",
- "babel-eslint": "7.x.x",
- "babel-jest": "20.x.x",
- "babel-polyfill": "6.x.x",
- "babel-preset-react-native": "2.x.x",
- "babel-register": "6.x.x",
- "detox": "5.x.x",
- "eslint": "4.x.x",
- "eslint-plugin-babel": "4.x.x",
- "eslint-plugin-react": "7.x.x",
- "eslint-plugin-react-native": "2.x.x",
- "jest": "20.x.x",
- "jest-cli": "20.x.x",
- "mocha": "3.x.x",
- "react": "16.0.0-alpha.6",
- "react-native": "0.44.0",
- "react-test-renderer": "16.0.0-alpha.6",
- "remx": "1.x.x",
- "semver": "5.x.x",
- "shell-utils": "1.x.x"
- },
- "babel": {
- "env": {
- "test": {
- "presets": [
- "react-native"
- ],
- "retainLines": true
- }
- }
- },
- "jest": {
- "preset": "react-native",
- "roots": [
- "<rootDir>/node_modules/",
- "<rootDir>/lib/src/",
- "<rootDir>/integration/"
- ],
- "collectCoverageFrom": [
- "lib/src/**/*.js",
- "integration/**/*.js",
- "!lib/src/index.js",
- "!lib/src/Navigation.js",
- "!lib/src/adapters/**/*"
- ],
- "resetMocks": true,
- "resetModules": true,
- "coverageThreshold": {
- "global": {
- "branches": 100,
- "functions": 100,
- "lines": 100,
- "statements": 100
- }
- }
- }
- }
|