forked from SocketCluster/sc-broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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": "sc-broker",
"description": "sc-broker key-value and message broker",
"version": "8.0.0",
"author": {
"name": "JF Gros-Dubois",
"email": "[email protected]"
},
"contributors": [
{
"name": "JF Gros-Dubois",
"email": "[email protected]"
},
{
"name": "wactbprot"
}
],
"dependencies": {
"async": "^2.6.1",
"expirymanager": "^0.9.3",
"fleximap": "^1.0.0",
"ncom": "^1.0.2",
"sc-errors": "^1.4.1",
"uuid": "3.1.0"
},
"devDependencies": {
"istanbul": "0.4.4",
"mocha": "5.2.0",
"underscore": "1.8.3"
},
"keywords": [
"store",
"broker",
"message broker",
"key value server",
"session",
"socketcluster"
],
"repository": {
"type": "git",
"url": "git://github.com/SocketCluster/sc-broker.git"
},
"main": "index",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"cover": "istanbul cover _mocha -- --reporter spec --timeout 10000 --slow 10000",
"test": "mocha --reporter spec --timeout 10000 --slow 10000",
"test:es6": "TEST_TYPE=es6 node --experimental-modules node_modules/mocha/bin/_mocha --reporter spec --timeout 10000 --slow 10000"
},
"optionalDependencies": {}
}