{
  "name": "genutils",
  "version": "1.0.8",
  "description": "Generator utilities that bring array-like operations to sync and async generators.",
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "browser": "lib/umd/index.js",
  "jsdelivr": "lib/umd/index.js",
  "unpkg": "lib/umd/index.js",
  "types": "lib/types/index.d.ts",
  "type": "module",
  "exports": {
    ".": "./lib/esm/index.js",
    "./async": "./lib/esm/async.js",
    "./enhancements": "./lib/esm/enhancements.js",
    "./events": "./lib/esm/events.js",
    "./functions": "./lib/esm/functions.js",
    "./generators": "./lib/esm/generators.js",
    "./range": "./lib/esm/range.js",
    "./sync": "./lib/esm/sync.js"
  },
  "scripts": {
    "build:compile": "tsc --build config src src/__tests__",
    "pretest": "npm run build:compile",
    "build:test": "jest",
    "test": "npm run build:test",
    "prebuild": "npm run build:compile",
    "build:package": "rollup -c",
    "postbuild:package": "rsync -a --delete --include='*.d.ts*' build/src/ lib/types/",
    "build": "npm run build:package",
    "all": "npm run build && npm run build:test && npm run build:docs",
    "clean": "rm -rf build lib docs",
    "prepublishOnly": "NODE_ENV=production npm run build && npm run build:docs && npm run pubdocs",
    "build:docs": "GRAPHVIZ_DOT=\"$(which dot)\" typedoc  --plugin typedoc-plugin-missing-exports --excludeInternal --out build/docs/api src/",
    "preserve": "npm run build:compile",
    "serve": "serve -l 3030 -C",
    "predocs": "npm install && npm run build:compile && npm run build:docs",
    "docs": "npm run serve",
    "watch:compile": "tsc --build --watch config src src/__tests__",
    "watch:package": "rollup -c --watch",
    "watch": "(trap 'kill 0' SIGINT; npm run watch:compile & npm run watch:package)",
    "pubdocs": "bin/deploy-docs.js"
  },
  "bin": {},
  "repository": {
    "type": "git",
    "url": "git+https://github.com/BobKerns/genutils"
  },
  "keywords": [
    "node",
    "typescript",
    "javascript",
    "generators",
    "async",
    "array"
  ],
  "author": "Bob Kerns",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/BobKerns/genutils/issues"
  },
  "homepage": "https://github.com/BobKerns/genutils#readme",
  "dependencies": {
    "denque": "^2.1.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.4",
    "@rollup/plugin-node-resolve": "^15.2.1",
    "@rollup/plugin-terser": "^0.4.3",
    "@types/jest": "^29.5.4",
    "@types/ramda": "^0.29.3",
    "highlight.js": "^11.8.0",
    "jest": "^29.6.4",
    "jest-mock-proxy": "^3.1.2",
    "node-fetch": "^3.3.2",
    "ramda": "^0.29.0",
    "rollup": "^3.29.0",
    "rollup-plugin-external-globals": "^0.8.0",
    "rollup-plugin-serve": "^2.0.2",
    "rollup-plugin-visualizer": "^5.9.2",
    "serve": "^14.2.1",
    "terser": "^5.19.4",
    "ts-jest": "^29.1.1",
    "typedoc": "^0.25.1",
    "typedoc-plugin-missing-exports": "^2.1.0",
    "typescript": "^5.2.2",
    "wcsize": "^1.0.0"
  }
}
