forked from plepe/overpass-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.68 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
{
"name": "overpass-frontend",
"description": "A JavaScript (NodeJS/Browser) library to easily access data from OpenStreetMap via Overpass API. The objects can directly be used with LeafletJS or exported to GeoJSON. Data will be cached locally, optionally by using LocalStorage (or similar).",
"version": "2.4.10",
"main": "src/OverpassFrontend.js",
"directories": {
"test": "test"
},
"files": [
"dist",
"src",
"doc"
],
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"xmlhttprequest": "global:XMLHttpRequest"
},
"dependencies": {
"@turf/bbox-clip": "^6.0.0",
"@turf/difference": "^6.0.0",
"@turf/intersect": "^6.0.0",
"@turf/union": "^6.0.0",
"async": "^2.6.2",
"boundingbox": "^1.2.3",
"browserify-shim": "^3.8.14",
"bzip2": "^0.1.1",
"event-emitter": "^0.3.5",
"lodash": "^4.17.5",
"lokijs": "^1.5.6",
"osmtogeojson": "^3.0.0-beta.4",
"strsearch2regexp": "^0.1.1",
"weight-sort": "^1.3.1",
"xmlhttprequest": "*"
},
"devDependencies": {
"brfs": "^2.0.0",
"browserify": "^16.5.1",
"escape-html": "*",
"eslint": "^4.18.2",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"jsdoc": "^3.6.4",
"leaflet": "^0.7.0",
"mocha": "^7.2.0",
"require-self": "^0.2.3",
"watchify": "^3.11.1"
},
"resolutions": {
"martinez-polygon-clipping": "^0.5.0"
},
"scripts": {
"test": "mocha --bail",
"build": "browserify index.js -o dist/overpass-frontend.js",
"build-test": "browserify -t brfs --debug test/knownArea.js test/test.js test/frontendFile.js test/filter.js test/lon180.js -o dist/test.js",
"watch": "watchify -t browserify-shim --debug index.js -o dist/overpass-frontend.js -v",
"watch-test": "watchify -t brfs --debug test/knownArea.js test/test.js test/frontendFile.js test/filter.js test/lon180.js -o dist/test.js -v",
"prepublish": "npm run lint && npm run build && npm run doc",
"preversion": "npm run lint && npm run test",
"version": "rm -r doc/ && npm run doc && npm run build && npm run build-test && git add -A doc/ dist/",
"prepare": "require-self",
"lint": "eslint src/*.js index.js",
"doc": "jsdoc -d doc/ src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plepe/overpass-frontend.git"
},
"keywords": [
"OpenStreetMap",
"OSM",
"Overpass"
],
"author": "Stephan Bösch-Plepelits <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/plepe/overpass-frontend/issues"
},
"homepage": "https://github.com/plepe/overpass-frontend#readme"
}