-
Notifications
You must be signed in to change notification settings - Fork 200
/
package.json
executable file
·59 lines (59 loc) · 1.59 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
{
"name": "react-native-appsflyer",
"version": "6.15.1",
"description": "React Native Appsflyer plugin",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --coverage",
"demo.ios": "npm run ios-pod; cd SampleApps/AppsFlyerExample; npm run ios",
"demo.android": "cd SampleApps/AppsFlyerExample; npm run android",
"ios-pod": "cd SampleApps/AppsFlyerExample/ios; pod install; cd ../"
},
"repository": {
"type": "git",
"url": "https://github.com/AppsFlyerSDK/react-native-appsflyer.git"
},
"author": "Appsflyer / Maxim Shoustin",
"license": {
"type": "MIT",
"url": "https://github.com/AppsFlyerSDK/react-native-appsflyer/blob/master/LICENSE"
},
"homepage": "https://github.com/AppsFlyerSDK/react-native-appsflyer#readme",
"keywords": [
"react-native",
"react",
"native",
"appsflyer"
],
"bugs": {
"url": "https://github.com/AppsFlyerSDK/react-native-appsflyer/issues"
},
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"babel-jest": "^26.6.3",
"jest": "26.6.3",
"react": "16.11.0",
"react-native": "0.62.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"resolutions": {
"react-native/@jest/create-cache-key-function": "^27.0.2"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/demos/"
],
"testMatch": [
"<rootDir>/__tests__/index.test.js?(x)"
],
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"setupFiles": [
"<rootDir>/__tests__/setup.js"
]
}
}