password-helper/package.json
Timo Hocker cf6a007965
Some checks failed
continuous-integration/drone/push Build is failing
update dependencies
2020-08-14 08:28:37 +02:00

46 lines
1.1 KiB
JSON

{
"name": "@sapphirecode/password-helper",
"version": "1.0.47",
"main": "index.js",
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/password-helper",
"license": "MIT",
"description": "easy password storage with argon2",
"repository": {
"type": "git",
"url": "https://git.scode.ovh:timo/password-helper.git"
},
"devDependencies": {
"@sapphirecode/encoding-helper": "^1.0.38",
"@sapphirecode/eslint-config": "^2.1.4",
"@stryker-mutator/core": "^3.2.3",
"@stryker-mutator/javascript-mutator": "^3.2.3",
"ava": "^3.8.2",
"eslint": "^7.0.0",
"nyc": "^15.0.1"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
"test": "nyc ava",
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
},
"dependencies": {
"argon2": "^0.27.0"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"LICENSE",
"index.js"
],
"keywords": [
"argon2",
"hashing"
]
}