pbkdf2-compat
Version:
This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()
46 lines (45 loc) • 1.23 kB
JSON
{
"name": "pbkdf2-compat",
"version": "4.0.0",
"description": "This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()",
"main": "./index.js",
"browser": "./browser.js",
"keywords": [
"pbkdf2",
"kdf",
"salt",
"hash"
],
"scripts": {
"coverage": "istanbul cover _mocha -- -t 20000 test/index.js",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info",
"standard": "standard",
"test": "mocha --reporter list -t 20000 test/index.js",
"bundle-test": "browserify test/index.js > test/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/crypto-browserify/pbkdf2-compat.git"
},
"author": "Daniel Cousens",
"license": "MIT",
"bugs": {
"url": "https://github.com/crypto-browserify/pbkdf2-compat/issues"
},
"homepage": "https://github.com/crypto-browserify/pbkdf2-compat",
"devDependencies": {
"browserify": "^8.1.1",
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"standard": "^1.3.0"
},
"dependencies": {
"create-hmac": "^1.1.2"
},
"standard": {
"ignore": [
"test/**"
]
}
}