UNPKG

dbshift

Version:

A simple and powerful MySQL database migration tool inspired by Flyway

59 lines (58 loc) 1.38 kB
{ "name": "dbshift", "version": "1.0.2", "description": "A simple and powerful MySQL database migration tool inspired by Flyway", "main": "bin/dbshift.js", "bin": { "dbshift": "bin/dbshift.js" }, "keywords": [ "database", "migration", "mysql", "schema", "flyway", "cli", "database-migration", "sql" ], "dependencies": { "chalk": "4.1.2", "commander": "^14.0.0", "dotenv": "^16.0.1", "ink": "^3.2.0", "inquirer": "^8.2.6", "mysql2": "^3.11.0", "react": "^17.0.2" }, "engines": { "node": ">=14.0.0" }, "scripts": { "start": "node bin/dbshift.js", "cli": "node bin/dbshift.js -p --", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "echo 'ESLint not configured yet'", "dev": "node bin/dbshift.js", "demo": "node bin/dbshift.js -p -- status" }, "author": "greddy7574", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/greddy7574/dbshift.git" }, "bugs": { "url": "https://github.com/greddy7574/dbshift/issues" }, "homepage": "https://github.com/greddy7574/dbshift#readme", "devDependencies": { "@babel/core": "^7.28.0", "@babel/preset-env": "^7.28.0", "@babel/preset-react": "^7.27.1", "babel-loader": "^10.0.0", "jest": "^30.0.2" } }