forked from mixpanel/mixpanel-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
60
{
"name": "mixpanel-react-native",
"version": "2.1.0",
"description": "Official React Native Tracking Library for Mixpanel Analytics",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "Mixpanel",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mixpanel/mixpanel-react-native.git"
},
"keywords": [
"mixpanel",
"react",
"native",
"ios",
"android",
"analytics",
"tracking",
"sdk"
],
"bugs": {
"url": "https://github.com/mixpanel/mixpanel-react-native/issues"
},
"TODO": "Change the git URL before publishing on npm",
"homepage": "https://github.com/mixpanel/mixpanel-react-native#readme",
"metadata": {
"mp_lib": "react-native"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.1",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.0",
"eslint": "^7.11.0",
"jest": "^26.6.0",
"metro-react-native-babel-preset": "^0.63.0",
"react-test-renderer": "16.13.1",
"react-native": "^0.63.3"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/MixpanelDemo/"
],
"testMatch": [
"<rootDir>/__tests__/index.test.js"
],
"setupFiles": [
"<rootDir>/__tests__/jest_setup.js"
],
"verbose": true,
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}