forked from dudleycarr/nsqjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.3 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
{
"name": "nsqjs",
"description": "NodeJS client for NSQ",
"version": "0.13.0",
"homepage": "https://github.com/dudleycarr/nsqjs",
"author": {
"name": "Dudley Carr",
"email": "dudley.carr@gmail.com"
},
"keywords": [
"nsq",
"nsq client",
"nsq client official",
"nsqjs",
"distributed messaging",
"messaging",
"task",
"task management"
],
"repository": {
"type": "git",
"url": "https://github.com/dudleycarr/nsqjs.git"
},
"bugs": {
"url": "https://github.com/dudleycarr/nsqjs/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dudleycarr/nsqjs/blob/master/LICENSE-MIT"
}
],
"scripts": {
"format": "prettier --write \"{lib,test}/**/*.js\"",
"lint": "eslint lib test",
"test": "mocha -R spec -b"
},
"main": "lib/nsq",
"engines": {
"node": ">= 12.13.0"
},
"devDependencies": {
"async-retry": "^1.3.1",
"debug": "^4.1.1",
"eslint": "^8.10.0",
"mocha": "^9.0.3",
"nock": "^13.0.11",
"p-event": "^4.2.0",
"prettier": "^2.2.1",
"should": "^13.2.3",
"sinon": "^13.0.1",
"temp": "^0.9.4"
},
"dependencies": {
"lodash": "^4.17.15",
"node-fetch": "^2.6.1",
"node-state": "~1.4.4"
},
"optionalDependencies": {
"snappystream": "^2.0.0"
}
}