-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
78 lines (78 loc) · 2.07 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
69
70
71
72
73
74
75
76
77
78
{
"name": "@heap/react-native-heap",
"version": "0.22.8",
"description": "React Native event tracking with Heap.",
"license": "MIT",
"author": "Heap <http://www.heapanalytics.com>",
"homepage": "https://github.com/heap/react-native-heap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/heap/react-native-heap"
},
"bugs": {
"url": "https://github.com/heap/react-native-heap/issues"
},
"keywords": [
"analytics",
"heap",
"ios",
"android",
"react-native"
],
"main": "dist/js/Heap.js",
"files": [
"android",
"instrumentor",
"ios",
"dist",
"react-native-heap.podspec",
"index.d.ts",
"app.plugin.js",
"unimodule.json"
],
"types": "index.d.ts",
"publishConfig": {
"access": "public"
},
"dependencies": {
"babel-plugin-add-react-displayname": "0.0.5",
"flat": "^5.0.2",
"hoist-non-react-statics": "^3.3.2"
},
"peerDependencies": {
"react-native": "x.x"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@expo/config-types": "^48.0.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.0.1",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^16.18.37",
"@types/react-reconciler": "^0.28.2",
"deep-freeze": "0.0.1",
"expo-module-scripts": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.72.0",
"should": "^13.2.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.5"
},
"scripts": {
"test": "jest",
"test-instrumentor": "mocha -r @babel/register instrumentor/test/",
"clean": "rm -rf ./dist",
"compile": "npm run-script sync-version && tsc",
"prepare": "npm run-script compile && expo-module prepare",
"sync-version": "echo \"export const version = `jq .version < package.json`;\" > js/version.ts"
}
}