blue-iterate
Version:
A collection of streams that work well with promises (through, map, reduce). Through2 with promise support
81 lines (80 loc) • 2.03 kB
JSON
{
"name": "blue-iterate",
"version": "1.0.0",
"description": "A collection of streams that work well with promises (through, map, reduce). Through2 with promise support",
"main": "dist",
"types": "dist/index.d.ts",
"repository": "git@github.com:reconbot/blue-iterate.git",
"homepage": "https://github.com/reconbot/blue-iterate",
"runkitExampleFilename": "example.js",
"scripts": {
"test": "npm run unit-test && npm run lint",
"unit-test": "mocha",
"lint": "eslint lib test && tsc && tslint lib/*.ts",
"format": "eslint lib test --fix && tslint lib/*.ts --fix",
"build": "tsc",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"generators",
"async generators",
"iterators",
"promise",
"stream",
"fp",
"transform",
"generator functions",
"async generator functions"
],
"author": "reconbot",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.0",
"chai": "^4.1.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.5.0",
"semantic-release": "^8.2.0",
"split2": "^2.2.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"engines": {
"node": ">=8"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true
},
"globals": {
"assert": false
},
"extends": [
"standard"
],
"plugins": [
"mocha"
],
"rules": {
"curly": [
"error",
"all"
],
"no-console": "error",
"mocha/no-skipped-tests": "error",
"mocha/no-exclusive-tests": "error",
"no-return-await": "error"
}
}
}