2018-07-30 20:21:48 -07:00
|
|
|
{
|
2018-08-15 19:23:26 -07:00
|
|
|
"name": "react-native-webview",
|
2020-02-12 15:39:11 -08:00
|
|
|
"description": "React Native WebView component for iOS, Android, and macOS",
|
2018-07-30 22:00:33 -07:00
|
|
|
"main": "index.js",
|
2019-03-26 03:31:50 +03:00
|
|
|
"typings": "index.d.ts",
|
2018-09-08 10:42:02 -07:00
|
|
|
"author": "Jamon Holmgren <jamon@infinite.red>",
|
2018-10-13 00:49:59 +02:00
|
|
|
"contributors": [
|
|
|
|
"Thibault Malbranche <malbranche.thibault@gmail.com>"
|
|
|
|
],
|
2018-10-18 18:08:49 +09:00
|
|
|
"license": "MIT",
|
2020-02-21 19:05:47 +00:00
|
|
|
"version": "8.1.2",
|
2018-09-09 19:36:28 +02:00
|
|
|
"homepage": "https://github.com/react-native-community/react-native-webview#readme",
|
2018-09-09 22:40:32 -06:00
|
|
|
"scripts": {
|
2020-01-21 11:39:40 -08:00
|
|
|
"start": "node node_modules/react-native/local-cli/cli.js start",
|
|
|
|
"start:android": "react-native run-android --root example/",
|
|
|
|
"start:ios": "react-native run-ios --project-path example/ios --scheme example",
|
2020-02-12 15:39:11 -08:00
|
|
|
"start:macos": "node node_modules/react-native-macos/local-cli/cli.js start --use-react-native-macos",
|
2019-03-20 12:35:13 +00:00
|
|
|
"ci": "CI=true && yarn lint && yarn test",
|
2018-10-17 14:54:44 +02:00
|
|
|
"ci:publish": "yarn semantic-release",
|
2019-03-20 12:35:13 +00:00
|
|
|
"lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
|
|
|
|
"build": "yarn tsc",
|
2019-06-21 15:11:20 -07:00
|
|
|
"prepare": "yarn build",
|
2019-03-20 12:35:13 +00:00
|
|
|
"test": "yarn jest"
|
2018-09-09 22:40:32 -06:00
|
|
|
},
|
2019-09-04 16:30:45 +02:00
|
|
|
"rn-docs": {
|
|
|
|
"title": "Webview",
|
|
|
|
"type": "Component"
|
|
|
|
},
|
2018-07-30 20:21:48 -07:00
|
|
|
"peerDependencies": {
|
2020-01-21 11:39:40 -08:00
|
|
|
"react": "^16.9",
|
2019-08-30 12:04:32 +02:00
|
|
|
"react-native": ">=0.60 <0.62"
|
2018-07-30 20:21:48 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-09-19 11:40:51 +02:00
|
|
|
"escape-string-regexp": "2.0.0",
|
2019-03-20 12:35:13 +00:00
|
|
|
"invariant": "2.2.4"
|
2018-09-09 22:40:32 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-21 11:39:40 -08:00
|
|
|
"@babel/core": "7.4.5",
|
|
|
|
"@babel/runtime": "7.4.5",
|
2020-02-12 15:39:11 -08:00
|
|
|
"@react-native-community/cli-platform-ios": "^3.0.0",
|
|
|
|
"@react-native-community/cli-platform-android": "^3.0.0",
|
2019-09-19 11:40:51 +02:00
|
|
|
"@semantic-release/git": "7.0.16",
|
|
|
|
"@types/invariant": "^2.2.30",
|
|
|
|
"@types/jest": "24.0.18",
|
2019-03-20 12:35:13 +00:00
|
|
|
"@types/react": "16.8.8",
|
2019-09-19 11:40:51 +02:00
|
|
|
"@types/react-native": "0.60.11",
|
|
|
|
"@typescript-eslint/eslint-plugin": "2.1.0",
|
|
|
|
"@typescript-eslint/parser": "2.1.0",
|
|
|
|
"babel-eslint": "10.0.3",
|
2020-01-21 11:39:40 -08:00
|
|
|
"babel-jest": "24.8.0",
|
|
|
|
"babel-plugin-module-resolver": "3.1.3",
|
2019-09-19 11:40:51 +02:00
|
|
|
"eslint": "6.3.0",
|
|
|
|
"eslint-config-airbnb": "18.0.1",
|
|
|
|
"eslint-config-prettier": "6.2.0",
|
|
|
|
"eslint-plugin-import": "2.18.2",
|
|
|
|
"eslint-plugin-jsx-a11y": "6.2.3",
|
|
|
|
"eslint-plugin-react": "7.14.3",
|
|
|
|
"eslint-plugin-react-native": "3.7.0",
|
|
|
|
"jest": "24.9.0",
|
2020-01-21 11:39:40 -08:00
|
|
|
"metro-react-native-babel-preset": "0.54.1",
|
|
|
|
"react": "16.9.0",
|
|
|
|
"react-native": "0.61.5",
|
2020-02-12 15:39:11 -08:00
|
|
|
"react-native-macos": "0.60.0-microsoft.49",
|
2019-09-19 11:40:51 +02:00
|
|
|
"semantic-release": "15.13.24",
|
|
|
|
"typescript": "3.6.2"
|
2018-10-17 14:54:44 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/react-native-community/react-native-webview.git"
|
2019-03-20 12:35:13 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"android",
|
|
|
|
"ios",
|
2020-02-12 15:39:11 -08:00
|
|
|
"macos",
|
2019-03-20 12:35:13 +00:00
|
|
|
"lib",
|
|
|
|
"index.js",
|
|
|
|
"index.d.ts",
|
|
|
|
"react-native-webview.podspec"
|
|
|
|
]
|
2020-01-26 08:27:01 +00:00
|
|
|
}
|