-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.05 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
{
"name": "redsink",
"version": "1.5.0",
"main": "cli.js",
"bin": {
"redsink": "./cli.js"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"files": [
"index.js",
"cli.js",
"lib"
],
"scripts": {
"test": "FORCE_COLOR=true nyc mocha --recursive",
"lint": "standard | snazzy",
"cov": "opener coverage/index.html"
},
"standard": {
"env": [
"mocha"
]
},
"nyc": {
"reporter": [
"text-summary",
"html"
]
},
"author": "Brett Rogerson <brettmrogerson@gmail.com>",
"license": "MIT",
"description": "Simple CLI tool used for migrating data from one Redis database server to another",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"redis": "^3.1.2"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"husky": "^9.1.1",
"mocha": "^10.7.0",
"mocha-ctrf-json-reporter": "^0.0.4",
"nyc": "^17.0.0",
"opener": "^1.5.2",
"sinon": "^18.0.0",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"testcontainers": "^10.10.4"
}
}