-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
37 lines (37 loc) · 907 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
37
{
"name": "graham_scan",
"version": "1.0.5",
"description": "Implementation of the Graham Scan algorithm to calculate a convex hull from a given array of x, y coordinates.",
"license": "MIT",
"directories": {
"lib": "src",
"example": "example",
"test": "test"
},
"keywords": [
"convex",
"hull"
],
"homepage": "http://brian3kb.github.io/graham_scan_js",
"authors": [
"Brian Barnett <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/brian3kb/graham_scan_js.git"
},
"devDependencies": {
"bower": "~1.8.8",
"grunt": "^0.4.5",
"grunt-cli": "~0.1.12",
"grunt-contrib-uglify": "^0.5.1"
},
"bugs": {
"url": "https://github.com/brian3kb/graham_scan_js/issues"
},
"main": "graham_scan.min.js",
"scripts": {
"test": "graham_scan-qunit.jstd"
},
"author": "Brian Barnett <[email protected]>"
}