UNPKG

try-catch-callback

Version:

try/catch block with a callback, used in [try-catch-core][]. Use it when you don't care about asyncness so much and don't want guarantees. If you care use [try-catch-core][].

96 lines (95 loc) 2.17 kB
{ "name": "try-catch-callback", "version": "2.0.2", "description": "try/catch block with a callback, used in [try-catch-core][]. Use it when you don't care about asyncness so much and don't want guarantees. If you care use [try-catch-core][].", "repository": "hybridables/try-catch-callback", "author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)", "precommit.silent": true, "main": "index.js", "license": "MIT", "scripts": { "lint": "standard **/*.js --fix --verbose", "test": "npm-run-all -s lint test:*", "test:api": "nyc --reporter lcov node test.js", "test:report": "nyc report", "prerelease": "npm test", "release": "standard-version --sign --no-verify", "git": "npm-run-all -s git:*", "git:add": "git add --all", "git:cz": "git-cz", "commit": "npm-run-all -s test git" }, "dependencies": { "extend-shallow": "^2.0.1" }, "devDependencies": { "commitizen": "^2.8.6", "cz-conventional-changelog": "^1.2.0", "mukla": "^0.4.1", "npm-run-all": "^4.0.2", "nyc": "^10.1.2", "pre-commit": "^1.1.3", "standard": "^9.0.0", "standard-version": "^3.0.0" }, "files": [ "index.js" ], "keywords": [ "async", "block", "callback", "catch", "cb", "core", "try", "try-catch-callback", "trycatch" ], "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "verb": { "run": true, "toc": false, "layout": "empty", "tasks": [ "readme" ], "related": { "list": [ "try-catch-core", "gana", "gana-compile", "try-require-please", "catchup" ] }, "reflinks": [ "dezalgo", "es6-template", "gana", "gana-compile", "once", "try-catch-core", "always-done", "charlike", "commitizen", "standard-version", "verb", "verb-generate-readme" ], "lint": { "reflinks": true } }, "nyc": { "check-coverage": true, "statements": 100, "functions": 100, "branches": 100, "lines": 100 } }