-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 824 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 824 Bytes
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
{
"name": "osm-navigation-map",
"version": "0.0.1",
"description": "A map style to explore and improve navigation data on OpenStreetMap",
"main": "index.js",
"scripts": {
"start": "npm run watch & serve .",
"watch": "watchify index.js -o build.js -v",
"build": "browserify index.js -o build.js -v"
},
"repository": {
"type": "git",
"url": "osm-navigation-map"
},
"keywords": [
"osm",
"navigation",
"map"
],
"author": "Mapbox",
"license": "ISC",
"dependencies": {
"hat": "0.0.3",
"mapbox": "^1.0.0-beta3",
"mapbox-data-team": "^1.1.2",
"osm-auth": "^1.0.1",
"query-overpass": "^1.1.0",
"tile-cover": "^3.0.1",
"turf": "^3.0.14"
},
"devDependencies": {
"browserify": "^13.1.0",
"serve": "^1.4.0",
"watchify": "^3.7.0"
}
}