UNPKG

gtag-ga

Version:

Google Analytics 4 (gtag.js) for NodeJS ES Module. Simple installation to send page views or event tracking.

71 lines (70 loc) 1.59 kB
{ "name": "gtag-ga", "version": "1.0.4", "description": "Google Analytics 4 (gtag.js) for NodeJS ES Module. Simple installation to send page views or event tracking.", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", "exports": { ".": "./dist/index.js" }, "typesVersions": { "*": { "index.d.ts": [ "dist/index.d.ts" ] } }, "engines": { "node": ">=12.0.0" }, "scripts": { "build": "npm run format:fix && tsc && npm run minify", "lint": "eslint .", "lint:fix": "eslint --fix .", "minify": "terser dist/index.js --config-file .terserrc -o dist/index.js", "prepare": "npm run build", "format": "prettier .", "format:fix": "prettier . --write" }, "author": "Jooy2 <jooy2.contact@gmail.com>", "homepage": "https://github.com/jooy2/gtag-ga", "repository": { "type": "git", "url": "https://github.com/jooy2/gtag-ga.git" }, "bugs": { "url": "https://github.com/jooy2/gtag-ga/issues" }, "keywords": [ "ga", "utility", "tool", "google", "google-analytics", "googleanalytics", "gtag", "ga4", "universal-analytics", "gtagjs", "gtag.js", "google-tag-manager", "googletagmanager", "node-ga4", "ga4-gtag" ], "license": "MIT", "devDependencies": { "@types/gtag.js": "^0.0.17", "@types/node": "^20.8.7", "@typescript-eslint/eslint-plugin": "^6.8.0", "@typescript-eslint/parser": "^6.8.0", "eslint": "^8.51.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^9.0.0", "prettier": "^3.0.3", "terser": "^5.22.0", "ts-node": "^10.9.1", "typescript": "^5.2.2" } }