12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "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": "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": "src/index.js",
- "scripts": {
- "build": ":",
- "test-js": "eslint src integration scripts playground/src playground/e2e playground/scripts && BABEL_ENV=test jest --coverage",
- "test-android": "node ./scripts/test.android.js",
- "test-ios": "node ./scripts/test.ios.js",
- "test": "yarn run test-js && yarn run test-android && yarn run test-ios",
- "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-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": "0.1.x",
- "semver": "5.x.x",
- "detox": "5.x.x",
- "mocha": "*",
- "shell-utils": "1.x.x"
- },
- "babel": {
- "env": {
- "test": {
- "presets": [
- "react-native"
- ],
- "retainLines": true
- }
- }
- },
- "jest": {
- "preset": "react-native",
- "testPathDirs": [
- "<rootDir>/node_modules/",
- "<rootDir>/src/",
- "<rootDir>/integration/"
- ],
- "resetMocks": true,
- "resetModules": true,
- "coverageThreshold": {
- "global": {
- "branches": 100,
- "functions": 100,
- "lines": 100,
- "statements": 100
- }
- }
- }
- }
|