mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-24 09:08:15 +00:00
99 lines
3.6 KiB
JSON
99 lines
3.6 KiB
JSON
{
|
|
"name": "react-navigation",
|
|
"version": "1.0.0-beta.9",
|
|
"description": "React Navigation",
|
|
"main": "src/react-navigation.js",
|
|
"sources": {
|
|
"react-native-v1": "lib-rn/react-navigation.js",
|
|
"web": "lib/react-navigation.web.js"
|
|
},
|
|
"module": "lib/react-navigation.web.js",
|
|
"webpack": "lib/react-navigation.web.js",
|
|
"repository": {
|
|
"url": "git@github.com:react-community/react-navigation.git",
|
|
"type": "git"
|
|
},
|
|
"author": "Adam Miskiewicz <adam@sk3vy.com>",
|
|
"license": "BSD-2-Clause",
|
|
"scripts": {
|
|
"clean": "rm -rf lib/ lib-rn/",
|
|
"build": "npm run build-docs && npm run build-web && npm run build-rn && npm run build-dot-flow",
|
|
"watch-rn": "mkdir -p lib-rn/views/ && cp -R src/views/assets lib/views/assets && BABEL_ENV=publish-rn babel -w src -d lib-rn",
|
|
"watch-web": "mkdir -p lib/views/ && cp -R src/views/assets lib/views/assets && BABEL_ENV=publish-web babel -w src -d lib",
|
|
"build-rn": "mkdir -p lib-rn/views/ && cp -R src/views/assets lib-rn/views/assets && BABEL_ENV=publish-rn babel src -d lib-rn --ignore __tests__",
|
|
"build-web": "mkdir -p lib/views/ && cp -R src/views/assets lib/views/assets && BABEL_ENV=publish-web babel src -d lib --ignore __tests__",
|
|
"build-dot-flow": "find ./src -name '*.js' -not -path '*/__tests__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow && cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib-rn\\//g'`.flow; done",
|
|
"build-docs": "node scripts/compile-docs",
|
|
"start": "node ./node_modules/react-native/local-cli/cli.js start --config ./rn-cli.config.js",
|
|
"run-playground-ios": "cd examples/NavigationPlayground && react-native run-ios",
|
|
"run-playground-android": "cd examples/NavigationPlayground && react-native run-android",
|
|
"test": "npm run lint && npm run flow-check && npm run jest",
|
|
"codecov": "codecov",
|
|
"jest": "jest",
|
|
"lint": "eslint .",
|
|
"format": "eslint --fix .",
|
|
"flow": "flow",
|
|
"flow-check": "flow check --show-all-errors",
|
|
"prepublish": "npm run clean && npm run build"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"lib-rn",
|
|
"src"
|
|
],
|
|
"devDependencies": {
|
|
"babel-cli": "^6.24.1",
|
|
"babel-core": "^6.24.1",
|
|
"babel-eslint": "^7.2.3",
|
|
"babel-jest": "^20.0.1",
|
|
"babel-plugin-flow-react-proptypes": "^2.2.1",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babel-preset-react-native": "^1.9.2",
|
|
"babel-preset-react-native-syntax": "^1.0.0",
|
|
"babel-preset-stage-1": "^6.24.1",
|
|
"codecov": "^2.2.0",
|
|
"eslint": "^3.19.0",
|
|
"eslint-config-prettier": "^2.1.0",
|
|
"eslint-plugin-flowtype": "^2.33.0",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"eslint-plugin-jsx-a11y": "^5.0.1",
|
|
"eslint-plugin-prettier": "^2.0.1",
|
|
"eslint-plugin-react": "^7.0.1",
|
|
"flow-bin": "0.42.0",
|
|
"jest": "^20.0.1",
|
|
"prettier": "^1.3.1",
|
|
"prettier-eslint": "^6.2.2",
|
|
"react": "16.0.0-alpha.6",
|
|
"react-native": "^0.44.0",
|
|
"react-native-vector-icons": "^4.1.1",
|
|
"react-test-renderer": "^15.4.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "*",
|
|
"react-native": "*"
|
|
},
|
|
"dependencies": {
|
|
"clamp": "^1.0.1",
|
|
"fbjs": "^0.8.12",
|
|
"hoist-non-react-statics": "^1.2.0",
|
|
"path-to-regexp": "^1.7.0",
|
|
"prop-types": "^15.5.10",
|
|
"react-native-drawer-layout-polyfill": "^1.3.0",
|
|
"react-native-tab-view": "^0.0.65"
|
|
},
|
|
"jest": {
|
|
"notify": true,
|
|
"preset": "react-native",
|
|
"testRegex": "./src/.*\\-test\\.js$",
|
|
"setupFiles": [
|
|
"<rootDir>/jest-setup.js"
|
|
],
|
|
"coverageDirectory": "./coverage/",
|
|
"collectCoverage": true,
|
|
"modulePathIgnorePatterns": [
|
|
"examples"
|
|
]
|
|
}
|
|
}
|