-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
87 lines (87 loc) · 2.2 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
{
"name": "react-native-cluster-map",
"version": "1.0.9",
"description": "React Native MapView clustering component for iOS + Android",
"keywords": [
"android",
"cluster",
"clustering",
"geolocation",
"google-maps",
"iOS",
"map",
"map-cluster",
"react",
"react-component",
"react-native",
"supercluster"
],
"homepage": "https://github.com/codempireio/react-native-cluster-map#readme",
"bugs": {
"url": "https://github.com/codempireio/react-native-cluster-map/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codempireio/react-native-cluster-map.git"
},
"license": "MIT",
"author": "codempire.io",
"files": [
"lib",
"example"
],
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"prepublishOnly": "yarn build",
"precommit": "lint-staged && npm test",
"prettier": "prettier --config ./.prettierrc --write \"./src/**/*.{ts,tsx}\"",
"sort": "sort-package-json",
"test": "jest"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn prettier",
"yarn lint",
"git add"
]
},
"dependencies": {
"@mapbox/geo-viewport": "0.4.0",
"@types/jest": "^24.0.18",
"geojson": "0.5.0",
"jest": "^24.9.0",
"lodash.isequal": "4.5.0",
"supercluster": "6.0.0"
},
"devDependencies": {
"@types/lodash.isequal": "4.5.5",
"@types/react": "16.8.10",
"@types/react-native": "0.57.42",
"@types/react-test-renderer": "^16.9.0",
"@types/supercluster": "5.0.1",
"babel-loader": "8.0.5",
"lint-staged": "^9.4.0",
"prettier": "1.16.4",
"react": "^16.9.0",
"react-native": "0.59.2",
"react-native-maps": "0.23.0",
"react-test-renderer": "^16.9.0",
"rollup": "1.8.0",
"rollup-plugin-typescript2": "0.20.1",
"sort-package-json": "1.22.1",
"tslint": "5.15.0",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "8.0.1",
"tslint-react": "4.0.0",
"typescript": "3.4.1"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.50.0",
"react-native-maps": ">=0.23.0"
}
}