-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 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
{
"name": "js-bridge",
"version": "1.0.0",
"description": "针对ios和安卓的webViewJavascriptBridge的上层封装",
"main": "lib/jsbridge.umd.js",
"scripts": {
"build": "rimraf lib && ./node_modules/.bin/rollup --config rollup.config.js",
"build:watch": "./node_modules/.bin/rollup --config rollup.config.js --watch",
"test": "node -r babel-register test/guice-test.js"
},
"repository": "git+ssh://[email protected]/Liqihan/js-bridge.git",
"keywords": [
"jsbridge"
],
"author": "grove.liqihan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Liqihan/js-bridge/issues"
},
"homepage": "https://github.com/Liqihan/js-bridge#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"rimraf": "^2.6.2",
"rollup": "^0.53.4",
"rollup-plugin-babel": "^3.0.3"
}
}