password-helper/package.json
Timo Hocker 4d9437c6f6
Some checks failed
continuous-integration/drone/push Build is failing
update
2021-05-24 15:13:40 +02:00

49 lines
1.2 KiB
JSON

{
"name": "@sapphirecode/password-helper",
"version": "1.0.51",
"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": "^5.0.0",
"@stryker-mutator/jasmine-runner": "^5.0.0",
"@types/jasmine": "^3.5.14",
"@types/node": "^15.6.0",
"eslint": "^7.0.0",
"jasmine": "^3.6.1",
"nyc": "^15.0.1"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
"test": "nyc jasmine --config=\"jasmine.json\"",
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
},
"dependencies": {
"argon2": "^0.27.0"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"LICENSE",
"*.js",
"*.d.ts"
],
"keywords": [
"argon2",
"hashing"
]
}