UNPKG

bentley-ottman-sweepline

Version:

Bentley-Ottman segments intersection algorithm

39 lines (38 loc) 1.04 kB
{ "name": "bentley-ottman-sweepline", "version": "0.1.4", "description": "Bentley-Ottman segments intersection algorithm", "repository": "https://github.com/ggolikov/bentley-ottman", "main": "index.js", "author": "Grigory Golikov gr.golikov@gmail.com", "license": "MIT", "keywords": [ "bentley-ottman", "sweepline", "segments intersection", "computational", "geometry", "algorithm" ], "scripts": { "watch": "watchify -v -d demo/js/app.js -o demo/js/bundle.js", "lint": "eslint ./src/", "server": "live-server --port=3002 --host=localhost --open=demo --watch=demo", "start": "npm-run-all --parallel watch server", "test": "mocha ./tests/arrays.test.js", "deploy": "gh-pages -d demo" }, "devDependencies": { "browserify": "^13.1.1", "chai": "^4.1.1", "eslint": "^3.14.1", "gh-pages": "^1.0.0", "live-server": "^1.2.0", "mocha": "^3.5.0", "npm-run-all": "^4.0.1", "watchify": "^3.7.0" }, "dependencies": { "avl": "^1.4.0" } }