forked from node-modules/hessian.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
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
54
55
56
{
"name": "hessian.js",
"version": "2.8.1",
"description": "Hessian Serialization written by pure JavaScript, support all kind of types in Java.",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "mocha -R spec -t 15000 test/*.test.js",
"test-cov": "istanbul cover _mocha -- -t 15000 test/*.test.js",
"lint": "jshint .",
"ci": "npm run lint && npm run test-cov",
"autod": "autod",
"benchmark": "node benchmark/encode.js && node benchmark/decode.js"
},
"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": "^1.3.0",
"debug": "^3.1.0",
"is-type-of": "^1.2.0",
"long": "^3.2.0",
"utility": "^1.13.1"
},
"devDependencies": {
"autod": "^3.0.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"istanbul": "^0.4.5",
"js-to-java": "^2.4.0",
"jshint": "^2.9.5",
"mm": "^2.2.0",
"mocha": "^3.5.3"
},
"engines": {
"node": ">= 0.12.0"
}
}