forked from satya164/react-native-tab-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.33 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
{
"name": "react-native-tab-view-alt",
"version": "3.1.2",
"description": "Tab view component for React Native",
"main": "lib/commonjs/index.js",
"react-native": "src/index.tsx",
"module": "lib/module/index.js",
"types": "lib/typescript/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",
"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/app-bootstrap/react-native-tab-view.git"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/)",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^13.1.0",
"@expo/vector-icons": "^12.0.0",
"@release-it/conventional-changelog": "^3.0.1",
"@types/react": "^17.0.15",
"@types/react-native": "0.64.12",
"babel-jest": "^27.0.6",
"babel-preset-react-native": "^4.0.0",
"commitlint": "^13.1.0",
"eslint": "^7.31.0",
"eslint-config-satya164": "^3.1.10",
"eslint-plugin-react-native-globals": "^0.1.2",
"husky": "^4.2.5",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "17.0.1",
"react-native": "0.64.3",
"react-native-builder-bob": "^0.18.1",
"react-native-pager-view": "5.4.9",
"release-it": "^14.12.4",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-pager-view": "*"
},
"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-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}