-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "@braze/react-native-sdk",
"version": "13.1.1",
"description": "Braze SDK for React Native.",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "./node_modules/.bin/eslint index.js */**.js",
"lint-fix": "./node_modules/.bin/eslint --fix index.js */**.js",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/braze-inc/braze-react-native-sdk.git"
},
"keywords": [
"braze",
"appboy",
"react",
"native",
"react-native",
"ios",
"android",
"push",
"in-app",
"analytics",
"segmentation",
"feature-flags"
],
"author": "Braze, Inc",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/braze-inc/braze-react-native-sdk/issues"
},
"homepage": "https://github.com/braze-inc/braze-react-native-sdk#readme",
"devDependencies": {
"eslint": "8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"jest": "^29.2.1",
"react": "^17.0.2",
"react-native": "^0.71.0",
"metro-babel-register": "^0.71.1"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/BrazeProject/"
],
"setupFiles": [
"<rootDir>/__tests__/jest.setup.js"
],
"testMatch": [
"<rootDir>/__tests__/**/*.test.js?(x)"
],
"preset": "react-native"
},
"codegenConfig": {
"name": "BrazeReactModuleSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.braze.reactbridge"
}
}
}