12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "name": "react-native-navigation",
- "version": "2.0.0-experimental.160",
- "description": "React Native Navigation - truly native navigation for iOS and Android",
- "license": "MIT",
- "nativePackage": true,
- "author": "Tal Kol <talkol@gmail.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",
- "test:js": "jest --coverage",
- "test:android": "cd android && ./gradlew clean testDebugUnitTest",
- "test:ios": ":",
- "pretest": "npm run lint",
- "test": "npm run test:js && npm run test:android && npm run test:ios",
- "test:watch": "jest --coverage --watch",
- "release": "npm version prerelease && npm publish --tag next && npm view react-native-navigation dist-tags && git push"
- },
- "optionalDependencies": {
- "react-redux": "*"
- },
- "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": "17.x.x",
- "eslint": "3.x.x",
- "eslint-plugin-babel": "3.x.x",
- "eslint-plugin-react": "6.x.x",
- "eslint-plugin-react-native": "2.x.x",
- "jest": "17.x.x",
- "jest-cli": "17.x.x",
- "jest-react-native": "17.x.x",
- "react-test-renderer": "15.4.1"
- },
- "jest": {
- "preset": "jest-react-native",
- "testPathDirs": [
- "node_modules",
- "src2"
- ],
- "resetMocks": true,
- "resetModules": true
- }
- }
|