@groww-tech/analytics
Version:
Analytics service exposes methods to send events to 3rd party analytics tools like Webengage and Gtm.
52 lines • 1.48 kB
JSON
{
"name": "@groww-tech/analytics",
"version": "1.1.2",
"description": "Analytics service exposes methods to send events to 3rd party analytics tools like Webengage and Gtm.",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Groww/webster"
},
"keywords": [
"analytics",
"groww",
"web service"
],
"author": "Groww Core Team <web-core@groww.in>",
"contributors": [
{
"name": "Vikas Singh",
"url": "https://twitter.com/VikasSi25579022"
},
{
"name": "Harshit Pruthi",
"url": "https://www.linkedin.com/in/harshit-pruthi"
}
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/Groww/webster/issues"
},
"homepage": "https://github.com/Groww/webster/tree/develop/packages/analytics#readme",
"devDependencies": {
"typescript": "4.4.4",
"tsup": "5.11.11",
"esbuild-plugin-glob": "1.0.5"
},
"dependencies": {
"@groww-tech/ella": "0.2.5"
},
"scripts": {
"build": "tsup --env.NODE_ENV production",
"pushTags": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag -a analytics-v$PACKAGE_VERSION -m \"@groww-tech/analytics-v$PACKAGE_VERSION\" && git push --tags"
}
}