{
  "manifest": {
    "name": "stackframe",
    "description": "JS Object representation of a stack frame",
    "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"
      }
    ],
    "version": "1.3.4",
    "license": "MIT",
    "keywords": [
      "stacktrace",
      "error",
      "debugger",
      "stack frame"
    ],
    "homepage": "https://www.stacktracejs.com/",
    "repository": {
      "type": "git",
      "url": "git://github.com/stacktracejs/stackframe.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/stackframe/issues"
    },
    "main": "./stackframe.js",
    "typings": "./stackframe.d.ts",
    "files": [
      "LICENSE",
      "README.md",
      "stackframe.js",
      "stackframe.d.ts",
      "dist/"
    ],
    "scripts": {
      "lint": "eslint",
      "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 stackframe.js dist/ && uglifyjs stackframe.js -o dist/stackframe.min.js --compress --mangle --source-map \"url=stackframe.min.js.map\""
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-stackframe-1.3.4-b881a004c8c149a5e8efef37d51b16e412943310-integrity/node_modules/stackframe/package.json",
    "readmeFilename": "README.md",
    "readme": "stackframe \n==========\n## JS Object representation of a stack frame\n\n[![Build Status](https://img.shields.io/github/workflow/status/stacktracejs/stackframe/Continuous%20Integration/master?logo=github&style=flat-square)](https://github.com/stacktracejs/stackframe/actions?query=workflow%3AContinuous+Integration+branch%3Amaster)\n[![Coverage Status](https://img.shields.io/coveralls/stacktracejs/stackframe.svg?style=flat-square)](https://coveralls.io/r/stacktracejs/stackframe?branch=master)\n[![GitHub license](https://img.shields.io/github/license/stacktracejs/stackframe.svg?style=flat-square)](https://opensource.org/licenses/MIT)\n[![dependencies](https://img.shields.io/badge/dependencies-0-green.svg?style=flat-square)](https://github.com/stacktracejs/stackframe/releases)\n[![gzip size](https://img.shields.io/badge/gzipped-0.96k-green.svg?style=flat-square)](https://github.com/stacktracejs/stackframe/releases)\n[![module format](https://img.shields.io/badge/module%20format-umd-lightgrey.svg?style=flat-square&colorB=ff69b4)](https://github.com/stacktracejs/stackframe/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\nUnderlies functionality of other modules within [stacktrace.js](https://www.stacktracejs.com).\n\nWritten to closely resemble StackFrame representations in [Gecko](http://mxr.mozilla.org/mozilla-central/source/xpcom/base/nsIException.idl#14) and [V8](https://github.com/v8/v8/wiki/Stack%20Trace%20API)\n\n## Usage\n```js\n// Create StackFrame and set properties\nvar stackFrame = new StackFrame({\n    functionName: 'funName',\n    args: ['args'],\n    fileName: 'http://localhost:3000/file.js',\n    lineNumber: 1,\n    columnNumber: 3288, \n    isEval: true,\n    isNative: false,\n    source: 'ORIGINAL_STACK_LINE'\n    evalOrigin: new StackFrame({functionName: 'withinEval', lineNumber: 2, columnNumber: 43})\n});\n\nstackFrame.functionName      // => \"funName\"\nstackFrame.setFunctionName('newName')\nstackFrame.getFunctionName() // => \"newName\"\n\nstackFrame.args              // => [\"args\"]\nstackFrame.setArgs([])\nstackFrame.getArgs()         // => []\n\nstackFrame.fileName          // => 'http://localhost:3000/file.min.js'\nstackFrame.setFileName('http://localhost:3000/file.js')  \nstackFrame.getFileName()     // => 'http://localhost:3000/file.js'\n\nstackFrame.lineNumber        // => 1\nstackFrame.setLineNumber(325)\nstackFrame.getLineNumber()   // => 325\n\nstackFrame.columnNumber      // => 3288\nstackFrame.setColumnNumber(20)\nstackFrame.getColumnNumber() // => 20\n\nstackFrame.source            // => 'ORIGINAL_STACK_LINE'\nstackFrame.setSource('NEW_SOURCE')\nstackFrame.getSource()       // => 'NEW_SOURCE'\n\nstackFrame.isEval            // => true\nstackFrame.setIsEval(false)\nstackFrame.getIsEval()       // => false\n\nstackFrame.isNative          // => false\nstackFrame.setIsNative(true)\nstackFrame.getIsNative()     // => true\n\nstackFrame.evalOrigin                         // => StackFrame({functionName: 'withinEval', lineNumber: ...})\nstackFrame.setEvalOrigin({functionName: 'evalFn', fileName: 'anonymous'})\nstackFrame.getEvalOrigin().getFunctionName()  // => 'evalFn'\n\nstackFrame.toString() // => 'funName(args)@http://localhost:3000/file.js:325:20'\n```\n\n## Browser Support\n[![Sauce Test Status](https://saucelabs.com/browser-matrix/stacktracejs.svg)](https://saucelabs.com/u/stacktracejs)\n\n## Installation\n```\nnpm install stackframe\nbower install stackframe\nhttps://raw.githubusercontent.com/stacktracejs/stackframe/master/dist/stackframe.min.js\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/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz",
    "hash": "b881a004c8c149a5e8efef37d51b16e412943310",
    "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==",
    "registry": "npm",
    "packageName": "stackframe",
    "cacheIntegrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== sha1-uIGgBMjBSaXo7+831RsW5BKUMxA="
  },
  "registry": "npm",
  "hash": "b881a004c8c149a5e8efef37d51b16e412943310"
}