{
  "name": "typedpriorityqueue",
  "description": "Fast heap-based priority queue in TypeScript",
  "keywords": [
    "heap",
    "binary heap",
    "data structure",
    "priority queue",
    "performance"
  ],
  "version": "1.0.1",
  "repository": {
    "type": "git",
    "url": "https://github.com/ddurschlag6river/TypedPriorityQueue.git"
  },
  "main": "dist/TypedPriorityQueue.js",
  "scripts": {
    "build": "tsc --pretty",
    "test:run": "mocha dist/unit/basictests.js",
    "test": "npm run build && npm run test:run"
  },
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/ddurschlag6river/TypedPriorityQueue/issues"
  },
  "homepage": "https://github.com/ddurschlag6river/TypedPriorityQueue",
  "devDependencies": {
    "mocha": "^2.3.4",
    "@types/mocha": "^2.2.48",
    "typescript": "^2.7.2",
    "chai": "^4.1.2",
    "@types/chai": "^4.1.2",
    "uuid": "^3.2.1",
    "@types/uuid": "^3.4.3",
    "reflect-metadata": "^0.1.12",
    "binaryheapx": "^0.1.1",
    "benchmark": "^2.1.4",
    "heap": "^0.2.6",
    "js-heap": "^0.3.1",
    "js-priority-queue": "^0.1.5",
    "priority_queue": "^0.1.3",
    "priorityqueuejs": "^1.0.0",
    "qheap": "^1.4.0",
    "queue-priority": "^1.0.0",
    "stablepriorityqueue": "^0.1.0",
    "yabh": "^1.2.0"
  },
  "author": "Daniel Lemire <lemire@gmail.com> (http://lemire.me/en/)",
  "contributors": [
    {
      "name": "David Durschlag",
      "email": "ddurschlag@6river.com",
      "url": "https://6river.com/"
    }
  ],
  "dependencies": {},
  "types": "dist/TypedPriorityQueue.d.ts"
}
