forked from bogoslavskiy/react-native-tabs-section-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1017 Bytes
/
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
{
"name": "react-native-tabs-section-list",
"version": "1.0.1",
"description": "React Native SectionList with scrollable tabs",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib/* && yarn lint && tsc",
"lint": "tslint 'src/**/*.ts?(x)'"
},
"keywords": [
"react-native",
"react",
"native",
"android",
"ios",
"scrollview",
"flatlist",
"sectionlist",
"scroll",
"tabs"
],
"author": "Artem Bogoslavskiy",
"license": "MIT",
"homepage": "https://github.com/bogoslavskiy/react-native-tabs-section-list",
"repository": {
"type": "git",
"url": "https://github.com/bogoslavskiy/react-native-tabs-section-list"
},
"devDependencies": {
"@types/react-native": "^0.57.0",
"react": "16.5.0",
"react-native": "0.57.0",
"tslint": "5.12.0",
"tslint-config-airbnb": "5.11.1",
"typescript": "3.4.5"
},
"peerDependencies": {
"react": "> 15.0.0",
"react-native": "> 0.50.0"
}
}