UNPKG

promise-settle-all

Version:

Promise.all function that waits for all promises to be settled

45 lines (44 loc) 1.15 kB
{ "name": "promise-settle-all", "version": "1.0.0", "description": "Promise.all function that waits for all promises to be settled", "main": "dist/index.js", "scripts": { "ut": "mocha -r ts-node/register test/**/*.spec.ts", "lint": "tslint --project .", "test": "npm run lint && npm run ut", "build": "tsc", "prepack": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/johanblumenberg/promise-allsettled.git" }, "keywords": [ "promise", "all", "settled" ], "author": "johan.blumenberg@gmail.com", "license": "MIT", "bugs": { "url": "https://github.com/johanblumenberg/promise-allsettled/issues" }, "homepage": "https://github.com/johanblumenberg/promise-allsettled#readme", "devDependencies": { "@types/expect": "^1.20.3", "@types/mocha": "^5.2.5", "expect": "^23.6.0", "mocha": "github:johanblumenberg/mocha#release-3", "ts-node": "^4.1.0", "tslint": "^5.11.0", "tslint-misc-rules": "^3.5.1", "typescript": "^3.1.6" }, "dependencies": { "combine-errors": "^3.0.3" }, "files": [ "dist/" ] }