{
  "name": "bitset-bloom-filters",
  "version": "0.1.3",
  "description": "JS implementation of Bloom Filter using FastBitSet.js",
  "main": "dist/api.js",
  "scripts": {
    "build": "tsc",
    "pretest": "yarn build",
    "test": "mocha test/**/*-test.js --trace-deprecation --timeout=30000",
    "doc": "typedoc --mode file --out docs/ --ignoreCompilerErrors"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yurihq/bitset-bloom-filters.git"
  },
  "keywords": [
    "bloom",
    "filter",
    "bloom filter",
    "invertible bloom filter",
    "probabilistic",
    "datastructure",
    "count min sketch",
    "cuckoo",
    "bitset"
  ],
  "author": "Thomas Minier <thomas.minier@protonmail.com>",
  "contributors": [
    "Arnaud Grall <dev.arnaudgrall@gmail.com>",
    "Jonah H. Harris <jonah.harris@gmail.com>",
    "Yuri Chirkov <mail@api.haus>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/yurihq/bitset-bloom-filters/issues"
  },
  "homepage": "https://github.com/yurihq/bitset-bloom-filters#readme",
  "devDependencies": {
    "@types/lodash": "^4.14.149",
    "@types/fastbitset": "^0.2.0",
    "@types/lodash.eq": "^4.0.6",
    "@types/lodash.indexof": "^4.0.6",
    "@types/node": "^13.7.0",
    "@types/seedrandom": "^2.4.28",
    "@types/xxhashjs": "^0.2.1",
    "chai": "^4.2.0",
    "mocha": "^6.2.2",
    "random": "^2.1.1",
    "typedoc": "^0.15.0",
    "typescript": "^3.7.5"
  },
  "dependencies": {
    "fastbitset": "^0.4.0",
    "is-buffer": "^2.0.4",
    "lodash": "^4.17.15",
    "lodash.eq": "^4.0.0",
    "lodash.indexof": "^4.0.5",
    "reflect-metadata": "^0.1.13",
    "seedrandom": "^3.0.5",
    "xxhashjs": "^0.2.2"
  },
  "standard": {
    "env": [
      "mocha"
    ]
  }
}
