-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
66 lines (66 loc) · 1.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@analytics-debugger/ga4mp",
"version": "0.0.8",
"description": "An Open-Source Google Analytics 4 Client-Side Protocol Implementation",
"main": "dist/ga4mp.min.js",
"module": "dist/ga4mp.esm.min.js",
"browser": "dist/ga4mp.min.js",
"devDependencies": {
"jest": "^26.6.3"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"dev": "rollup -c --watch --bundleConfigAsCjs",
"test": "jest",
"devtest": "jest --watch",
"prepublish:alpha": "npm version prerelease --preid=alpha && npm run build",
"prepublish:beta": "npm version prerelease --preid=beta && npm run build",
"prepublish:patch": "npm version patch --force && npm run build",
"prepublish:minor": "npm version minor --force && npm run build",
"prepublish:major": "npm version major --force && npm run build",
"publish:public": "npm publish --access public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/analytics-debugger/ga4mp"
},
"keywords": [
"google",
"google tag",
"gtag",
"ga4",
"google analytics 4",
"server side",
"ga4",
"analytics",
"measurement protocol"
],
"author": {
"name": "David Vallejo ",
"email": "[email protected]",
"url": "https://www.thyngster.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/analytics-debugger/ga4mp/issues"
},
"homepage": "https://www.thyngster.com",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/thyngster"
},
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.0",
"rollup": "^3.7.1",
"rollup-plugin-license": "^3.0.1"
}
}