{
  "name": "sequence-collection-api",
  "version": "0.20.6",
  "description": "Functional sequences for processing iterable data in JavaScript",
  "main": "./lib/cjs/sequency.js",
  "module": "./lib/esm/sequency.js",
  "umd:main": "./lib/umd/sequency.js",
  "types": "./lib/types/sequency.d.ts",
  "exports": {
    ".": {
      "default": "./lib/cjs/sequency.js",
      "require": "./lib/cjs/sequency.js",
      "import": "./lib/esm/sequency.js",
      "types": "./lib/types/sequency.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 -out docs --hideGenerator src/sequency.ts",
    "docs-publish": "yarn docs && touch docs/.nojekyll && gh-pages -d docs -t",
    "bundle": "webpack --mode production && size-limit",
    "bundle-browsertest": "open ./test/browsertest-lib.html",
    "clean": "rimraf lib && rimraf docs && rimraf coverage",
    "compile": "node_modules/.bin/tsc -b tsconfig.json tsconfig.esm.json tsconfig.cjs.json",
    "build": "yarn clean && yarn lint && yarn compile && yarn test && yarn bundle",
    "prepublishOnly": "yarn build"
  },
  "author": "winterbe",
  "homepage": "https://winterbe.com",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Kraken-crypto/sequency.git"
  },
  "bugs": {
    "url": "https://github.com/Kraken-crypto/sequency/issues"
  },
  "files": [
    "lib",
    "LICENSE"
  ],
  "engines": {
    "node": ">=6.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "packageManager": "yarn@4.1.1",
  "devDependencies": {
    "@size-limit/preset-small-lib": "^11.1.2",
    "@types/jest": "^29.5.12",
    "gh-pages": "^6.1.1",
    "jest": "^29.7.0",
    "rimraf": "^5.0.5",
    "size-limit": "^11.1.2",
    "terser-webpack-plugin": "^5.3.10",
    "ts-jest": "^29.1.2",
    "ts-loader": "^9.5.1",
    "tslint": "^6.1.3",
    "typedoc": "^0.25.12",
    "typescript": "^5.4.3",
    "webpack": "^5.91.0",
    "webpack-cli": "^5.1.4"
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "transform": {
      "^.+\\.ts$": [
        "ts-jest",
        {
          "tsconfig": "./tsconfig.esm.json",
          "useESM": true
        }
      ]
    },
    "testMatch": [
      "**/test/**/*.ts"
    ],
    "testEnvironmentOptions": {
      "url": "http://localhost/"
    }
  },
  "size-limit": [
    {
      "path": "lib/umd/sequency.min.js",
      "limit": "10 KB"
    }
  ],
  "keywords": [
    "functional",
    "sequence",
    "processing",
    "lazy",
    "iterable",
    "iterator",
    "array",
    "map",
    "set"
  ]
}
