forked from Ben-Bourne/react-leaflet-location-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "react-leaflet-location-picker",
"version": "1.4.2",
"description": "A flexible component for picking points or areas from react-leaflet.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm ./dist/* && npm run compile",
"compile": "tsc && cp src/styles.css dist/styles.css",
"prepublish": "npm run build",
"test": "./test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ben-Bourne/react-leaflet-location-picker.git"
},
"author": "Ben Bourne",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ben-Bourne/react-leaflet-location-picker/issues"
},
"homepage": "https://github.com/Ben-Bourne/react-leaflet-location-picker#readme",
"keywords": [
"react",
"leaflet",
"react-leaflet",
"map",
"coordinates",
"location"
],
"devDependencies": {
"@types/leaflet": "^1.5.0",
"@types/node": "^12.6.8",
"@types/react-leaflet": "^2.2.1",
"typescript": "^3.5.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"leaflet": "^1.5.1",
"react-leaflet": "^2.4.0",
"react-leaflet-control": "^2.1.1"
}
}