forked from satya164/react-native-tab-view
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
99 lines (99 loc) · 2.6 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
{
"name": "react-native-tab-view",
"version": "2.6.1",
"description": "Tab view component for React Native",
"main": "lib/commonjs/index.js",
"react-native": "lib/module/index.js",
"module": "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 .",
"release": "release-it",
"example": "yarn --cwd example",
"bootstrap": "yarn && yarn example",
"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-native-community/react-native-tab-view.git"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-community/react-native-tab-view/issues"
},
"homepage": "https://github.com/react-native-community/react-native-tab-view#readme",
"devDependencies": {
"@commitlint/config-conventional": "^8.0.0",
"@expo/vector-icons": "^10.0.2",
"@react-native-community/bob": "^0.4.1",
"@release-it/conventional-changelog": "^1.1.0",
"@types/expo": "^32.0.13",
"@types/react": "^16.8.20",
"@types/react-native": "^0.57.63",
"babel-jest": "^24.8.0",
"babel-preset-react-native": "^4.0.0",
"commitlint": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-satya164": "^2.4.1",
"eslint-plugin-react-native-globals": "^0.1.2",
"husky": "^2.4.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-native": "~0.59.8",
"react-native-gesture-handler": "^1.3.0",
"react-native-reanimated": "^1.0.1",
"release-it": "^12.3.0",
"typescript": "^3.5.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}