@mparticle/web-google-analytics-4-server-kit 1.0.3 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
17
17
  // See the License for the specific language governing permissions and
18
18
  // limitations under the License.
19
19
 
20
-
21
20
  // This GA4 server side kit loads gtag, gets the client id, and sets it as an integration attribute on the core sdk.
22
21
  // This kit does not have a `processEvent` method because no events should be sent client side.
23
22
 
package/package.json CHANGED
@@ -1,33 +1,49 @@
1
1
  {
2
- "name": "@mparticle/web-google-analytics-4-server-kit",
3
- "version": "1.0.3",
4
- "description": "mParticle integration sdk for Google Analytics (server side)",
5
- "main": "dist/GoogleAnalytics4EventForwarderServerSide-Kit.common.js",
6
- "browser": "dist/GoogleAnalytics4EventForwarderServerSide-Kit.common.js",
7
- "files": ["dist/GoogleAnalytics4EventForwarderServerSide-Kit.common.js"],
8
- "scripts": {
9
- "build": "rollup --config rollup.config.js",
10
- "build:test": "ENVIRONMENT=production rollup --config rollup.test.config.js",
11
- "watch": "rollup --config rollup.config.js -w",
12
- "test": "npm run build && npm run build:test && DEBUG=false karma start test/karma.config.js",
13
- "test:debug": "npm run build && npm run build:test && DEBUG=true karma start test/karma.config.js"
14
-
15
- },
16
- "author": "mParticle Developers <developers@mparticle.com> (https://www.mparticle.com)",
17
- "license": "Apache-2.0",
18
- "publishConfig": {
19
- "access": "public"
20
- },
21
- "repository": "https://github.com/mparticle-integrations/mparticle-javascript-integration-google-analytics-4/tree/master/packages/GA4Server",
22
- "devDependencies": {
23
- "mocha": "^5.2.0",
24
- "rollup": "^1.15.6",
25
- "rollup-plugin-commonjs": "^10.0.0",
26
- "rollup-plugin-node-resolve": "^5.0.3",
27
- "should": "13.2.3",
28
- "sinon": "^15.1.0"
29
- },
30
- "dependencies": {
31
- "@mparticle/web-sdk": "^2.23.0"
32
- }
2
+ "name": "@mparticle/web-google-analytics-4-server-kit",
3
+ "version": "3.2.0",
4
+ "description": "mParticle integration sdk for Google Analytics (server side)",
5
+ "main": "dist/GoogleAnalytics4EventForwarderServerSide-Kit.common.js",
6
+ "browser": "dist/GoogleAnalytics4EventForwarderServerSide-Kit.common.js",
7
+ "files": [
8
+ "dist/GoogleAnalytics4EventForwarderServerSide-Kit.common.js"
9
+ ],
10
+ "scripts": {
11
+ "build": "rollup --config rollup.config.js",
12
+ "build:test": "ENVIRONMENT=production rollup --config rollup.test.config.js",
13
+ "watch": "rollup --config rollup.config.js -w",
14
+ "test": "npm run build && npm run build:test && DEBUG=false karma start test/karma.config.js",
15
+ "test:debug": "npm run build && npm run build:test && DEBUG=true karma start test/karma.config.js"
16
+ },
17
+ "author": "mParticle Developers <developers@mparticle.com> (https://www.mparticle.com)",
18
+ "license": "Apache-2.0",
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/mParticle/mparticle-web-sdk",
25
+ "directory": "kits/google-analytics-4/packages/GA4Server"
26
+ },
27
+ "devDependencies": {
28
+ "@semantic-release/changelog": "^6.0.3",
29
+ "@semantic-release/exec": "^6.0.3",
30
+ "@semantic-release/git": "^10.0.1",
31
+ "@semantic-release/npm": "^13.1.2",
32
+ "semantic-release": "^24.2.0",
33
+ "karma": "^5.1.0",
34
+ "chai": "^4.2.0",
35
+ "karma-chai": "^0.1.0",
36
+ "karma-chrome-launcher": "^3.1.0",
37
+ "karma-firefox-launcher": "^1.3.0",
38
+ "karma-mocha": "^2.0.1",
39
+ "mocha": "^5.2.0",
40
+ "rollup": "^1.15.6",
41
+ "rollup-plugin-commonjs": "^10.0.0",
42
+ "rollup-plugin-node-resolve": "^5.0.3",
43
+ "should": "13.2.3",
44
+ "sinon": "^15.1.0"
45
+ },
46
+ "dependencies": {
47
+ "@mparticle/web-sdk": "^3.0.0"
48
+ }
33
49
  }