forked from bothrs/expo-mixpanel-analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (47 loc) · 1.14 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
{
"name": "@hootboardincubator/expo-mixpanel-analytics",
"version": "1.1.1",
"description": "Mixpanel integration for use with React Native apps built on Expo 39.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist src/index.js && tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hootboardincubator/expo-mixpanel-analytics.git"
},
"keywords": [
"react",
"native",
"expo",
"mixpanel",
"analytics"
],
"files": [
"dist/src"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/codekadiya/expo-mixpanel-analytics/issues"
},
"dependencies": {
"@react-native-community/async-storage": "1",
"buffer": "6"
},
"devDependencies": {
"@types/react-native": "^0.62.18",
"expo-constants": "9",
"rimraf": "3",
"tslib": "^2.0.3",
"typescript": "3.9"
},
"peerDependencies": {
"expo-constants": "9",
"react": "16",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz"
}
}