-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.88 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.88 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
{
"name": "@segment/analytics-react-native-plugin-braze",
"version": "0.9.0",
"description": "The hassle-free way to add Segment analytics to your React-Native app.",
"main": "lib/commonjs/index",
"scripts": {
"build": "bob build",
"test": "jest",
"typescript": "tsc --noEmit",
"clean": "rimraf lib node_modules"
},
"keywords": [
"segment",
"react-native",
"ios",
"android"
],
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"segment-analytics-react-native.podspec",
"package.json",
"!src/**/*.e2e.mock.js",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!android/.gradle",
"!android/.idea"
],
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics-react-native.git",
"directory": "packages/core"
},
"author": "Segment <hello@segment.com> (https://segment.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/segmentio/analytics-react-native/issues"
},
"homepage": "https://github.com/segmentio/analytics-react-native/tree/master/packages/plugins/plugin-braze#readme",
"peerDependencies": {
"@braze/react-native-sdk": "^20.x",
"@segment/analytics-react-native": "^2.18.0"
},
"devDependencies": {
"@braze/react-native-sdk": "^20.x",
"@segment/analytics-react-native": "^2.18.0",
"@segment/analytics-rn-shared": "workspace:^",
"@segment/sovran-react-native": "^1.1.0",
"jest": "^30.3.0",
"react-native-builder-bob": "^0.41.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"engines": {
"node": ">=12"
}
}