-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 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
{
"name": "@tradle/multiqueue",
"version": "2.2.0",
"description": "persistent self-ordering multiqueue, for parallelism between queues, and serial..ism within them",
"main": "index.js",
"repository": "https://github.com/tradle/multiqueue",
"author": "Mark Vayngrib <mark@tradle.io>",
"license": "MIT",
"scripts": {
"lint": "eslint --quiet --ignore-path .gitignore .",
"test": "BLUEBIRD_DEBUG=1 node test",
"coverage": "istanbul cover test.js",
"prepush": "npm test"
},
"devDependencies": {
"bluebird": "^3.5.0",
"eslint": "^3.19.0",
"husky": "^0.13.3",
"memdb": "^1.3.1",
"readable-stream": "^2.2.8",
"tape": "^4.6.3"
},
"dependencies": {
"any-promise": "^1.3.0",
"changes-feed": "mvayngrib/changes-feed",
"co": "^4.6.0",
"debug": "^2.6.3",
"duplexify": "^3.5.0",
"lexicographic-integer": "^1.1.0",
"merge2": "^1.0.3",
"object.omit": "^2.0.1",
"pify": "^2.3.0",
"pump": "^1.0.2",
"stream-collector": "^1.0.1",
"sublevel-prefixer": "^1.0.0",
"subleveldown": "^2.1.0",
"through2": "^2.0.3",
"xtend": "^4.0.1"
},
"keywords": [
"queue",
"multiqueue",
"persistent-queue",
"self-ordering"
]
}