{
  "name": "iterall",
  "version": "1.1.3",
  "description": "Minimal zero-dependency utilities for using JavaScript Iterables in all environments.",
  "main": "index.js",
  "typings": "index.d.ts",
  "scripts": {
    "test": "npm run lint && npm run flow && npm run testonly && npm run testdocs",
    "flow": "flow check",
    "lint": "npm run prettier -- --write",
    "lint-check": "npm run prettier -- --list-different",
    "prettier": "prettier --single-quote --no-semi '*.js'",
    "testonly": "nyc --check-coverage --statements 100 node test.js",
    "testdocs": "if [ \"$(documentation readme -dgs API | grep -vF 'up to date')\" ]; then echo 'Must run: npm run docs'; exit 1; fi;",
    "docs": "documentation readme -gs API",
    "travis": "npm run lint-check && npm run flow && npm run testdocs && npm run testonly && nyc report --reporter=text-lcov | coveralls"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/leebyron/iterall.git"
  },
  "files": [
    "index.js",
    "index.js.flow",
    "index.d.ts",
    "LICENSE"
  ],
  "keywords": [
    "es6",
    "iterator",
    "iterable",
    "polyfill",
    "for-of"
  ],
  "author": "Lee Byron <lee@leebyron.com> (http://leebyron.com/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/leebyron/iterall/issues"
  },
  "homepage": "https://github.com/leebyron/iterall#readme",
  "devDependencies": {
    "coveralls": "2.13.1",
    "documentation": "4.0.0-beta.19",
    "flow-bin": "0.49.1",
    "nyc": "11.0.3",
    "prettier": "1.5.2"
  }
}
