{
  "name": "abstract-data-types",
  "version": "0.1.18",
  "description": "This module aims to provide a full suite of abstract data types. At present it provides the abstract data type, Queue, Linked List, Stack, Binary Tree an Binary Search Tree.",
  "keywords": [
    "abstract",
    "data",
    "type",
    "queue",
    "adt",
    "abstract data type",
    "abstract-data-type",
    "link list",
    "linked",
    "list",
    "stack",
    "binary tree",
    "binary-tree",
    "binary",
    "tree",
    "binary search tree",
    "binary-search-tree",
    "search tree",
    "search"
  ],
  "homepage": "https://github.com/gozumi/abstract-data-types",
  "bugs": {
    "url": "https://github.com/gozumi/abstract-data-types/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Ian Anderson",
    "email": "ian@gozumi.com",
    "url": "http://twitter.com/gozumi"
  },
  "main": "index.js",
  "directories": {
    "test": "./test",
    "example": "./example"
  },
  "repository": {
    "type": "git",
    "url": "http://github.com/gozumi/abstract-data-types/abstract-data-types.git"
  },
  "scripts": {
    "test": "mocha --reporter spec",
    "test-watcher": "mocha -w --reporter spec",
    "cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec",
    "benchmark": "node_modules/matcha/bin/matcha"
  },
  "directories": {
    "lib": "./lib"
  },
  "engines": {
    "node": "*",
    "npm": "*" 
  },
  "dependencies": {},
  "devDependencies": {
    "mocha": "1.21.x",
    "chai": "1.9.x",
    "istanbul": "0.3.x",
    "matcha": "0.5.x"
  }
}