{
  "name": "dataframe-builder",
  "version": "0.4.7",
  "description": "A powerful TypeScript/JavaScript library for generating realistic sample data, test data, and mock data. Create dataframes with customizable column types, mathematical series, and random distributions. Perfect for testing, development, and data visualization.",
  "main": "dist/index.js",
  "scripts": {
    "test": "playwright test src/",
    "lint": "eslint src",
    "build": "tsc",
    "prerelease:check": "node -e \"const pkg = require('./package.json'); console.log('\\nCurrent version:', pkg.version);\"",
    "release:patch": "npm run prerelease:check && npm version patch --no-git-tag-version && node -e \"const pkg = require('./package.json'); console.log('Will update to:', pkg.version, '\\n\\nPress Ctrl+C to cancel or wait 5 seconds to continue...');\" && powershell -Command \"Start-Sleep -Seconds 5\" && npm install && npm run test && npm run build && npm publish",
    "release:minor": "npm run prerelease:check && npm version minor --no-git-tag-version && node -e \"const pkg = require('./package.json'); console.log('Will update to:', pkg.version, '\\n\\nPress Ctrl+C to cancel or wait 5 seconds to continue...');\" && powershell -Command \"Start-Sleep -Seconds 5\" && npm install && npm run test && npm run build && npm publish",
    "release:major": "npm run prerelease:check && npm version major --no-git-tag-version && node -e \"const pkg = require('./package.json'); console.log('Will update to:', pkg.version, '\\n\\nPress Ctrl+C to cancel or wait 5 seconds to continue...');\" && node -e \"const pkg = require('./package.json'); console.log('\\nWARNING: This is a MAJOR version update!\\nCurrent version:', pkg.version, '\\n\\nPress Ctrl+C to cancel or wait 10 seconds to continue...');\" && powershell -Command \"Start-Sleep -Seconds 10\" && npm install && npm run test && npm run build && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/davidinwald/data_generator.git"
  },
  "keywords": [
    "dataframe",
    "data-generator",
    "test-data",
    "mock-data",
    "sample-data",
    "typescript",
    "javascript",
    "data-visualization",
    "testing",
    "development",
    "random-data",
    "mathematical-series",
    "linear-series",
    "data-simulation",
    "dataframe-builder",
    "data-creation",
    "data-mocking",
    "test-fixtures",
    "data-science",
    "data-analysis"
  ],
  "author": "davidinwald",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/davidinwald/data_generator/issues"
  },
  "homepage": "https://github.com/davidinwald/data_generator#readme",
  "devDependencies": {
    "@playwright/test": "^1.41.1",
    "@types/node": "^20.11.16",
    "eslint": "^8.56.0",
    "eslint-config-google": "^0.14.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "playwright": "^1.41.1",
    "prettier": "^3.2.4"
  },
  "dependencies": {
    "dataframe-builder": "^0.3.7"
  }
}
