{
  "manifest": {
    "name": "error-stack-parser",
    "description": "Extract meaning from JS Errors",
    "maintainers": [
      {
        "name": "Eric Wendelin",
        "email": "me@eriwen.com",
        "url": "https://www.eriwen.com"
      },
      {
        "name": "Victor Homyakov",
        "email": "vkhomyackov@gmail.com",
        "url": "https://github.com/victor-homyakov"
      },
      {
        "name": "Oliver Salzburg",
        "url": "https://github.com/oliversalzburg"
      },
      {
        "name": "Ben Gourley",
        "url": "https://github.com/bengourley"
      }
    ],
    "version": "2.1.4",
    "license": "MIT",
    "keywords": [
      "stacktrace",
      "error",
      "stack",
      "parser"
    ],
    "homepage": "https://www.stacktracejs.com/",
    "dependencies": {
      "stackframe": "^1.3.4"
    },
    "repository": {
      "type": "git",
      "url": "git://github.com/stacktracejs/error-stack-parser.git"
    },
    "devDependencies": {
      "eslint": "^8.17.0",
      "jasmine": "^4.1.0",
      "jasmine-core": "^4.1.1",
      "karma": "^6.3.20",
      "karma-chrome-launcher": "^3.1.1",
      "karma-coverage": "^2.2.0",
      "karma-coveralls": "^2.1.0",
      "karma-firefox-launcher": "^2.1.2",
      "karma-ie-launcher": "^1.0.0",
      "karma-jasmine": "^4.0.2",
      "karma-opera-launcher": "^1.0.0",
      "karma-phantomjs-launcher": "^1.0.4",
      "karma-safari-launcher": "^1.0.0",
      "karma-sauce-launcher": "^4.3.6",
      "karma-spec-reporter": "^0.0.34",
      "uglify-es": "^3.3.9"
    },
    "bugs": {
      "url": "https://github.com/stacktracejs/error-stack-parser/issues"
    },
    "main": "./error-stack-parser.js",
    "typings": "./error-stack-parser.d.ts",
    "files": [
      "LICENSE",
      "README.md",
      "error-stack-parser.js",
      "error-stack-parser.d.ts",
      "dist/"
    ],
    "scripts": {
      "lint": "eslint --fix .",
      "test": "karma start karma.conf.js --single-run",
      "test-pr": "karma start karma.conf.js --single-run --browsers Firefox,Chrome_No_Sandbox",
      "test-ci": "karma start karma.conf.ci.js --single-run",
      "prepare": "cp error-stack-parser.js dist/ && uglifyjs node_modules/stackframe/stackframe.js error-stack-parser.js -o dist/error-stack-parser.min.js --compress --mangle --source-map \"url=error-stack-parser.min.js.map\""
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-error-stack-parser-2.1.4-229cb01cdbfa84440bfa91876285b94680188286-integrity/node_modules/error-stack-parser/package.json",
    "readmeFilename": "README.md",
    "readme": "error-stack-parser.js - Extract meaning from JS Errors\n===============\n[![Build Status](https://img.shields.io/github/workflow/status/stacktracejs/error-stack-parser/Continuous%20Integration/master?logo=github&style=flat-square)](https://github.com/stacktracejs/error-stack-parser/actions?query=workflow%3AContinuous+Integration+branch%3Amaster)\n[![Coverage Status](https://img.shields.io/coveralls/stacktracejs/error-stack-parser.svg?style=flat-square)](https://coveralls.io/r/stacktracejs/error-stack-parser?branch=master)\n[![GitHub license](https://img.shields.io/github/license/stacktracejs/error-stack-parser.svg?style=flat-square)](https://opensource.org/licenses/MIT)\n[![size with dependencies](https://img.shields.io/badge/size-4.8k-green.svg?style=flat-square)](https://github.com/stacktracejs/error-stack-parser/releases)\n[![gzip size](https://img.shields.io/badge/gzipped-1.8k-green.svg?style=flat-square)](https://github.com/stacktracejs/error-stack-parser/releases)\n[![module format](https://img.shields.io/badge/module%20format-umd-lightgrey.svg?style=flat-square&colorB=ff69b4)](https://github.com/stacktracejs/error-stack-parser/releases)\n[![code of conduct](https://img.shields.io/badge/code%20of-conduct-lightgrey.svg?style=flat-square&colorB=ff69b4)](http://todogroup.org/opencodeofconduct/#stacktrace.js/me@eriwen.com)\n[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/error-stack-parser/badge)](https://www.jsdelivr.com/package/npm/error-stack-parser)\n\nSimple, cross-browser [Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) parser.\nThis library parses and extracts function names, URLs, line numbers, and column numbers from the given Error's `stack` as\nan Array of [StackFrame](http://git.io/stackframe)s. \n\nOnce you have parsed out StackFrames, you can do much more interesting things. See [stacktrace-gps](http://git.io/stacktrace-gps).\n\nNote that in IE9 and earlier, `Error` objects don't have enough information to extract much of anything. In IE 10, `Error`s\nare given a `stack` once they're `throw`n.\n\n## Browser Support\n[![Sauce Test Status](https://saucelabs.com/browser-matrix/stacktracejs.svg)](https://saucelabs.com/u/stacktracejs)\n\n## Usage\n```js\nErrorStackParser.parse(new Error('BOOM'));\n\n=> [\n        StackFrame({functionName: 'foo', args: [], fileName: 'path/to/file.js', lineNumber: 35, columnNumber: 79, isNative: false, isEval: false}),\n        StackFrame({functionName: 'Bar', fileName: 'https://cdn.somewherefast.com/utils.min.js', lineNumber: 1, columnNumber: 832, isNative: false, isEval: false, isConstructor: true}),\n        StackFrame(... and so on ...)\n   ]\n```\n\n## Installation\n```bash\nnpm install error-stack-parser\nbower install error-stack-parser\nhttps://raw.githubusercontent.com/stacktracejs/error-stack-parser/master/dist/error-stack-parser.min.js\n```\n\n## Contributing\nWant to be listed as a *Contributor*? Start with the [Contributing Guide](.github/CONTRIBUTING.md)!\n\n",
    "licenseText": "Copyright (c) 2017 Eric Wendelin and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
    "hash": "229cb01cdbfa84440bfa91876285b94680188286",
    "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
    "registry": "npm",
    "packageName": "error-stack-parser",
    "cacheIntegrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== sha1-IpywHNv6hEQL+pGHYoW5RoAYgoY="
  },
  "registry": "npm",
  "hash": "229cb01cdbfa84440bfa91876285b94680188286"
}