forked from braze-inc/braze-react-native-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "@braze/react-native-sdk",
"version": "2.0.2",
"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": [
"appboy",
"braze",
"react",
"native",
"react-native",
"ios",
"android",
"push",
"in-app",
"analytics",
"segmentation"
],
"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": "^27.5.1",
"react": "^17.0.2",
"react-native": "^0.68.2",
"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",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}