-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
51 lines (51 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "react-native-webview-invoke",
"version": "0.6.1",
"description": "Invoke functions between React Native and WebView directly",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"static": "http-server dist",
"start:react-native": "(cd dev && npm start)",
"dev": "concurrently \"npm run static\" \"npm run start:react-native\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinqy520/react-native-webview-invoke.git"
},
"keywords": [
"react-native",
"webview",
"messager",
"invoke",
"react-native-webview-invoke",
"hybrid"
],
"author": "Huang Qi",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinqy520/react-native-webview-invoke/issues"
},
"files": [
"native.js",
"browser.js",
"factory.js",
"native.d.ts",
"browser.d.ts",
"factory.d.ts",
"src",
"dist"
],
"homepage": "https://github.com/pinqy520/react-native-webview-invoke#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"concurrently": "^5.0.0",
"http-server": "^0.12.3",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0"
}
}