{
  "name": "jupiterate",
  "version": "0.0.4",
  "description": "A tree-shakable iteration library.",
  "main": "dst/cjs/index.js",
  "module": "dst/esm/index.js",
  "types": "dst/esm/index.d.ts",
  "repository": "https://github.com/lazarljubenovic/jupiterate",
  "author": "Lazar Ljubenović <lazar.ljubenovic.1995@gmail.com>",
  "license": "MIT",
  "private": false,
  "files": [
    "dst"
  ],
  "scripts": {
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build": "yarn build:cjs && yarn build:esm",
    "prepublishOnly": "yarn test:c && yarn build",
    "test": "ts-mocha --type-check -p tsconfig.spec.json tests/**/*.spec.ts",
    "test:w": "ts-mocha --type-check -p tsconfig.spec.json tests/**/*.spec.ts -w --watch-extensions ts",
    "test:c": "nyc --reporter=html --reporter=text --reporter=text-summary yarn test"
  },
  "devDependencies": {
    "@types/chai": "^4.3.0",
    "@types/mocha": "^10.0.1",
    "@types/node": "^20.8.10",
    "chai": "^4.3.6",
    "conditional-type-checks": "^1.0.4",
    "mocha": "^10.2.0",
    "nyc": "^15.0.1",
    "ts-mocha": "^10.0.0",
    "typescript": "5.2.2"
  }
}
