forked from Luehang/react-native-smart-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.78 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
97
98
99
100
101
102
103
104
105
106
{
"version": "1.0.3",
"name": "react-native-smart-gallery",
"description": "An easy and simple to use React Native component to render a large to very large list of swipable high performant pages with intelligent guestures responder to cushion rough guestures and detect gestures like pan, pinch and double tap. Supporting both iOS and Android. Free and made possible along with costly maintenance and updates by [Lue Hang](https://www.facebook.com/lue.hang) (the author).",
"keywords": [
"react-native-smart-gallery",
"react-native",
"gallery",
"images",
"album",
"swiper",
"pages",
"optimized rendering",
"smart rendering",
"optimized loading",
"large list",
"pinch",
"zoom",
"scroll",
"translation",
"gesture responder",
"intelligent gesture detection",
"sensitive scrolling",
"double tap",
"camera roll",
"pictures",
"animated",
"animation",
"photo",
"ios",
"android",
"LueHsoft",
"LueH LABS",
"Lue Hang",
"luehang"
],
"homepage": "https://luehangs.site/lue_hang/projects/react-native-smart-gallery",
"author": {
"name": "Lue Hang",
"email": "[email protected]",
"url": "https://www.luehangs.site"
},
"repository": {
"type": "git",
"url": "https://github.com/Luehang/react-native-smart-gallery"
},
"bugs": {
"url": "https://github.com/Luehang/react-native-smart-gallery/issues"
},
"directories": {
"__tests__": "./__tests__",
"example": "./example",
"src": "./src"
},
"main": "./src/index.js",
"files": [
"/__tests__",
"/src",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"prop-types": "^15.6.2",
"react-native-easy-guesture-responder": "^1.1.2",
"react-native-image-transformer": "^1.0.6",
"react-native-smart-page": "^1.0.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"react": "16.8.3",
"react-native": "0.59.4",
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"babel-jest": "^24.7.1",
"jest": "^24.7.1",
"metro-react-native-babel-preset": "^0.53.1",
"react-test-renderer": "16.8.3",
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.5.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/",
"<rootDir>/__tests__/mocks/"
],
"testPathIgnorePatterns": [
"<rootDir>/example/",
"<rootDir>/__tests__/mocks/"
]
},
"scripts": {
"lint": "./node_modules/.bin/eslint src/",
"test": "jest"
},
"license": "MIT"
}