forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.49 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"_args": [
[
"react-navigation@1.5.12",
"/Users/dura/apps/apps/dentgroup/dentapp"
]
],
"_from": "react-navigation@1.5.12",
"_id": "react-navigation@1.5.12",
"_inBundle": false,
"_integrity": "sha512-+i0ymFHokQxjv0/0knBUtxC1zuyvLgbDVPFU7ScKxT25SGVh2exuRjYwXImF234/qtYMskfY7bfhEjGLcXPySQ==",
"_location": "/react-navigation",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "react-navigation@1.5.12",
"name": "react-navigation",
"escapedName": "react-navigation",
"rawSpec": "1.5.12",
"saveSpec": null,
"fetchSpec": "1.5.12"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/react-navigation/-/react-navigation-1.5.12.tgz",
"_spec": "1.5.12",
"_where": "/Users/dura/apps/apps/dentgroup/dentapp",
"author": {
"name": "Adam Miskiewicz",
"email": "adam@sk3vy.com"
},
"bugs": {
"url": "https://github.com/react-navigation/react-navigation/issues"
},
"dependencies": {
"clamp": "^1.0.1",
"hoist-non-react-statics": "^2.2.0",
"path-to-regexp": "^1.7.0",
"prop-types": "^15.5.10",
"react-lifecycles-compat": "^3.0.2",
"react-native-drawer-layout-polyfill": "^1.3.2",
"react-native-safe-area-view": "^0.7.0",
"react-native-tab-view": "github:react-navigation/react-native-tab-view"
},
"description": "Routing and navigation for your React Native apps",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-react-native": "^2.1.0",
"codecov": "^2.2.0",
"eslint": "^4.2.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"jest": "^22.1.3",
"lint-staged": "^4.2.1",
"prettier": "^1.5.3",
"prettier-eslint": "^6.4.2",
"react": "16.2.0",
"react-native": "^0.52.0",
"react-native-vector-icons": "^4.2.0",
"react-test-renderer": "^16.0.0"
},
"files": [
"src"
],
"homepage": "https://github.com/react-navigation/react-navigation#readme",
"jest": {
"notify": true,
"preset": "react-native",
"testRegex": "./src/.*\\-test\\.js$",
"setupFiles": [
"<rootDir>/jest-setup.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"jest-setup.js"
],
"modulePathIgnorePatterns": [
"examples"
]
},
"license": "BSD-2-Clause",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write flow/react-navigation.js",
"git add"
]
},
"main": "src/react-navigation.js",
"name": "react-navigation",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"repository": {
"url": "git+ssh://git@github.com/react-navigation/react-navigation.git",
"type": "git"
},
"scripts": {
"android": "cd examples/NavigationPlayground && yarn && yarn android",
"codecov": "codecov",
"format": "eslint --fix .",
"ios": "cd examples/NavigationPlayground && yarn && yarn ios",
"jest": "jest",
"lint": "eslint .",
"precommit": "lint-staged",
"start": "npm run ios",
"test": "npm run lint && npm run jest",
"test-update-snapshot": "jest --updateSnapshot"
},
"version": "1.5.12"
}