{
  "name": "bin-trees",
  "version": "1.0.4",
  "description": "Implementation of binary search trees and red black trees",
  "main": "src/index.js",
  "scripts": {
    "lint": "eslint .",
    "precommit": "npm run lint && npm test",
    "start": "node index.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/omenlogo/binaryTrees"
  },
  "jest": {
    "moduleFileExtensions": [
      "js"
    ],
    "moduleDirectories": [
      "node_modules",
      "src"
    ]
  },
  "keywords": [
    "TDA",
    "binary",
    "search",
    "tree"
  ],
  "author": "Omar Enrique Lopez Gonzalez",
  "license": "MIT",
  "devDependencies": {
    "coveralls": "^3.0.0",
    "eslint": "^4.11.0",
    "husky": "^0.14.3",
    "jest": "^21.2.1"
  }
}
