{
  "name": "murmurhash-native",
  "description": "MurmurHash (32,64,128)bit native bindings for nodejs",
  "keywords": [
    "murmurhash",
    "murmurhash3",
    "murmurhash128",
    "murmurhash32",
    "murmurhash2",
    "murmurhash64",
    "progressive hash",
    "PMurHash",
    "PMurHash128",
    "hash"
  ],
  "version": "3.5.1",
  "license": "MIT",
  "author": "Rafał Michalski <royal@yeondir.com>",
  "contributors": [],
  "homepage": "http://github.com/royaltm/node-murmurhash-native",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/royaltm/node-murmurhash-native.git"
  },
  "scripts": {
    "install": "node-pre-gyp install --fallback-to-build",
    "test": "tap -C -Rclassic ./test/test*.js ./test/types/test*.js",
    "test-ts": "tap -C -Rclassic ./test/types/test*.js",
    "test-gc": "tap -Rspec --node-arg=--expose-gc ./test/persistent/test.gc.*.js",
    "bench": "sh bench/bench.all.sh",
    "rebuild": "node-pre-gyp rebuild",
    "tsc": "tsc -p test/types",
    "typedoc": "typedoc --tsconfig test/types/tsconfig.json index.d.ts promisify.d.ts incremental.d.ts stream.d.ts"
  },
  "binary": {
    "module_name": "murmurhash",
    "module_path": "./lib/{configuration}/",
    "host": "https://github.com/royaltm/node-murmurhash-native/releases/download/",
    "remote_path": "v{version}"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "typeScriptVersion": "2.0",
  "tap": {
    "check-coverage": true,
    "lines": 95,
    "functions": 100,
    "branches": 85,
    "statements": 95
  },
  "engines": {
    "node": ">=6"
  },
  "dependencies": {
    "@mapbox/node-pre-gyp": "^2.0.0",
    "nan": "^2.14.1"
  },
  "devDependencies": {
    "@types/bluebird": "3.5.25",
    "@types/node": "^13.13.2",
    "bluebird": "^3.7.2",
    "commander": "^5.0.0",
    "murmurhash3js": "^3.0.1",
    "node-pre-gyp-github": "2.0.0",
    "tap": "^16.3.10",
    "typedoc": "^0.17.4",
    "typedoc-plugin-external-module-name": "^3.0.0",
    "typedoc-plugin-sourcefile-url": "^1.0.6",
    "typescript": "^3.8.3"
  }
}
