react-native-webview/package.json

42 lines
1.3 KiB
JSON
Raw Normal View History

2018-07-31 03:21:48 +00:00
{
"name": "react-native-webview",
2018-10-12 22:56:22 +00:00
"description": "React Native WebView component for iOS, Android, and Windows 10 (coming soon)",
2018-07-31 05:00:33 +00:00
"main": "index.js",
"typings": "typings/index.d.ts",
2018-09-08 17:42:02 +00:00
"author": "Jamon Holmgren <jamon@infinite.red>",
2018-10-12 22:49:59 +00:00
"contributors": [
"Thibault Malbranche <malbranche.thibault@gmail.com>"
],
"license": "MIT",
"version": "3.1.3",
2018-09-09 17:36:28 +00:00
"homepage": "https://github.com/react-native-community/react-native-webview#readme",
2018-09-10 04:40:32 +00:00
"scripts": {
"test:ios:flow": "flow check",
"test:android:flow": "flow check --flowconfig-name .flowconfig.android",
"ci:publish": "yarn semantic-release",
"ci:test": "yarn ci:test:flow",
"ci:test:flow": "yarn test:ios:flow && yarn test:android:flow",
"semantic-release": "semantic-release"
2018-09-10 04:40:32 +00:00
},
2018-07-31 03:21:48 +00:00
"peerDependencies": {
"react": "^16.0",
2018-09-11 20:00:12 +00:00
"react-native": "^0.57"
2018-07-31 03:21:48 +00:00
},
"dependencies": {
2018-07-31 05:00:33 +00:00
"escape-string-regexp": "^1.0.5",
"fbjs": "^0.8.17"
2018-09-10 04:40:32 +00:00
},
"devDependencies": {
"@semantic-release/git": "7.0.5",
"@types/react": "^16.4.18",
"@types/react-native": "^0.57.6",
2018-09-10 04:40:32 +00:00
"flow-bin": "^0.80.0",
"react-native": "^0.57",
"semantic-release": "15.10.3"
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-webview.git"
2018-07-31 03:21:48 +00:00
}
2018-09-09 17:36:28 +00:00
}