graham-scan-convex-hull
Version:
graham scan convex hull algorithm
40 lines (39 loc) • 1.12 kB
JSON
{
"name": "graham-scan-convex-hull",
"version": "0.4.0",
"description": "graham scan convex hull algorithm",
"repository": "https://github.com/ggolikov/convex-hull",
"keywords": [
"convex hull",
"graham scan",
"computational",
"geometry"
],
"main": "index.js",
"author": "Grigory Golikov gr.golikov@gmail.com",
"license": "MIT",
"scripts": {
"watch": "watchify -v -d demo/js/app.js -o demo/js/bundle.js",
"lint": "eslint ./src/",
"build-js": "cat ./src/convex-hull.js > ./dist/convex-hull-src.js",
"compress": "uglifyjs ./dist/convex-hull-src.js -o ./dist/convex-hull.js -m --comments",
"server": "live-server --port=3001 --host=localhost --open=demo --watch=demo",
"start": "npm-run-all --parallel watch server",
"deploy": "gh-pages -d demo"
},
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"eslint": "^3.14.1",
"gh-pages": "^1.0.0",
"live-server": "^1.2.0",
"npm-run-all": "^4.0.1",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
}
}