-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.02 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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "react-native-image-picker",
"version": "2.3.4",
"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",
"types": "lib/typescript/index.d.ts",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"files": [
"/android",
"!/android/build",
"/ios",
"/src",
"/lib",
"/*.podspec"
],
"author": "Marc Shilling (marcshilling)",
"contributors": [
{
"name": "Johan du Toit",
"email": "[email protected]"
},
{
"name": "Matheus Santos",
"email": "[email protected]"
},
{
"name": "Yoann Fuks",
"email": "[email protected]"
},
{
"name": "Alexander Ustinov",
"email": "[email protected]"
}
],
"homepage": "https://github.com/react-community/react-native-image-picker#readme",
"license": "MIT",
"scripts": {
"start": "react-native start",
"test": "yarn validate:eslint && yarn validate:typescript",
"validate:eslint": "eslint \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\"",
"validate:typescript": "tsc --project ./ --noEmit",
"test:jest": "jest \"/src/\"",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"keywords": [
"react-native",
"react-native-image-picker",
"react",
"native",
"image",
"picker"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"@react-native-community/bob": "^0.6.0",
"@react-native-community/eslint-config": "^0.0.5",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "7.0.12",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@types/react-native": "^0.57.63",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-jest": "^24.8.0",
"eslint": "5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "3.0.1",
"husky": "^2.4.1",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"metro-react-native-babel-preset": "^0.54.1",
"prettier": "^1.18.2",
"react": "16.8.6",
"react-native": "0.60.0-rc.2",
"react-test-renderer": "16.8.6",
"rimraf": "^2.6.3",
"semantic-release": "15.13.16",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-image-picker.git"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"flow": true
}
],
"module",
"typescript"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn eslint --fix",
"git add"
],
"*.java": [
"cd android && ./graldew spotlessApply",
"git add"
]
}
}