{
  "name": "rn-webview-rpc",
  "version": "2.1.0",
  "description": "Adding RPC capabilities to the React Native WebView component",
  "browser": "web.js",
  "scripts": {
    "jest": "jest src",
    "mangle-src": "cp -rf package.json src",
    "test": "npm run mangle-src && jest src",
    "mangle-dist": "cp README.md package.json dist && mv dist/rnRpc.js dist/web.js",
    "webpack": "npm run mangle-src && webpack --mode=production",
    "build": "npm test && rm -rf dist && mkdir dist && npm run webpack & npm run mangle-dist",
    "mypublish": "npm run build && npm publish dist"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ronhe/rn-webview-rpc.git"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "example/",
      "proxy-polyfill/"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!(react-native|comlinkjs|react-native-webview)/)"
    ]
  },
  "keywords": [
    "React",
    "Native",
    "React-Native",
    "RPC",
    "WebView",
    "Comlink",
    "comlinkjs",
    "bridge",
    "postMessage"
  ],
  "author": "Ron Heimann <ron.heimann@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ronhe/rn-webview-rpc/issues"
  },
  "homepage": "https://github.com/ronhe/rn-webview-rpc#readme",
  "devDependencies": {
    "@babel/cli": "^7.5.5",
    "@babel/core": "^7.5.5",
    "@babel/plugin-proposal-class-properties": "^7.5.5",
    "@babel/plugin-proposal-json-strings": "^7.2.0",
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
    "@babel/plugin-syntax-import-meta": "^7.2.0",
    "@babel/plugin-transform-runtime": "^7.5.5",
    "@babel/preset-env": "^7.5.5",
    "@babel/preset-flow": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "@babel/preset-stage-3": "^7.0.0",
    "babel-jest": "^24.9.0",
    "babel-loader": "^8.0.6",
    "eslint": "^6.2.2",
    "eslint-config-airbnb": "^18.0.1",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-react": "^7.14.3",
    "jest": "^24.9.0",
    "react": "^16.8.3",
    "react-native": "^0.59.10",
    "react-native-webview": "^6.5.1",
    "react-test-renderer": "^16.8.6",
    "webpack": "^4.39.3",
    "webpack-cli": "^3.3.7"
  },
  "dependencies": {
    "@babel/runtime": "^7.5.5",
    "@babel/runtime-corejs3": "^7.5.5",
    "comlinkjs": "git://github.com/ronhe/comlink.git#dist",
    "prop-types": "^15.7.2",
    "proxy-polyfill": "^0.3.0"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*",
    "react-native-webview": "*"
  }
}
