-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.12 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
{
"name": "react-native-draggable-list",
"version": "1.0.0",
"description": "List for React-Native which can be scrolled and/or docked to arbitrarbitrarily many positions on screen. Behaves like the list in Google Maps android app. This functionality cannot be achieved with ListView hence this JS implementation. Performance can suffer when rendering long lists, consider using onPositionChange to render the extra elements when needed, the childrenHeight prop means not rendering children immediately will not interfere with the scroll behaviour.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saberking/react-native-draggable-list.git"
},
"keywords": [
"react",
"native",
"draggable",
"list",
"ListView",
"bottom",
"sheet",
"bottom-sheet",
"react-native"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saberking/react-native-draggable-list/issues"
},
"homepage": "https://github.com/saberking/react-native-draggable-list#readme"
}