forked from tokumine/sweepline
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 809 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
{
"name": "sweepline",
"version": "0.1.0",
"description": "Detect self-intersecting polygons in Javascript. An implementation of the Bentley–Ottmann sweep line algorithm for detecting crossings in a set of line segments.",
"main": "lib/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha -R spec test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/calvinmetcalf/sweepline"
},
"keywords": [
"geospatial",
"intersection"
],
"author": "Simon Tokumine",
"license": "Free",
"bugs": {
"url": "https://github.com/calvinmetcalf/sweepline/issues"
},
"homepage": "https://github.com/calvinmetcalf/sweepline",
"devDependencies": {
"mocha": "~1.17.0",
"chai": "~1.8.1"
}
}