forked from dudleycarr/nsqjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.38 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
{
"name": "nsqjs",
"description": "NodeJS client for NSQ",
"version": "0.9.2",
"homepage": "https://github.com/dudleycarr/nsqjs",
"author": {
"name": "Dudley Carr",
"email": "[email protected]"
},
"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 --single-quote --trailing-comma es5 --write \"{lib,test}/**/*.js\"",
"lint": "standard lib",
"test": "mocha -R spec -b"
},
"main": "lib/nsq",
"engines": {
"node": ">= 6.0.0"
},
"devDependencies": {
"mocha": "^4.0.0",
"nock": "~9.0.14",
"prettier": "^1.6.1",
"should": "^13.0.0",
"sinon": "~4.0.1",
"standard": "^10.0.3",
"temp": "^0.8.0"
},
"dependencies": {
"async": "^2.1.4",
"bignumber.js": "~4.1.0",
"debug": "^3.0.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"node-int64": "~0.4.0",
"node-state": "~1.4.4",
"request": "^2.79.0"
},
"optionalDependencies": {
"snappystream": "^1.1.0"
}
}