-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "geofabrik-extracts",
"version": "0.1.0",
"description": "Find the smallest geofarbik extract which contains a given Polygon.",
"license": "ISC",
"main": "index.js",
"scripts": {
"test": "jshint && npm run preprocess && tape test.js",
"preprocess": "./preprocess.sh",
"browser": "browserify -s findExtract index.js > findExtract.js"
},
"devDependencies": {
"jshint": "*",
"retire": "*",
"tape": "*",
"browserify": "*"
},
"jshintConfig": {
"browser": true,
"node": true,
"globalstrict": true,
"undef": true,
"unused": true,
"noarg": true
},
"dependencies": {
"@mapbox/geojson-area": "^0.2.2",
"@mapbox/geojson-merge": "^1.1.1",
"@mapbox/geojson-normalize": "0.0.1",
"@mapbox/togeojson": "^0.16.0",
"@turf/boolean-point-in-polygon": "^6.0.1",
"findit": "^2.0.0",
"geojson-flatten": "^1.0.3",
"turf-erase": "^1.3.2",
"turf-point": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/BikeCitizens/geofabrik-extracts"
},
"keywords": [
"geofabrik",
"OpenStreetMap",
"extract"
],
"author": "Martin Raifer <[email protected]>",
"bugs": {
"url": "https://github.com/BikeCitizens/geofabrik-extracts/issues"
}
}