-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "react-native-web-webview",
"version": "1.0.2",
"description": "React Native for Web implementation of RN's WebView",
"main": "src/index.js",
"main-es": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:react-native-web-community/react-native-web-webview.git"
},
"author": {
"name": "Louis Lagrange",
"email": "[email protected]",
"url": "https://github.com/Minishlink"
},
"license": "MIT",
"keywords": [
"react-native",
"react-native-web",
"WebView"
],
"scripts": {
"prepublish": "yarn build",
"build": "mkdir -p dist && babel src --out-dir dist --copy-files",
"test": "prettier --check ."
},
"babel": {
"presets": [
"react-native"
]
},
"files": [
"src",
"dist",
"yarn.lock"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react-native": "^4.0.0",
"file-loader": "^1.1.4",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native-web": "^0.13.4",
"webpack": "^3.6.0"
},
"peerDependencies": {
"file-loader": "*",
"react-native-web": "*"
},
"dependencies": {
"qs": "^6.5.1"
}
}