-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "dubbo-node-zookeeper",
"version": "0.3.0",
"description": "connect to dubbo with nodejs consumer",
"main": "lib/Dubbo.js",
"types": "lib/index.d.ts",
"repository": "[email protected]:thundernet8/dubbo-node.git",
"author": "wuxueqian <[email protected]>",
"license": "MIT",
"bin": {
"dubbo2ts": "./bin/dubbo2ts"
},
"scripts": {
"build": "rimraf lib && tsc && cp src/index.d.ts lib/",
"prepublishOnly": "npm run build",
"test": "node tests/index.js",
"test:cli": "./bin/dubbo2ts -i tests/cli/java -o tests/cli/java/services -g dubbo -r LATEST -t 6000"
},
"devDependencies": {
"@types/node": "^8.0.51",
"rimraf": "^2.6.2",
"typescript": "^2.6.1"
},
"dependencies": {
"hessian.js": "^2.5.0",
"js-to-java": "^2.4.0",
"mkdirp": "^0.5.1",
"node-socket-pool": "^0.2.2",
"node-zookeeper-client": "^0.2.2",
"prettier": "^1.8.2",
"querystring": "^0.2.0",
"url": "^0.11.0",
"yargs": "^10.0.3"
}
}