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 39
/
package.json
89 lines (89 loc) · 2.5 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
{
"name": "react-navigation-material-bottom-tabs",
"version": "2.1.5",
"description": "Material Bottom Tab Navigation component for React Navigation",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"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",
"material"
],
"repository": {
"type": "git",
"url": "git+https://github.com/react-navigation/react-navigation-material-bottom-tabs.git"
},
"author": "Satyajit Sahoo <satyajit.happy@gmail.com> (https://github.com/satya164/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-navigation/react-navigation-material-bottom-tabs/issues"
},
"homepage": "https://github.com/react-navigation/react-navigation-material-bottom-tabs#readme",
"devDependencies": {
"@commitlint/config-conventional": "^7.5.0",
"@expo/vector-icons": "^10.0.1",
"@react-native-community/bob": "^0.6.1",
"@release-it/conventional-changelog": "^1.1.0",
"@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",
"eslint": "^6.5.1",
"eslint-config-satya164": "^3.1.2",
"eslint-plugin-react-native-globals": "^0.1.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"prettier": "^1.18.2",
"react": "16.8.3",
"react-native": "~0.59.8",
"react-native-gesture-handler": "^1.4.1",
"react-native-paper": "^3.1.1",
"react-native-reanimated": "^1.2.0",
"react-navigation": "^4.0.7",
"release-it": "^12.3.6",
"typescript": "^3.5.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-paper": "^2.2.2 || ^3.0.0",
"react-navigation": "^4.0.7"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}