{
  "name": "json-file-merger",
  "version": "1.0.8",
  "description": "A Node.js package for merging large JSON files using streams",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "bin"
  ],
  "bin": {
    "json-file-merger": "./bin/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "test": "npm run build && node test/test.js",
    "test:interruption": "npm run build && node test/test-interruption.js",
    "clean": "rm -rf dist test-files merged-output.json",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "json",
    "stream",
    "merge",
    "files",
    "large-files"
  ],
  "author": "Rafael Leal McCormack",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rafael-leal-mccormack/json-file-merger"
  },
  "bugs": {
    "url": "https://github.com/rafael-leal-mccormack/json-file-merger/issues"
  },
  "homepage": "https://github.com/rafael-leal-mccormack/json-file-merger#readme",
  "dependencies": {
    "commander": "^11.1.0",
    "glob": "^10.3.10",
    "ora": "^8.1.2"
  },
  "devDependencies": {
    "@types/node": "^20.11.24",
    "typescript": "^5.3.3"
  }
}
