UNPKG

@drozdik.m/avl-tree

Version:

Classic implementation of AVL tree with improvements like efficient search of nth item and iterator.

31 lines (30 loc) 906 B
{ "name": "@drozdik.m/avl-tree", "version": "1.0.0", "description": "Classic implementation of AVL tree with improvements like efficient search of nth item and iterator.", "main": "dist/src/AVLTree.js", "typings": "dist/src/AVLTree.d.ts", "scripts": { "clear": "rmdir /S /Q \"dist\"", "build": "npm update && npm update -D && tsc", "test": "npm run build && node dist/tests/AVLTree.test.js" }, "author": "Martin Drozdík <ja@martin-drozdik.cz> (http://martin-drozdik.cz)", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/drozdik-m/js-alpha-library" }, "keywords": [ "AVLTree", "JavaScript", "TypeScript" ], "dependencies": { "@drozdik.m/common-interfaces": "^1.0.2", "@drozdik.m/comparator-handler": "^1.0.1" }, "devDependencies": { "@drozdik.m/unit-test": "^1.5.0" } }