stacktrace-parser-node
Version:
Stacktrace parser for NodeJS written in Typescript with getting the code in which the error occurs.
58 lines • 1.22 kB
JSON
{
"name": "stacktrace-parser-node",
"version": "1.1.5",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"stacktrace",
"error",
"trace",
"stack",
"node"
],
"files": [
"dist"
],
"homepage": "https://github.com/piotr-szewczyk/stacktrace-parser-node",
"repository": {
"type": "git",
"url": "git://github.com/piotr-szewczyk/stacktrace-parser-node.git"
},
"scripts": {
"build": "tsc -p ./tsconfig.json --outDir dist",
"lint": "run-s lint:prettier",
"lint:prettier": "prettier */**/*.{js,ts} --write",
"prebuild": "rimraf ./dist",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^10.17.0",
"eslint": "^8.8.0",
"jest": "^26.5.5",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"tslint": "^5.11.0",
"ts-jest": "^26.5.5",
"typescript": "^4.5.5"
},
"browser": {
"fs": false
},
"jest": {
"verbose": false,
"testURL": "http://localhost/",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
]
}
}