-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.03 KB
/
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
37
38
39
40
41
42
{
"name": "@lucio/graham-scan",
"version": "1.0.0",
"description": "A JavaScript implementation of the Graham scan algorithm for finding the convex hull of a set of points.",
"main": "graham-scan.mjs",
"scripts": {
"test": "c8 --reporter=html --reporter=text mocha",
"report-coverage": "c8 report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciopaiva/graham-scan.git"
},
"files": [
"graham-scan.mjs"
],
"keywords": [
"convex hull",
"convex envelope",
"convex closure",
"convex",
"graham",
"graham scan",
"gift wrapping",
"jarvis march",
"chan algorithm"
],
"author": {
"name": "Lucio Paiva",
"url": "https://luciopaiva.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/luciopaiva/graham-scan/issues"
},
"homepage": "https://github.com/luciopaiva/graham-scan#readme",
"devDependencies": {
"c8": "^7.3.1",
"codecov": "^3.6.5",
"mocha": "^7.1.1"
}
}