red-black-tree-node
Version:
The algorithm of a self-balancing tree is used (Red-Black tree)
38 lines (37 loc) • 918 B
JSON
{
"name": "red-black-tree-node",
"version": "2.0.0-beta.1",
"description": "The algorithm of a self-balancing tree is used (Red-Black tree)",
"author": "Vladislav Tupikin <mrrefactoring@yandex.ru>",
"license": "MIT",
"repository": "https://github.com/MrRefactoring/red-black-tree-node",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"compile": "tsc",
"lint": "tslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"dependencies": {},
"keywords": [
"red-black-tree",
"tree",
"tree-structure",
"tree-search",
"search",
"algorithm",
"algorithms",
"math",
"mathematics"
]
}