2018-07-30 20:21:48 -07:00
|
|
|
{
|
2018-08-15 19:23:26 -07:00
|
|
|
"name": "react-native-webview",
|
2018-10-13 00:56:22 +02:00
|
|
|
"description": "React Native WebView component for iOS, Android, and Windows 10 (coming soon)",
|
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",
|
2019-06-13 06:54:12 +00:00
|
|
|
"version": "6.2.3",
|
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": {
|
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",
|
|
|
|
"prepack": "yarn build",
|
|
|
|
"test": "yarn jest"
|
2018-09-09 22:40:32 -06:00
|
|
|
},
|
2018-07-30 20:21:48 -07:00
|
|
|
"peerDependencies": {
|
|
|
|
"react": "^16.0",
|
2019-03-20 12:35:13 +00:00
|
|
|
"react-native": ">=0.57 <0.60"
|
2018-07-30 20:21:48 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-03-20 12:35:13 +00:00
|
|
|
"escape-string-regexp": "1.0.5",
|
|
|
|
"invariant": "2.2.4"
|
2018-09-09 22:40:32 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-03-20 12:35:13 +00:00
|
|
|
"@babel/core": "7.3.4",
|
2018-10-18 11:42:21 +02:00
|
|
|
"@semantic-release/git": "7.0.5",
|
2019-03-20 12:35:13 +00:00
|
|
|
"@types/escape-string-regexp": "1.0.0",
|
|
|
|
"@types/invariant": "^2.2.29",
|
|
|
|
"@types/jest": "24.0.11",
|
|
|
|
"@types/react": "16.8.8",
|
|
|
|
"@types/react-native": "0.57.40",
|
|
|
|
"@typescript-eslint/eslint-plugin": "1.4.2",
|
|
|
|
"@typescript-eslint/parser": "1.4.2",
|
|
|
|
"babel-eslint": "10.0.1",
|
2019-02-03 10:45:58 -08:00
|
|
|
"babel-jest": "^24.0.0",
|
2019-03-20 12:35:13 +00:00
|
|
|
"eslint": "5.15.1",
|
|
|
|
"eslint-config-airbnb": "17.1.0",
|
|
|
|
"eslint-config-prettier": "4.1.0",
|
|
|
|
"eslint-plugin-import": "2.16.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "6.2.1",
|
|
|
|
"eslint-plugin-react": "7.12.4",
|
|
|
|
"eslint-plugin-react-native": "3.6.0",
|
|
|
|
"jest": "24.5.0",
|
|
|
|
"metro-react-native-babel-preset": "0.53.1",
|
|
|
|
"react": "16.8.3",
|
|
|
|
"react-native": "0.59.1",
|
|
|
|
"semantic-release": "15.10.3",
|
|
|
|
"typescript": "3.3.3333"
|
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",
|
|
|
|
"lib",
|
|
|
|
"index.js",
|
|
|
|
"index.d.ts",
|
|
|
|
"react-native-webview.podspec"
|
|
|
|
]
|
2018-09-09 19:36:28 +02:00
|
|
|
}
|