-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.13 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.13 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
{
"name": "@segment/analytics-react-native",
"version": "2.21.4",
"description": "The hassle-free way to add Segment analytics to your React-Native app.",
"keywords": [
"segment",
"react-native",
"ios",
"android"
],
"homepage": "https://github.com/segmentio/analytics-react-native#readme",
"bugs": {
"url": "https://github.com/segmentio/analytics-react-native/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics-react-native.git",
"directory": "packages/core"
},
"license": "MIT",
"author": "Segment <hello@segment.com> (https://segment.com/)",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"source": "src/index",
"react-native": "src/index",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"segment-analytics-react-native.podspec",
"package.json",
"!src/**/*.e2e.mock.js",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"prebuild": "node constants-generator.js && eslint --fix ./src/info.ts",
"build": "yarn prebuild && bob build",
"clean": "rimraf lib node_modules ./src/info.ts",
"test": "jest",
"typescript": "tsc --noEmit",
"prepack": "yarn prebuild"
},
"dependencies": {
"@segment/tsub": "2.0.0",
"@stdlib/number-float64-base-normalize": "0.0.8",
"deepmerge": "^4.3.1",
"js-base64": "^3.7.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@segment/sovran-react-native": "^1.1.0",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "2.x",
"@segment/sovran-react-native": "^1.1.0",
"react": "*",
"react-native": "*",
"react-native-get-random-values": "2.x"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
}
},
"engines": {
"node": ">=12"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}