-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "leaflet-virtual-grid",
"version": "1.0.7",
"description": "A lightweight DOM-less tile layer for Leaflet that can be used to query APIs with bounding boxes or center/radius as opposed to loading tiles.",
"files": [
"src/virtual-grid.js",
"dist/virtual-grid.js.map"
],
"main": "dist/virtual-grid.js",
"module": "src/virtual-grid.js",
"scripts": {
"lint": "semistandard --verbose | snazzy",
"test": "npm run lint && browserify test/virtual-grid.js -t [ babelify --presets es2015 ] | tape-run | faucet",
"bundle": "rollup src/virtual-grid.js -m dist/virtual-grid.js.map -e leaflet -f umd -o dist/virtual-grid.js -n VirtualGrid",
"release": "scripts/release.sh",
"prepare": "npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickarlt/leaflet-virtual-grid.git"
},
"keywords": [
"leaflet",
"grid"
],
"jspm": {
"main": "src/virtual-grid.js",
"registry": "npm",
"format": "es6"
},
"author": "Patrick Arlt",
"license": "ISC",
"bugs": {
"url": "https://github.com/patrickarlt/leaflet-virtual-grid/issues"
},
"homepage": "https://github.com/patrickarlt/leaflet-virtual-grid#readme",
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"faucet": "0.0.1",
"gh-release": "^2.0.2",
"isparta": "^4.0.0",
"rollup": "^0.21.0",
"semistandard": "^7.0.2",
"sinon": "^1.17.2",
"snazzy": "^2.0.1",
"tape": "^4.2.2",
"tape-catch": "^1.0.4",
"tape-run": "^2.1.0"
},
"dependencies": {
"leaflet": "^1.0.0"
}
}