-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (45 loc) · 1.63 KB
/
package.json
File metadata and controls
47 lines (45 loc) · 1.63 KB
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
{
"name": "paxos",
"version": "19.0.0-alpha.18",
"description":
"A Multi-Paxos implementation in pure JavaScript.",
"keywords":
[
"consensus", "paxos", "database", "database",
"network", "atomic", "broadcast", "multi-paxos",
"queue", "fifo"
],
"author": "Alan Gutierrez <alan@prettyrobots.com>",
"contributors":
[{
"name": "Demarius Chrite",
"email": "chrite.demarius@gmail.com",
"web": "https://github.com/demarius"
}],
"homepage": "https://bigeasy.github.io/paxos",
"bugs": "https://github.com/bigeasy/paxos/issues",
"license": "MIT",
"repository":
{
"type": "git",
"url": "bigeasy/paxos"
},
"dependencies":
{
"avenue": "0.6.18",
"bintrees": "1.0.2",
"extant": "^2.0.0-alpha.2",
"happenstance": "^13.0.0-alpha.0",
"whittle": "0.0.6"
},
"devDependencies":
{
"proof": "^9.0.2",
"seedrandom": "3.0.5"
},
"main": "paxos",
"scripts":
{
"test": "proof test/*.t.js"
}
}