{
  "name": "sbtree",
  "version": "4.0.0-beta.1",
  "description": "Optimised document store using B+ Tree for fields. Adapters support for In-Memory and FileSystem",
  "main": "index.js",
  "scripts": {
    "serve:docs": "docsify serve ./docs",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test:unit": "nyc mocha 'src/**/*.spec.js'",
    "test:benchmark": "mocha test/benchmark --recursive",
    "test:functional": "nyc mocha 'test/functional/*.spec.js'",
    "test": "npm run test:unit && npm run test:functional"
  },
  "engines": {
    "node": ">= 14.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Alex-Werner/SBTree.git"
  },
  "author": "Alex Werner <obusco@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Alex-Werner/SBTree/issues"
  },
  "keywords": [
    "optimized data store",
    "metadata indexing",
    "B+ Tree",
    "B Tree",
    "Tree",
    "B+",
    "Bplus",
    "b plus",
    "bplus tree",
    "n-ary tree",
    "database",
    "big data storage"
  ],
  "type": "module",
  "homepage": "https://github.com/Alex-Werner/SBTree#readme",
  "devDependencies": {
    "chai": "^5.0.0",
    "chance": "^1.1.11",
    "eslint": "^8.56.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.29.1",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0"
  },
  "dependencies": {
    "fslockjs": "^3.0.0",
    "lodash.clonedeep": "^4.5.0",
    "lodash.foreach": "^4.5.0",
    "lodash.get": "^4.4.2",
    "lodash.intersection": "^4.4.0",
    "lodash.isequal": "^4.5.0",
    "lodash.isobject": "^3.0.2",
    "lodash.range": "^3.2.0",
    "lodash.reduce": "^4.6.0",
    "lodash.transform": "^4.6.0",
    "mongo-objectid": "^1.2.2"
  }
}
