-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
{
"name": "@smartlook/segment-react-native-plugin-smartlook",
"version": "2.0.0",
"description": "Segment react-native destination plugin for Smartlook.",
"main": "lib/commonjs/index",
"scripts": {
"prepare": "bob build",
"typescript": "tsc --noEmit",
"clean": "rimraf lib node_modules",
"release": "semantic-release",
"t": "jest"
},
"keywords": [
"smartlook",
"analytics",
"segment",
"react-native",
"ios",
"android"
],
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"package.json",
"!src/**/*.e2e.mock.js",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"repository": {
"type": "git",
"url": "https://github.com/smartlook/segment-react-native-plugin-smartlook.git"
},
"bugs": {
"url": "https://github.com/smartlook/segment-react-native-plugin-smartlook/issues"
},
"author": "Smartlook",
"license": "MIT",
"peerDependencies": {
"@segment/analytics-react-native": "*"
},
"dependencies": {
"@segment/analytics-react-native": "^2.10.0",
"react-native-smartlook-analytics": "^2.1.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.2.5",
"conventional-changelog-conventionalcommits": "^5.0.0",
"jest": "^29.3.1",
"metro-react-native-babel-preset": "^0.73.6",
"react-native": "^0.70.6",
"react-native-builder-bob": "^0.18.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"engines": {
"node": ">=12"
}
}