forked from analytics-debugger/google-tag-linker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
67
68
69
70
{
"name": "@giovaniortolanibarbosa/google-tag-linker",
"version": "0.1.8",
"description": "Generate a cross-domain linker parameter for Google Tags (ie: Google Analytics 4) and any other analytics tool",
"main": "dist/googleTagLinker.min.js",
"module": "dist/dist/googleTagLinker.esm.min.js",
"browser": "dist/googleTagLinker.min.js",
"devDependencies": {
"jest": "^26.6.3"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"test": "jest",
"devtest": "jest --watch",
"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/giovaniortolani/google-tag-linker"
},
"keywords": [
"google",
"google tag",
"cross-domain",
"linker",
"google tag manager",
"google analytics",
"ga4",
"analytics"
],
"author": {
"name": "David Vallejo",
"email": "[email protected]",
"url": "https://www.thyngster.com"
},
"contributors": [
{
"name": "Giovani Ortolani Barbosa",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/giovani-ortolani-barbosa/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/giovaniortolani/google-tag-linker/issues"
},
"homepage": "https://github.com/giovaniortolani/google-tag-linker/",
"funding": {
"type": "individual",
"url": "https://ko-fi.com/thyngster"
},
"dependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"browser-or-node": "^2.0.0",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-terser": "^7.0.2"
}
}