This repository was archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.43 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.43 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
45
{
"name": "rn-webview",
"version": "0.1.0",
"author": "Charles Stover <npmjs@charlesstover.com>",
"bugs": {
"url": "https://github.com/CharlesStover/react-native-web-view/issues"
},
"description": "An implementation of React Native's WebView that allows for window.postMessage on iOS devices.",
"devDependencies": {
"@babel/core": "^7.0.0-beta.56",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.56",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.56",
"@babel/preset-env": "^7.0.0-beta.56",
"@babel/preset-react": "^7.0.0-beta.56",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.0-beta.4",
"react": "^16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-28.0.0.tar.gz",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
},
"homepage": "https://github.com/CharlesStover/react-native-web-view#readme",
"keywords": [
"react",
"reactjs",
"react-native",
"reactnative"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"react": "^16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-28.0.0.tar.gz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CharlesStover/react-native-web-view.git"
},
"scripts": {
"build": "webpack",
"dev": "set NODE_ENV=development && webpack",
"prepublishOnly": "npm run build",
"test": "echo \"No test.\""
}
}