UNPKG

span-skip-list

Version:

A data structure for calculating running totals in multiple dimensions in O(ln(n)).

43 lines (42 loc) 1.08 kB
{ "name": "span-skip-list", "version": "0.2.0", "description": "A data structure for calculating running totals in multiple dimensions in O(ln(n)).", "main": "lib/span-skip-list.js", "scripts": { "benchmark": "./benchmark/benchmark.coffee", "prepublish": "grunt clean lint coffee", "test": "grunt test" }, "repository": { "type": "git", "url": "https://github.com/atom/span-skip-list.git" }, "keywords": [ "skip-list", "data-structure", "index" ], "author": "Nathan Sobo", "licenses": [ { "type": "MIT", "url": "http://github.com/atom/span-skip-list/raw/master/LICENSE.md" } ], "bugs": { "url": "https://github.com/atom/span-skip-list/issues" }, "homepage": "http://atom.github.io/span-skip-list", "devDependencies": { "coffee-script": "~1.6.3", "jasmine-focused": "~0.12.0", "grunt-contrib-coffee": "~0.7.0", "grunt-cli": "~0.1.8", "grunt": "~0.4.1", "grunt-shell": "~0.2.2", "grunt-coffeelint": "0.0.6", "rimraf": "~2.2.2", "underscore": "~1.5.1" } }