-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.75 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
{
"name": "mapbox-gl-flatgeobuf",
"version": "0.0.2",
"description": "A module to ready FlatGeobuf format using tiled requests mapbox-gl or maplibre-gl.",
"main": "dist/mapbox-gl-flatgeobuf.js",
"module": "dist/mapbox-gl-flatgeobuf.esm.js",
"browser": "dist/mapbox-gl-flatgeobuf.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"build-docs": "cross-env NODE_ENV=production webpack --config docs/webpack.config.js --mode production --progress --hide-modules",
"dev": "cross-env webpack-dev-server --config docs/webpack.config.js --mode development --open --hot"
},
"dependencies": {
"@mapbox/tilebelt": "^1.0.2",
"flatgeobuf": "^3.25.0"
},
"devDependencies": {
"@ant-design/icons-vue": "^5.1.9",
"ant-design-vue": "^1.7.3",
"ava": "^1.0.1",
"benchmark": "^2.1.4",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-mourner": "^3.0.0",
"esm": "^3.0.84",
"file-loader": "^6.0.0",
"json-loader": "^0.5.7",
"load-json-file": "^5.1.0",
"maplibre-gl": "^3.0.1",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-strip": "^1.2.1",
"rollup-plugin-terser": "^4.0.2",
"style-loader": "^2.0.0",
"vue": "^2.5.22",
"vue-loader": "^15.6.2",
"vue-range-component": "^1.0.3",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"repository": {
"type": "git",
"url": "https://github.com/rowanwins/mapbox-gl-flatgeobuf"
},
"homepage": "https://rowanwins.github.io/mapbox-gl-flatgeobuf/",
"author": "Rowan Winsemius",
"license": "MIT"
}