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
98 lines (97 loc) • 2.34 kB
JSON
{
"name": "is-async-function",
"version": "1.2.2",
"description": "Is function really asynchronous function? Trying to guess that based on check if [common-callback-names][] exists as function arguments names or you can pass your custom.",
"repository": "tunnckoCore/is-async-function",
"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": {
"arr-includes": "^2.0.0",
"common-callback-names": "^1.0.2",
"function-arguments": "^1.0.6",
"lazy-arrayify": "^1.0.3",
"lazy-cache": "^2.0.1"
},
"devDependencies": {
"commitizen": "^2.8.6",
"coveralls": "^2.11.12",
"cz-conventional-changelog": "^1.2.0",
"is-match": "^0.4.1",
"mukla": "^0.4.1",
"nyc": "^8.1.0",
"pre-commit": "^1.1.3",
"standard": "^8.4.0",
"standard-version": "^2.4.0"
},
"files": [
"index.js",
"utils.js"
],
"keywords": [
"assume",
"async",
"callback",
"cb",
"check",
"common",
"done",
"exist",
"fn",
"func",
"function",
"is",
"is-async-function",
"names",
"next",
"really",
"util",
"validate"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"verb": {
"run": true,
"toc": false,
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"function-arguments",
"fn-args",
"get-fn-name",
"fn-name",
"parse-function",
"is-callback-function",
"common-callback-names"
]
},
"reflinks": [
"function-arguments",
"common-callback-names",
"is-callback-function"
],
"lint": {
"reflinks": true
}
}
}