UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

107 lines (106 loc) 2.52 kB
{ "name": "try-catch-core", "version": "2.0.2", "description": "Low-level package to handle completion and errors of sync or asynchronous functions, using [once][] and [dezalgo][] libs. Useful for and used in higher-level libs such as [always-done][] to handle completion of anything.", "repository": "hybridables/try-catch-core", "author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)", "precommit.silent": true, "main": "index.js", "license": "MIT", "scripts": { "lint": "standard --verbose", "pretest": "npm run lint", "test": "npm run coverage", "posttest": "npm run lint:coverage", "coverage": "nyc node test.js", "lint:coverage": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100", "report-coverage": "nyc report --reporter=text-lcov | coveralls", "prerelease": "npm test", "release": "standard-version --sign --no-verify", "precommit": "git add --all", "commit": "git-cz" }, "dependencies": { "dezalgo": "^1.0.3", "is-async-function": "^1.2.2", "lazy-cache": "^2.0.1", "once": "^1.4.0", "try-catch-callback": "^2.0.0" }, "devDependencies": { "commitizen": "^2.8.6", "coveralls": "^2.11.12", "cz-conventional-changelog": "^1.2.0", "mukla": "^0.4.1", "nyc": "^8.1.0", "pre-commit": "^1.1.3", "standard": "^8.5.0", "standard-version": "^3.0.0" }, "files": [ "index.js", "utils.js" ], "keywords": [ "async", "block", "callback", "catch", "cb", "core", "dezalgo", "done", "next", "once", "onetime", "safe", "sync", "synchronous", "try", "try-catch-core", "trycatch" ], "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "verb": { "run": true, "toc": { "render": true, "method": "preWrite", "maxdepth": 4 }, "layout": "empty", "tasks": [ "readme" ], "related": { "list": [ "try-require-please", "gana-compile", "is-async-function", "function-arguments", "relike", "gana", "catchup", "try-catch-callback" ] }, "reflinks": [ "common-callback-names", "dezalgo", "es6-template", "gana", "gana-compile", "once", "try-catch-core", "always-done", "try-catch-callback" ], "lint": { "reflinks": true } } }