{
  "name": "graphile-migrate",
  "version": "1.4.1",
  "description": "Opinionated SQL-powered migration tool for PostgreSQL",
  "main": "dist/index.js",
  "scripts": {
    "lint": "yarn prettier:check && eslint --ext .js,.jsx,.ts,.tsx,.graphql .",
    "lint:deps": "depcheck --ignores @types/jest,eslint_d,tslib ",
    "lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.graphql . --fix; prettier --ignore-path .eslintignore --write '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
    "prettier:check": "prettier --ignore-path .eslintignore --check '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
    "prepack": "tsc && chmod +x dist/cli.js",
    "clean": "rm -Rf dist",
    "test": "yarn lint && yarn run lint:deps && yarn run test:only --ci",
    "test:only": "jest -i",
    "version": "yarn prepack && ./scripts/update-docs.js && git add README.md",
    "watch": "mkdir -p dist && touch dist/cli.js && chmod +x dist/cli.js && tsc --watch"
  },
  "bin": {
    "graphile-migrate": "./dist/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/graphile/migrate.git"
  },
  "keywords": [
    "postgresql",
    "postgres",
    "pg",
    "migrate",
    "sql",
    "easy",
    "fast",
    "watch",
    "functions"
  ],
  "author": "Benjie Gillam <code@benjiegillam.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/graphile/migrate/issues"
  },
  "homepage": "https://github.com/graphile/migrate#readme",
  "dependencies": {
    "@graphile/logger": "^0.2.0",
    "@types/json5": "^0.0.30",
    "@types/node": "^14.6.0",
    "@types/pg": ">=6 <9",
    "chalk": "^3.0.0",
    "chokidar": "^3.5.1",
    "json5": "^2.1.2",
    "pg": ">=6.5 <9",
    "pg-connection-string": "^2.1.0",
    "pg-minify": "^1.5.2",
    "tslib": "^1.10.0",
    "yargs": "^15.3.1"
  },
  "devDependencies": {
    "@types/jest": "^25.1.2",
    "@types/mock-fs": "^4.10.0",
    "@types/yargs": "^15.0.4",
    "@typescript-eslint/eslint-plugin": "^2.19.0",
    "@typescript-eslint/parser": "^2.19.0",
    "depcheck": "^0.9.2",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.10.0",
    "eslint-plugin-import": "^2.20.1",
    "eslint-plugin-jest": "^23.7.0",
    "eslint-plugin-simple-import-sort": "^5.0.1",
    "eslint_d": "^8.0.0",
    "jest": "^25.1.0",
    "mock-fs": "^4.11.0",
    "prettier": "^1.19.1",
    "ts-jest": "^25.2.0",
    "typescript": "^3.7.5"
  },
  "files": [
    "dist"
  ]
}
