-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 865 Bytes
/
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
{
"name": "leaflet-quadtree",
"version": "0.0.1",
"description": "A leaflet plugin that implements a quadtree",
"author": "Isaac Besora Vilardaga <isaac.besora@gmail.com>",
"scripts": {
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha -r jsdom-global/register",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | coveralls"
},
"main": "Leaflet.Quadtree.js",
"repository": {
"type": "git",
"url": "https://github.com/ibesora/Leaflet.Quadtree"
},
"bugs": {
"url": "https://github.com/ibesora/Leaflet.Quadtree/issues"
},
"keywords": [
"leaflet",
"quadtree"
],
"dependencies": {
"leaflet": "^1.6.0"
},
"devDependencies": {
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"coveralls": "^3.0.9"
},
"license": "BEERWARE"
}