UNPKG

@snowplow/browser-plugin-browser-features

Version:

Attaches browser features to Snowplow events

54 lines 3.35 kB
{ "name": "@snowplow/browser-plugin-browser-features", "version": "3.21.0", "description": "Attaches browser features to Snowplow events", "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.21.0", "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", "@snowplow/tracker-core": "3.21.0", "@types/jest": "~27.4.1", "@types/jsdom": "~16.2.14", "@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", "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.21.0" }, "scripts": { "build": "rollup -c --silent --failAfterWarnings", "test": "jest" }, "readme": "# Snowplow Browser Feature 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 Browser Features to your Snowplow tracking. Identifies available MIME Types.\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-browser-features\n```\n\n## Usage\n\nInitialize your tracker with the BrowserFeaturesPlugin:\n\n```js\nimport { newTracker } from '@snowplow/browser-tracker';\nimport { BrowserFeaturesPlugin } from '@snowplow/browser-plugin-browser-features';\n\nnewTracker('sp1', '{{collector}}', { plugins: [ BrowserFeaturesPlugin() ] }); // Also stores reference at module level\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-browser-features\n[npm-image]: https://img.shields.io/npm/v/@snowplow/browser-plugin-browser-features\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-browser-features\n" }