-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.66 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.66 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
{
"name": "@draftbit/expo-maps",
"version": "0.1.1",
"description": "Expo compatible maps library for iOS, Android, and Web",
"main": "lib/commonjs/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"clean": "rimraf lib",
"clean:modules": "rimraf node_modules",
"build:commonjs": "./node_modules/.bin/babel src --out-dir lib/commonjs --extensions .tsx,.ts,.js,.jsx",
"build": "yarn clean && yarn build:commonjs && yarn tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"react-native",
"ios",
"android"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/draftbit/expo-maps",
"directory": "packages/maps"
},
"author": "Draftbit <services@draftbit.com> (https://draftbit.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/draftbit/expo-maps/issues"
},
"homepage": "https://github.com/draftbit/expo-maps#readme",
"dependencies": {
"@react-google-maps/api": "~2.20.8",
"@teovilla/react-native-web-maps": "^0.9.5",
"color": "^4.2.3",
"lodash.isequal": "^4.5.0",
"react-native-maps": "1.20.1"
},
"peerDependencies": {
"react-native": "*",
"react-native-maps": "*"
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"testPathIgnorePatterns": [
"lib",
"__mocks__"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg|dateformat)"
],
"testEnvironment": "node"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@react-native/babel-preset": "^0.83.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.9.0",
"@types/color": "^4.2.0",
"@types/jest": "^29.5.14",
"@types/lodash.isequal": "^4.5.6",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"expo": "^53.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-expo": "^53.0.2",
"prettier": "^3.4.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.5",
"react-native-maps": "1.20.1",
"rimraf": "^6.0.1",
"typescript": "~5.7.2"
},
"packageManager": "yarn@4.12.0"
}