{
  "name": "prisma-rays",
  "version": "4.0.3",
  "description": "Alternative migration client for prisma ORM",
  "main": "src/index.js",
  "scripts": {
    "build": "npx -p typescript tsc",
    "pretest": "cd ./test/test-project && npm install",
    "test": "npx jest --runInBand",
    "test:postgresql": "VERBOSE_LOGGING=true TEST_PROVIDER=postgresql TEST_DATABASE_URL=postgresql://postgres:root@localhost:5432/raystest?schema=public TEST_SHADOW_DATABASE_URL=postgresql://postgres:root@localhost:5432/prisma_shadow?schema=public TEST_SHADOW_DATABASE_NAME=raystest_shadow npx jest --runInBand",
    "test:mysql": "VERBOSE_LOGGING=true TEST_PROVIDER=mysql TEST_DATABASE_URL=mysql://root:root1234@127.0.0.1:3306/raystest TEST_SHADOW_DATABASE_URL=mysql://root:root1234@127.0.0.1:3306/prisma_shadow TEST_SHADOW_DATABASE_NAME=raystest_shadow npx jest --runInBand",
    "test:sqlite": "VERBOSE_LOGGING=true TEST_PROVIDER=sqlite TEST_DATABASE_URL=file:../raystest.db npx jest --runInBand",
    "test:ci": "npx jest --runInBand",
    "check-version": "node ./scripts/semvercheck.js"
  },
  "files": [
    "src",
    "build",
    "bin",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/lirancr/prisma-rays/"
  },
  "bin": {
    "rays": "./bin/client.js"
  },
  "engines": {
    "node": "14.17.x"
  },
  "keywords": [
    "prisma",
    "rays",
    "migrate",
    "migration",
    "orm",
    "database",
    "db"
  ],
  "author": "lirancr",
  "license": "ISC",
  "dependencies": {
    "execa": "^5.1.1",
    "minimist": "^1.2.5",
    "mssql": "^7.2.1",
    "mysql2": "^2.3.0",
    "pg": "^8.7.1",
    "sqlite3": "^5.0.2"
  },
  "devDependencies": {
    "@prisma/client": "^4.5.0",
    "@types/execa": "^2.0.0",
    "@types/jest": "^27.0.2",
    "@types/lodash": "^4.14.172",
    "@types/minimist": "^1.2.2",
    "@types/mssql": "^7.1.3",
    "@types/node": "^18.11.7",
    "@types/pg": "^8.6.1",
    "@types/sqlite3": "^3.1.7",
    "jest": "^27.2.2",
    "lodash": "^4.17.21",
    "prisma": "^4.5.0",
    "ts-jest": "^27.0.5",
    "typescript": "^4.4.2"
  },
  "peerDependencies": {
    "@prisma/client": "^4.x",
    "prisma": "^4.x"
  }
}
