-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "react-native-maps-routes",
"version": "0.0.1",
"description": "Route component for react-native-maps",
"author": {
"name": "Hugo EXTRAT",
"email": "[email protected]",
"url": "https://www.github.com/huextrat"
},
"repository": {
"type": "git",
"url": "https://github.com/huextrat/react-native-maps-routes"
},
"bugs": {
"url": "https://github.com/huextrat/react-native-maps-routes/issues"
},
"keywords": [
"react-native",
"react-native-maps",
"ios",
"android"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"format": "prettier --write ./src",
"format:check": "prettier --check --cache ./src",
"prepare": "husky",
"build": "tsc",
"release": "semantic-release"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.64.3",
"react-native-maps": ">=1.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@types/node": "20.17.12",
"@types/react": "18.3.18",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.3",
"husky": "9.1.7",
"prettier": "3.4.2",
"react": "18.3.1",
"react-native-maps": "1.20.1",
"semantic-release": "24.2.1",
"typescript": "5.7.3"
}
}