-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
45
46
{
"name": "redis-lister",
"version": "1.1.2",
"description": "Command-line tool to monitor Redis keys in realtime",
"keywords": [
"redis",
"monitor",
"inspect",
"visualize",
"cli",
"command",
"debug",
"realtime"
],
"homepage": "https://github.com/serge1peshcoff/redis-lister",
"bugs": "https://github.com/serge1peshcoff/redis-lister/issues",
"licence": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/serge1peshcoff/redis-lister"
},
"preferGlobal": true,
"main": "bin/redis-lister.js",
"bin": {
"redis-lister": "bin/redis-lister.js"
},
"scripts": {
"start": "bin/redis-lister.js config.js",
"lint": "eslint ."
},
"author": "Sergey Peshkov",
"license": "ISC",
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.7.5",
"colors": "^1.1.2",
"deep-assign": "^2.0.0",
"moment": "^2.17.1",
"redis": "^2.7.1"
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0"
}
}