UNPKG

sequency

Version:

Functional sequences for processing iterable data in JavaScript

85 lines (84 loc) 2.23 kB
{ "name": "sequency", "version": "0.20.0", "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", "prepublishOnly": "yarn build" }, "author": "Benjamin Winterberg", "homepage": "https://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", "gh-pages": "^1.2.0", "jest": "^23.4.2", "rimraf": "^2.6.2", "size-limit": "^0.19.0", "ts-loader": "^8.2.0", "tslint": "^5.11.0", "typedoc": "^0.11.1", "typescript": "^4.6.2", "webpack": "^4.46.0", "webpack-cli": "^3.3.12", "uglifyjs-webpack-plugin": "^2.2.0" }, "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" ] }