skyline
Version:
Divide and conquer algorithm to solve "The Skyline Problem".
45 lines (44 loc) • 936 B
JSON
{
"name": "skyline",
"version": "0.0.2",
"description": "Divide and conquer algorithm to solve \"The Skyline Problem\".",
"main": "skyline.js",
"directories": {
"test": "test"
},
"files": [
"skyline.js"
],
"scripts": {
"test": "./node_modules/tape/bin/tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/skyline"
},
"keywords": [
"skyline",
"divide",
"conquer",
"algorithm"
],
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "http://www.miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/skyline/blob/master/LICENSE.md"
},
"bugs": {
"url": "https://github.com/miguelmota/skyline/issues"
},
"homepage": "https://github.com/miguelmota/skyline",
"devDependencies": {
"tape": "^3.0.3"
},
"engines": {
"node": ">=0.10.0"
}
}