-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 KB
/
package.json
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
{
"name": "react-native-force",
"version": "13.0.0",
"description": "Salesforce Mobile SDK JavaScript libraries for React Native",
"keywords": [
"mobilesdk",
"react-native",
"salesforce",
"mobile",
"sdk"
],
"homepage": "https://github.com/forcedotcom/SalesforceMobileSDK-ReactNative",
"bugs": "https://github.com/forcedotcom/SalesforceMobileSDK-ReactNative/issues",
"licenses": [
{
"type": "Salesforce.com Mobile SDK License",
"url": "https://github.com/forcedotcom/SalesforceMobileSDK-ReactNative/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/forcedotcom/SalesforceMobileSDK-ReactNative.git"
},
"engines": {
"node": ">=18"
},
"author": {
"name": "Ivan Bogdanov",
"email": "[email protected]"
},
"contributors": [
{
"name": "Wolfgang Mathurin",
"email": "[email protected]"
},
{
"name": "Bharath Hariharan",
"email": "[email protected]"
},
{
"name": "Jean-Philippe Monette",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"prepublish": "npm run build"
},
"peerDependencies": {
"react-native": "0.74.5"
},
"dependencies": {
"react-native-timer": "^1.3.6"
},
"files": [
"dist/*",
"tsconfig.json",
"src/**/*",
"ios/SalesforceReact/**/*",
"SalesforceReact.podspec"
],
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.74.87",
"@react-native/eslint-config": "0.74.87",
"@react-native/metro-config": "0.74.87",
"@react-native/typescript-config": "0.74.87",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
}
}