-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
127 lines (127 loc) · 3.24 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
119
120
121
122
123
124
125
126
127
{
"name": "react-native-collapsible-tab-view",
"version": "8.0.0",
"description": "Collapsible tab view component for React Native",
"main": "lib/commonjs/index.js",
"react-native": "src/index.tsx",
"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 example && yarn",
"prepack": "bob build",
"docs": "ts-node ./documentation/buildDocs.ts",
"prepare": "bob build && husky install"
},
"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/PedroBern/react-native-collapsible-tab-view.git"
},
"author": "Pedro Bern <[email protected]> (https://github.com/pedrobern/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedrobern/react-native-collapsible-tab-view/issues"
},
"homepage": "https://github.com/PedroBern/react-native-collapsible-tab-view#readme",
"devDependencies": {
"@commitlint/config-conventional": "^19.1.0",
"@microsoft/tsdoc": "^0.14.2",
"@release-it/conventional-changelog": "^8.0.1",
"@shopify/flash-list": "^1.6.4",
"@types/react": "~18.2.74",
"@types/react-native": "0.73.0",
"babel-jest": "^29.7.0",
"babel-preset-react-native": "^4.0.1",
"commitlint": "^19.2.1",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-react-native-globals": "^0.1.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react": "~18.2.0",
"react-docgen-typescript": "^1.20.5",
"react-native": "~0.73.6",
"react-native-builder-bob": "^0.18.2",
"react-native-gesture-handler": "~2.16.0",
"react-native-pager-view": "^6.3.0",
"react-native-reanimated": "3.8.1",
"release-it": "^17.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"@shopify/flash-list": ">=1.0.0",
"react": "*",
"react-native": "*",
"react-native-pager-view": "*",
"react-native-reanimated": ">=3.8.1"
},
"peerDependenciesMeta": {
"@shopify/flash-list": {
"optional": true
}
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"dependencies": {
"use-deep-compare": "^1.1.0"
},
"packageManager": "[email protected]",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}