-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 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.1.8",
"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 -r should test/*.test.js",
"test-cov": "istanbul cover _mocha -- -t 15000 -r should test/*.test.js",
"lint": "jshint .",
"ci": "npm run lint && npm run test-cov",
"autod": "autod -w --prefix '~' -e benchmark",
"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.1.5",
"debug": "~2.2.0",
"is-type-of": "~1.0.0",
"utility": "~1.6.0",
"long": "~3.1.0"
},
"devDependencies": {
"autod": "*",
"beautify-benchmark": "*",
"benchmark": "*",
"istanbul": "*",
"js-to-java": "2",
"jshint": "*",
"mocha": "*",
"should": "5"
},
"engines": {
"node": ">= 4"
}
}