{
  "name": "chaca",
  "version": "2.1.0",
  "description": "Create and export mock data with your rules",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "engines": {
    "node": ">=16"
  },
  "exports": "./lib/index.js",
  "bin": {
    "chaca": "./lib/bin/chaca.js"
  },
  "files": [
    "lib/**/*",
    "LICENSE",
    "CONTRIBUTING.md",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "prepare": "husky install",
    "clean": "rm -rf ./lib",
    "build": "npm run fix && npm run build:lib",
    "build:lib": "npm run clean && tsc --build --verbose",
    "test": "vitest test",
    "test:coverage": "rm -rf ./data && vitest run --coverage",
    "test:field-types": "vitest test/library/field-types",
    "test:cases": "vitest test/library/example-cases",
    "test:modules": "vitest test/modules",
    "test:library": "vitest test/library",
    "test:export": "vitest test/library/extensions",
    "test:utils": "vitest test/library/utils",
    "test:cli": "vitest test/cli",
    "prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
    "lint-fix": "eslint --fix src/**/*.ts",
    "lint": "eslint src/**/*.ts",
    "fix": "npm run lint-fix && npm run prettier-format"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Chacaponquin/chaca.git"
  },
  "keywords": [
    "chaca",
    "fake-data",
    "generate data",
    "mock",
    "random data",
    "data",
    "fake-data-generator",
    "relational data",
    "generator"
  ],
  "author": "Chacaponquin <hectorangel2001@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@types/adm-zip": "^0.5.0",
    "@types/js-yaml": "^4.0.9",
    "@types/json2csv": "^5.0.3",
    "@types/node": "^18.8.0",
    "@types/shelljs": "^0.8.15",
    "@types/uuid": "^8.3.4",
    "@types/yargs": "^17.0.33",
    "@typescript-eslint/eslint-plugin": "^5.38.1",
    "@typescript-eslint/parser": "^5.38.1",
    "@vitest/coverage-istanbul": "^3.2.4",
    "eslint": "^8.24.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-import-resolver-typescript": "^3.5.2",
    "eslint-plugin-file-extension-in-import-ts": "^1.0.1",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.3",
    "prettier": "^2.7.1",
    "shelljs": "^0.8.5",
    "ts-node": "^10.9.1",
    "tslib": "^2.6.0",
    "tsx": "^4.20.6",
    "typescript": "^4.8.4",
    "vitest": "^3.2.4"
  },
  "dependencies": {
    "@paralleldrive/cuid2": "^2.2.2",
    "adm-zip": "^0.5.9",
    "change-case-all": "^2.1.0",
    "js-yaml": "^4.1.0",
    "json-2-csv": "^5.5.6",
    "lorem-ipsum": "^2.0.8",
    "nanoid-cjs": "^0.0.7",
    "ulid": "^2.3.0",
    "uuid": "^10.0.0",
    "yargs": "^17.7.2"
  },
  "bugs": {
    "url": "https://github.com/Chacaponquin/chaca/issues"
  },
  "homepage": "https://chaca.app"
}
