{
  "name": "sequency",
  "version": "0.19.2",
  "description": "Functional sequences for processing iterable data in JavaScript",
  "main": "lib/Sequence.js",
  "umd:main": "lib-umd/sequency.js",
  "typings": "lib/Sequence.d.ts",
  "scripts": {
    "test": "jest",
    "watch": "jest --watch --notify",
    "coverage": "rimraf coverage && jest --coverage",
    "travis": "yarn lint && yarn test",
    "lint": "node_modules/.bin/tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
    "docs": "rimraf docs && typedoc --name Sequency --readme APIDOC.md --module commonjs --out docs --excludeNotExported --target es6 --hideGenerator --gaID UA-48569937-1 src",
    "docs-publish": "yarn docs && touch docs/.nojekyll && gh-pages -d docs -t",
    "bundle": "webpack --mode production && size-limit",
    "clean": "rimraf lib && rimraf lib-umd && rimraf docs && rimraf coverage",
    "compile": "tsc",
    "build": "yarn clean && yarn lint && yarn compile && yarn test && yarn bundle",
    "build-prod": "yarn build && yarn docs-publish",
    "prepublishOnly": "yarn build-prod"
  },
  "author": "Benjamin Winterberg",
  "homepage": "http://winterbe.com",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/winterbe/sequency.git"
  },
  "bugs": {
    "url": "https://github.com/winterbe/sequency/issues"
  },
  "files": [
    "lib",
    "lib-umd",
    "LICENSE"
  ],
  "engines": {
    "node": ">=6.0.0"
  },
  "devDependencies": {
    "@types/jest": "^23.3.1",
    "awesome-typescript-loader": "^5.2.0",
    "gh-pages": "^1.2.0",
    "jest": "^23.4.2",
    "rimraf": "^2.6.2",
    "size-limit": "^0.19.0",
    "tslint": "^5.11.0",
    "typedoc": "^0.11.1",
    "typescript": "^2.9.2",
    "webpack": "^4.16.3",
    "webpack-cli": "^3.1.0"
  },
  "dependencies": {},
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "transform": {
      "^.+\\.ts$": "<rootDir>/preprocessor.js"
    },
    "testMatch": [
      "**/test/*.ts"
    ],
    "testURL": "http://localhost/"
  },
  "size-limit": [
    {
      "path": "lib-umd/sequency.min.js",
      "limit": "9 KB"
    }
  ],
  "keywords": [
    "functional",
    "sequence",
    "processing",
    "lazy",
    "iterable",
    "iterator",
    "array",
    "map",
    "set"
  ]
}
