UNPKG

js-heap-data-structures

Version:

A comprehensive JavaScript implementation of Min Heap and Max Heap data structures with practical utilities

62 lines (61 loc) 1.59 kB
{ "name": "js-heap-data-structures", "version": "1.0.2", "description": "A comprehensive JavaScript implementation of Min Heap and Max Heap data structures with practical utilities", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "scripts": { "test": "jest", "build": "rollup -c", "build:types": "tsc --declaration --emitDeclarationOnly", "prepublishOnly": "npm run build && npm run build:types", "lint": "eslint src/", "format": "prettier --write src/" }, "keywords": [ "heap", "min-heap", "max-heap", "priority-queue", "data-structures", "algorithm", "javascript", "typescript" ], "author": "Gladwin Santhosh <s.gladwin.in@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/gs-py/js-heap-data-structures.git" }, "bugs": { "url": "https://github.com/gs-py/js-heap-data-structures/issues" }, "homepage": "https://github.com/gs-py/js-heap-data-structures#readme", "files": [ "dist/", "index.js", "index.esm.js", "index.d.ts", "README.md" ], "devDependencies": { "@babel/core": "^7.22.0", "@babel/preset-env": "^7.22.0", "@rollup/plugin-babel": "^6.0.3", "@rollup/plugin-node-resolve": "^15.1.0", "@types/jest": "^29.5.0", "eslint": "^8.42.0", "jest": "^29.5.0", "prettier": "^2.8.8", "rollup": "^3.29.5", "typescript": "^5.1.0" }, "engines": { "node": ">=14.0.0" }, "dependencies": { "@rollup/plugin-terser": "^0.4.4" } }