{ "name": "async-done", "version": "1.3.1", "description": "Allows libraries to handle various caller provided asynchronous functions uniformly. Maps promises, observables, child processes and streams, and callbacks to callback style.", "author": "Gulp Team (http://gulpjs.com/)", "contributors": [ "Blaine Bublitz ", "Pawel Kozlowski ", "Matthew Podwysocki ", "Charles Samborski " ], "repository": "gulpjs/async-done", "license": "MIT", "engines": { "node": ">= 0.10" }, "main": "index.js", "types": "index.d.ts", "files": [ "index.js", "index.d.ts", "LICENSE" ], "scripts": { "lint": "eslint . && jscs index.js test/", "pretest": "npm run lint", "test": "mocha --async-only && npm run test-types", "test-types": "tsc -p test/types", "cover": "istanbul cover _mocha --report lcovonly", "coveralls": "npm run cover && istanbul-coveralls" }, "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.2", "process-nextick-args": "^1.0.7", "stream-exhaust": "^1.0.1" }, "devDependencies": { "@types/node": "^9.3.0", "eslint": "^1.7.3", "eslint-config-gulp": "^2.0.0", "expect": "^1.19.0", "istanbul": "^0.4.3", "istanbul-coveralls": "^1.0.3", "jscs": "^2.3.5", "jscs-preset-gulp": "^1.0.0", "mocha": "^2.4.5", "pumpify": "^1.3.6", "rxjs": "^5.5.6", "through2": "^2.0.0", "typescript": "^2.6.2", "when": "^3.7.3" }, "keywords": [ "promises", "callbacks", "observables", "streams", "end", "completion", "complete", "finish", "done", "async", "error handling" ] }