-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 852 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 852 Bytes
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
{
"name": "quadtree",
"description": "geospatial quadtree encoding and decoding.",
"version": "1.1.3",
"licenses": [{
"type": "MIT",
"url": "https://github.com/B2MSolutions/node-quadtree/raw/master/LICENSE"
}],
"author": { "name": "B2M Solutions", "url": "https://github.com/B2MSolutions" },
"contributors": [
{ "name": "Roy Lines", "url":"http://roylines.co.uk" },
{ "name": "James Bloomer", "url":"https://github.com/jamesbloomer" }
],
"repository": {
"type": "git",
"url": "http://github.com/B2MSolutions/node-quadtree.git"
},
"keywords": ["quadtree", "geo", "geospatial", "map"],
"dependencies": {
},
"devDependencies" : {
"sinon" : "x.x.x",
"mocha" : "x.x.x"
},
"main": "./lib/quadtree",
"scripts": { "test": "mocha test/*_test.js --reporter spec" },
"engines": { "node": ">= 0.6.0" }
}