highwayhash
Version:
Node.js implementation of HighwayHash, Google's fast and strong hash function
58 lines (57 loc) • 1.13 kB
JSON
{
"name": "highwayhash",
"version": "3.1.1",
"author": "Lovell Fuller <npm@lovell.info>",
"description": "Node.js implementation of HighwayHash, Google's fast and strong hash function",
"homepage": "https://github.com/lovell/highwayhash",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"test": "semistandard && cpplint && node test/unit"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/lovell/highwayhash"
},
"files": [
"binding.gyp",
"index.d.ts",
"src/",
"!update.sh"
],
"keywords": [
"highwayhash",
"siphash",
"hash",
"crypto",
"random"
],
"dependencies": {
"node-addon-api": "^3.1.0",
"prebuild-install": "^6.0.0"
},
"devDependencies": {
"cc": "^3.0.1",
"long": "^4.0.0",
"prebuild": "^10.0.1",
"semistandard": "^16.0.0"
},
"license": "Apache-2.0",
"engines": {
"node": ">=10"
},
"binary": {
"napi_versions": [
3
]
},
"config": {
"runtime": "napi",
"target": 3
},
"cc": {
"ignore": [
"src/highwayhash/**"
]
}
}