-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "qlobber-fsq",
"description": "Shared file system queue. Supports pub-sub, work queues, wildcards, multi-process and distributed use.",
"version": "14.0.0",
"homepage": "https://github.com/davedoesdev/qlobber-fsq",
"author": {
"name": "David Halls",
"email": "[email protected]",
"url": "http://www.davedoesdev.com"
},
"repository": {
"type": "git",
"url": "https://github.com/davedoesdev/qlobber-fsq.git"
},
"bugs": {
"url": "https://github.com/davedoesdev/qlobber-fsq/issues"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "grunt lint test",
"stress": "grunt test-stress",
"multi": "grunt test-multi",
"disruptor": "grunt test-stress --disruptor",
"remote": "grunt test-multi --remote=localhost",
"coverage": "grunt coverage --getdents_size=1024 --disruptor",
"bench": "grunt bench --rounds=1000 --size=1000 --ttl=60 --queues=10 --bucket_stamp_size=0 --ephemeral --disruptor"
},
"directories": {
"test": "test",
"lib": "lib"
},
"keywords": [
"qlobber",
"pubsub",
"queue",
"routing"
],
"dependencies": {
"async": "^3.2.5",
"graceful-fs": "^4.2.11",
"qlobber": "^8.0.1",
"wu": "^2.1.0",
"semver": "^7.6.0"
},
"optionalDependencies": {
"fs-ext": "^2.0.0",
"getdents": "^4.0.0",
"shared-memory-disruptor": "^4.2.1"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-eslint": "^24.3.0",
"grunt-mocha-test": "^0.13.3",
"grunt-apidox": "^3.1.1",
"grunt-exec": "^3.0.0",
"mocha": "^10.3.0",
"c8": "^9.1.0",
"chai": "^5.1.0",
"b": "davedoesdev/b",
"rimraf": "^5.0.5",
"list-open-files": "^1.1.0",
"yargs": "^17.7.2",
"cp-remote": "^1.0.2"
},
"engines": {
"node": ">= 16"
},
"overrides": {
"apidox": {
"dox": "^1.0.0"
}
}
}