async-short-circuit
Version:
Short circuit logic for boolean promises
42 lines (41 loc) • 1.14 kB
JSON
{
"name": "async-short-circuit",
"version": "1.2.1",
"description": "Short circuit logic for boolean promises",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": "https://github.com/AmrSaber/async-short-circuit",
"author": "AmrSaber",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/ tests/",
"bump:major": "npm version major --no-git-tag-version",
"bump:minor": "npm version minor --no-git-tag-version",
"bump:patch": "npm version patch --no-git-tag-version",
"postversion": "git add -- package.json package-lock.json && git commit -m \":arrow_up: Bump version to $npm_package_version\" && git tag \"v$npm_package_version\""
},
"keywords": [
"async",
"promises",
"short",
"circuit",
"short-circuit",
"logic",
"boolean",
"and",
"or"
],
"devDependencies": {
"@types/jest": "^26.0.23",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"faker": "^5.5.3",
"jest": "^27.0.4"
},
"engines": {
"node": ">=8.x.x"
}
}