forked from heap/react-native-heap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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
79
80
81
82
83
84
85
86
{
"name": "@heap/react-native-heap",
"version": "0.22.0",
"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/core": "^7.16.0",
"@types/react-reconciler": "^0.26.4",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-template": "^6.26.0",
"babel-types": "^6.26.0",
"flat": "^5.0.2",
"hoist-non-react-statics": "^3.3.2",
"@expo/config-plugins": "^4.1.5"
},
"peerDependencies": {
"react-native": "x.x"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@expo/config-types": "^45.0.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.6",
"coffeescript": "^2.6.1",
"deep-freeze": "0.0.1",
"detox": "18.23.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"expo-module-scripts": "^2.0.0",
"jest": "^27.3.1",
"jest-enzyme": "^7.1.2",
"jsdom": "^18.0.1",
"lodash": "^4.17.21",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"prettylint": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "^0.66.1",
"should": "^13.2.3",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"scripts": {
"test": "jest",
"test-instrumentor": "cd instrumentor && ../node_modules/mocha/bin/mocha -r @babel/register test/ && cd ..",
"lint": "./node_modules/prettylint/bin/cli.js \"{js,e2e,instrumentor/src}/**/*.{js,ts}\"",
"lint-example": "./node_modules/prettylint/bin/cli.js \"examples/**/*.{js,ts}\"",
"clean": "rm -rf ./dist",
"compile": "./node_modules/typescript/bin/tsc",
"prepare": "npm run-script compile && expo-module prepare"
}
}