-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
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
{
"name": "node-queue-lib",
"description": "Javascript implementation of message queue with various delivery strategy",
"version": "0.0.28",
"author": "Gromozdov Andrey Alexandrovich",
"main": "lib/queue.client.js",
"repository": {
"type": "git",
"url": "git://github.com/AndyGrom/node-message-queue.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/AndyGrom/node-message-queue/blob/master/LICENSE.TXT"
}
],
"keywords": [
"message",
"queue"
],
"dependencies": {
"socket.io-client": "^0.9.16",
"socket.io": "^0.9.16",
"node-uuid": "^1.4.1"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.4.0",
"browserify": "^3.46.0",
"grunt-browserify": "^2.0.8",
"grunt-jasmine-node": "^0.2.1",
"grunt-jasmine-node-coverage": "^0.1.10",
"mime": "^1.2.11",
"phantomjs": "^1.9.7-5",
"colors": "^0.6.2",
"grunt-markdown": "^0.5.0"
},
"homepage": "https://github.com/AndyGrom/node-message-queue",
"scripts": {}
}