This repository was archived by the owner on Jun 28, 2021. It is now read-only.
forked from loiclouvet/react-native-webview-file-upload
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 KB
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
{
"name": "react-native-webview-file-upload-android",
"version": "1.1.2",
"main": "index.js",
"description": "ReactNative's WebView on Android does not support file input. This library adds in an `<AndroidWebView>` that does support file input, as well as download support, and run-time permission requests for Android API v26",
"repository": {
"type": "git",
"url": "https://github.com/Oblongmana/react-native-webview-file-upload-android"
},
"license": "BSD-3-Clause",
"files": [
"index.js",
"AndroidWebView.js",
"WebViewShared.js",
"android/",
"LICENSE",
"README.md"
],
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start"
},
"peerDependencies": {
"react": "^16.4.1",
"react-native": "^0.56.0"
},
"dependencies": {
"escape-string-regexp": "^1.0.5",
"keymirror": "^0.1.1",
"prop-types": "^15.6.2",
"warning": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"jest": "18.1.0",
"react-test-renderer": "15.4.2"
}
}