forked from node-modules/hessian.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
52
53
{
"name": "hessian.js",
"version": "2.11.0",
"description": "Hessian Serialization written by pure JavaScript, support all kind of types in Java.",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "egg-bin test",
"test-cov": "egg-bin cov",
"lint": "jshint .",
"ci": "npm run lint && npm run test-cov",
"benchmark": "node benchmark/encode.js && node benchmark/decode.js",
"contributor": "git-contributor"
},
"repository": {
"type": "git",
"url": "git://github.com/node-modules/hessian.js.git"
},
"keywords": [
"hessian",
"protocol",
"java",
"rpc",
"serialization"
],
"author": "dead_horse <dead_horse@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-modules/hessian.js/issues",
"email": "dead_horse@qq.com"
},
"homepage": "https://github.com/node-modules/hessian.js",
"dependencies": {
"byte": "^2.0.0",
"is-type-of": "^1.2.1",
"long": "^4.0.0",
"utility": "^1.16.1"
},
"devDependencies": {
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"egg-bin": "^6.3.0",
"git-contributor": "^2.0.0",
"js-to-java": "^2.6.1",
"jshint": "^2.10.2"
},
"engines": {
"node": ">= 0.12.0"
}
}