-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.8 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.8 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
{
"name": "klaviyo-expo-plugin",
"version": "0.4.0",
"main": "dist/plugin/withKlaviyo.js",
"types": "dist/plugin/withKlaviyo.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepare": "npm run clean && npm run build",
"android": "expo run:android",
"ios": "expo run:ios",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:html": "jest --coverage --coverageReporters=html --coverageReporters=text && open coverage/index.html",
"bump-version": "node scripts/bump-version.js",
"test:peer-deps": "node scripts/test-peer-dependencies.js",
"test:peer-deps:react18": "npm install --no-save [email protected] [email protected] expo@~51.0.0 && npm test",
"test:peer-deps:react19": "npm install --no-save [email protected] [email protected] expo@~53.0.0 && npm test"
},
"keywords": [
"expo",
"klaviyo",
"plugin"
],
"author": "Klaviyo",
"license": "ISC",
"description": "Expo plugin for Klaviyo integration",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@expo/config-plugins": "54.0.2",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"jest": "^29.5.0",
"prettier": "^3.6.2",
"tmp": "^0.2.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.35.1"
},
"peerDependencies": {
"expo": "*",
"expo-location": ">=16.0.0",
"react": ">=18.0.0 <20.0.0",
"react-native": ">=0.70.0 <1.0.0"
},
"peerDependenciesMeta": {
"expo-location": {
"optional": true
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}