{
  "name": "@ganorberg/data-structures-javascript",
  "version": "1.0.0",
  "description": "Data structure and graph processing library written in modern JavaScript",
  "scripts": {
    "doc": "jsdoc structures --readme README.md --recurse --configure jsdoc.json --destination documentation",
    "test": "mocha --recursive"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ganorberg/data-structures-javascript.git"
  },
  "main": "index.js",
  "keywords": [
    "data structures",
    "javascript",
    "graph",
    "undirected graph",
    "directed graph",
    "weighted graph",
    "breadth first search",
    "BFS",
    "depth first search",
    "DFS",
    "dijkstra",
    "shortest path",
    "prim",
    "minimum spanning tree",
    "red black tree",
    "RBT",
    "binary heap",
    "priority queue",
    "binary search tree",
    "BST",
    "suffix trie",
    "prefix trie",
    "trie",
    "circular queue",
    "circular buffer",
    "ring buffer",
    "queue",
    "stack",
    "hash table",
    "hash map",
    "linked list"
  ],
  "author": "George Norberg",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ganorberg/data-structures-javascript/issues"
  },
  "homepage": "https://github.com/ganorberg/data-structures-javascript#readme",
  "devDependencies": {
    "chai": "^4.2.0",
    "jsdoc": "^3.6.3",
    "mocha": "^7.1.0"
  }
}
