UNPKG

flo-ll-rb-tree

Version:

A simple left leaning red black tree implementation.

61 lines (60 loc) 1.73 kB
{ "name": "flo-ll-rb-tree", "sideEffects": false, "description": "A simple left leaning red black tree implementation.", "version": "0.3.3", "author": { "name": "Floris Steenkamp" }, "license": "MIT", "type": "module", "main": "./node/index.js", "exports": "./node/index.js", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "private": false, "repository": { "type": "git", "url": "git+https://github.com/FlorisSteenkamp/FloLlRbTree.git" }, "bugs": { "url": "https://github.com/FlorisSteenkamp/FloLlRbTree/issues" }, "keywords": [ "left", "leaning", "red", "black", "tree" ], "devDependencies": { "@types/chai": "^4.3.4", "@types/mocha": "^10.0.1", "@types/node": "^18.11.18", "@typescript-eslint/eslint-plugin": "^5.48.2", "@typescript-eslint/parser": "^5.48.2", "c8": "^7.12.0", "chai": "^4.3.7", "circular-dependency-plugin": "^5.2.2", "eslint": "^8.32.0", "eslint-plugin-tree-shaking": "^1.10.0", "mocha": "^10.2.0", "resolve-typescript-plugin": "^2.0.0", "rimraf": "^4.1.0", "squares-rng": "^2.0.0", "ts-loader": "^9.4.2", "ts-node": "^10.9.1", "typescript": "^4.9.4", "webpack": "^5.75.0", "webpack-cli": "^5.0.1" }, "scripts": { "build": "npm run build-browser && npm run build-node", "build-node": "rimraf node && tsc", "build-browser": "rimraf browser && webpack", "test": "mocha", "coverage": "c8 mocha", "test-package": "npm pack" } }