-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.04 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
{
"name": "kabuki",
"version": "3.0.0",
"description": "Promise-based, actor-like, streaming RPC",
"author": "Stephen Belanger <[email protected]>",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"bench": "matcha",
"coverage": "jest --coverage",
"test": "jest"
},
"dependencies": {
"bluebird": "~3.5.0",
"sliced": "1.0.1",
"uuid": "~3.1.0"
},
"devDependencies": {
"babel": "~6.23.0",
"brake": "^1.0.1",
"chai": "^4.1.2",
"jest": "^22.0.0",
"matcha": "^0.7.0",
"msgpack5": "^4.0.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/Qard/kabuki.git"
},
"bugs": {
"url": "https://github.com/Qard/kabuki/issues"
},
"homepage": "https://github.com/Qard/kabuki",
"keywords": [
"rpc",
"actors",
"streams",
"streaming",
"promise",
"remote"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/helper.js"
]
}
}