UNPKG

n-multi-hashing

Version:

A re-write of the Node Multi Hashing library, which provides Javascript bindings for C/C++ based hashing algorithms.

53 lines (52 loc) 1.41 kB
{ "name": "n-multi-hashing", "version": "1.0.8", "description": "A re-write of the Node Multi Hashing library, which provides Javascript bindings for C/C++ based hashing algorithms.", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "scripts": { "test": "jest", "clean": "rm -r ./dist", "build": "tsc && yarn build:binaries && cp -r ./build ./dist/build", "build:binaries": "node-gyp clean && node-gyp configure && node-gyp build", "build:debug": "node-gyp clean && node-gyp configure && node-gyp build --debug" }, "keywords": [ "hashing", "typescript", "POW", "crypto", "x16r", "kawpow", "scrypt", "sha256", "c11", "lyra2z", "quark", "x11", "argon2" ], "author": "Notorious", "license": "MIT", "files": [ "dist/**/*" ], "repository": "https://github.com/SkinnyPeteTheGiraffe/n-multi-hashing", "homepage": "https://github.com/SkinnyPeteTheGiraffe/n-multi-hashing", "devDependencies": { "@types/bindings": "^1.5.0", "@types/jest": "^26.0.23", "jest": "^27.0.4", "jest-junit": "^12.1.0", "nodemon": "^2.0.7", "prettier": "^2.3.0", "ts-jest": "^27.0.2", "ts-node": "^10.0.0", "ttypescript": "^1.5.12", "typescript": "^4.3.2" }, "dependencies": { "bindings": "^1.5.0", "nan": "^2.14.2" } }