-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
92 lines (92 loc) · 2.56 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
86
87
88
89
90
91
92
{
"name": "react-native-map-link",
"version": "3.1.0",
"description": "Open the map app of the user's choice with a specific location.",
"source": "src/index",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tschoffelen/react-native-map-link.git"
},
"scripts": {
"lint": "eslint src --max-warnings=0 && eslint tests --max-warnings=0",
"build": "npm run copy-images && tsc --project tsconfig.build.json",
"test": "jest",
"release": "semantic-release",
"copy-images": "mkdir -p ./lib/images && cp -r ./src/images ./lib",
"tscheck": "tsc --noEmit"
},
"keywords": [
"react-native",
"react-component",
"maps",
"link",
"linking",
"react",
"ios",
"android"
],
"author": "Thomas Schoffelen <[email protected]> (https://includable.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tschoffelen/react-native-map-link/issues"
},
"homepage": "https://github.com/tschoffelen/react-native-map-link#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.40.0"
},
"files": [
"lib",
"app.plugin.js"
],
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/eslint-plugin": "^7.23.5",
"@babel/runtime": "^7.23.9",
"@expo/config-plugins": "^7.8.4",
"@react-native-community/eslint-config": "^3.2.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.55",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"babel-jest": "^29.7.0",
"clsx": "^2.1.0",
"eslint": "^8.56.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "5.0.0",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-native": "^0.73.4",
"react-native-typescript-transformer": "^1.2.13",
"semantic-release": "^23.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
},
"setupFiles": [
"./tests/setup.ts"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}