{
  "name": "@snowplow/browser-plugin-link-click-tracking",
  "version": "3.23.1",
  "description": "Link Click tracking for Snowplow",
  "homepage": "http://bit.ly/sp-js",
  "bugs": "https://github.com/snowplow/snowplow-javascript-tracker/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/snowplow/snowplow-javascript-tracker.git"
  },
  "license": "BSD-3-Clause",
  "author": "Paul Boocock",
  "sideEffects": false,
  "main": "./dist/index.umd.js",
  "module": "./dist/index.module.js",
  "types": "./dist/index.module.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@snowplow/browser-tracker-core": "3.23.1",
    "@snowplow/tracker-core": "3.23.1",
    "tslib": "^2.3.1"
  },
  "devDependencies": {
    "@ampproject/rollup-plugin-closure-compiler": "~0.27.0",
    "@rollup/plugin-commonjs": "~21.0.2",
    "@rollup/plugin-node-resolve": "~13.1.3",
    "@types/jest": "~27.4.1",
    "@types/jsdom": "~16.2.14",
    "@types/lodash": "~4.14.180",
    "@typescript-eslint/eslint-plugin": "~5.15.0",
    "@typescript-eslint/parser": "~5.15.0",
    "eslint": "~8.11.0",
    "jest": "~27.5.1",
    "jest-environment-jsdom": "~27.5.1",
    "jest-environment-jsdom-global": "~3.0.0",
    "jest-standard-reporter": "~2.0.0",
    "lodash": "~4.17.21",
    "rollup": "~2.70.1",
    "rollup-plugin-cleanup": "~3.2.1",
    "rollup-plugin-license": "~2.6.1",
    "rollup-plugin-terser": "~7.0.2",
    "rollup-plugin-ts": "~2.0.5",
    "ts-jest": "~27.1.3",
    "typescript": "~4.6.2"
  },
  "peerDependencies": {
    "@snowplow/browser-tracker": "~3.23.1"
  },
  "scripts": {
    "build": "rollup -c --silent --failAfterWarnings",
    "test": "jest"
  },
  "readme": "# Snowplow Link Click Tracking\n\n[![npm version][npm-image]][npm-url]\n[![License][license-image]](LICENSE)\n\nBrowser Plugin to be used with `@snowplow/browser-tracker`.\n\nAdds link click tracking events to your Snowplow tracking.\n\n## Maintainer quick start\n\nPart of the Snowplow JavaScript Tracker monorepo.  \nBuild with [Node.js](https://nodejs.org/en/) ( 14 or 16) and [Rush](https://rushjs.io/).\n\n### Setup repository\n\n```bash\nnpm install -g @microsoft/rush \ngit clone https://github.com/snowplow/snowplow-javascript-tracker.git\nrush update\n```\n\n## Package Installation\n\nWith npm:\n\n```bash\nnpm install @snowplow/browser-plugin-link-click-tracking\n```\n\n## Usage\n\nInitialize your tracker with the LinkClickTrackingPlugin:\n\n```js\nimport { newTracker } from '@snowplow/browser-tracker';\nimport { LinkClickTrackingPlugin } from '@snowplow/browser-plugin-link-click-tracking';\n\nnewTracker('sp1', '{{collector}}', { plugins: [ LinkClickTrackingPlugin() ] }); // Also stores reference at module level\n```\n\nThen use the available functions from this package to track to all trackers which have been initialized with this plugin:\n\n```js\nimport { enableLinkClickTracking, refreshLinkClickTracking } from '@snowplow/browser-plugin-link-click-tracking';\n\nenableLinkClickTracking({ options: { ... }, psuedoClicks: true });\n\nrefreshLinkClickTracking();\n```\n\n## Copyright and license\n\nLicensed and distributed under the [BSD 3-Clause License](LICENSE) ([An OSI Approved License][osi]).\n\nCopyright (c) 2022 Snowplow Analytics Ltd, 2010 Anthon Pang.\n\nAll rights reserved.\n\n[npm-url]: https://www.npmjs.com/package/@snowplow/browser-plugin-form-tracking\n[npm-image]: https://img.shields.io/npm/v/@snowplow/browser-plugin-form-tracking\n[docs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-tracker/\n[osi]: https://opensource.org/licenses/BSD-3-Clause\n[license-image]: https://img.shields.io/npm/l/@snowplow/browser-plugin-form-tracking\n"
}