priority-deque
Version:
A double-ended priority queue based on min-max heaps.
51 lines (50 loc) • 1.28 kB
JSON
{
"name": "priority-deque",
"version": "1.1.0",
"description": "A double-ended priority queue based on min-max heaps.",
"license": "MIT",
"main": "bin/index.min.js",
"types": "bin/index.d.ts",
"files": [
"bin/index.min.js",
"bin/index.d.ts"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*-test.ts",
"lint": "eslint . --ext .ts --fix",
"build": "tsc",
"minify": "jsmin -o bin/index.min.js bin/index.js",
"prepare": "tsc && npm test && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gliese1337/priority-deque.git"
},
"keywords": [
"queue",
"deque",
"priority",
"heap",
"min-max"
],
"author": "Logan R. Kearsley",
"bugs": {
"url": "https://github.com/gliese1337/priority-deque/issues"
},
"homepage": "https://github.com/gliese1337/priority-deque#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.3.6",
"eslint": "^7.15.0",
"jsmin": "^1.0.1",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^3.9.10"
},
"dependencies": {
"floyd-rivest": "^1.0.1"
}
}