-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1009 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
{
"name": "ndata",
"description": "nData key-value and message broker",
"version": "2.10.0",
"author": {
"name": "JF Gros-Dubois",
"email": "[email protected]"
},
"contributors": [
{
"name": "JF Gros-Dubois",
"email": "[email protected]"
},
{
"name": "wactbprot"
}
],
"dependencies": {
"expirymanager": "0.9.x",
"fleximap": "0.9.x",
"ncom": "0.9.x"
},
"devDependencies": {
"underscore": "1.4.x",
"mocha": "1.20.x",
"istanbul": "0.3.x"
},
"keywords": [
"ndata",
"store",
"broker",
"message broker",
"key value server",
"session"
],
"repository": {
"type": "git",
"url": "git://github.com/SocketCluster/ndata.git"
},
"main": "index",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"cover": "istanbul cover _mocha -- --reporter spec --timeout 3000 --slow 3000",
"test": "mocha --reporter spec --timeout 3000 --slow 3000"
},
"optionalDependencies": {}
}