This repository has been archived by the owner on Feb 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 223
/
package.json
118 lines (118 loc) · 3.13 KB
/
package.json
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
{
"name": "react-navigation-tabs",
"version": "2.7.0",
"description": "Tab Navigation components for React Navigation",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint --ext .js,.ts,.tsx .",
"bootstrap": "yarn --cwd example && yarn",
"example": "yarn --cwd example",
"release": "yarn release-it",
"prepare": "bob build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react-native-component",
"react-component",
"react-native",
"ios",
"android",
"tab",
"swipe",
"scrollable",
"coverflow"
],
"repository": {
"type": "git",
"url": "git+https://github.com/react-navigation/tabs.git"
},
"author": "Satyajit Sahoo <satyajit.happy@gmail.com> (https://github.com/satya164/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-navigation/tabs/issues"
},
"homepage": "https://github.com/react-navigation/tabs#readme",
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"react-lifecycles-compat": "^3.0.4",
"react-native-safe-area-view": "^0.14.6",
"react-native-tab-view": "^2.11.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^7.5.0",
"@expo/vector-icons": "^10.0.1",
"@react-native-community/bob": "^0.6.1",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^16.8.17",
"@types/react-native": "^0.57.57",
"babel-jest": "^24.5.0",
"commitlint": "^7.5.2",
"conventional-changelog-cli": "^2.0.12",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.2.2",
"eslint": "^6.5.1",
"eslint-config-satya164": "^3.1.2",
"eslint-plugin-react-native-globals": "^0.1.0",
"flow-bin": "~0.78.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"prettier": "^1.18.2",
"react": "16.5.0",
"react-dom": "16.5.0",
"react-native": "~0.57.1",
"react-native-gesture-handler": "^1.4.1",
"react-native-reanimated": "^1.2.0",
"react-navigation": "^4.0.7",
"react-test-renderer": "16.5.0",
"release-it": "^10.3.1",
"typescript": "^3.5.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "^1.0.0",
"react-native-reanimated": "^1.0.0-alpha",
"react-native-screens": "^1.0.0 || ^1.0.0-alpha",
"react-navigation": "^4.0.7"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn flow check"
}
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/__setup__/enzyme.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}