UNPKG

axax

Version:

A library of async iterator extensions for JavaScript including ```map```, ```reduce```, ```filter```, ```flatMap```, ```pipe``` and [more](https://github.com/jamiemccrindle/axax/blob/master/docs/API.md#functions).

44 lines (43 loc) 896 B
{ "name": "axax", "version": "0.2.2", "license": "MIT", "repository": { "url": "https://github.com/jamiemccrindle/axax", "type": "git" }, "keywords": [ "async", "async iterators", "async generators", "flatMap", "map", "merge", "filter", "map", "reduce" ], "devDependencies": { "@types/jest": "^24.0.18", "@types/node": "^12.7.8", "jest": "^24.9.0", "prettier": "^1.14.3", "rimraf": "^3.0.0", "ts-jest": "^24.1.0", "ts-node": "^8.4.1", "tslint": "^5.11.0", "typescript": "^3.1.1" }, "scripts": { "lint": "tslint --project tsconfig.json", "test": "jest", "clean": "rimraf es5 esnext", "build": "yarn clean && yarn lint && tsc -p tsconfig.es5.json && tsc -p tsconfig.esnext.json" }, "main": "es5/index.js", "types": "es5/index.d.ts", "files": [ "es5", "esnext" ] }