-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (41 loc) · 1.02 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
{
"name": "corfudb-node-sequencer",
"version": "0.0.3",
"description": "A streaming sequencer for CorfuDB built on Node.js.",
"main": "build/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"benchmark": "build/benchmark.js"
},
"keywords": [
"corfudb",
"corfu",
"sequencer"
],
"repository": {
"url" : "https://github.com/CorfuDB/corfudb-node-sequencer",
"type": "git"
},
"bin": {
"corfudb-node-sequencer": "build/server.js",
"corfudb-node-sequencer-benchmark": "build/benchmark.js"
},
"author": "Michael Wei <mwei@cs.ucsd.edu>",
"license": "Apache-2.0",
"dependencies": {
"bluebird": "^2.9.6",
"bunyan": "^1.3.3",
"bunyan-debug-stream": "^1.0.5",
"docopt": "^0.4.1",
"node-int64": "^0.4.0",
"thrift": "^0.9.2",
"measured": "^1.0.0"
},
"devDependencies": {
"gulp": "^3.8.10",
"gulp-header": "^1.2.2",
"gulp-tsd": "0.0.4",
"gulp-typescript": "^2.4.2",
"gulp-typescript-thrift": "^1.0.1"
}
}