-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
55
{
"name": "react-native-image-picker",
"description": "A React Native module that allows you to use native UI to select media from the device library or directly from the camera",
"version": "0.27.1",
"main": "index.js",
"homepage": "https://github.com/react-community/react-native-image-picker",
"repository": {
"type": "git",
"url": "https://github.com/react-community/react-native-image-picker.git"
},
"nativePackage": true,
"author": "Marc Shilling (marcshilling)",
"contributors": [
{
"name": "Matheus Santos",
"email": "[email protected]"
},
{
"name": "Yoann Fuks",
"email": "[email protected]"
},
{
"name": "Alexander Ustinov",
"email": "[email protected]"
}
],
"keywords": [
"react-native",
"react-native-image-picker",
"react",
"native",
"image",
"picker"
],
"scripts": {},
"types": "./index.d.ts",
"license": "MIT",
"devDependencies": {
"flow-bin": "0.82.0",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"prettier": "1.14.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}