{
  "name": "trace-unhandled",
  "version": "2.0.1",
  "description": "Much better tracing of unhandled promise rejections in JavaScript",
  "author": "Gustaf Räntilä",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/grantila/trace-unhandled/issues"
  },
  "bin": {
    "trace-unhandled": "bin.js"
  },
  "homepage": "https://github.com/grantila/trace-unhandled#readme",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "browser": "./browser.js",
  "engines": {
    "node": ">=10"
  },
  "files": [
    "dist",
    "browser.js",
    "register.js",
    "bin.js"
  ],
  "scripts": {
    "build:node": "rimraf dist && tsc -p .",
    "build:web": "rimraf dist-web && tsc -p tsconfig.rollup.json",
    "build:rollup": "rimraf browser.js && rollup dist-web/web/register-web.js --file browser.js --format iife",
    "build": "concurrently 'yarn build:node' 'yarn build:web' && yarn build:rollup",
    "test": "node --expose-gc node_modules/.bin/jest --coverage",
    "cz": "git-cz"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/grantila/trace-unhandled"
  },
  "keywords": [
    "trace",
    "unhandled",
    "rejection",
    "promise",
    "stack",
    "stacktrace"
  ],
  "dependencies": {
    "haxec": "^2.0.1"
  },
  "devDependencies": {
    "@types/jest": "20.0.8",
    "@types/node": "^14.14.31",
    "already": "^1.13.2",
    "concurrently": "^6.0.0",
    "cz-conventional-changelog": "^3.3.0",
    "jest": "20.0.4",
    "rimraf": "^3.0.2",
    "rollup": "^2.40.0",
    "typescript": "^4.2.2"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
