{
  "name": "merkle-radix-tree",
  "version": "0.0.4",
  "description": "This implements a binary merkle radix tree",
  "main": "index.js",
  "scripts": {
    "coverage": "node ./node_modules/istanbul/lib/cli.js cover ./tests/index.js",
    "coveralls": "npm run coverage && coveralls <coverage/lcov.info",
    "lint": "standard",
    "test": "node ./tests/index.js",
    "build:docs": "documentation build ./index.js --github --sort-order source -f md  > ./docs/index.md"
  },
  "author": "mjbecze <mjbecze@gmail.com>",
  "license": "MPL-2.0",
  "keywords": [
    "merkle",
    "tree",
    "ipfs"
  ],
  "devDependencies": {
    "coveralls": "^2.13.1",
    "documentation": "^5.1.1",
    "ipfs": "^0.25.0",
    "istanbul": "^1.1.0-alpha.1",
    "standard": "^10.0.0",
    "tape": "^4.6.3"
  },
  "dependencies": {
    "ipld-graph-builder": "^1.2.4",
    "safe-buffer": "^5.1.1",
    "text-encoding": "^0.6.4",
    "uint1array": "^1.0.5"
  },
  "standard": {
    "ignore": [
      "/benchmark/"
    ]
  },
  "bugs": {
    "url": "https://github.com/wanderer/merkle-radix-tree/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wanderer/merkle-radix-tree.git"
  }
}
