forked from satya164/react-native-tab-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.34 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
{
"name": "react-native-tab-view",
"version": "1.3.2",
"description": "Tab view component for React Native",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"test": "jest",
"flow": "flow",
"lint": "eslint .",
"release": "release-it",
"example": "yarn --cwd example",
"bootstrap": "yarn && yarn example"
},
"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": "^7.5.0",
"@expo/vector-icons": "^9.0.0",
"babel-jest": "^24.1.0",
"babel-preset-react-native": "^4.0.0",
"commitlint": "^7.5.2",
"conventional-changelog-cli": "^2.0.12",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.14.0",
"eslint-config-satya164": "^2.1.0",
"eslint-plugin-react-native-globals": "^0.1.2",
"flow-bin": "~0.78.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "^1.13.4",
"react": "16.5.0",
"react-dom": "16.5.0",
"react-native": "~0.57.1",
"react-native-gesture-handler": "^1.0.15",
"react-native-reanimated": "^1.0.0-alpha.12",
"react-test-renderer": "16.8.2",
"release-it": "^10.1.0"
},
"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 flow"
}
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/__setup__/enzyme.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}