-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "react-native-typescript-geojson",
"version": "0.0.5",
"description": "Fast way to add geojson to react-native-maps. With typescript and some utils",
"repository": {
"type": "github",
"url": "https://github.com/valudio/react-native-typescript-geojson"
},
"homepage": "https://github.com/valudio/react-native-typescript-geojson#readme",
"author": {
"name": "Gonzalo Soriano",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:update-snapshots": "jest --updateSnapshot",
"build": "tsc"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": [
"react",
"react-native",
"typescript",
"map",
"geojson"
],
"peerDependencies": {
"react": ">=16.8",
"react-native": ">=0.59",
"react-native-maps": ">=0.24"
},
"dependencies": {
"@types/react": ">=16.8",
"@types/geojson": "^7946.0.7",
"@types/uuid": "^3.4.4",
"@types/react-native-maps": ">=0.24",
"uuid": "3.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/react-test-renderer": "^16.8.2",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"react": ">=16.8",
"react-native": ">=0.59",
"react-native-maps": ">=0.24",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.3",
"typescript": "^3.5.2"
}
}