-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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
{
"name": "@nyashanziramasanga/react-native-horizontal-scroll-menu",
"version": "1.0.11",
"description": "A horizontally scrolling tab/picker component for React Native",
"react-native": "src/index.tsx",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"/src",
"/lib"
],
"directories": {
"example": "example",
"lib": "lib"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "yarn validate:typescript",
"validate:typescript": "tsc --project ./ --noEmit",
"prepare": "bob build"
},
"keywords": [
"react-native",
"scroll",
"menu",
"horizontal scrolling menu",
"horizontal menu",
"react native scroll menu",
"react-native-horizontal-picker",
"picker",
"tabs",
"react native tabs",
"horizontal"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NyashaNziramasanga/react-native-horizontal-scroll-menu.git"
},
"author": "NyashaNziramasanga (http://nyashanziramasanga.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/NyashaNziramasanga/react-native-horizontal-scroll-menu/issues"
},
"homepage": "https://github.com/NyashaNziramasanga/react-native-horizontal-scroll-menu#readme",
"dependencies": {},
"devDependencies": {
"@types/react-native": "^0.71.6",
"react-native": "^0.71.7",
"react-native-builder-bob": "^0.20.4",
"typescript": "^5.0.4"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"flow": true
}
],
"module",
"typescript"
]
}
}