This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.69 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
{
"name": "leaflet.vectortiles",
"version": "0.0.1",
"description": "Render vector tiles on an L.GridLayer with an L.Canvas renderer",
"main": "Leaflet.VectorTiles.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "budo Leaflet.VectorTiles.js --serve=dist/leaflet.vector-tiles.js --live -- -t [ babelify --presets [ es2015 ] ]",
"example": "(cd example && npm start)",
"build": "./node_modules/.bin/browserify Leaflet.VectorTiles.js -o dist/leaflet.vector-tiles.js -t [ babelify --presets [ es2015 ] ]",
"build-dev": "./node_modules/.bin/browserify Leaflet.VectorTiles.js -o dist/leaflet.vector-tiles.js -t [ babelify --presets [ es2015 ] ] --debug",
"build-docs": "./node_modules/.bin/documentation build Leaflet.VectorTiles.js -f md > API.md",
"lint": "./node_modules/.bin/eslint Leaflet.VectorTiles.js tile.js feature.js Leaflet.FontCanvas.js tile_cache.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NBTSolutions/Leaflet.VectorTiles.git"
},
"author": "Kelvin Abrokwa",
"license": "ISC",
"bugs": {
"url": "https://github.com/NBTSolutions/Leaflet.VectorTiles/issues"
},
"homepage": "https://github.com/NBTSolutions/Leaflet.VectorTiles#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"budo": "^10.0.3",
"documentation": "^4.0.0-rc.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0"
},
"dependencies": {
"@mapbox/vector-tile": "^1.3.0",
"@turf/bbox": "^4.3.0",
"pbf": "^3.0.5",
"rbush": "^2.0.1"
}
}