-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.17 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.17 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
{
"name": "@survicate/react-native-survicate",
"title": "React Native Survicate Bindings",
"version": "8.0.2",
"description": "React Native bindings for Survicate Mobile SDK",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"source": "src/index.ts",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"app.plugin.js",
"react-native-survicate.podspec",
"!android/build",
"!ios/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bob build",
"prepare": "bob build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Survicate/survicate-react-native-sdk.git",
"baseUrl": "https://github.com/Survicate/survicate-react-native-sdk"
},
"keywords": [
"react-native",
"expo"
],
"author": "Survicate <support@survicate.com> (https://survicate.com/)",
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"bugs": {
"url": "https://survicate.com"
},
"peerDependencies": {
"expo": ">=49",
"react": ">=16.8.6",
"react-native": ">=0.60.0"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"devDependencies": {
"@tsconfig/react-native": "^3.0.9",
"@types/jest": "^29.5.4",
"@types/react": "^19.2.8",
"@types/react-test-renderer": "^19.1.0",
"expo": "^54.0.31",
"react": "^19.2.3",
"react-native": "^0.83.1",
"react-native-builder-bob": "^0.40.17",
"typescript": "^5.9.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "RNSurvicateSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.survicate.react"
}
}
}