-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "react-native-image-picker",
"version": "4.0.6",
"description": "A React Native module that allows you to use native UI to select media from the device library or directly from the camera",
"react-native": "src/index.ts",
"main": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"files": [
"/android",
"!/android/build",
"/ios",
"/*.podspec",
"/src",
"/lib"
],
"author": "Johan du Toit (Johan-dutoit)",
"contributors": [
{
"name": "Raviraj",
"email": "[email protected]"
}
],
"homepage": "https://github.com/react-native-image-picker/react-native-image-picker",
"license": "MIT",
"scripts": {
"start": "react-native start",
"example": "yarn --cwd example",
"prepare": "bob build",
"ci:publish": "yarn semantic-release"
},
"keywords": [
"react-native",
"react-native-image-picker",
"react",
"native",
"image",
"picker"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-image-picker/react-native-image-picker.git"
},
"devDependencies": {
"@react-native-community/bob": "0.17.1",
"@semantic-release/git": "9.0.0",
"@types/react": "16.9.54",
"@types/react-native": "0.63.30",
"semantic-release": "17.3.0",
"typescript": "4.1.5"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"typescript"
]
}
}