UNPKG

2.98 kBJSONView Raw
1{
2 "name": "react-native-router-flux",
3 "version": "4.3.1",
4 "description": "React Native Router using Flux architecture",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/aksonov/react-native-router-flux"
8 },
9 "bugs": {
10 "url": "https://github.com/aksonov/react-native-router-flux"
11 },
12 "homepage": "https://github.com/aksonov/react-native-router-flux#readme",
13 "license": "MIT",
14 "main": "src/index.js",
15 "types": "index.d.ts",
16 "scripts": {
17 "start": "node node_modules/react-native/local-cli/cli.js start",
18 "postinstall": "./node_modules/.bin/opencollective postinstall || exit 0",
19 "build": "./node_modules/.bin/babel src -d dist",
20 "lint": "prettier-eslint $PWD/'src/**/*.js' $PWD/'__tests__/**/*.js' --list-different",
21 "fix": "prettier-eslint $PWD/'src/**/*.js' $PWD/'__tests__/**/*.js' --write",
22 "test": "jest"
23 },
24 "dependencies": {
25 "@babel/runtime": "^7.6.0",
26 "add": "^2.0.6",
27 "lodash": "^4.17.15",
28 "opencollective": "^1.0.3",
29 "path-to-regexp": "^2.4.0",
30 "prop-types": "^15.6.2",
31 "react-navigation": "^4.x",
32 "react-navigation-drawer": "^2.2.1",
33 "react-navigation-stack": "^2.10.2",
34 "react-navigation-tabs": "^2.10.1",
35 "remove": "^0.1.5"
36 },
37 "devDependencies": {
38 "@babel/cli": "7.0.0-beta.47",
39 "@babel/code-frame": "7.0.0-beta.47",
40 "@babel/core": "^7.6.0",
41 "@babel/plugin-proposal-decorators": "7.0.0-beta.47",
42 "@babel/plugin-proposal-optional-chaining": "7.0.0-beta.47",
43 "@types/react": "16.4.12",
44 "@types/react-native": "0.56.14",
45 "babel-core": "^7.0.0-0",
46 "babel-eslint": "9.0.0-beta.1",
47 "babel-jest": "^25.1.0",
48 "babel-preset-react-native": "5.0.2",
49 "eslint": "^6.7.0",
50 "eslint-config-airbnb": "17.1.0",
51 "eslint-config-prettier": "3.0.1",
52 "eslint-plugin-eslint-comments": "3.0.1",
53 "eslint-plugin-import": "2.14.0",
54 "eslint-plugin-jest": "21.22.0",
55 "eslint-plugin-jsx-a11y": "6.1.1",
56 "eslint-plugin-react": "7.11.0",
57 "estraverse-fb": "1.3.2",
58 "jest": "^25.1.0",
59 "prettier-eslint": "8.8.2",
60 "prettier-eslint-cli": "5.0.0-beta.0",
61 "react": "16.4.1",
62 "react-native": "0.56.0",
63 "react-native-gesture-handler": "^1.4.1",
64 "react-native-jest-mocks": "1.4.0",
65 "react-test-renderer": "16.4.1"
66 },
67 "peerDependencies": {
68 "react": "*",
69 "react-native": "*"
70 },
71 "jest": {
72 "preset": "react-native",
73 "modulePathIgnorePatterns": [
74 "<rootDir>/examples/"
75 ],
76 "transformIgnorePatterns": [
77 "node_modules/(?!(jest-)?react-native|react-navigation|@react-navigation|react-navigation-(tabs|drawer|deprecated-tab-navigator|stack))"
78 ],
79 "setupFiles": [
80 "./test/setup.js"
81 ]
82 },
83 "eslintConfig": {
84 "filePath": "./eslintrc.js"
85 },
86 "collective": {
87 "type": "opencollective",
88 "url": "https://opencollective.com/react-native-router-flux",
89 "logo": "https://opencollective.com/opencollective/logo.txt"
90 }
91}