{
  "name": "@leapfrogtechnology/sync-db",
  "description": "Command line utility to synchronize and version control relational database objects across databases",
  "version": "2.3.1",
  "license": "MIT",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "/bin/run",
    "/bin/run.cmd",
    "/lib",
    "/assets"
  ],
  "bin": {
    "sync-db": "./bin/run"
  },
  "oclif": {
    "bin": "sync-db",
    "commands": "./lib/commands",
    "plugins": [
      "@oclif/plugin-help"
    ]
  },
  "repository": "https://github.com/leapfrogtechnology/sync-db",
  "homepage": "https://github.com/leapfrogtechnology/sync-db",
  "bugs": "https://github.com/leapfrogtechnology/sync-db/issues",
  "keywords": [
    "sync-db",
    "dbo",
    "db-synchronize",
    "synchronize-db"
  ],
  "author": "Kabir Baidhya <kabirbaidhya@gmail.com>",
  "contributors": [
    "Kabir Baidhya <kabirbaidhya@gmail.com>",
    "Saugat Acharya <mesaugat@gmail.com>",
    "Shraday Shakya <shradayshakya@gmail.com>",
    "Safal Raj Pandey <safal.pandey.sp@gmail.com>"
  ],
  "scripts": {
    "build": "rm -rf lib && tsc -b",
    "prepack": "yarn build",
    "lint": "tslint -c tslint.json 'src/**/*.{ts,js}' 'test/**/*.{ts,js}'",
    "lint:fix": "tslint --fix -c tslint.json 'src/**/*.{ts,js}' 'test/**/*.{ts,js}'",
    "test": "yarn lint && yarn test:cli && yarn test:unit",
    "test:coverage": "yarn test:cli && nyc yarn test:unit",
    "test:cli": "mocha ./test/cli/**/*.test.ts",
    "test:unit": "mocha ./test/unit/**/*.test.ts",
    "watch": "tsc --watch",
    "changelog": "./release.sh changelog",
    "release": "./release.sh bump",
    "format": "prettier --write . '**/*.{ts,js,md,yaml,json}'",
    "format:check": "prettier --check . '**/*.{ts,js,md,yaml,json}'",
    "doc:update": "oclif-dev readme && prettier --write README.md"
  },
  "dependencies": {
    "@oclif/command": "^1",
    "@oclif/config": "^1",
    "@oclif/plugin-help": "^3",
    "chalk": "^4.0.0",
    "debug": "^4.1.1",
    "globby": "^10.0.2",
    "knex": "^2.4.2",
    "ramda": "^0.29.0",
    "ts-node": "^8",
    "tslib": "^1",
    "yamljs": "^0.3.0"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@oclif/dev-cli": "^1.26.0",
    "@oclif/test": "^1",
    "@oclif/tslint": "^3",
    "@types/chai": "^4.2.7",
    "@types/chai-as-promised": "^7.1.2",
    "@types/debug": "^4.1.4",
    "@types/ramda": "^0.29.0",
    "@types/yamljs": "^0.2.30",
    "chai": "^6.2.2",
    "chai-as-promised": "^8.0.2",
    "execa": "^4.0.0",
    "get-bin-path": "^5.0.1",
    "mocha": "^11.7.5",
    "nyc": "^17.1.0",
    "prettier": "2.0.2",
    "tslint": "^6.1.3",
    "tslint-config-leapfrog": "^1.0.3",
    "typescript": "^5.0.2"
  },
  "engines": {
    "node": ">= 22.11.0"
  }
}
