-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
36 lines (36 loc) · 861 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
34
35
36
{
"name": "tess2",
"version": "1.0.0",
"description": "GLU tesselator ported to Javascript, performs polygon boolean operations and triangulation",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify index.js -o build/tess2.js -s Tess2"
},
"repository": {
"type": "git",
"url": "https://github.com/memononen/tess2.js.git"
},
"keywords": [
"tesselate",
"tesselation",
"triangulate",
"triangulation",
"glu",
"webgl",
"triangles",
"tess",
"opengl",
"polygons",
"contour"
],
"author": "Matt DesLauriers <[email protected]>",
"license": "SGI-B-2.0",
"bugs": {
"url": "https://github.com/memononen/tess2.js/issues"
},
"homepage": "https://github.com/memononen/tess2.js"
}