-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.04 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.04 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
{
"name": "@segment/sovran-react-native",
"version": "1.1.3",
"description": "A cross-platform state management system",
"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",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"build": "bob build",
"clean": "rimraf lib node_modules",
"release": "semantic-release"
},
"keywords": [
"react-native",
"ios",
"android",
"segment"
],
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics-react-native.git"
},
"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/sovran#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"jest": "^29.7.0",
"semantic-release": "^22.0.8",
"typescript": "^5.2.2"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "2.x",
"react": "*",
"react-native": "*"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
}
},
"dependencies": {
"ansi-regex": "5.0.1",
"deepmerge": "^4.2.2",
"react-native-get-random-values": "2.x",
"shell-quote": "1.8.0",
"uuid": "^9.0.1"
},
"resolutions": {
"shell-quote": "1.7.3",
"ansi-regex": "5.0.1"
}
}