{
  "name": "arango-migrate",
  "version": "2.0.0",
  "description": "Migration tools for ArangoDB",
  "author": "Tim Mikeladze <tim.mikeladze@gmail.com>",
  "keywords": [
    "arango",
    "arangodb",
    "arango migrations",
    "migration",
    "arango-migrate",
    "arangodb migrations"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/TimMikeladze/arango-migrate.git"
  },
  "license": "MIT",
  "files": [
    "./dist"
  ],
  "source": "src/index.ts",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    "require": "./dist/index.cjs",
    "default": "./dist/index.modern.js"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.module.js",
  "unpkg": "./dist/index.umd.js",
  "bin": "./dist/cli.module.js",
  "lint-staged": {
    "*.ts": "eslint --fix"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/@ryansonshine/cz-conventional-changelog"
    }
  },
  "release-it": {
    "git": {
      "commitMessage": "chore(publish): ${version}"
    },
    "github": {
      "release": true
    },
    "npm": {
      "publish": false
    }
  },
  "devDependencies": {
    "@ryansonshine/commitizen": "4.2.8",
    "@ryansonshine/cz-conventional-changelog": "3.3.4",
    "@types/glob": "8.0.0",
    "@types/jest": "29.2.0",
    "@typescript-eslint/eslint-plugin": "5.41.0",
    "@typescript-eslint/parser": "5.41.0",
    "arangojs": "^8.6.0",
    "dotenv": "16.0.3",
    "eslint": "8.26.0",
    "eslint-config-standard": "17.0.0",
    "eslint-plugin-import": "2.26.0",
    "eslint-plugin-n": "16.4.0",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-promise": "6.1.1",
    "eslint-plugin-typescript-sort-keys": "2.1.0",
    "husky": "8.0.1",
    "jest": "29.2.2",
    "lint-staged": "13.0.3",
    "microbundle": "0.15.1",
    "release-it": "17.0.1",
    "ts-jest": "29.0.3",
    "typescript": "4.8.4"
  },
  "dependencies": {
    "commander": "^9.4.1",
    "glob": "^8.0.3",
    "slugify": "^1.6.5"
  },
  "peerDependencies": {
    "arangojs": ">=7.8.0"
  },
  "resolutions": {
    "semver": ">=7.5.2"
  },
  "scripts": {
    "dev": "microbundle watch src/{index,cli}.ts --target node",
    "build": "rm -rf dist && tsc && microbundle src/{index,cli}.ts --target node",
    "lint": "eslint --fix {src,__tests__}/**/*.ts",
    "test": "yarn node --experimental-vm-modules $(yarn bin jest) --coverage",
    "commit": "git-cz"
  }
}