{
  "name": "gensequence",
  "version": "4.0.2",
  "description": "Small library to simplify working with Generators and Iterators in Javascript / Typescript",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "engines": {
    "node": ">=14"
  },
  "devDependencies": {
    "@types/jest": "^28.1.8",
    "@types/node": "^18.7.14",
    "coveralls": "^3.1.1",
    "jest": "^28.1.3",
    "rimraf": "^3.0.2",
    "ts-jest": "^28.0.8",
    "typescript": "^4.8.2"
  },
  "scripts": {
    "prepublish": "npm run clean-build",
    "prepublishOnly": "npm test",
    "clean-build": "npm run clean && npm run build",
    "clean": "rimraf dist",
    "test": "jest",
    "perf": "jest --testMatch '**/*.perf.ts'",
    "test-all": "jest",
    "build": "tsc -p .",
    "watch": "tsc -w -p .",
    "coverage": "npm test -- --coverage",
    "coverage-coveralls": "cat coverage/lcov.info | coveralls",
    "travis-coverage": "npm run coverage &&  npm run coverage-coveralls",
    "update-packages": "npx npm-check-updates -t minor -u && rimraf node_modules package-lock.json && npm i"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Jason3S/GenSequence.git"
  },
  "keywords": [
    "generators",
    "generator",
    "iterator",
    "iterators",
    "iterable",
    "functional",
    "map",
    "reduce"
  ],
  "files": [
    "dist/",
    "operators.js",
    "!**/samples",
    "!**/*.map",
    "!**/*.test.*",
    "!**/*.perf.*"
  ],
  "author": "Jason Dent",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Jason3S/GenSequence/issues"
  },
  "homepage": "https://github.com/Jason3S/GenSequence#readme"
}
