{
  "name": "@engage_so/browser",
  "version": "3.0.0",
  "description": "Engage SDK for the browser.",
  "main": "index.js",
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:autotrack": "open tests/test-autotrack.html",
    "test:tours-spa": "open tests/test-tours-spa.html",
    "build": "esbuild index.js --bundle --sourcemap --outfile=./dist/engage.js",
    "build-dev": "esbuild index.js --bundle --minify --sourcemap --outfile=./dist/engage.min.js",
    "lint": "standard",
    "lint:fix": "standard --fix"
  },
  "author": "Engage",
  "license": "MIT",
  "devDependencies": {
    "esbuild": "0.24.0",
    "standard": "^17.1.2",
    "jest": "^29.7.0",
    "@types/jest": "^29.5.5"
  },
  "dependencies": {
    "@engage_so/core": "^2.1.1"
  },
  "jest": {
    "testEnvironment": "jsdom",
    "collectCoverageFrom": [
      "**/*.js",
      "!node_modules/**",
      "!dist/**",
      "!tests/**"
    ]
  }
}
