-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.43 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@aws-amplify/analytics",
"version": "7.0.94",
"description": "Analytics category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"react-native": "./dist/cjs/index.js",
"typings": "./dist/esm/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
"build-with-test": "npm run clean && npm run test && npm run build",
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
"build:watch": "npm run build:esm-cjs -- --watch",
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
"clean": "npm run clean:size && rimraf dist lib lib-esm",
"clean:size": "rimraf --glob dual-publish-tmp tmp*",
"format": "echo \"Not implemented\"",
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 71.4"
},
"typesVersions": {
">=4.2": {
"pinpoint": [
"./dist/esm/providers/pinpoint/index.d.ts"
],
"kinesis": [
"./dist/esm/providers/kinesis/index.d.ts"
],
"kinesis-firehose": [
"./dist/esm/providers/kinesis-firehose/index.d.ts"
],
"personalize": [
"./dist/esm/providers/personalize/index.d.ts"
]
}
},
"exports": {
".": {
"react-native": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"./pinpoint": {
"react-native": "./dist/cjs/providers/pinpoint/index.js",
"types": "./dist/esm/providers/pinpoint/index.d.ts",
"import": "./dist/esm/providers/pinpoint/index.mjs",
"require": "./dist/cjs/providers/pinpoint/index.js"
},
"./kinesis": {
"react-native": "./dist/cjs/providers/kinesis/index.js",
"types": "./dist/esm/providers/kinesis/index.d.ts",
"import": "./dist/esm/providers/kinesis/index.mjs",
"require": "./dist/cjs/providers/kinesis/index.js"
},
"./kinesis-firehose": {
"react-native": "./dist/cjs/providers/kinesis-firehose/index.js",
"types": "./dist/esm/providers/kinesis-firehose/index.d.ts",
"import": "./dist/esm/providers/kinesis-firehose/index.mjs",
"require": "./dist/cjs/providers/kinesis-firehose/index.js"
},
"./personalize": {
"react-native": "./dist/cjs/providers/personalize/index.js",
"types": "./dist/esm/providers/personalize/index.d.ts",
"import": "./dist/esm/providers/personalize/index.mjs",
"require": "./dist/cjs/providers/personalize/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-js.git",
"directory": "packages/analytics"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws/aws-amplify/issues"
},
"homepage": "https://docs.amplify.aws/",
"files": [
"dist/cjs",
"dist/esm",
"src",
"pinpoint",
"kinesis",
"kinesis-firehose",
"personalize"
],
"dependencies": {
"@aws-sdk/client-firehose": "^3.1012.0",
"@aws-sdk/client-kinesis": "^3.1012.0",
"@aws-sdk/client-personalize-events": "^3.1012.0",
"@smithy/util-utf8": "2.0.0",
"tslib": "^2.5.0"
},
"peerDependencies": {
"@aws-amplify/core": "^6.16.2"
},
"devDependencies": {
"@aws-amplify/core": "6.16.3",
"@aws-amplify/react-native": "1.3.3",
"@aws-sdk/types": "^3.973.6"
}
}