Files
db-migrate/package.json
2026-03-04 15:11:55 +01:00

34 lines
817 B
JSON

{
"name": "@alvarsanmartin/db-migrate",
"version": "1.1.3",
"description": "Herramienta de migracion de bdd",
"main": "src/index.ts",
"type": "module",
"engines": {
"node": ">22.0.0"
},
"bin": {
"db-migrate": "lib/index.js"
},
"scripts": {
"test": "node --test",
"build": "tsc --build",
"link": "npm run build && npm link",
"start": "node ./dist/index.js"
},
"author": "alvarsanmartin",
"license": "ISC",
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.2.3",
"@types/pg": "^8.16.0",
"@types/yargs": "^17.0.35",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"pg": "^8.18.0",
"yargs": "^18.0.0"
}
}