@mparticle/web-amplitude-kit 2.3.0 → 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.
package/package.json CHANGED
@@ -1,45 +1,55 @@
1
1
  {
2
2
  "name": "@mparticle/web-amplitude-kit",
3
- "version": "2.3.0",
4
- "author": "mParticle Developers <developers@mparticle.com> (https://www.mparticle.com)",
5
- "description": "mParticle integration sdk for Amplitude",
3
+ "version": "3.2.0",
4
+ "author": "mParticle Developers (https://www.mparticle.com)",
5
+ "description": "mParticle integration SDK for Amplitude",
6
6
  "main": "dist/Amplitude.common.js",
7
+ "module": "dist/Amplitude.esm.js",
7
8
  "files": [
8
- "dist/Amplitude.common.js"
9
+ "dist/Amplitude.common.js",
10
+ "dist/Amplitude.esm.js",
11
+ "dist/Amplitude.iife.js"
9
12
  ],
10
- "repository": "https://github.com/mparticle-integrations/mparticle-javascript-integration-amplitude",
13
+ "homepage": "https://github.com/mParticle/mparticle-web-sdk/tree/main/kits/amplitude/amplitude-8#readme",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/mParticle/mparticle-web-sdk",
17
+ "directory": "kits/amplitude/amplitude-8"
18
+ },
11
19
  "scripts": {
12
20
  "build": "rollup --config rollup.config.js",
13
21
  "build:test": "rollup --config rollup.test.config.js",
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
- "watch": "rollup --config rollup.config.js -w"
22
+ "test": "npm run build && npm run build:test && cross-env DEBUG=false karma start test/karma.config.js",
23
+ "test:debug": "npm run build && npm run build:test && cross-env DEBUG=true karma start test/karma.config.js",
24
+ "watch": "rollup --config rollup.config.js -w",
25
+ "lint": "eslint src/"
26
+ },
27
+ "peerDependencies": {
28
+ "@mparticle/web-sdk": "^3.0.0"
17
29
  },
18
30
  "devDependencies": {
19
- "@mparticle/web-sdk": "^2.12.8",
20
- "@semantic-release/changelog": "^5.0.1",
21
- "@semantic-release/exec": "^5.0.0",
22
- "@semantic-release/git": "^9.0.0",
31
+ "@mparticle/web-sdk": "^3.0.0",
23
32
  "chai": "^4.2.0",
24
- "eslint-config-prettier": "6.3.0",
25
- "eslint-plugin-prettier": "3.1.1",
26
- "karma": "^5.0.9",
33
+ "cross-env": "^7.0.3",
34
+ "eslint": "^8.36.0",
35
+ "eslint-config-prettier": "9.0.0",
36
+ "eslint-plugin-prettier": "3.4.1",
37
+ "karma": "^6.3.2",
27
38
  "karma-chai": "^0.1.0",
28
- "karma-chrome-launcher": "^2.2.0",
29
- "karma-edge-launcher": "^0.4.2",
30
- "karma-firefox-launcher": "^1.1.0",
31
- "karma-ie-launcher": "^1.0.0",
32
- "karma-junit-reporter": "^1.2.0",
33
- "karma-mocha": "^1.3.0",
34
- "karma-safari-launcher": "^1.0.0",
35
- "mocha": "^2.3.2",
39
+ "karma-chrome-launcher": "^3.1.0",
40
+ "karma-firefox-launcher": "^2.1.2",
41
+ "karma-mocha": "^2.0.1",
42
+ "mocha": "^9.0.0",
36
43
  "prettier": "^2.2.1",
37
- "rollup": "^1.13.1",
44
+ "rollup": "^2.75.7",
38
45
  "rollup-plugin-commonjs": "^10.0.0",
39
46
  "rollup-plugin-node-resolve": "^5.0.1",
40
- "shelljs": "^0.8.4",
41
- "should": "^7.1.1",
42
- "watchify": "^3.11.1"
47
+ "should": "^7.1.1"
43
48
  },
44
- "license": "Apache-2.0"
49
+ "license": "Apache-2.0",
50
+ "publishConfig": {
51
+ "access": "public",
52
+ "provenance": true,
53
+ "registry": "https://registry.npmjs.org"
54
+ }
45
55
  }