-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 787 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 787 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
{
"name": "db-backup-cli",
"version": "1.0.0",
"description": "Utility CLI in TypeScript per il backup di database generici",
"main": "dist/index.js",
"bin": {
"db-backup-cli": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"test": "jest",
"pg": "node dist/index.js backup --dbType postgres",
"mysql": "node dist/index.js backup --dbType mysql"
},
"author": "Tuo Nome",
"license": "MIT",
"dependencies": {
"@oclif/core": "^3.0.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.9.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0"
},
"oclif": {
"commands": "dist/commands"
}
}