{
  "name": "lazzy.ts",
  "version": "2.1.0",
  "description": "Fast and lightweight library for lazy operations with iterable objects.",
  "main": "./lib/index.js",
  "types": "lib",
  "scripts": {
    "build": "tsc -p .",
    "test": "mocha -r ts-node/register ./tests/**/*.test.ts",
    "copy": "cp package.json lib/ && cp README.md lib/",
    "dist": "npm run build && npm run copy && cd ./lib && npm publish",
    "start": "ts-node ./src/index.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ruskovweb/lazzy.ts.git"
  },
  "keywords": [
    "lazy",
    "lazzy",
    "iterable",
    "iterator",
    "collection",
    "array",
    "generator",
    "stream",
    "streams",
    "map",
    "set",
    "type",
    "typescript",
    "ts",
    "lightweight",
    "no dependencies",
    "linq",
    "async"
  ],
  "author": "Dimitar Ruskov",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ruskovweb/lazzy.ts/issues"
  },
  "homepage": "https://github.com/ruskovweb/lazzy.ts#readme",
  "devDependencies": {
    "@types/chai": "^4.2.21",
    "@types/chai-as-promised": "^7.1.4",
    "@types/mocha": "^9.0.0",
    "@types/node": "^16.6.1",
    "chai": "^4.3.4",
    "chai-as-promised": "^7.1.1",
    "mocha": "^9.0.3",
    "ts-node": "^10.2.0",
    "typescript": "^4.3.5"
  }
}
