-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.62 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.62 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@iterable/expo-plugin",
"version": "1.0.1",
"description": "Config plugin for @iterable/react-native-sdk",
"main": "build/withIterable.js",
"types": "build/withIterable.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"test:coverage": "jest test --coverage --config jest.config.js",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"release": "release-it"
},
"keywords": [
"react-native",
"expo",
"@iterable/expo-plugin",
"ExpoAdapterIterable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Iterable/iterable-expo-plugin.git"
},
"bugs": {
"url": "https://github.com/Iterable/iterable-expo-plugin/issues"
},
"author": "Loren Posen <loren.posen@iterable.com> (https://github.com/lposen)",
"license": "MIT",
"homepage": "https://github.com/Iterable/iterable-expo-plugin#readme",
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@evilmartians/lefthook": "^1.5.0",
"@iterable/react-native-sdk": "^2.0.2",
"@react-native/eslint-config": "^0.79.5",
"@release-it/conventional-changelog": "^9.0.2",
"@types/jest": "^29.5.14",
"@types/react": "~19.0.10",
"@typescript-eslint/eslint-plugin": "8.28.0",
"@typescript-eslint/parser": "8.28.0",
"commitlint": "^19.6.1",
"eslint": "8.57.1",
"eslint-config-expo": "~9.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"expo": "^53.0.19",
"expo-module-scripts": "^4.0.3",
"jest": "~29.7.0",
"jest-expo": "~53.0.9",
"memfs": "^4.17.1",
"prettier": "^3.5.3",
"react": "19.0.0",
"react-native": "0.79.5",
"release-it": "^17.10.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@iterable/react-native-sdk": "^2.0.2",
"expo": "*",
"react": "*",
"react-native": "*"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
},
"packageManager": "yarn@4.9.0"
}