-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
58 lines (58 loc) · 1.59 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
57
58
{
"name": "leaflet-mapbox-vector-tile",
"version": "0.1.7",
"description": "A Leaflet Plugin that renders Mapbox Vector Tiles on HTML5 Canvas.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/SpatialServer/Leaflet.MapboxVectorTile.git"
},
"keywords": [
"pbf",
"vector",
"tiles",
"vector-tiles",
"leaflet"
],
"author": "Nicholas Hallahan, Ryan Whitley, Daniel Duarte",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpatialServer/Leaflet.MapboxVectorTile/issues"
},
"homepage": "https://github.com/SpatialServer/Leaflet.MapboxVectorTile",
"dependencies": {
"vector-tile": "1.1.3",
"pbf": "1.3.5",
"point-geometry": "0.0.0",
"request": "~2.44.0"
},
"devDependencies": {
"browserify": "~5.9.1",
"watchify": "1.0.1",
"serve": "^1.4.0",
"tape": "2.14.0",
"faucet": "0.0.1",
"testling": "~1.7.0"
},
"testling": {
"scripts": "lib/Leaflet/leaflet-0.7.3/leaflet-src.js",
"files": "test/js/*.js",
"browsers": [
"ie/9..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"scripts": {
"start": "npm run watch & serve",
"watch": "watchify -v -d src/index.js -o dist/Leaflet.MapboxVectorTile.js",
"build": "browserify -d src/index.js -o dist/Leaflet.MapboxVectorTile.js",
"production": "browserify -d src/index.js | uglifyjs -m -c --comments > dist/Leaflet.MapboxVectorTile.min.js",
"test": "testling | faucet"
}
}