{
  "name": "iterified",
  "version": "1.2.5",
  "author": "Dor Shtaif <dorshtaif@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/shtaif/iterified",
  "repository": {
    "type": "git",
    "url": "https://github.com/shtaif/iterified"
  },
  "description": "Convert any callback-based sequence of values into a full-fledged async iterable",
  "engineStrict": true,
  "sideEffects": false,
  "keywords": [
    "callbacks-promises-async-await",
    "iterable",
    "iterator",
    "async-generator",
    "async-iterable",
    "async-iterator",
    "async-iterable-utility",
    "promise",
    "for-await-of",
    "async-channels",
    "async-await",
    "callbacks",
    "lazy",
    "disposable",
    "typescript",
    "esm"
  ],
  "type": "commonjs",
  "engines": {
    "node": ">=10.21.0"
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "default": "./dist/esm/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "ts-mocha -p ./spec/tsconfig-tests.json",
    "build": "rimraf ./dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ts-node -p tsconfig.json ./scripts/set-module-type-in-dist-builds.ts",
    "check-typings": "tsc --noEmit -p ./tsconfig.json",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@types/mocha": "^8.2.3",
    "@types/node": "^20.4.5",
    "@types/sinon": "^10.0.16",
    "@typescript-eslint/eslint-plugin": "^6.2.1",
    "@typescript-eslint/parser": "^6.2.1",
    "eslint": "^8.46.0",
    "eslint-config-prettier": "^8.9.0",
    "eslint-config-standard": "^17.1.0",
    "expect": "^29.6.2",
    "mocha": "^10.4.0",
    "prettier": "^3.0.2",
    "rimraf": "^5.0.1",
    "sinon": "^15.2.0",
    "ts-mocha": "^10.0.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2"
  }
}
