UNPKG

async-sequential-runner

Version:

TypeScript class for running async tasks to completion in sequence.

49 lines (48 loc) 1.31 kB
{ "name": "async-sequential-runner", "version": "1.0.4", "description": "TypeScript class for running async tasks to completion in sequence.", "main": "dist/index.js", "types": "dist/index.d.ts", "dependencies": {}, "devDependencies": { "@types/jest": "^24.0.19", "@types/node": "^12.11.5", "jest": "^24.9.0", "prettier": "^1.18.2", "ts-jest": "^24.1.0", "tslint": "^5.20.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.6.4" }, "scripts": { "test": "jest --config jestconfig.json", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/saarw/async-sequential-runner.git" }, "keywords": [ "promise", "async", "AsyncGenerator", "sequence", "sequential", "serial", "task", "runner" ], "author": "William Saar", "license": "MIT", "bugs": { "url": "https://github.com/saarw/async-sequential-runner/issues" }, "homepage": "https://github.com/saarw/async-sequential-runner#readme" }