-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 958 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
{
"name": "myriad-kv",
"version": "1.2.2",
"description": "A distributed key-value store built on top of praetor and legiond",
"main": "index.js",
"dependencies": {
"async": "^1.0.0",
"lodash": "^3.9.3",
"msgpack-js": "^0.3.0",
"native-dns": "^0.7.0",
"praetor": "1.2.1",
"winston": "^1.0.0"
},
"devDependencies": {
"eslint": "^2.13.1",
"mocha": "^2.4.5"
},
"scripts": {
"test": "mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/containership/myriad-kv.git"
},
"keywords": [
"myriad",
"myriad-kv",
"distributed",
"key",
"value",
"store"
],
"author": "ContainerShip Developers <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/containership/myriad-kv/issues"
},
"homepage": "https://github.com/containership/myriad-kv",
"bin": {
"myriad": "./myriad.js"
}
}