UNPKG

mergeiterator

Version:
83 lines (82 loc) 2.44 kB
{ "name": "mergeiterator", "version": "1.4.4", "description": "merges async iterators", "license": "MIT", "repository": "https://github.com/vadzim/mergeiterator", "main": "dist/index.js", "types": "src/index.d.ts", "bugs": { "url": "https://github.com/vadzim/mergeiterator/issues" }, "author": { "name": "Vadzim Zieńka", "email": "v@vadzim.info", "url": "https://github.com/vadzim" }, "files": [ "dist", "src" ], "scripts": { "test": "jest", "coverage": "npm test -- --coverage --collectCoverageFrom=src/**/*.[jt]s", "lint": "eslint . --ext .js,.ts", "types": "tsc --noEmit", "flow": "flow check", "flowinstall": "flow-typed install --ignoreDeps=dev; flow-typed install jest", "clean": "rimraf dist", "flowbuild": "flow-copy-source src dist", "prebuild": "npm run clean && npm run flowbuild", "build": "babel src --extensions '.ts,.js' -d dist", "preversion": "npm run flowinstall && npm run lint && npm run flow && npm run types && npm test && npm run build", "postpublish": "git push origin master --follow-tags", "codecov": "codecov --token=$CODECOV_TOKEN" }, "lint-changed": { "*.js": [ "eslint --fix" ] }, "keywords": [ "merge", "iterable", "async", "iterator", "AsyncIterator" ], "dependencies": { "type-any-iterable": "^1.0.5" }, "peerDependencies": {}, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.8.7", "@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/preset-env": "^7.8.7", "@babel/preset-flow": "^7.8.3", "@babel/preset-typescript": "^7.8.3", "@types/jest": "^25.1.4", "@typescript-eslint/eslint-plugin": "^2.23.0", "@typescript-eslint/parser": "^2.23.0", "babel-eslint": "^10.1.0", "babel-jest": "^25.1.0", "babel-plugin-add-module-exports": "^1.0.2", "codecov": "^3.6.5", "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.1.0", "eslint-config-prettier": "^6.10.0", "eslint-plugin-flowtype": "^4.6.0", "eslint-plugin-flowtype-errors": "^4.2.0", "eslint-plugin-import": "^2.20.1", "eslint-plugin-prettier": "^3.1.2", "flow-bin": "^0.120.1", "flow-copy-source": "^2.0.9", "flow-typed": "^3.0.0", "jest": "^25.1.0", "lint-changed": "0.0.0-development", "prettier": "^1.19.1", "rimraf": "^3.0.2", "typescript": "^3.8.3" } }