{
  "scripts": {
    "start": "webpack-dev-server --env buildType=dev",
    "test": "jest",
    "test_dev": "jest --watch",
    "test_debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
    "testcafe": "concurrently \"http-server\" \"testcafe chrome testCafe/\"",
    "testcafe_ci": "http-server --silent & testcafe testCafe/ --reporter minimal",
    "testcafe:file": "concurrently \"http-server --silent\" \"testcafe chrome testCafe/tabulator/basetests.js --selector-timeout 1500 --reporter minimal --debug-mode\"",
    "release": "standard-version --message \"Release: %s [azurepipelines skip]\" ",
    "doc_gen": "node doc_generator/lib_docgenerator.js src/index.ts",
    "doc_update": "chmod +x ./docupdate_npm.sh && ./docupdate_npm.sh",
    "watch:dev": "concurrently \"webpack --env buildType=dev --env emitStyles\" \"rollup -c -w\" ",
    "build": "webpack --env buildType=dev --env emitNonSourceFiles --env emitStyles && webpack --env buildType=prod --env emitStyles && rollup -c",
    "build:types:summary": "tsc --p tsconfig.summary.json && echo \"export * from './survey-analytics.types/entries/summary';\" >> build/survey.analytics.d.ts",
    "build:types:tabulator": "tsc --p tsconfig.tabulator.json && echo \"export * from './survey-analytics-tabulator.types/entries/tabulator';\" >> build/survey.analytics.tabulator.d.ts",
    "lint": "eslint ./src --quiet",
    "pre-push-check": "npm run lint && npm run test"
  },
  "version": "2.2.1",
  "name": "survey-analytics",
  "description": "SurveyJS analytics Library.",
  "main": "survey.analytics.js",
  "files": [
    "**/*"
  ],
  "typings": "survey.analytics.d.ts",
  "private": false,
  "keywords": [
    "Survey",
    "JavaScript",
    "Library",
    "SurveyJS",
    "Analytics"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/surveyjs/survey-analytics.git"
  },
  "homepage": "https://surveyjs.io/",
  "license": "SEE LICENSE IN LICENSE",
  "dependencies": {
    "muuri": "^0.8.0",
    "plotly.js-dist-min": "^2.28.0",
    "tabulator-tables": "^6.2.5"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@rollup/plugin-commonjs": "^28.0.2",
    "@rollup/plugin-replace": "^6.0.2",
    "@rollup/plugin-typescript": "^12.1.2",
    "@types/jest": "^26.0.24",
    "@types/jquery": "3.3.29",
    "@types/node": "7.0.4",
    "@typescript-eslint/eslint-plugin": "^4.33.0",
    "@typescript-eslint/parser": "^4.33.0",
    "concurrently": "^5.3.0",
    "css-loader": "^7.1.2",
    "eslint": "^7.32.0",
    "html-loader": "^5.0.0",
    "http-server": "^14.1.1",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "jest-canvas-mock": "^2.3.1",
    "jest-environment-jsdom": "^29.7.0",
    "jest-junit": "^16.0.0",
    "mini-css-extract-plugin": "^2.9.0",
    "node-uuid": "1.4.7",
    "puppeteer": "22.13.1",
    "replace-in-file": "^6.3.2",
    "rollup": "^4.34.8",
    "rollup-plugin-license": "^3.6.0",
    "sass": "^1.62.1",
    "sass-loader": "^16.0.4",
    "standard-version": "^9.5.0",
    "style-loader": "^1.3.0",
    "surveyjs-doc-generator": "git+https://github.com/surveyjs/surveyjs-doc-generator.git",
    "svg-inline-loader": "^0.8.2",
    "testcafe": "3.3.0",
    "ts-jest": "^29.2.2",
    "ts-loader": "^8.0.0",
    "typescript": "^5.7.0",
    "webpack": "5.98.0",
    "webpack-cli": "^5.1.4",
    "webpack-dev-server": "^5.0.4",
    "webpack-merge": "^5.8.0"
  },
  "peerDependencies": {
    "@types/plotly.js-dist-min": "^2.3.0",
    "@types/tabulator-tables": "^6.2.3",
    "survey-core": "2.2.1"
  },
  "husky": {
    "hooks": {
      "pre-push": "npm run pre-push-check"
    }
  },
  "exports": {
    ".": {
      "types": "./survey.analytics.d.ts",
      "import": "./fesm/survey.analytics.mjs",
      "require": "./survey.analytics.js"
    },
    "./*.css": "./*.css",
    "./survey.analytics.tabulator": {
      "types": "./survey.analytics.tabulator.d.ts",
      "import": "./fesm/survey.analytics.tabulator.mjs",
      "require": "./survey.analytics.tabulator.js"
    }
  },
  "module": "fesm/survey.analytics.mjs"
}