-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "react-native-directed-scrollview",
"version": "2.0.0",
"description": "A natively implemented scrollview component which lets you specify different scroll directions for child content.",
"main": "index.js",
"scripts": {
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisfisher/react-native-directed-scrollview.git"
},
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"scrollview",
"horizontal",
"vertical",
"direction"
],
"peerDependencies": {
"react-native": ">=0.56.0"
},
"nativePackage": true,
"rnpm": {
"android": {
"packageInstance": "new DirectedScrollViewPackage()"
},
"ios": {
"project": "ios/RCTDirectedScrollView.xcodeproj"
}
},
"author": "Chris Fisher",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisfisher/react-native-directed-scrollview/issues"
},
"homepage": "https://github.com/chrisfisher/react-native-directed-scrollview#readme"
}