UNPKG

async-promises

Version:

Async control flow patterns using promises based on https://github.com/caolan/async

57 lines (56 loc) 1.41 kB
{ "name": "async-promises", "version": "0.2.3", "description": "Async control flow patterns using promises based on https://github.com/caolan/async", "main": "./src/async-promises.js", "directories": { "test": "test" }, "scripts": { "test": "ava", "coverage": "nyc ava", "release": "standard-version", "eslint": "eslint {src,test}\"/**/*.\"{js,jsx}", "prettier": "prettier {src,test}\"/**/*.\"{js,jsx}", "ci": "npm run prettier -- --list-different && npm run eslint", "lint": "npm run eslint -- --fix", "format": "npm run prettier -- --write" }, "repository": { "type": "git", "url": "git+https://github.com/assisrafael/async-promises.git" }, "keywords": [ "async", "promise", "control", "flow", "patterns" ], "author": "Igor Rafael <igor.rafael@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/assisrafael/async-promises/issues" }, "homepage": "https://github.com/assisrafael/async-promises#readme", "devDependencies": { "ava": "^3.10.1", "eslint": "^7.4.0", "nyc": "^15.1.0", "prettier": "^2.0.5", "standard-version": "^8.0.2" }, "nyc": { "check-coverage": true, "lines": 92, "statements": 92, "functions": 91, "branches": 75, "reporter": [ "text", "text-summary", "html" ], "report-dir": "./coverage/" } }