forked from mollikka/Javascript-Voronoi
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
19 lines (19 loc) · 787 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "voronoi",
"version": "1.0.0",
"description": "A Javascript implementation of Steven J. Fortune's algorithm to efficiently compute Voronoi diagrams. The Voronoi object's purpose is to solely compute a Voronoi diagram, it is completely standalone, with no dependency on external code: it contains no rendering code: that is left to the user of the library.",
"main": "rhill-voronoi-core.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gorhill/Javascript-Voronoi.git"
},
"author": "Raymond Hill",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorhill/Javascript-Voronoi/issues"
},
"homepage": "https://github.com/gorhill/Javascript-Voronoi"
}