123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "name": "react-native-navigation",
- "version": "2.0.0-alpha.0",
- "description": "React Native Navigation - truly native navigation for iOS and Android",
- "license": "MIT",
- "nativePackage": true,
- "author": "Tal Kol <talkol@gmail.com>",
- "contributors": [
- "Daniel Zlotin <zlotindaniel@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": "src/index.js",
- "scripts": {
- "build": ":",
- "lint": "eslint src",
- "test-js": "BABEL_ENV=test jest --coverage",
- "test-android": "cd android && ./gradlew clean testDebugUnitTest",
- "test-ios": ":",
- "test": "npm run lint && npm run test-js && npm run test-android && npm run test-ios",
- "test-watch": "BABEL_ENV=test jest --coverage --watch",
- "release": ":"
- },
- "peerDependencies": {
- "react-native": "*",
- "react": "*"
- },
- "dependencies": {
- "lodash": "4.x.x"
- },
- "devDependencies": {
- "react-native": "0.38.0",
- "react": "15.4.1",
- "babel-cli": "6.x.x",
- "babel-core": "6.x.x",
- "babel-polyfill": "6.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",
- "react-test-renderer": "15.4.1",
- "remx": "0.1.x",
- "semver": "5.x.x"
- },
- "babel": {
- "env": {
- "test": {
- "presets": [
- "react-native"
- ],
- "retainLines": true
- }
- }
- },
- "jest": {
- "preset": "react-native",
- "testPathDirs": [
- "node_modules",
- "src",
- "integration"
- ],
- "resetMocks": true,
- "resetModules": true
- }
- }
|