forked from cbbfcd/react-native-lightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "react-native-lightbox-v2",
"version": "0.8.9-beta.0",
"description": "Images etc in Full Screen Lightbox Popovers for React Native",
"main": "dist/Lightbox.js",
"types": "dist/Lightbox.d.ts",
"module": "dist/Lightbox.js",
"scripts": {
"build": "rm -rf dist && tsc",
"prepublish": "yarn build"
},
"files": [
"dist",
"readme.md",
"package.json"
],
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"ui",
"lightbox",
"gallery",
"image-gallery",
"image",
"image-viewer"
],
"repository": {
"type": "git",
"url": "https://github.com/cbbfcd/react-native-lightbox.git"
},
"author": "Joel Arvidsson <joel@oblador.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cbbfcd/react-native-lightbox/issues"
},
"homepage": "https://github.com/cbbfcd/react-native-lightbox",
"devDependencies": {
"@babel/runtime": "7.7.4",
"@types/react": "16.9.13",
"@types/react-native": "0.60.23",
"react": "16.12.0",
"react-native": "0.61.5",
"typescript": "3.7.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.61.0"
}
}