UNPKG

async-utility

Version:

Convert async function to sync function.

52 lines (51 loc) 1.27 kB
{ "name": "async-utility", "version": "2.0.1", "author": "Chang Zhe Jiet", "description": "Convert async function to sync function.", "keywords": [ "async", "sync", "await", "promise", "deasync" ], "homepage": "https://github.com/ahzhezhe/async-utility#readme", "repository": { "type": "git", "url": "https://github.com/ahzhezhe/async-utility" }, "funding": "https://github.com/sponsors/ahzhezhe", "license": "ISC", "files": [ ".github/FUNDING.yml", "dist/**/*" ], "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "lint": "eslint src/**/*.ts test/**/*.ts", "jest": "jest", "test": "ts-node test.ts", "build": "tsc", "prepublishOnly": "rm -rf dist && tsc", "postpublish": "rm -rf dist", "postversion": "git push" }, "dependencies": { "deasync": "^0.1.30" }, "devDependencies": { "@types/deasync": "^0.1.5", "@types/jest": "^29.5.0", "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.55.0", "eslint": "^8.36.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-security": "^1.7.1", "jest": "^29.5.0", "ts-jest": "^29.0.5", "ts-node": "^10.9.2", "typescript": "^5.6.3" } }