-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.94 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
{
"name": "overpass-layer",
"version": "3.6.0-rc0",
"description": "Show a Leaflet layer using OpenStreetMap data from Overpass API via OverpassFrontend.",
"dependencies": {
"@turf/along": "^6.5.0",
"@turf/intersect": "^6.5.0",
"@turf/length": "^6.5.0",
"@turf/point-on-feature": "^5.1.5",
"boundingbox": "^1.4.0",
"browserify-css": "^0.15.0",
"event-emitter": "^0.3.5",
"html-escape": "^2.0.0",
"nearest-point-on-geometry": "^1.0.1",
"osmtogeojson": "^3.0.0-beta.5",
"overpass-frontend": "^3.1.1",
"twig": "^1.15.4"
},
"overrides": {
"osmtogeojson": {
"@xmldom/xmldom": "~0.8.10"
}
},
"devDependencies": {
"browserify": "^17.0.0",
"http-server": "^14.1.1",
"leaflet": "^1.9.4",
"leaflet-polylinedecorator": "git+https://github.com/plepe/Leaflet.PolylineDecorator.git",
"leaflet-polylineoffset": "^1.1.1",
"leaflet-textpath": "^1.2.3",
"standard": "^16.0.3",
"watchify": "^4.0.0"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -g browserify-css index.js -o dist/overpass-layer.js",
"watch": "watchify --debug -g browserify-css index.js -o dist/overpass-layer.js -v",
"prepublish": "npm run build && npm run lint",
"preversion": "npm run lint",
"version": "npm run build; git add -A dist/",
"lint": "standard --fix src/*.js form.js && standard --global OverpassLayer --global OverpassLayerList --global map --fix demo/*.js",
"start": "http-server ./ -p 3000"
},
"files": [
"src",
"dist/overpass-layer.js",
"img/map_pointer.png",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/plepe/overpass-layer.git"
},
"author": "Stephan Bösch-Plepelits",
"license": "MIT",
"bugs": {
"url": "https://github.com/plepe/overpass-layer/issues"
},
"homepage": "https://github.com/plepe/overpass-layer#readme"
}