forked from openlayers/ol-mapbox-style
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.36 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.36 KB
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
{
"name": "ol-mapbox-style",
"version": "2.2.5",
"description": "Create OpenLayers maps from Mapbox Style objects",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/boundlessgeo/ol-mapbox-style.git"
},
"bugs": {
"url": "https://github.com/boundlessgeo/ol-mapbox-style/issues"
},
"keywords": [
"openlayers",
"mapbox",
"vector tiles"
],
"author": "Andreas Hocevar <andreas.hocevar@gmail.com>",
"contributors": [
{
"name": "Attila Berényi",
"email": "aberenyi@gislab.hu"
},
{
"name": "Dan 'Ducky' Little",
"email": "danlittle@yahoo.com"
},
{
"name": "Christian Mayer",
"email": "chris@meggsimum.de"
}
],
"license": "BSD-2-Clause",
"scripts": {
"prepublish": "npm run doc && mkdir -p dist && browserify -g [ babelify --plugins [ transform-es2015-modules-commonjs ] ] -p [ standalonify --name olms --deps [ null --ol/proj ol.proj --ol/tilegrid ol.tilegrid --ol/map ol.Map --ol/format/geojson ol.format.GeoJSON --ol/format/mvt ol.format.MVT --ol/layer/vector ol.layer.Vector --ol/layer/vectortile ol.layer.VectorTile --ol/source/vector ol.source.Vector --ol/source/vectortile ol.source.VectorTile --ol/style/style ol.style.Style --ol/style/fill ol.style.Fill --ol/style/stroke ol.style.Stroke --ol/style/circle ol.style.Circle --ol/style/icon ol.style.Icon --ol/style/text ol.style.Text ] ] -g [ bubleify ] index.js > dist/olms.js",
"doc": "documentation readme -s API index.js",
"pretest": "eslint src & npm run test-bundle",
"test": "mocha test/test-bundle.js",
"test-bundle": "browserify test/test.js -g [ babelify --plugins [ transform-es2015-modules-commonjs ] ] > test/test-bundle.js",
"posttest": "rm test/test-bundle.js"
},
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "^8.11.0",
"mapbox-to-css-font": "^2.0.3",
"mapbox-to-ol-style": "^2.4.0",
"ol": "^4.0.1-beta.2",
"webfontloader": "^1.6.27"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"browserify": "^14.1.0",
"bubleify": "^0.7.0",
"documentation": "^4.0.0-beta.18",
"eslint": "^3.18.0",
"eslint-config-openlayers": "^7.0.0",
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"mapbox-gl-styles": "^2.0.2",
"mocha": "^3.2.0",
"should": "^11.2.1",
"standalonify": "^0.1.3"
}
}