forked from joeferner/redis-commander
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.66 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
{
"author": "Joe Ferner <[email protected]>",
"contributors": [
"Evan Oxfeld <[email protected]>",
"Dmitriy Yurchenko <[email protected]>",
"Alex Ehrnschwender <[email protected]>",
"Matthew Scragg <[email protected]>",
"Stefan Seide <[email protected]"
],
"name": "redis-commander",
"version": "0.7.1-rc8",
"description": "Redis web-based management tool written in node.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/joeferner/redis-commander.git"
},
"keywords": [
"redis",
"redis-client",
"redis-gui",
"redis-node"
],
"main": "lib/app.js",
"dependencies": {
"async": "3.2.0",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"browserify-middleware": "8.1.1",
"clipboard": "2.0.6",
"cmdparser": "0.0.3",
"config": "3.3.3",
"dateformat": "3.0.3",
"ejs": "2.7.4",
"express": "4.17.1",
"express-partials": "0.3.0",
"inflection": "1.12.0",
"ioredis": "4.19.2",
"jquery.json-viewer": "1.4.0",
"jsonwebtoken": "8.5.1",
"jstree": "3.3.10",
"lodash.isequal": "4.5.0",
"lossless-json": "1.0.4",
"node-redis-dump": "0.2.1",
"opener": "1.5.2",
"readline-browserify": "0.0.4",
"yargs": "15.4.1"
},
"optionalDependencies": {
"bcrypt": "~5.0.0"
},
"devDependencies": {},
"engines": {
"node": ">=6.0"
},
"bin": {
"redis-commander": "./bin/redis-commander.js"
},
"preferGlobal": true,
"scripts": {
"healthcheck": "./bin/healthcheck.js",
"postinstall": "echo '==> INFO: Errors with module \"bcrypt\" can be ignored'",
"snyk-protect": "snyk protect"
},
"snyk": true
}