-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
50 lines (50 loc) · 1018 Bytes
/
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
{
"name": "kalm",
"version": "1.5.1",
"description": "The socket optimizer",
"main": "./index.js",
"scripts": {
"test": "mocha tests/unit --recursive && mocha tests/integration",
"test.watch": "mocha tests/unit --recursive --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fed135/Kalm.git"
},
"keywords": [
"socket",
"tcp",
"udp",
"client",
"server",
"service",
"peer",
"micro-service",
"low-latency",
"light",
"ipc",
"messaging",
"queue",
"kalm"
],
"author": "frederic charette <fredericcharette@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fed135/Kalm/issues"
},
"homepage": "https://github.com/fed135/Kalm#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"sinon": "^1.17.0"
},
"dependencies": {
"bsplit": "1.0.x",
"debug": "2.6.x"
},
"browser": {
"fs": false,
"net": false,
"dgram": false
}
}