forked from thelonious/kld-intersections
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 800 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 800 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
37
38
39
40
{
"name": "kld-intersections",
"version": "0.3.1",
"description": "A library of intersection algorithms covering all SVG shape types",
"author": {
"name": "Kevin Lindsey",
"email": "kevin@kevlindev.com"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/thelonious/kld-intersections.git"
},
"main": "index.js",
"scripts": {
"test": "mocha"
},
"keywords": [
"intersection",
"bezier",
"circle",
"ellipse",
"line",
"polygon",
"rectangle",
"path"
],
"dependencies": {
"kld-affine": "^2.0.4",
"kld-path-parser": "0.0.2",
"kld-polynomial": "^0.1.2"
},
"devDependencies": {
"kld-contours": "^0.2.0",
"mocha": "^3.4.2"
},
"engines": {
"node": ">= 6.11.1"
}
}