-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 779 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
29
30
31
32
33
34
35
36
{
"name": "2d-polygon-boolean",
"version": "1.0.1",
"description": "perform boolean operations on arbitrary polygons in 2d",
"main": "2d-polygon-boolean.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/test.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git://github.com/tmpvar/polygon.clip.js.git"
},
"keywords": [
"polygon",
"geometry",
"math",
"2d",
"clipping"
],
"author": "Elijah Insua <tmpvar@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"2d-polygon-area": "^1.0.0",
"point-in-big-polygon": "~1.0.0",
"segseg": "~0.2.0",
"signum": "^1.0.0"
},
"devDependencies": {
"tape": "~3.0.3",
"tap-spec": "~2.1.2"
}
}