pbkdf2-password-hash
Version:
hash password with pbkdf2
65 lines (64 loc) • 1.46 kB
JSON
{
"name": "pbkdf2-password-hash",
"version": "3.1.1",
"description": "hash password with pbkdf2",
"keywords": [
"hash",
"password",
"pbkdf2"
],
"homepage": "https://github.com/commenthol/pbkdf2-password-hash#readme",
"bugs": {
"url": "https://github.com/commenthol/pbkdf2-password-hash/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/pbkdf2-password-hash.git"
},
"license": "Unlicense",
"author": "commenthol <commenthol@gmail.com>",
"type": "module",
"main": "./lib/index.cjs",
"module": "./index.js",
"directories": {
"test": "test"
},
"files": [
"src",
"lib",
"types"
],
"scripts": {
"build": "rm -r lib/*; rollup -c rollup.conf.js",
"ci": "npm run build && npm run lint && npm test && npm run types",
"lint": "eslint --ext .js .",
"test": "mocha",
"types": "rm -r types; tsc"
},
"eslintConfig": {
"extends": [
"standard"
]
},
"mocha": {
"checkLeaks": true,
"colors": true
},
"dependencies": {
"compare-timing-safe": "^2.1.1"
},
"devDependencies": {
"@types/node": "^20.8.3",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"rollup": "^4.0.2",
"typescript": "^5.2.2"
},
"engine": {
"node": ">=12.0.0"
}
}