├── doc └── balala.jpeg ├── README.md └── package.json /doc/balala.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/balala/master/doc/balala.jpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # balalala 2 | 3 | ![Balalala](./doc/balala.jpeg) 4 | 5 | 6 | LICENSE 7 | --- 8 | 9 | MIT 10 | 11 | 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "balala", 3 | "version": "0.0.1", 4 | "description": "A WebView solution under react native", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/phodal/balala.git" 12 | }, 13 | "keywords": [ 14 | "React", 15 | "Native", 16 | "WebView", 17 | "React", 18 | "Native", 19 | "Webview", 20 | "Blala" 21 | ], 22 | "author": "Phodal HUANG", 23 | "license": "MIT", 24 | "bugs": { 25 | "url": "https://github.com/phodal/balala/issues" 26 | }, 27 | "homepage": "https://github.com/phodal/balala#readme" 28 | } 29 | --------------------------------------------------------------------------------