UNPKG

scrypt-kdf

Version:
34 lines (33 loc) 913 B
{ "name": "scrypt-kdf", "description": "Scrypt Key Derivation Function", "keywords": [ "crypto", "scrypt", "kdf", "password", "hash", "login", "authenticate", "verify" ], "author": "Chris Veness", "repository": { "type": "git", "url": "https://github.com/chrisveness/scrypt-kdf" }, "version": "3.0.0", "license": "MIT", "main": "scrypt.js", "type": "module", "types": "scrypt.d.ts", "engines": { "node": ">=18.0.0" }, "scripts": { "test": "npm run test-node && npm run test-deno", "test-node": "node --test test/tests-node.js", "test-deno": "deno test -NES test/tests-deno.js", "lint": "eslint scrypt.js test/tests-*.js", "cover": "c8 npm test" }, "devDependencies": { "@babel/eslint-parser": "^7", "@babel/plugin-syntax-import-attributes": "^7", "@eslint/js": "^9", "@types/node": "^22", "c8": "^10", "globals": "^15" } }