forked from upyun-dev/nsqjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.63 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
{
"name": "nsqjs",
"description": "NodeJS client for NSQ",
"version": "0.7.12",
"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"
}
],
"main": "lib/nsq",
"scripts": {
"build": "coffee --bare --compile --output lib src/*.coffee",
"prepublish": "coffee --bare --compile --output lib src/*.coffee",
"postpublish": "rm -rf lib",
"test": "node_modules/.bin/grunt test"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"coffee-errors": "^0.8.6",
"coffee-script": "~1.6.3",
"coffeelint": "~1.0.2",
"grunt": "~0.4.1",
"grunt-cli": "^0.1.13",
"grunt-coffeelint": "0.0.8",
"grunt-contrib-coffee": "~0.7",
"grunt-contrib-watch": "~0.5.1",
"grunt-mocha-cli": "^1.9.0",
"mocha": "~1.9.0",
"nock": "~0.27.1",
"should": "^4.0.4",
"sinon": "~1.7.3",
"temp": "^0.8.0"
},
"dependencies": {
"async": "^0.9.0",
"bignumber.js": "~1.2.1",
"debug": "^2.1.0",
"moment": "~2.4.0",
"node-int64": "~0.3.0",
"node-state": "~1.4.1",
"request": "~2.64.0",
"snappystream": "^0.3.3",
"underscore": "~1.5.2"
}
}