{
  "name": "@airbrake/node",
  "version": "2.1.9",
  "description": "Official Airbrake notifier for Node.js",
  "author": "Airbrake",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/airbrake/airbrake-js.git",
    "directory": "packages/node"
  },
  "homepage": "https://github.com/airbrake/airbrake-js/tree/master/packages/node",
  "keywords": [
    "exception",
    "error",
    "airbrake",
    "notifier"
  ],
  "engines": {
    "node": ">=10"
  },
  "dependencies": {
    "@airbrake/browser": "^2.1.9",
    "cross-fetch": "^3.1.5",
    "error-stack-parser": "^2.0.4",
    "tdigest": "^0.1.1"
  },
  "devDependencies": {
    "@babel/core": "^7.9.0",
    "@babel/preset-env": "^7.9.0",
    "babel-jest": "^29.3.1",
    "jest": "^27.3.1",
    "prettier": "^2.0.2",
    "ts-jest": "^27.1.0",
    "tslint": "^6.1.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-plugin-prettier": "^2.3.0",
    "typescript": "^4.0.2"
  },
  "main": "dist/index.js",
  "module": "esm/index.js",
  "files": [
    "dist/",
    "esm/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "yarn build:cjs && yarn build:esm",
    "build:watch": "concurrently 'yarn build:cjs:watch' 'yarn build:esm:watch'",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:cjs:watch": "tsc -p tsconfig.cjs.json -w --preserveWatchOutput",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:esm:watch": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",
    "clean": "rm -rf dist esm",
    "lint": "tslint -p .",
    "test": "jest"
  }
}