-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.95 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
{
"name": "@segment/analytics-react-native-plugin-onetrust",
"version": "1.2.1",
"description": "Add OneTrust to Segment analytics in your React-Native app.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"package.json",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"build": "bob build",
"test": "jest",
"typescript": "tsc --noEmit",
"clean": "rimraf lib node_modules",
"release": "semantic-release"
},
"keywords": [
"segment",
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics-react-native.git",
"directory": "packages/plugins/plugin-onetrust"
},
"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-onetrust#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@segment/analytics-react-native": "^2.18.0",
"@segment/sovran-react-native": "*",
"react-native-onetrust-cmp": "^202308.1.0"
},
"devDependencies": {
"@segment/analytics-react-native": "^2.18.0",
"@segment/analytics-rn-shared": "workspace:^",
"@segment/sovran-react-native": "^1.1.0",
"jest": "^29.7.0",
"on-change": "^3.0.2",
"react-native-builder-bob": "^0.23.1",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.8",
"typescript": "^5.2.2"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}