forked from heap/react-native-heap
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.98 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
{
"name": "@heap/react-native-heap",
"version": "0.14.0",
"description": "React Native event tracking with Heap.",
"license": "MIT",
"author": "Heap <http://www.heapanalytics.com>",
"homepage": "https://github.com/heap/react-native-heap",
"repository": "heap/react-native-heap",
"keywords": [
"analytics",
"heap",
"ios",
"android",
"react-native"
],
"main": "dist/Heap",
"files": [
"android",
"instrumentor",
"ios",
"dist",
"react-native-heap.podspec",
"index.d.ts"
],
"types": "index.d.ts",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@types/react-reconciler": "^0.18.0",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-template": "^6.26.0",
"babel-types": "^6.26.0",
"flat": "^4.1.0",
"hoist-non-react-statics": "^3.3.2"
},
"peerDependencies": {
"react-native": "x.x"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@types/jest": "^23.3.13",
"@types/lodash": "^4.14.120",
"@types/node": "^10.12.19",
"coffeescript": "^1.12.7",
"deep-freeze": "0.0.1",
"detox": "^17.14.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.0.0",
"jest-enzyme": "^7.0.2",
"jsdom": "^15.0.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"prettylint": "^1.0.0",
"react": "^16.6.3",
"react-dom": "^16.8.6",
"react-native": "^0.66.4",
"should": "^13.2.3",
"ts-jest": "^24.0.0",
"typescript": "^3.2.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}\"",
"tsc": "tsc",
"compile": "tsc",
"prepare": "npm run-script compile"
}
}