package.json
{
"name": "find-callsite",
"version": "1.1.3",
"description": "Finds the correct place where the stack trace was started, not the place where error was thrown",
"repository": "tunnckoCore/find-callsite",
"author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
"precommit.silent": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "standard index.js test.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": {
"clean-stacktrace-relative-paths": "^1.0.3",
"extend-shallow": "^2.0.1"
},
"devDependencies": {
"assert-kindof": "^2.0.1",
"clean-stacktrace": "^1.1.0",
"commitizen": "~2.7.0",
"cz-conventional-changelog": "1.1.5",
"is-ci": "^1.0.10",
"mukla": "^0.4.9",
"npm-run-all": "~3.1.2",
"nyc": "^11.0.1",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"standard": "^10.0.0",
"standard-version": "^4.0.0"
},
"files": [
"index.js"
],
"keywords": [
"callsite",
"callsites",
"err",
"error",
"error-stack-trace",
"find",
"find-callsite",
"metadata",
"stack",
"stack-trace",
"stacktrace",
"stacktraces",
"trace"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": true,
"statements": 100,
"functions": 100,
"branches": 100,
"lines": 100
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3,
"footer": ""
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"always-done",
"minibase",
"try-catch-core",
"clean-stacktrace",
"stacktrace-metadata",
"clean-stacktrace-relative-paths",
"clean-stacktrace-metadata",
"is-async-function",
"parse-function",
"error-format",
"assert-kindof"
],
"highlight": "stacktrace-metadata"
},
"lint": {
"reflinks": true
},
"reflinks": [
"always-done",
"async-done",
"base",
"charlike",
"clean-stacktrace",
"commitizen",
"common-callback-names",
"dezalgo",
"is-kindof",
"once",
"standard-version",
"verb",
"verb-generate-readme"
]
}
}