This repository was archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.36 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
{
"name": "launchdarkly-react-native-client-sdk",
"version": "9.4.2",
"description": "LaunchDarkly Client-side SDK for React Native",
"main": "index.js",
"types": "index.d.ts",
"files": [
"android/src/main",
"android/build.gradle",
"android/consumer-proguard-rules.pro",
"android/gradle.properties",
"ios/LaunchdarklyReactNativeClient.xcodeproj",
"ios/LaunchdarklyReactNativeClient.swift",
"ios/LaunchdarklyReactNativeClient-Bridging-Header.h",
"ios/LaunchdarklyReactNativeClientBridge.m",
"src",
"babel.config.js",
"index.d.ts",
"index.js",
"launchdarkly-react-native-client-sdk.podspec",
"test-types.ts",
"tsconfig.json"
],
"scripts": {
"check-typescript": "node_modules/typescript/bin/tsc",
"test": "jest",
"test:junit": "jest --testResultsProcessor jest-junit",
"link-dev": "./link-dev.sh",
"prettier": "prettier --write '**/*.@(js|ts|tsx|json|css)'",
"doctor": "react-native doctor",
"yarn-all": "yarn && yarn --cwd ManualTestApp",
"modd-ios": "modd -f modd-ios.conf",
"modd-android": "modd -f modd-android.conf",
"modd": "modd",
"dev-ios": "yarn yarn-all && yarn modd-ios",
"dev-android": "yarn yarn-all && yarn modd-android",
"clean-all": "./clean-all.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/react-native-client-sdk.git"
},
"keywords": [
"react-native"
],
"author": "LaunchDarkly",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/launchdarkly/react-native-client-sdk/issues"
},
"homepage": "https://docs.launchdarkly.com/sdk/client-side/react-native",
"dependencies": {
"launchdarkly-js-sdk-common": "5.0.3"
},
"peerDependencies": {
"react-native": ">=0.69.0 <0.74.0"
},
"devDependencies": {
"@react-native/babel-preset": "^0.73.18",
"@tsconfig/react-native": "2.0.3",
"@types/jest": "29.4.0",
"@types/react": "18.2.6",
"@types/react-test-renderer": "18.0.0",
"jest": "^29.4.2",
"jest-junit": "^15.0.0",
"prettier": "^2.8.8",
"react-native": "^0.73.2",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": ">=4.5.0"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./__mocks__/native.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
}
}