@aws-amplify/analytics 7.0.2-unstable.ff85fa5.0 → 7.0.2

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.
Files changed (1) hide show
  1. package/package.json +155 -155
package/package.json CHANGED
@@ -1,157 +1,157 @@
1
1
  {
2
- "name": "@aws-amplify/analytics",
3
- "version": "7.0.2-unstable.ff85fa5.0+ff85fa5",
4
- "description": "Analytics category of aws-amplify",
5
- "main": "./dist/cjs/index.js",
6
- "module": "./dist/esm/index.mjs",
7
- "react-native": "./src/index.ts",
8
- "typings": "./dist/esm/index.d.ts",
9
- "sideEffects": false,
10
- "publishConfig": {
11
- "access": "public"
12
- },
13
- "scripts": {
14
- "test": "npm run lint && jest -w 1 --coverage",
15
- "test:watch": "tslint 'src/**/*.ts' && jest -w 1 --watch",
16
- "build-with-test": "npm run clean && npm run test && npm run build",
17
- "build:umd": "webpack && webpack --config ./webpack.config.dev.js",
18
- "build:esm-cjs": "rollup -c rollup.config.mjs",
19
- "build:cjs:watch": "rimraf dist/cjs && tsc -m commonjs --outDir dist/cjs --watch",
20
- "build:esm:watch": "rimraf dist/esm && tsc -m esnext --outDir dist/esm --watch",
21
- "build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
22
- "clean": "npm run clean:size && rimraf dist lib lib-esm",
23
- "clean:size": "rimraf dual-publish-tmp tmp*",
24
- "format": "echo \"Not implemented\"",
25
- "lint": "tslint 'src/**/*.ts' && npm run ts-coverage",
26
- "ts-coverage": "typescript-coverage-report -p ./tsconfig.json -t 71.4"
27
- },
28
- "typesVersions": {
29
- ">=4.2": {
30
- "pinpoint": [
31
- "./dist/esm/providers/pinpoint/index.d.ts"
32
- ],
33
- "kinesis": [
34
- "./dist/esm/providers/kinesis/index.d.ts"
35
- ],
36
- "kinesis-firehose": [
37
- "./dist/esm/providers/kinesis-firehose/index.d.ts"
38
- ],
39
- "personalize": [
40
- "./dist/esm/providers/personalize/index.d.ts"
41
- ]
42
- }
43
- },
44
- "exports": {
45
- ".": {
46
- "types": "./dist/esm/index.d.ts",
47
- "import": "./dist/esm/index.mjs",
48
- "require": "./dist/cjs/index.js",
49
- "react-native": "./src/index.ts"
50
- },
51
- "./pinpoint": {
52
- "types": "./dist/esm/providers/pinpoint/index.d.ts",
53
- "import": "./dist/esm/providers/pinpoint/index.mjs",
54
- "require": "./dist/cjs/providers/pinpoint/index.js",
55
- "react-native": "./src/providers/pinpoint/index.ts"
56
- },
57
- "./kinesis": {
58
- "types": "./dist/esm/providers/kinesis/index.d.ts",
59
- "import": "./dist/esm/providers/kinesis/index.mjs",
60
- "require": "./dist/cjs/providers/kinesis/index.js",
61
- "react-native": "./src/providers/kinesis/index.ts"
62
- },
63
- "./kinesis-firehose": {
64
- "types": "./dist/esm/providers/kinesis-firehose/index.d.ts",
65
- "import": "./dist/esm/providers/kinesis-firehose/index.mjs",
66
- "require": "./dist/cjs/providers/kinesis-firehose/index.js",
67
- "react-native": "./src/providers/kinesis-firehose/index.ts"
68
- },
69
- "./personalize": {
70
- "types": "./dist/esm/providers/personalize/index.d.ts",
71
- "import": "./dist/esm/providers/personalize/index.mjs",
72
- "require": "./dist/cjs/providers/personalize/index.js",
73
- "react-native": "./src/providers/personalize/index.ts"
74
- },
75
- "./package.json": "./package.json"
76
- },
77
- "repository": {
78
- "type": "git",
79
- "url": "https://github.com/aws-amplify/amplify-js.git"
80
- },
81
- "author": "Amazon Web Services",
82
- "license": "Apache-2.0",
83
- "bugs": {
84
- "url": "https://github.com/aws/aws-amplify/issues"
85
- },
86
- "homepage": "https://aws-amplify.github.io/",
87
- "files": [
88
- "dist/cjs",
89
- "dist/esm",
90
- "src",
91
- "pinpoint",
92
- "kinesis",
93
- "kinesis-firehose",
94
- "personalize"
95
- ],
96
- "dependencies": {
97
- "@aws-sdk/client-firehose": "3.398.0",
98
- "@aws-sdk/client-kinesis": "3.398.0",
99
- "@aws-sdk/client-personalize-events": "3.398.0",
100
- "@smithy/util-utf8": "2.0.0",
101
- "tslib": "^2.5.0"
102
- },
103
- "peerDependencies": {
104
- "@aws-amplify/core": "6.0.2-unstable.ff85fa5.0+ff85fa5"
105
- },
106
- "devDependencies": {
107
- "@aws-amplify/core": "6.0.2-unstable.ff85fa5.0+ff85fa5",
108
- "@aws-amplify/react-native": "1.0.2-unstable.ff85fa5.0+ff85fa5",
109
- "@aws-sdk/types": "3.398.0",
110
- "@rollup/plugin-typescript": "11.1.5",
111
- "rollup": "3.29.4",
112
- "typescript": "5.0.2"
113
- },
114
- "jest": {
115
- "globals": {
116
- "ts-jest": {
117
- "diagnostics": false,
118
- "tsConfig": {
119
- "allowJs": true,
120
- "noEmitOnError": false
121
- }
122
- }
123
- },
124
- "transform": {
125
- "^.+\\.(js|jsx|ts|tsx)$": "ts-jest"
126
- },
127
- "testPathIgnorePatterns": [
128
- "/testUtils/"
129
- ],
130
- "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
131
- "moduleFileExtensions": [
132
- "ts",
133
- "tsx",
134
- "js",
135
- "json",
136
- "jsx"
137
- ],
138
- "testEnvironment": "jsdom",
139
- "testURL": "http://localhost/",
140
- "coverageThreshold": {
141
- "global": {
142
- "branches": 0,
143
- "functions": 0,
144
- "lines": 0,
145
- "statements": 0
146
- }
147
- },
148
- "coveragePathIgnorePatterns": [
149
- "node_modules",
150
- "dist"
151
- ],
152
- "setupFiles": [
153
- "<rootDir>/src/setupTests.ts"
154
- ]
155
- },
156
- "gitHead": "ff85fa5cc651f6033b50fca24be568cd9ad8feb0"
2
+ "name": "@aws-amplify/analytics",
3
+ "version": "7.0.2",
4
+ "description": "Analytics category of aws-amplify",
5
+ "main": "./dist/cjs/index.js",
6
+ "module": "./dist/esm/index.mjs",
7
+ "react-native": "./src/index.ts",
8
+ "typings": "./dist/esm/index.d.ts",
9
+ "sideEffects": false,
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "scripts": {
14
+ "test": "npm run lint && jest -w 1 --coverage",
15
+ "test:watch": "tslint 'src/**/*.ts' && jest -w 1 --watch",
16
+ "build-with-test": "npm run clean && npm run test && npm run build",
17
+ "build:umd": "webpack && webpack --config ./webpack.config.dev.js",
18
+ "build:esm-cjs": "rollup -c rollup.config.mjs",
19
+ "build:cjs:watch": "rimraf dist/cjs && tsc -m commonjs --outDir dist/cjs --watch",
20
+ "build:esm:watch": "rimraf dist/esm && tsc -m esnext --outDir dist/esm --watch",
21
+ "build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
22
+ "clean": "npm run clean:size && rimraf dist lib lib-esm",
23
+ "clean:size": "rimraf dual-publish-tmp tmp*",
24
+ "format": "echo \"Not implemented\"",
25
+ "lint": "tslint 'src/**/*.ts' && npm run ts-coverage",
26
+ "ts-coverage": "typescript-coverage-report -p ./tsconfig.json -t 71.4"
27
+ },
28
+ "typesVersions": {
29
+ ">=4.2": {
30
+ "pinpoint": [
31
+ "./dist/esm/providers/pinpoint/index.d.ts"
32
+ ],
33
+ "kinesis": [
34
+ "./dist/esm/providers/kinesis/index.d.ts"
35
+ ],
36
+ "kinesis-firehose": [
37
+ "./dist/esm/providers/kinesis-firehose/index.d.ts"
38
+ ],
39
+ "personalize": [
40
+ "./dist/esm/providers/personalize/index.d.ts"
41
+ ]
42
+ }
43
+ },
44
+ "exports": {
45
+ ".": {
46
+ "types": "./dist/esm/index.d.ts",
47
+ "import": "./dist/esm/index.mjs",
48
+ "require": "./dist/cjs/index.js",
49
+ "react-native": "./src/index.ts"
50
+ },
51
+ "./pinpoint": {
52
+ "types": "./dist/esm/providers/pinpoint/index.d.ts",
53
+ "import": "./dist/esm/providers/pinpoint/index.mjs",
54
+ "require": "./dist/cjs/providers/pinpoint/index.js",
55
+ "react-native": "./src/providers/pinpoint/index.ts"
56
+ },
57
+ "./kinesis": {
58
+ "types": "./dist/esm/providers/kinesis/index.d.ts",
59
+ "import": "./dist/esm/providers/kinesis/index.mjs",
60
+ "require": "./dist/cjs/providers/kinesis/index.js",
61
+ "react-native": "./src/providers/kinesis/index.ts"
62
+ },
63
+ "./kinesis-firehose": {
64
+ "types": "./dist/esm/providers/kinesis-firehose/index.d.ts",
65
+ "import": "./dist/esm/providers/kinesis-firehose/index.mjs",
66
+ "require": "./dist/cjs/providers/kinesis-firehose/index.js",
67
+ "react-native": "./src/providers/kinesis-firehose/index.ts"
68
+ },
69
+ "./personalize": {
70
+ "types": "./dist/esm/providers/personalize/index.d.ts",
71
+ "import": "./dist/esm/providers/personalize/index.mjs",
72
+ "require": "./dist/cjs/providers/personalize/index.js",
73
+ "react-native": "./src/providers/personalize/index.ts"
74
+ },
75
+ "./package.json": "./package.json"
76
+ },
77
+ "repository": {
78
+ "type": "git",
79
+ "url": "https://github.com/aws-amplify/amplify-js.git"
80
+ },
81
+ "author": "Amazon Web Services",
82
+ "license": "Apache-2.0",
83
+ "bugs": {
84
+ "url": "https://github.com/aws/aws-amplify/issues"
85
+ },
86
+ "homepage": "https://aws-amplify.github.io/",
87
+ "files": [
88
+ "dist/cjs",
89
+ "dist/esm",
90
+ "src",
91
+ "pinpoint",
92
+ "kinesis",
93
+ "kinesis-firehose",
94
+ "personalize"
95
+ ],
96
+ "dependencies": {
97
+ "@aws-sdk/client-firehose": "3.398.0",
98
+ "@aws-sdk/client-kinesis": "3.398.0",
99
+ "@aws-sdk/client-personalize-events": "3.398.0",
100
+ "@smithy/util-utf8": "2.0.0",
101
+ "tslib": "^2.5.0"
102
+ },
103
+ "peerDependencies": {
104
+ "@aws-amplify/core": "^6.0.0"
105
+ },
106
+ "devDependencies": {
107
+ "@aws-amplify/core": "6.0.2",
108
+ "@aws-amplify/react-native": "1.0.2",
109
+ "@aws-sdk/types": "3.398.0",
110
+ "@rollup/plugin-typescript": "11.1.5",
111
+ "rollup": "3.29.4",
112
+ "typescript": "5.0.2"
113
+ },
114
+ "jest": {
115
+ "globals": {
116
+ "ts-jest": {
117
+ "diagnostics": false,
118
+ "tsConfig": {
119
+ "allowJs": true,
120
+ "noEmitOnError": false
121
+ }
122
+ }
123
+ },
124
+ "transform": {
125
+ "^.+\\.(js|jsx|ts|tsx)$": "ts-jest"
126
+ },
127
+ "testPathIgnorePatterns": [
128
+ "/testUtils/"
129
+ ],
130
+ "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
131
+ "moduleFileExtensions": [
132
+ "ts",
133
+ "tsx",
134
+ "js",
135
+ "json",
136
+ "jsx"
137
+ ],
138
+ "testEnvironment": "jsdom",
139
+ "testURL": "http://localhost/",
140
+ "coverageThreshold": {
141
+ "global": {
142
+ "branches": 0,
143
+ "functions": 0,
144
+ "lines": 0,
145
+ "statements": 0
146
+ }
147
+ },
148
+ "coveragePathIgnorePatterns": [
149
+ "node_modules",
150
+ "dist"
151
+ ],
152
+ "setupFiles": [
153
+ "<rootDir>/src/setupTests.ts"
154
+ ]
155
+ },
156
+ "gitHead": "e9c04a6d233f812b2888aa51a71b66a4040af8c0"
157
157
  }