{
  "name": "lazy-from",
  "version": "1.1.1",
  "description": "like Array.from but lazy evaluation",
  "main": "lib/index.js",
  "typings": "lib/index",
  "scripts": {
    "build": "tsc -b",
    "format": "prettier --write *.ts",
    "lint": "eslint --fix *.ts",
    "test": "jest",
    "coverage": "jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MichaelBelousov/lazy-from.git"
  },
  "keywords": [
    "lazy",
    "from",
    "generators"
  ],
  "author": "Michael Belousov",
  "//note": "I intend to make this public domain eventually",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/MichaelBelousov/lazy-from/issues"
  },
  "homepage": "https://github.com/MichaelBelousov/lazy-from#readme",
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^4.6.0",
    "@typescript-eslint/parser": "^4.6.0",
    "eslint": "^7.12.1",
    "eslint-config-prettier": "^6.15.0",
    "eslint-plugin-jest": "^24.1.0",
    "eslint-plugin-prettier": "^3.1.4",
    "husky": "^4.3.0",
    "jest": "^26.6.1",
    "lint-staged": "^10.5.0",
    "prettier": "^2.1.2",
    "ts-jest": "^26.4.3",
    "typescript": "^4.0.3"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,md,js}": [
      "prettier --write",
      "eslint --fix"
    ]
  },
  "dependencies": {}
}
