-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 793 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 793 Bytes
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
{
"name": "disqueue-node",
"version": "2.0.2",
"description": "node.js client for disque ( rpc )",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "./scripts/eslint.sh",
"eslint": "eslint",
"mocha": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gideonairex/disqueue-node.git"
},
"keywords": [
"node.js",
"client",
"disque",
"rpc"
],
"author": "Gideon Rosales",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.0",
"colors": "^1.4.0",
"double-ended-queue": "^0.9.7",
"lodash": "^4.17.15",
"redis": "^2.8.0",
"redis-parser": "^3.0.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"should": "^7.1.1"
}
}