polymech-astro/packages/node-murmurhash-native/package.json
2025-08-25 08:22:26 +02:00

65 lines
1.9 KiB
JSON

{
"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.0",
"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",
"engines": {
"node": ">=6"
},
"dependencies": {
"nan": "^2.14.1",
"node-pre-gyp": "^0.17.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/node": "^13.13.2",
"bluebird": "^3.7.2",
"commander": "^5.0.0",
"murmurhash3js": "^3.0.1",
"node-pre-gyp-github": "1.4.3",
"tap": "^14.10.7",
"typedoc": "^0.17.4",
"typedoc-plugin-external-module-name": "^3.0.0",
"typedoc-plugin-sourcefile-url": "^1.0.6",
"typescript": "^3.8.3"
}
}