-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.24 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "herdux-cli",
"version": "0.9.1",
"description": "Modern Database workflow CLI focused on developer experience, safety, and automation.",
"repository": {
"type": "git",
"url": "https://github.com/herdux/herdux-cli.git"
},
"type": "module",
"main": "./dist/index.js",
"bin": {
"herdux": "dist/index.js",
"hdx": "dist/index.js"
},
"files": [
"dist",
"README.md",
"README.pt-BR.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint:check": "prettier --check .",
"lint:fix": "prettier --write .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects unit",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --selectProjects unit",
"test:unit": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects unit",
"test:e2e": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects e2e",
"test:integration": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects integration",
"test:e2e:pgsql": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js -- tests/e2e/postgres/",
"test:e2e:pgsql:up": "docker compose -f infra/docker/compose.e2e-pgsql.yml up -d --wait",
"test:e2e:pgsql:down": "docker compose -f infra/docker/compose.e2e-pgsql.yml down -v --remove-orphans",
"test:e2e:mysql": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js -- tests/e2e/mysql/",
"test:e2e:mysql:up": "docker compose -f infra/docker/compose.e2e-mysql.yml up -d --wait",
"test:e2e:mysql:down": "docker compose -f infra/docker/compose.e2e-mysql.yml down -v --remove-orphans",
"test:e2e:sqlite": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js -- tests/e2e/sqlite/",
"test:e2e:mongodb": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js -- tests/e2e/mongodb/",
"test:e2e:mongodb:up": "docker compose -f infra/docker/compose.e2e-mongodb.yml up -d --wait",
"test:e2e:mongodb:down": "docker compose -f infra/docker/compose.e2e-mongodb.yml down -v --remove-orphans",
"prepare": "husky"
},
"keywords": [
"postgresql",
"mysql",
"sqlite",
"mongodb",
"cli",
"database",
"backup",
"restore"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/eduardozaniboni"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/eduardozaniboni"
}
],
"author": "Eduardo Zaniboni",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.1000.0",
"@aws-sdk/lib-storage": "^3.1000.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"execa": "^9.6.1",
"ora": "^8.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@types/prompts": "^2.4.9",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^15.2.10",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,md,json}": "prettier --write"
}
}